@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --bg-cream: #FDF9F3;
  --primary-navy: #2D2B6B;
  --accent-coral: #FF6B6B;
  --accent-mint: #A8E6CF;
  --accent-amber: #FFD166;
  --accent-lavender: #C8B6FF;
  --text-heading: #2D2B6B;
  --text-body: #5A5A7A;
  --card-bg: #FFFFFF;
  --card-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
  --btn-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
  --radius-card: 28px;
  --radius-btn: 999px;
  --radius-input: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Fredoka One', cursive; color: var(--text-heading); line-height: 1.2; margin-bottom: 0.5em; }
h1 { font-size: clamp(2.2rem, 8vw, 4rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.3rem, 4vw, 1.8rem); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* ===== BLOBS ===== */
.blob {
  position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.25;
  animation: float 20s infinite ease-in-out; z-index: -1; pointer-events: none;
}
.blob-1 { width: 420px; height: 420px; background: var(--accent-coral); top: 5%; left: -8%; }
.blob-2 { width: 360px; height: 360px; background: var(--accent-mint); top: 40%; right: -6%; animation-delay: -7s; }
.blob-3 { width: 320px; height: 320px; background: var(--accent-lavender); bottom: 8%; left: 25%; animation-delay: -14s; }
.blob-4 { width: 280px; height: 280px; background: var(--accent-amber); top: 60%; left: 60%; animation-delay: -10s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

/* ===== CLAY UTILITIES ===== */
.clay-card {
  background: var(--card-bg); border-radius: var(--radius-card);
  box-shadow: var(--card-shadow); padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

.clay-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-btn); padding: 16px 36px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.25s ease; box-shadow: var(--btn-shadow);
}
.clay-btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
.clay-btn:active { transform: scale(0.97); box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.clay-btn i, .clay-btn svg { color: inherit; stroke: currentColor; vertical-align: middle; }
.clay-btn-coral { background: var(--accent-coral); color: #ffffff !important; }
.clay-btn-navy { background: var(--primary-navy); color: #fff; }
.clay-btn-mint { background: var(--accent-mint); color: var(--primary-navy); }
.clay-btn-amber { background: var(--accent-amber); color: var(--primary-navy); }
.clay-btn-green { background: #25D366; color: #fff; }
.clay-btn-outline { background: transparent; color: var(--primary-navy); border: 2px solid var(--primary-navy); }

.cta-pulse { animation: pulse-glow 2.5s infinite ease-in-out; }
@keyframes pulse-glow {
  0%,100% { box-shadow: var(--btn-shadow), 0 0 0 0 rgba(255,107,107,0.4); }
  50% { box-shadow: var(--btn-shadow), 0 0 24px 8px rgba(255,107,107,0.12); }
}

.clay-pill {
  display: inline-block; border-radius: var(--radius-btn);
  padding: 5px 16px; font-size: 0.78rem; font-weight: 700;
}
.pill-coral { background: #ffe0e0; color: #c0392b; }
.pill-mint { background: #d4f5e9; color: #1a7a4c; }
.pill-amber { background: #fff0c2; color: #b8860b; }
.pill-lavender { background: #e8e0ff; color: #5b3ea6; }
.pill-navy { background: #e0dfef; color: var(--primary-navy); }

.clay-icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.clay-input {
  width: 100%; padding: 14px 20px; border-radius: var(--radius-input);
  border: 2px solid #e8e6f0; font-family: 'Nunito', sans-serif; font-size: 1rem;
  background: #fff; color: var(--text-heading); transition: border-color 0.3s;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.04);
}
.clay-input:focus { outline: none; border-color: var(--accent-lavender); }

/* ===== ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; } .stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; } .stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; } .stagger-6 { transition-delay: 0.6s; }

@keyframes wiggle { 0%,100%{transform:rotate(0)} 25%{transform:rotate(2deg)} 75%{transform:rotate(-2deg)} }
@keyframes bounceIn { 0%{opacity:0;transform:scale(0.8) translateY(20px)} 60%{transform:scale(1.05) translateY(-4px)} 100%{opacity:1;transform:scale(1) translateY(0)} }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,249,243,0.95); backdrop-filter: blur(16px);
  padding: 16px 0; transition: all 0.3s ease;
  border-bottom: 1px solid rgba(45,43,107,0.05);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 12px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-weight: 700; color: var(--text-body); transition: color 0.3s; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-coral); }

.hamburger { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--primary-navy); z-index: 2001; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 80px; position: relative;
}
.hero h1 { margin-bottom: 20px; font-size: 3.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero p { max-width: 600px; margin: 0 auto 40px; font-size: 1.15rem; color: var(--text-body); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ONBOARDING ===== */
.onboarding { padding: 80px 0 100px; }
.onboarding-title { text-align: center; margin-bottom: 48px; }
.onboarding-title h2 { margin-bottom: 8px; }
.progress-bar { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.progress-dot {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; transition: all 0.3s;
  background: #e8e6f0; color: #999;
}
.progress-dot.active { background: var(--primary-navy); color: #fff; box-shadow: 0 4px 16px rgba(45,43,107,0.3); }
.progress-dot.done { background: var(--accent-mint); color: var(--primary-navy); }
.progress-line { width: 40px; height: 3px; background: #e0ddf5; border-radius: 4px; }
.progress-line.active { background: var(--primary-navy); }

.step-container { display: none; animation: bounceIn 0.5s ease; }
.step-container.active { display: block; }

.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.business-card {
  background: var(--card-bg); border-radius: var(--radius-card); box-shadow: var(--card-shadow);
  padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.3s; border: 3px solid transparent;
}
.business-card .card-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.business-card h4 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text-heading); }
.business-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.6); }
.business-card.selected { border-color: var(--accent-coral); box-shadow: 0 8px 32px rgba(255,107,107,0.2), inset 0 1px 0 rgba(255,255,255,0.6); }

.goal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 600px; margin: 0 auto; }
.goal-card { cursor: pointer; text-align: center; border: 3px solid transparent; }
.goal-card .card-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.goal-card.selected { border-color: var(--primary-navy); }

.recommended-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
.rec-card { border-left: 4px solid var(--accent-coral); }
.rec-card h4 { margin-bottom: 8px; font-family: 'Nunito', sans-serif; }
.rec-card p { font-size: 0.9rem; }

.step-nav { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.step-title { text-align: center; margin-bottom: 24px; }
.step-title h3 { font-size: 1.5rem; }

.final-cta-card { max-width: 560px; margin: 0 auto; text-align: center; padding: 48px 36px; }
.final-cta-card h3 { font-size: 1.8rem; margin-bottom: 16px; }
.final-cta-card p { margin-bottom: 32px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header p { max-width: 500px; margin: 8px auto 0; }

.filter-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 24px; border-radius: var(--radius-btn); border: 2px solid #e0ddf5;
  background: #fff; cursor: pointer; font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s; font-family: 'Nunito', sans-serif; color: var(--text-body);
}
.filter-tab:hover { border-color: var(--primary-navy); color: var(--primary-navy); }
.filter-tab.active { background: var(--primary-navy); color: #fff; border-color: var(--primary-navy); box-shadow: var(--btn-shadow); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { display: flex; flex-direction: column; }
.service-card .card-icon-wrap { margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.service-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.service-card .learn-more { font-weight: 700; color: var(--accent-coral); font-size: 0.9rem; }
.service-card .learn-more:hover { text-decoration: underline; }
.service-card.hidden { display: none; }

/* ===== FREE TOOLS ===== */
.free-tools { padding: 100px 0; }
.free-tools-header { text-align: center; margin-bottom: 48px; }
.free-tools-header p { margin: 8px auto 0; max-width: 400px; }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-card); box-shadow: var(--card-shadow); padding: 32px;
  transition: all 0.3s;
}
.tool-card:hover { animation: wiggle 0.5s ease; transform: translateY(-4px); }
.tool-card .card-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.tool-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.tool-card p { font-size: 0.9rem; margin-bottom: 20px; }

/* ===== ABOUT / TRUST ===== */
.about { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-mission h2 { margin-bottom: 20px; }
.about-mission p { font-size: 1.1rem; line-height: 1.8; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-card { padding: 28px; }
.trust-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 8px; color: var(--text-heading); }
.trust-card p { font-size: 0.88rem; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-header { text-align: center; margin-bottom: 48px; }
.contact-header p { max-width: 520px; margin: 8px auto 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pricing-list { list-style: none; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid #eee; font-weight: 600;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .clay-btn { align-self: flex-start; }
.form-trust { margin-top: 12px; font-size: 0.85rem; color: var(--text-body); }
.whatsapp-cta { margin-top: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-navy); color: rgba(255,255,255,0.7);
  padding: 60px 0 30px; border-radius: 40px 40px 0 0;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-brand-name { color: #fff; font-size: 1.8rem; }
.footer-brand .nav-brand-sub { color: rgba(255,255,255,0.4); }
.footer-brand .tagline { margin-top: 12px; font-size: 0.95rem; font-style: italic; }
.footer-links h4, .footer-social h4 { color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.social-icons { display: flex; gap: 12px; }

.nav-brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name { font-size: 1.6rem; letter-spacing: -0.5px; }
.nav-brand-sub { font-size: 0.65rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }

.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--primary-navy); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-coral); }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--primary-navy); }

/* ===== BUTTONS (CLAY) ===== */
.clay-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.clay-btn:active { transform: scale(0.96); }

.clay-btn-coral {
  background: var(--accent-coral); color: var(--white);
  box-shadow: 
    0 8px 24px rgba(255,107,107,0.3),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -4px 8px rgba(0,0,0,0.1);
}
.clay-btn-coral:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,107,0.4); }

.clay-btn-mint {
  background: var(--accent-mint); color: var(--primary-navy);
  box-shadow: 
    0 8px 24px rgba(78,205,196,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -4px 8px rgba(0,0,0,0.05);
}
.clay-btn-mint:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(78,205,196,0.35); }

.clay-btn-outline {
  background: rgba(45,43,107,0.05); color: var(--primary-navy);
  border: 2px solid rgba(45,43,107,0.1);
}
.clay-btn-outline:hover { background: rgba(45,43,107,0.08); border-color: var(--primary-navy); }

.clay-btn-green { background: #25D366; color: white; }

/* ===== CARDS (CLAY) ===== */
.clay-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-clay);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255,255,255,0.5);
}
.clay-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(45,43,107,0.12); }

/* ===== HERO ===== */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 80px 0; /* Standard padding for content balance */
    position: relative;
}
.hero h1 { margin-bottom: 24px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero p { font-size: clamp(1.05rem, 3vw, 1.35rem); color: var(--text-muted); max-width: 750px; margin: 0 auto 40px; font-weight: 500; }
.hero-ctas { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }

.hero-badge {
  display: inline-block; padding: 10px 24px; border-radius: 999px;
  background: rgba(255,107,107,0.08); color: var(--accent-coral);
  font-weight: 800; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 24px;
}

/* ===== GRIDS ===== */
.services-grid, .tools-grid, .roadmap-grid, .trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%;
}
.service-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.service-card h3 { font-size: 1.5rem; margin: 20px 0 12px; }

.card-icon-circle {
  width: 70px; height: 70px; border-radius: 50%; background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-navy); font-size: 1.6rem; margin: 0 auto 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
}
.clay-icon-badge {
    width: 56px; height: 56px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary-navy);
    margin-bottom: 20px;
}

/* ===== ONBOARDING & ROADMAP ===== */
.progress-bar { display: flex; align-items: center; justify-content: center; gap: 15px; }
.progress-dot {
  width: 36px; height: 36px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
  color: var(--text-muted); border: 3px solid rgba(45,43,107,0.1); transition: 0.3s;
}
.progress-dot.active { border-color: var(--accent-coral); color: var(--accent-coral); transform: scale(1.1); }
.progress-dot.done { background: var(--accent-mint); border-color: var(--accent-mint); color: var(--primary-navy); }
.progress-line { height: 4px; width: 60px; background: rgba(45,43,107,0.1); border-radius: 99px; }
.progress-line.active { background: var(--accent-mint); }

.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.business-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  text-align: center; cursor: pointer; transition: 0.3s; border: 2px solid transparent;
  box-shadow: var(--shadow-clay);
}
.business-card:hover { transform: translateY(-5px); }
.business-card.selected { border-color: var(--accent-coral); background: rgba(255,107,107,0.02); }
.business-card .card-icon-circle { margin: 0 auto 15px; }
.business-card h4 { font-size: 1rem; }

.goal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 800px; margin: 40px auto; }
.goal-card { cursor: pointer; text-align: center; }
.goal-card.selected { border: 2px solid var(--accent-coral); }

