/* ─────────────────────────────────────────────────────────────────────────
   Contract to Cradle — Landing Page Styles
   Font: DM Serif Display (headings) + DM Sans (body)
───────────────────────────────────────────────────────────────────────── */

/* ── Reset & Tokens ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:        #8d5b3e;
  --brown-dark:   #6b4230;
  --brown-light:  #f5ede6;
  --teal:         #2d7d7d;
  --teal-light:   #e0f2f2;
  --blue:         #4a80b5;
  --blue-light:   #e8f1fb;
  --green:        #5a9e72;
  --green-light:  #e8f5ee;
  --amber:        #c8892a;
  --amber-light:  #fef3e2;
  --rose:         #c05a6e;
  --rose-light:   #fceef1;
  --ink:          #1c1917;
  --ink-soft:     #3d3530;
  --ink-muted:    #7a6e68;
  --cream:        #fdf8f3;
  --cream-dark:   #f0e8de;
  --white:        #ffffff;
  --rule:         rgba(28, 25, 23, 0.10);
  --serif:        'DM Serif Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --shadow-sm:    0 2px 8px rgba(28,25,23,0.07);
  --shadow-md:    0 8px 28px rgba(28,25,23,0.10);
  --shadow-lg:    0 20px 60px rgba(28,25,23,0.14);
  --radius:       16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.2rem; font-weight: 400; }
em { font-style: italic; color: var(--brown); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 540px;
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.04) rotate(3deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible, .fade-in.delay-1.visible, .fade-in.delay-2.visible, .fade-in.delay-3.visible {
  opacity: 1; transform: none;
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.28s; }
.fade-in.delay-3 { transition-delay: 0.42s; }

/* Immediate show for above-fold elements */
.hero .fade-in { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero .fade-in.delay-2 { animation-delay: 0.22s; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(141, 91, 62, 0.35);
}
.btn-primary:hover {
  background: var(--brown-dark);
  box-shadow: 0 8px 28px rgba(141, 91, 62, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 13px 28px;
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  height: 68px;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

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

.logo-mark { display: flex; align-items: center; }

.logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.logo-text strong { font-weight: 700; }

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-dark); }

.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brown-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
    /* ── Dashboard section ─────────────────────────────────────── */
    .dashboard-section {
      background: linear-gradient(135deg, var(--brown-light) 0%, #fff 100%);
      border-bottom: 1px solid var(--rule);
      padding: 40px 0 48px;
      display: none;
    }
    .dashboard-section.visible { display: block; }

    .dashboard-greeting {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 6px;
    }
    .dashboard-heading {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 28px;
    }

    .purchased-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .purchased-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 26px 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--rule);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: box-shadow 0.2s, transform 0.2s;
      animation: fadeUp 0.5s ease both;
    }
    .purchased-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .purchased-card:nth-child(2) { animation-delay: 0.08s; }
    .purchased-card:nth-child(3) { animation-delay: 0.16s; }

    .pc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      width: fit-content;
    }
    .pc-badge.owned  { background: var(--green-light);  color: var(--green); }
    .pc-badge.bundle { background: var(--amber-light);  color: var(--amber); }

    .pc-icon-wrap {
      width: 46px; height: 46px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .pc-icon-blue  { background: var(--blue-light);  color: var(--blue); }
    .pc-icon-green { background: var(--green-light); color: var(--green); }
    .pc-icon-amber { background: var(--amber-light); color: var(--amber); }
    .pc-icon-rose  { background: var(--rose-light);  color: var(--rose); }

    .pc-title {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--ink);
      line-height: 1.25;
    }
    .pc-desc {
      font-size: 0.86rem;
      color: var(--ink-muted);
      line-height: 1.5;
      flex: 1;
    }
    .pc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--brown);
      text-decoration: none;
      margin-top: 4px;
      transition: gap 0.2s;
    }
    .pc-link:hover { gap: 10px; }

    /* ── Product drawer ────────────────────────────────────────── */
    .drawer-desc {
      font-size: 0.95rem;
      color: var(--ink-muted);
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 600px;
    }
    .drawer-section-title {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 14px;
    }
    .drawer-items {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 10px;
      margin-bottom: 32px;
    }
    .drawer-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: var(--white);
      border: 1px solid var(--rule);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 0.85rem;
      color: var(--ink);
      line-height: 1.4;
    }
    .drawer-item-icon {
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .drawer-item-num {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--brown);
      background: var(--brown-light);
      border-radius: 4px;
      padding: 2px 6px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .drawer-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }
    .drawer-stat {
      background: var(--cream-dark);
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 0.82rem;
      color: var(--ink-soft);
      font-weight: 500;
    }
    .drawer-cta-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 8px;
      border-top: 1px solid var(--rule);
    }
    .drawer-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--brown);
      color: var(--white);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .drawer-btn-primary:hover { background: var(--brown-dark); }
    .drawer-btn-secondary {
      font-size: 0.85rem;
      color: var(--ink-muted);
      text-decoration: none;
      font-weight: 500;
    }
    .drawer-btn-secondary:hover { color: var(--ink); }
    .drawer-price-tag {
      margin-left: auto;
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--ink);
    }
