/* =========================================
   Global Tokens & Variables (Design System v1.0)
   ========================================= */
:root {
  /* Brand Colours */
  --color-forest: #335A47;
  --color-sage: #7E9F7A;
  --color-olive: #A3B18A;

  /* Background Colours */
  --color-bg-ivory: #FCFAF5;
  --color-bg-paper: #F7F2E9;
  --color-bg-beige: #EFE7DB;
  --color-bg-sand: #E8DFD2;

  /* Accent Colours */
  --color-accent-confidence: #C97C45;
  --color-accent-curiosity: #D6A85A;
  --color-accent-success: #8FAF82;
  --color-accent-red: #C75B4A;

  /* Text Colours */
  --color-text-heading: #1E1E1E;
  --color-text-body: #4A4A4A;
  --color-text-secondary: #777777;
  --color-border: #D9D4CB;

  /* Fonts */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing Scale */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-72: 72px;
  --space-96: 96px;
  --space-140: 140px;

  /* Shadows */
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .04);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, .05);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .06);

  /* Layout */
  --max-width-container: 1320px;

  /* Motion */
  --ease-story: cubic-bezier(.22, 1, .36, 1);
  --duration-fast: 300ms;
  --duration-normal: 500ms;
  --duration-slow: 800ms;
  --duration-xslow: 1200ms;
}

/* =========================================
   Reset & Base Styles
   ========================================= */

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

blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

body {
  background-color: var(--color-bg-ivory);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Paper texture overlay */
.texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

/* Centered page container */
.container {
  width: 100%;
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--space-32);
}

/* Global image overflow guard */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   Typography — Global
   ========================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-heading);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-sage);
  margin-bottom: var(--space-16);
}

/* Colour modifier variants */
.eyebrow--forest { color: var(--color-forest); }
.eyebrow--red    { color: var(--color-accent-red); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-48);
}

.section-title {
  font-size: clamp(28px, 8vw, 46px);
}

.section-title.left-align {
  text-align: left;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 14px;
  max-width: 600px;
  margin: var(--space-12) auto 0;
}

/* =========================================
   Buttons
   ========================================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 var(--space-24);
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-story),
    box-shadow var(--duration-fast) var(--ease-story);
}

.cta-button.small {
  min-height: 40px;
  padding: 0 var(--space-16);
  font-size: 14px;
}

.cta-button.large {
  min-height: 43px;
  padding: 0 var(--space-24);
  font-size: 13px;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button.primary {
  background-color: var(--color-forest);
  color: #FFFFFF;
}

.cta-button.primary:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.cta-button.outline {
  background-color: transparent;
  color: var(--color-text-heading);
  border: 1px solid var(--color-border);
}

.cta-button.outline:hover {
  background-color: var(--color-bg-paper);
}

.cta-button.trial {
  background-color: var(--color-forest);
  color: white;
  position: relative;
  box-shadow: var(--shadow-sm);
  animation: pulse-subtle 2s infinite ease-in-out;
}

.cta-button.trial:hover {
  background-color: #264636;
  animation: none;
  transform: translateY(-2px);
}

/* Icon spacing inside buttons */
.btn-icon {
  margin-left: 8px;
}

@keyframes pulse-subtle {
  0%   { box-shadow: 0 0 0 0   rgba(51, 90, 71, 0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(51, 90, 71, 0); }
  100% { box-shadow: 0 0 0 0   rgba(51, 90, 71, 0); }
}

.hero-cta-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.friction-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 500;
}

.bounce-down {
  display: inline-block;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(4px); }
  60%  { transform: translateY(2px); }
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(247, 242, 233, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 212, 203, 0.5);
  z-index: 100;
  padding: var(--space-16) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: var(--space-32);
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(247, 242, 233, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--space-24);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-16);
  z-index: 100;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-body);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  transition: color var(--duration-fast) var(--ease-story);
}

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

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-heading);
}

.nav-cta {
  display: none;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-72);
  background-color: var(--color-bg-paper);
  position: relative;
}

/* Wavy bottom transition to next section */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23FCFAF5" d="M0,50 C400,120 800,-20 1440,50 L1440,105 L0,105 Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  z-index: 10;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  align-items: center;
  text-align: center;
}