.step-container { display: none; }
.step-container.active { display: block; animation: fadeIn 0.6s ease; }
.step-nav { display: flex; justify-content: center; margin-top: 40px; }

/* ===== INPUTS ===== */
.clay-input {
  width: 100%; padding: 16px 24px; border-radius: 16px; border: 2px solid rgba(45,43,107,0.05);
  background: var(--bg-cream); font-family: 'Inter', sans-serif; font-size: 1rem;
  font-weight: 500; transition: 0.3s; margin-bottom: 15px; color: var(--primary-navy);
}
.clay-input:focus { outline: none; border-color: var(--accent-lavender); background: var(--white); box-shadow: 0 0 0 4px rgba(168,165,255,0.1); }
.input-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; margin-left: 4px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ===== MODAL / MINI TOOLS ===== */
.calc-result {
  background: var(--bg-cream); padding: 25px; border-radius: var(--radius-md);
  margin-top: 20px; border: 2px dashed var(--accent-mint); line-height: 1.8;
}
.mini-guide {
  max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem; color: var(--text-muted);
  padding: 0 20px; border-left: 3px solid var(--accent-mint);
}
.mini-guide.open { max-height: 150px; margin-top: 12px; padding-bottom: 12px; }
.small-link {
    background: none; border: none; color: var(--accent-coral); font-size: 0.8rem;
    font-weight: 700; cursor: pointer; padding: 0; margin-left: 12px; text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer { 
    background: var(--primary-navy); 
    color: var(--white); 
    padding: 100px 0 50px; 
    margin-top: 150px; 
    border-radius: 60px 60px 0 0; /* Modern curved footer top */
}
.footer h4 { color: var(--accent-amber); margin-bottom: 30px; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }

.footer-brand .tagline { margin-top: 20px; font-style: italic; opacity: 0.6; font-size: 0.9rem; }
.footer-brand .nav-brand-name { color: white; }
.footer-brand .nav-brand-sub { color: var(--accent-mint); opacity: 1; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; font-size: 0.95rem; font-weight: 500; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-social p { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-social i { color: var(--accent-coral); width: 20px; }

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.05); 
    margin-top: 80px; 
    padding-top: 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.8);
}

