* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #FFC107;
  --yellow-light: #FFF3CD;
  --yellow-dark: #E5A100;
  --orange: #F5911E;
  --brown: #5D4037;
  --green: #7CB342;
  --white: #FFFDF7;
  --text: #3E2723;
  --text-light: #6D4C41;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--white);
  border-bottom: 1px solid #f0e6d0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

nav .logo img {
  height: 36px;
}

nav .logo span {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav .nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav .nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav .nav-links a:hover {
  color: var(--orange);
}

nav .nav-links .btn-nav {
  background: var(--yellow);
  color: var(--brown);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

nav .nav-links .btn-nav:hover {
  background: var(--yellow-dark);
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--yellow-light) 100%);
}

.hero .badge {
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--yellow);
  color: var(--brown);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e0d5c0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.1s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.hero-image {
  margin-top: 60px;
  max-width: 320px;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.features .section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.features h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--yellow-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 40px;
  background: var(--yellow-light);
}

.how-it-works .inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works .section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background: var(--brown);
  color: #d7ccc8;
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .logo img {
  height: 32px;
}

.footer-brand .logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #d7ccc8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-page h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page ul {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  nav .nav-links {
    gap: 16px;
  }

  .hero {
    padding: 60px 20px 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .features {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features h2,
  .how-it-works h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .how-it-works {
    padding: 60px 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  footer {
    padding: 40px 20px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}