.hero-headline {
  font-size: clamp(22px, 7.5vw, 46px);
  line-height: 1.2;
  margin-bottom: var(--space-16);
  letter-spacing: -0.01em;
}

/* Colour highlights in headline */
.highlight-word.innocence  { color: var(--color-sage); }
.highlight-word.confidence { color: var(--color-accent-confidence); }

/* Character pop-in animation for headline */
.char {
  opacity: 0;
  display: inline-block;
  animation: charPopIn var(--duration-normal) var(--ease-story) forwards;
}

@keyframes charPopIn {
  0%   { opacity: 0; transform: scale(0.5) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-subtext {
  font-size: 14px;
  margin: 0 auto var(--space-32);
  max-width: 500px;
  color: var(--color-text-secondary);
}

.hero-buttons {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 320px;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* =========================================
   The Problem Section
   ========================================= */
.problem-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

/* Allows absolute positioning of decorative assets */
.section-header--decorated {
  position: relative;
}

/* Positional helpers for decorative assets in Problem section */
.decor-plane        { width: 100px; top: -50px; left: 15%; }
.decor-leaf-problem { width: 60px;  bottom: -20px; right: 15%; transform: rotate(45deg); }

.problem-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: center;
  position: relative;
  max-width: 100%;
}

.step-card {
  text-align: left;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* Dotted vertical connector on mobile */
.step-card:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 45px;
  height: calc(100% + var(--space-24));
  border-left: 2px dotted var(--color-border);
  z-index: 0;
}

.step-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 45px 45px 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 0 0;
  align-self: flex-start;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 2;
  background-color: var(--color-bg-paper);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.step-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.step-text-wrapper {
  background-color: #FFFFFF;
  padding: var(--space-24) var(--space-24) var(--space-24) 40px;
  margin-left: -20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}

.step-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: var(--space-8);
  margin-top: 0;
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Desktop-only step arrows (hidden on mobile) */
.step-arrow {
  display: none;
}

/* =========================================
   Our Belief Section
   ========================================= */
.belief-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

.belief-card {
  background-color: var(--color-bg-beige);
  border-radius: 36px;
  padding: var(--space-48) var(--space-24);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  align-items: center;
}

/* Container for image + floating decorations */
.belief-img-col {
  display: flex;
  justify-content: center;
  align-self: center;
}

.belief-img-col--decorated {
  position: relative;
}

/* Positional helpers for decorative assets in Belief section */
.decor-leaf-belief-top    { width: 90px; top: -30px; left: -10px; }
.decor-flower-belief      { width: 60px; top: 30%; right: -20px; }
.decor-leaf-belief-bottom { width: 50px; bottom: 10%; left: 0; transform: rotate(-30deg); }

.belief-illustration {
  width: 100%;
  max-width: 450px;
  mix-blend-mode: multiply;
}

.belief-text-col .eyebrow {
  letter-spacing: 0.08em;
  margin-bottom: var(--space-8);
}

.belief-text-col .section-title {
  line-height: 1.15;
}

.belief-paragraph {
  font-size: 16px;
  margin-top: var(--space-16);
  color: var(--color-text-body);
  line-height: 1.5;
}

/* =========================================
   Pullquote Section
   ========================================= */
.pullquote-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
  background-color: var(--color-forest);
  position: relative;
  overflow: hidden;
}

/* Wavy top edge — mirrors hero wave but flipped */
.pullquote-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 44px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23FCFAF5" d="M0,50 C400,120 800,-20 1440,50 L1440,0 L0,0 Z"></path></svg>') no-repeat top center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

/* Wavy bottom edge */
.pullquote-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 44px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23FCFAF5" d="M0,50 C400,120 800,-20 1440,50 L1440,105 L0,105 Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.pullquote-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-24) var(--space-24);
}

/* Giant decorative opening quotation mark */
.pullquote-mark {
  font-family: var(--font-heading);
  font-size: clamp(72px, 18vw, 200px);
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.08);
  display: block;
  user-select: none;
  margin-bottom: -0.05em;
}