.footer-social-icons {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 12px 20px;
    justify-content: center;
    margin: 25px auto;
}
.footer-social-icons a {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
}
/* Ensure text starts at the same position for icon-less links (like WhatsApp) */
.footer-social-icons a:not(:has(i)) {
    padding-left: 32px; /* 20px icon + 12px gap */
}
.footer-social-icons a:hover {
    transform: translateX(5px);
    filter: brightness(1.2);
}
.footer-social-icons i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; gap: 30px; margin-top: 40px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    width: 44px; height: 44px; border-radius: 50%; background: var(--primary-navy);
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; flex-shrink: 0; box-shadow: 0 8px 16px rgba(45,43,107,0.15);
}

.checklist-item {
  display: flex; align-items: center; gap: 15px; padding: 18px;
  background: var(--bg-cream); border-radius: 16px; margin-bottom: 10px;
  cursor: pointer; transition: 0.2s; border: 1px solid rgba(45,43,107,0.03);
}
.checklist-item:hover { transform: translateX(5px); background: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.checklist-item.done { opacity: 0.5; text-decoration: line-through; filter: grayscale(1); }

/* ===== RESPONSIVE OVERHAUL ===== */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 1024px) {
    .container { max-width: 100%; padding: 0 40px; }
    .services-grid, .tools-grid, .roadmap-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section-padding { padding: 80px 0; }
    
    .nav-links { display: none; }
    .hamburger { display: block; }
    
    .hero { min-height: 100vh; min-height: 100dvh; padding: 100px 0 60px; display: flex; align-items: center; }
    .hero h1 { font-size: 2.6rem; }
    .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-ctas .clay-btn { width: 100%; }
    
    .services-grid, .tools-grid, .roadmap-grid, .business-grid, .trust-grid { grid-template-columns: 1fr; }
    .business-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .goal-grid { grid-template-columns: 1fr; }
    
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    
    .footer { margin-top: 60px; padding: 60px 0 40px; border-radius: 40px 40px 0 0; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-social p { justify-content: center; }
    .footer-social-icons { margin: 25px auto; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
    
    .clay-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 2rem; line-height: 1.1; letter-spacing: -1px; }
    .business-grid { grid-template-columns: 1fr; }
    .progress-line { width: 20px; }
    .footer-social-icons { 
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
        margin: 25px auto;
        gap: 15px 20px;
    }
    .footer-social-icons a { 
        justify-content: flex-start;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-cream);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    list-style: none;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    visibility: hidden;
    padding: 20px;
}
.mobile-menu.open { 
    transform: translateY(0); 
    visibility: visible;
}
.mobile-menu li { width: 100%; text-align: center; }
.mobile-menu a {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary-navy);
    display: block;
    padding: 10px;
    transition: transform 0.3s;
}
.mobile-menu a:active { transform: scale(0.9); }

