/* Base */
:root {
  --bg-color: #F8F5F0;
  --text-main: #333333;
  --text-muted: #666666;
  --accent-primary: #FF9933; /* Saffron */
  --accent-gradient: linear-gradient(135deg, #FF9933 0%, #FF7722 100%);
  --card-bg: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(255, 153, 51, 0.08);
  --shadow-md: 0 8px 24px rgba(255, 153, 51, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
.header {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Typography elements */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 153, 51, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  padding: 64px 0 80px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* Features */
.features {
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-color);
  color: var(--accent-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0px;
}

/* Steps */
.how-it-works {
  padding: 64px 0;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

@media (min-width: 600px) {
  .steps {
    flex-direction: row;
    justify-content: space-between;
  }
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-weight: 600;
  font-size: 1.1rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-top: 40px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.02);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 16px;
}

.footer-link {
  color: var(--accent-primary);
  transition: var(--transition);
}

.footer-link:hover {
  text-decoration: underline;
}

/* Privacy Policy Page specifics */
.content-page {
  padding: 64px 0 80px;
  background: var(--card-bg);
  min-height: 100vh;
}

.content-page .container {
  max-width: 700px;
}

.content-page h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.content-page .last-updated {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 0.9rem;
}

.content-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 8px;
}

.content-page p, .content-page ul {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.content-page ul {
  padding-left: 24px;
}

.content-page li {
  margin-bottom: 8px;
}

.content-page a {
  color: var(--accent-primary);
}

.content-page a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility to add stagger to elements */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