.pullquote-text {
  font-family: var(--font-heading);
  font-size: clamp(19px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-style: italic;
}

/* Short centred rule below the quote */
.pullquote-rule {
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-curiosity);
  margin: var(--space-24) auto 0;
  border-radius: 2px;
}

/* =========================================
   How It Works Section
   ========================================= */
.method-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

.method-grid-wrapper {
  position: relative;
  margin-top: var(--space-48);
}

/* Desktop horizontal dotted connector line */
.connecting-line {
  display: none;
}

/* Mobile: vertical timeline */
.method-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
}

.method-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Dotted vertical connector between rows on mobile */
.method-row:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 66px;
  left: 19px;
  width: 2px;
  height: calc(100% + var(--space-24));
  border-left: 2px dotted var(--color-border);
  z-index: 0;
}

.method-card-new {
  flex: 1;
  background: var(--color-bg-paper);
  border-radius: 28px;
  padding: var(--space-24);
  margin-left: 20px;
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 140px;
  z-index: 1;
  transition:
    transform var(--duration-fast) var(--ease-story),
    box-shadow var(--duration-fast) var(--ease-story);
}

.method-row:hover .method-card-new {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

/* Numbered badge */
.card-badge {
  position: relative;
  width: 38px;
  height: 38px;
  align-self: flex-start;
  margin-top: 28px;
  flex-shrink: 0;
  background-color: var(--color-forest);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  border: 1px solid var(--color-border);
}

/* Short horizontal dotted line from badge to card (mobile) */
.card-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 38px;
  width: 16px;
  border-top: 2px dotted var(--color-border);
  margin-top: -1px;
}

/* Per-step badge colours */
.method-row:nth-child(1) .card-badge { background-color: var(--color-forest); }
.method-row:nth-child(2) .card-badge { background-color: #F3AF4D; }
.method-row:nth-child(3) .card-badge { background-color: #CA6E51; }
.method-row:nth-child(4) .card-badge { background-color: var(--color-forest); }

.card-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-24);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.card-title {
  font-size: 18px;
  margin-bottom: var(--space-12);
}

.card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* =========================================
   Audience Section
   ========================================= */
.audience-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

/* Centered heading + subtitle block */
.audience-section-header {
  text-align: center;
  margin-bottom: var(--space-32);
}

.audience-section-header .section-title {
  margin-bottom: var(--space-16);
}

.audience-card {
  background-color: var(--color-bg-paper);
  border-radius: 36px;
  padding: var(--space-48) var(--space-48) 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-fast) var(--ease-story),
    box-shadow var(--duration-fast) var(--ease-story);
}

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

.for-card     { border-top: 8px solid var(--color-forest); }
.not-for-card { border-top: 8px solid var(--color-accent-red); }

.audience-illustration {
  width: 100%;
  max-width: 400px;
  margin: var(--space-48) auto 0;
  display: block;
  mix-blend-mode: multiply;
  filter: brightness(1.05) contrast(1.1);
  align-self: center;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 80%, transparent 100%);
          mask-image: radial-gradient(ellipse at 50% 50%, black 80%, transparent 100%);
}

.right-illustration {
  align-self: flex-end;
  margin: var(--space-48) 0 0 auto;
}

.left-illustration {
  align-self: flex-start;
  margin: var(--space-48) auto 0 0;
}

.audience-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  max-width: 1000px;
  margin: 0 auto;
}

.audience-col-title {
  font-size: 24px;
  margin-bottom: var(--space-32);
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  font-size: 16px;
}

.for-list i     { color: var(--color-sage); margin-top: 6px; }
.not-for-list i { color: var(--color-accent-red); margin-top: 6px; }

/* =========================================
   Contact Us Section
   ========================================= */
.contact-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

.contact-card {
  background-color: var(--color-bg-beige);
  border-radius: 36px;
  padding: var(--space-48) var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
}

.contact-subtext {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: var(--space-16);
  max-width: 480px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: var(--space-24);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-fast) var(--ease-story),
    box-shadow var(--duration-fast) var(--ease-story);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-btn:active {
  transform: scale(0.98);
}

.contact-btn-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: #FFFFFF;
}

.contact-btn--call .contact-btn-icon {
  background-color: var(--color-forest);
}