/* ===== INTERACTIVE DEMO STYLES ===== */
.demo-steps { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; }
.demo-steps::after { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: #eee; z-index: 1; }
.step-item { position: relative; z-index: 2; text-align: center; width: 80px; }
.step-icon { 
    width: 40px; height: 40px; background: #fff; border: 2px solid #eee; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 10px; transition: all 0.3s;
}
.step-item.active .step-icon { border-color: var(--accent-coral); color: var(--accent-coral); box-shadow: 0 0 15px rgba(255,107,107,0.3); }
.step-label { font-size: 0.75rem; font-weight: 700; color: #999; }
.step-item.active .step-label { color: var(--primary-navy); }

.mock-phone {
    max-width: 300px; margin: 40px auto; background: #000; border: 12px solid #1a1a1a; 
    border-radius: 40px; height: 500px; position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.phone-screen { background: #fff; height: 100%; padding: 20px; overflow-y: auto; color: #333; position: relative; }
.phone-status { height: 20px; margin-bottom: 15px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #000; }

.pulse-ring {
    position: relative; width: 60px; height: 60px; background: var(--accent-coral); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; margin: 20px auto;
}
.pulse-ring::before {
    content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: var(--accent-coral); animation: pulse-ring 2s infinite; opacity: 0.5;
}
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.ai-typing { overflow: hidden; border-right: .15em solid var(--accent-coral); white-space: normal; margin: 0 auto; letter-spacing: .05em; animation: typing 3.5s steps(40, end); }
@keyframes typing { from { max-height: 0 } to { max-height: 100px } }

.demo-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: #eee; cursor: pointer; }
.demo-dot.active { background: var(--accent-coral); }