/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 100px) 0 clamp(80px, 12vw, 120px);
  background: var(--cream);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(141,91,62,0.10) 0%, transparent 65%);
  top: -200px; right: -200px;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,125,125,0.08) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  animation-delay: 3s;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--brown);
}

h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.trust-avatars img:first-child { margin-left: 0; }

/* Hero image frame */
.hero-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.hero-img-frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  animation: float 6s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  border: 1px solid var(--rule);
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}
.badge-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  flex-shrink: 0;
}
.hero-badge strong { display: block; color: var(--ink); font-size: 0.84rem; line-height: 1.2; }
.hero-badge span   { color: var(--ink-muted); font-size: 0.76rem; }

/* ── Tools Section ──────────────────────────────────────────────────────── */
.tools-section {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--white);
}

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

.tool-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.tool-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tool-icon-blue  { background: var(--blue-light);  color: var(--blue); }
.tool-icon-green { background: var(--green-light); color: var(--green); }
.tool-icon-amber { background: var(--amber-light); color: var(--amber); }

.tool-card h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  flex: 1;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.tool-link:hover { gap: 10px; }
.tool-link span { transition: transform 0.2s; }
.tool-link:hover span { transform: translateX(4px); }

/* ── Info Split: Why + Testimonials ─────────────────────────────────────── */
.info-split {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--cream);
  overflow: hidden;
}

.info-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Why panel */
.why-panel {}

.why-graphic {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}

.why-blob {
  position: absolute;
  inset: 0;
  background: var(--brown-light);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blobPulse 7s ease-in-out infinite;
}

.why-icon-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
  line-height: 1.2;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-blue  { background: var(--blue-light);  color: var(--blue); }
.check-green { background: var(--green-light); color: var(--green); }
.check-amber { background: var(--amber-light); color: var(--amber); }
.check-rose  { background: var(--rose-light);  color: var(--rose); }

/* Testimonials panel */
.testimonials-panel {}
.testimonials-panel h2 { margin-bottom: 28px; }

.testimonial-cards { position: relative; min-height: 220px; margin-bottom: 28px; }

.testimonial-slide {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.4s ease;
}
.testimonial-slide.active { display: flex; }

.testimonial-content {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--brown);
  opacity: 0.25;
  margin-bottom: 8px;
  display: block;
}

.testimonial-content p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}

.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream-dark);
  flex-shrink: 0;
}

.t-avatar-wide {
  width: 58px; height: 58px;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.t-faces {
  display: flex;
  align-items: center;
  gap: 4px;
}

.t-face {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.25s, transform 0.25s, border-color 0.25s;
}
.t-face.active {
  opacity: 1;
  transform: scale(1.2);
  border-color: var(--brown);
}
.t-face:hover { opacity: 0.8; }

.t-arrows {
  display: flex;
  gap: 8px;
}

.t-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.t-arrow:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  box-shadow: 0 4px 14px rgba(141,91,62,0.3);
}

.t-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.t-dot.active {
  background: var(--brown);
  transform: scale(1.3);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-blob {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(141,91,62,0.18) 0%, transparent 65%);
  top: -100px; right: -200px;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: clamp(60px, 10vw, 100px) clamp(20px, 4vw, 48px);
}

.footer-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}

.footer-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-text p {
  font-size: 0.95rem;
  color: rgba(253,248,243,0.65);
  line-height: 1.7;
}

.newsletter-input-wrap {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
}
.newsletter-input-wrap input::placeholder { color: rgba(253,248,243,0.42); }

.btn-signup {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 100px;
  margin: 4px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-signup:hover { background: #236b6b; transform: scale(0.98); }

.newsletter-note {
  font-size: 0.76rem;
  color: rgba(253,248,243,0.38);
  padding-left: 4px;
}

.newsletter-msg {
  font-size: 0.86rem;
  margin-top: 8px;
  padding-left: 4px;
  min-height: 1em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.76rem;
  color: rgba(253,248,243,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(253,248,243,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(253,248,243,0.8); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { max-width: 520px; margin: 0 auto; }
  .tools-grid        { grid-template-columns: 1fr; max-width: 480px; }
  .info-split-inner  { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner      { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(253,248,243,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--rule);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; }
  .tools-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; bottom: -28px; font-size: 0.76rem; padding: 10px 14px; }
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-input-wrap { border-radius: 12px; flex-direction: column; }
  .newsletter-input-wrap input { text-align: center; }
  .btn-signup { margin: 0 4px 4px; border-radius: 8px; }
  .hero-sub { max-width: 100%; }
  .hero-trust { flex-wrap: wrap; }
}

/* ── Logo image ──────────────────────────────────────────────────────────── */
.logo { text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* ── Tools header with lamp ─────────────────────────────────────────────── */
.tools-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 8px;
}

.tools-header-text { flex: 1; }
.tools-header-text .section-heading { margin-bottom: 0; }

.tools-lamp {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 220px);
  position: relative;
  bottom: -8px;
}

.lamp-img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(28,25,23,0.12));
}

/* Tool cards as links */
.tool-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-card-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }

/* ── Toolkit detail section ─────────────────────────────────────────────── */
.toolkit-section {
  margin-top: 80px;
  padding-top: 72px;
  border-top: 1px solid rgba(28,25,23,0.08);
}

.toolkit-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.toolkit-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--ink);
}

.toolkit-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.toolkit-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toolkit-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(28,25,23,0.08);
  align-items: start;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.toolkit-item:last-child { border-bottom: none; }

.toolkit-item-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--brown);
  opacity: 0.25;
  line-height: 1;
  padding-top: 6px;
  text-align: right;
  letter-spacing: -0.02em;
}

.toolkit-item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.toolkit-item-head h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.toolkit-item-content > p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 20px;
}

.toolkit-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
  max-width: 580px;
}

.toolkit-features li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.toolkit-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-toolkit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  border: 1.5px solid var(--brown);
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-toolkit:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-toolkit .arrow { transition: transform 0.2s; }
.btn-toolkit:hover .arrow { transform: translateX(4px); }

/* ── Responsive additions ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tools-header { flex-direction: column; align-items: flex-start; }
  .tools-lamp { width: 160px; align-self: flex-end; }
  .toolkit-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .toolkit-item-num { font-size: 2.4rem; }
  .toolkit-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .toolkit-item { grid-template-columns: 1fr; }
  .toolkit-item-num { display: none; }
  .toolkit-item-head { flex-wrap: wrap; }
}

/* ── Review section ───────────────────────────────────────────────────── */
.review-section {
  margin-top: 36px;
}
#review-section {
    max-width: 1120px;
    margin: auto;
}
.review-divider {
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, rgba(141,91,62,0.18), var(--rule), rgba(141,91,62,0.10));
}

#review-form-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(253,248,243,0.96) 100%);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
}

.review-kicker {
  margin-bottom: 8px;
}

.review-intro {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 56ch;
}

.review-rating-block {
  margin-bottom: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 16px;
}

.review-mini-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.star-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.star-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(28,25,23,0.10);
  border-radius: 14px;
  background: var(--white);
  color: rgba(200,137,42,0.35);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.star-btn:hover,
.star-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200,137,42,0.45);
  color: var(--amber);
  background: rgba(254,243,226,0.85);
  box-shadow: 0 8px 18px rgba(28,25,23,0.08);
  outline: none;
}

.star-btn.lit {
  color: var(--amber);
  border-color: rgba(200,137,42,0.38);
  background: linear-gradient(180deg, rgba(254,243,226,0.96) 0%, rgba(255,248,238,1) 100%);
  box-shadow: 0 6px 16px rgba(200,137,42,0.12);
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.review-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.review-note {
  color: var(--ink-muted);
  font-weight: 400;
}

.review-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(28,25,23,0.12);
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 2px rgba(28,25,23,0.04);
}

.review-input::placeholder {
  color: #9b9089;
}

.review-input:hover {
  border-color: rgba(141,91,62,0.22);
}

.review-input:focus {
  outline: none;
  background: var(--white);
  border-color: rgba(141,91,62,0.42);
  box-shadow: 0 0 0 4px rgba(141,91,62,0.10), 0 8px 20px rgba(28,25,23,0.06);
}

.review-select {
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.review-textarea {
  min-height: 136px;
  resize: vertical;
}

.review-counter {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: right;
  margin-top: 6px;
}

#review-error {
  display: none;
  font-size: 0.82rem;
  color: var(--rose);
  margin: 2px 0 14px;
  padding: 12px 14px;
  background: rgba(252,238,241,0.92);
  border: 1px solid rgba(192,90,110,0.18);
  border-radius: 12px;
}

.review-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(141,91,62,0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.review-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(141,91,62,0.26);
  filter: saturate(1.03);
}

.review-submit-btn:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

#review-success {
  display: none;
}

.review-success-card {
  background: linear-gradient(180deg, rgba(232,245,238,0.96) 0%, rgba(255,255,255,0.96) 100%);
  border: 1px solid rgba(90,158,114,0.24);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.review-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--green);
  background: rgba(90,158,114,0.14);
}

.review-success-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.review-success-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 44ch;
  margin: 0 auto;
}

@media (max-width: 640px) {
  #review-form-wrap {
    border-radius: 18px;
    padding: 18px;
  }

  .review-rating-block {
    padding: 14px;
  }

  .star-rating {
    gap: 8px;
  }

  .star-btn {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
    border-radius: 12px;
  }

  .review-submit-btn {
    width: 100%;
  }
}