.contact-btn--whatsapp .contact-btn-icon {
  background-color: #25D366;
}

.contact-btn-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-btn-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
}

.contact-btn-number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.1;
}

/* =========================================
   Footer Section
   ========================================= */
.organic-footer {
  margin-top: var(--space-96);
  padding: var(--space-72) 0 var(--space-32);
  background-color: var(--color-bg-paper);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Centred column layout for footer */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-48);
  margin-bottom: var(--space-72);
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand-col {
  max-width: 1000px;
  width: 100%;
}

/* Brand/vision quote in footer */
.footer-quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 5vw, 36px);
  line-height: 1.3;
  color: var(--color-forest);
  margin-top: var(--space-12);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-32);
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  gap: var(--space-24);
  justify-content: center;
}

.footer-legal-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer-legal-links a:hover {
  color: var(--color-text-heading);
}

.avdigital-credit {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.avdigital-credit:hover {
  color: var(--color-forest);
}

/* =========================================
   Floating Decorative Assets
   ========================================= */
.decor-asset {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: brightness(1.05) contrast(1.2);
  max-width: 25vw;
  /* Hidden on mobile — prevents overflow */
  display: none;
}

.anim-glide {
  animation: glide 8s ease-in-out infinite alternate;
}

.anim-sway {
  animation: sway 6s ease-in-out infinite alternate;
  transform-origin: top center;
}

.anim-float {
  animation: float-up-down 5s ease-in-out infinite alternate;
}

@keyframes glide {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(40px, -20px) rotate(5deg); }
}

@keyframes sway {
  0%   { transform: rotate(-5deg); }
  100% { transform: rotate(10deg); }
}

@keyframes float-up-down {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

/* =========================================
   Scroll Reveal Animation
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-slow) var(--ease-story),
    transform var(--duration-slow) var(--ease-story);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Floating Contact Widget
   ========================================= */
.floating-widget {
  position: fixed;
  bottom: var(--space-24);
  right: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  z-index: 9000;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 12px var(--space-16);
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--duration-fast) var(--ease-story),
    box-shadow var(--duration-fast) var(--ease-story);
}

.float-btn i {
  font-size: 18px;
  flex-shrink: 0;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.float-btn:active {
  transform: scale(0.97);
}

.float-btn--whatsapp {
  background-color: #25D366;
}

.float-btn--call {
  background-color: var(--color-forest);
}

/* On mobile, hide labels — show icon-only pills */
@media (max-width: 899px) {
  .floating-widget {
    bottom: var(--space-16);
    right: var(--space-16);
    gap: var(--space-8);
  }

  .float-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .float-btn-label {
    display: none;
  }

  .float-btn i {
    font-size: 22px;
  }
}


/* =========================================
   Desktop / Tablet Media Query (≥ 900px)
   ========================================= */
@media (min-width: 900px) {

  /* Remove side padding — centered by max-width */
  .container {
    padding: 0;
  }

  body {
    font-size: 18px;
  }

  /* Show desktop nav, hide mobile toggle */
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }


  /* Larger logo on desktop */
  .nav-logo-img {
    height: 80px;
  }


  .decor-asset {
    display: block;
  }

  /* Restore full-size hero image on desktop */
  .hero-illustration {
    max-width: 600px;
    max-height: none;
  }

  /* ---- Pullquote — desktop wave fix ---- */
  .pullquote-section {
    padding-top: var(--space-96);
    padding-bottom: var(--space-96);
  }

  .pullquote-section::before,
  .pullquote-section::after {
    height: 80px;
  }

  .pullquote-inner {
    padding: var(--space-48) var(--space-72);
  }

  /* ---- Typography ---- */
  .eyebrow           { font-size: 15px; }
  .step-title        { font-size: 18px; }
  .step-desc         { font-size: 15px; }
  .section-subtitle  { font-size: 18px; }
  .card-desc         { font-size: 15px; }
  .audience-col-title { font-size: 28px; }
  .hero-headline     { font-size: 72px; }
  .section-title     { font-size: 52px; }
  .belief-paragraph  { font-size: 19px; }
  .card-title        { font-size: 28px; }
  .audience-list li  { font-size: 19px; }

  .hero-subtext {
    font-size: 19px;
    margin: 0 0 var(--space-48) 0;
  }

  /* ---- Buttons ---- */
  .cta-button {
    min-height: 56px;
    padding: 0 var(--space-32);
    font-size: 18px;
  }

  .cta-button.small {
    min-height: 48px;
    padding: 0 var(--space-24);
    font-size: 15px;
  }

  .cta-button.large {
    min-height: 64px;
    padding: 0 var(--space-48);
    font-size: 19px;
  }

  /* ---- Hero ---- */
  .hero-section {
    padding-top: var(--space-96);
    padding-bottom: var(--space-140);
  }

  .hero-container {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
    padding: 0 var(--space-72);
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  /* ---- The Problem ---- */
  .problem-section {
    padding-top: var(--space-140);
    padding-bottom: var(--space-140);
  }

  .problem-steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 0;
  }

  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    gap: 0;
  }

  /* Remove mobile vertical line */
  .step-card:not(:last-child)::before {
    display: none;
  }

  .step-icon-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--color-bg-paper);
    border: 1px solid var(--color-border);
    margin: 0 auto var(--space-24);
    box-shadow: none;
  }

  .step-text-wrapper {
    background-color: transparent;
    padding: 0;
    margin-left: 0;
    box-shadow: none;
    min-height: auto;
  }

  .step-title {
    margin-top: 0;
  }

  /* Show horizontal arrows between steps */
  .step-arrow {
    display: block;
    transform: rotate(0deg);
    margin-top: 68px;
    color: var(--color-border);
    font-size: 24px;
  }

  /* ---- Our Belief ---- */
  .belief-section {
    padding-top: var(--space-140);
    padding-bottom: var(--space-140);
  }

  .belief-card {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-96);
  }

  .belief-img-col {
    align-items: center;
  }

  /* ---- How It Works ---- */
  .method-section {
    padding-top: var(--space-140);
    padding-bottom: var(--space-140);
  }

  /* Show horizontal dotted connector */
  .connecting-line {
    display: block;
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 0;
    border-top: 2px dashed var(--color-border);
    z-index: 0;
  }

  /* Desktop: 4-column grid */
  .method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
  }

  .method-row {
    display: block;
    width: auto;
    max-width: none;
  }

  /* Remove mobile vertical connectors */
  .method-row:not(:last-child)::before {
    display: none;
  }

  .method-card-new {
    text-align: center;
    padding: var(--space-48) var(--space-24) var(--space-32);
    margin-left: 0;
    min-height: auto;
    display: block;
    margin-top: 20px;
  }

  /* Subtle rotation for a playful, handmade feel */
  .method-row:nth-child(1) .method-card-new { transform: rotate(1deg); }
  .method-row:nth-child(2) .method-card-new { transform: rotate(-1.5deg); }
  .method-row:nth-child(3) .method-card-new { transform: rotate(1deg); }
  .method-row:nth-child(4) .method-card-new { transform: rotate(-1deg); }

  /* Badge repositioned to top-centre on desktop */
  .card-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    font-size: 16px;
    border: none;
    margin: 0;
  }

  .card-badge::after {
    display: none;
  }

  /* ---- Audience ---- */
  .audience-section {
    padding-top: var(--space-140);
    padding-bottom: var(--space-140);
  }

  .audience-card {
    padding: var(--space-96) var(--space-96) 0;
  }

  .audience-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-72);
  }

  /* Hide "Who it's for" illustration on desktop */
  .left-illustration {
    display: none;
  }

  /* Fix card bottom padding since no image below */
  .for-card {
    padding-bottom: var(--space-96);
  }

  /* ---- Contact ---- */
  .contact-section {
    padding-top: var(--space-140);
    padding-bottom: var(--space-140);
  }

  .contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-72) var(--space-96);
    gap: var(--space-96);
  }

  .contact-text {
    flex: 1;
  }

  .contact-actions {
    flex: 0 0 340px;
  }

  .contact-btn-number {
    font-size: 26px;
  }

  /* ---- Footer ---- */
  .organic-footer {
    margin-top: var(--space-140);
  }
}