/* ==========================================================================
   Searcora — Premium Local SEO Agency Homepage
   Stylesheet
   --------------------------------------------------------------------------
   Structure:
   1.  Design tokens (CSS variables) — edit colours/spacing here
   2.  Base & resets
   3.  Layout helpers (container, section, grid)
   4.  Typography
   5.  Buttons & badges
   6.  Navigation
   7.  Hero
   8.  Trust strip
   9.  Cards (services, industries, results, founder)
   10. Process timeline
   11. Philosophy
   12. Pricing
   13. CTA banner
   14. FAQ accordion
   15. Contact
   16. Footer
   17. Animations & utilities
   18. Responsive breakpoints
   ========================================================================== */

/* 1. DESIGN TOKENS ---------------------------------------------------------- */
:root {
  /* Brand colours — edit here to re-theme the whole site */
  --navy:        #0A0F2C;   /* deep navy */
  --navy-800:    #0d1336;
  --navy-700:    #111a45;
  --blue:        #4361EE;   /* electric blue */
  --blue-600:    #3a55d9;
  --blue-glow:   rgba(67, 97, 238, 0.45);
  --white:       #FFFFFF;
  --grey:        #F5F7FA;   /* light grey */
  --muted:       #AAB3C5;   /* muted text */
  --border:      rgba(255, 255, 255, 0.08);
  --border-dark: rgba(10, 15, 44, 0.08);

  /* Surfaces */
  --bg:          var(--navy);
  --card:        rgba(255, 255, 255, 0.04);
  --card-hover:  rgba(255, 255, 255, 0.07);

  /* Gradients */
  --grad-blue:   linear-gradient(135deg, #4361EE 0%, #6b82ff 100%);
  --grad-hero:   radial-gradient(1200px 600px at 75% -10%, rgba(67,97,238,0.25), transparent 60%),
                 radial-gradient(900px 500px at 0% 20%, rgba(67,97,238,0.10), transparent 55%);

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & radius */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --maxw:      1200px;
  --gutter:    clamp(20px, 5vw, 40px);

  /* Shadows */
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, 0.55);
  --shadow-blue: 0 20px 60px -18px var(--blue-glow);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. BASE & RESETS ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* offset for sticky nav on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* 3. LAYOUT ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}

.section--grey {
  background: var(--grey);
  color: var(--navy);
}
.section--grey .section__eyebrow { color: var(--blue-600); }
.section--grey .muted { color: #5b657a; }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section__head--center { margin-inline: auto; text-align: center; }

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ea0ff;
  margin-bottom: 14px;
}

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

/* 4. TYPOGRAPHY ------------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }

.muted { color: var(--muted); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); }
.section--grey .lead { color: #5b657a; }

.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 5. BUTTONS & BADGES ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { box-shadow: 0 24px 70px -16px var(--blue-glow); }

.btn--ghost { background: rgba(255,255,255,0.05); color: #fff; border-color: var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.btn--whatsapp { background: #25D366; color: #06381a; }
.btn--whatsapp:hover { box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.5); }

.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }

.btn--block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }

/* 6. NAVIGATION ------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 44, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 15, 44, 0.92);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-blue);
  display: grid; place-items: center;
  font-size: 1rem; color: #fff;
  box-shadow: var(--shadow-blue);
}
.brand span { color: #fff; }
.brand__logo { height: 36px; width: auto; display: block; }
.brand__logo--footer { height: 40px; }
@media (max-width: 640px) { .brand__logo { height: 30px; } }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  position: relative; transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: #fff; transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.icon-btn:hover { background: rgba(37,211,102,0.15); transform: translateY(-2px); }
.icon-btn--wa:hover { color: #25D366; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--gutter) 30px;
  transform: translateY(-130%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
  display: none;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 14px 4px; font-size: 1.05rem;
  border-bottom: 1px solid var(--border); color: #e7ebf5;
}
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu .mobile-menu__ctas { display: grid; gap: 12px; }

/* 7. HERO ------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--grad-hero);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .gradient-text { display: inline; }
.hero__sub { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--muted); max-width: 600px; margin-bottom: 24px; }
.hero__founder {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  margin-bottom: 28px; font-size: 0.92rem; color: var(--muted);
}
.hero__founder strong { color: #fff; }
.hero__founder .ico { flex: none; color: var(--blue); margin-top: 2px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero__badge {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 0.82rem; color: #d4dbea; font-weight: 500;
}
.hero__badge svg { color: var(--blue); flex: none; }

/* Hero visual — mock SEO dashboard */
.hero__visual { position: relative; }
.mock {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.mock__bar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-block; }
.mock__bar i:first-child { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__bar span { margin-left: auto; font-size: 0.72rem; color: var(--muted); }

.mock__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mock__metric { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.mock__metric .k { font-size: 0.68rem; color: var(--muted); }
.mock__metric .v { font-size: 1.25rem; font-weight: 700; margin-top: 4px; }
.mock__metric .v small { font-size: 0.7rem; color: #28c840; font-weight: 600; margin-left: 4px; }

.mock__chart { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.mock__chart-head { display: flex; justify-content: space-between; font-size: 0.74rem; color: var(--muted); margin-bottom: 10px; }
.mock__chart-head b { color: #fff; font-size: 0.82rem; }
.mock__bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.mock__bars span {
  flex: 1; border-radius: 5px 5px 0 0;
  background: var(--grad-blue);
  opacity: 0.85;
  animation: growBar 1.1s var(--ease) both;
}
@keyframes growBar { from { height: 0 !important; opacity: 0; } }

.mock__map {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
.mock__pin {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--grad-blue); display: grid; place-items: center; color: #fff;
}
.mock__map .t { font-size: 0.82rem; font-weight: 600; }
.mock__map .s { font-size: 0.72rem; color: var(--muted); }
.mock__map .rank { margin-left: auto; font-weight: 700; color: #28c840; font-size: 0.95rem; }

.hero__float {
  position: absolute; padding: 12px 16px; border-radius: 14px;
  background: rgba(13,19,54,0.9); border: 1px solid var(--border);
  box-shadow: var(--shadow); font-size: 0.78rem; display: flex; align-items: center; gap: 10px;
  animation: floaty 5s ease-in-out infinite;
}
.hero__float .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--grad-blue); display: grid; place-items: center; color: #fff; }
.hero__float--a { top: -16px; right: 24px; }
.hero__float--b { bottom: -18px; left: -10px; animation-delay: 1.5s; }
.hero__float b { display: block; color: #fff; }
.hero__float small { color: var(--muted); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* 8. TRUST STRIP ------------------------------------------------------------ */
.trust {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding-block: 26px;
}
.trust__track {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  align-items: center; justify-content: center;
}
.trust__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.9rem; color: #cdd5e6; font-weight: 500;
}
.trust__item svg { color: var(--blue); flex: none; }

/* 9. CARDS ------------------------------------------------------------------ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: rgba(67,97,238,0.4);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(67,97,238,0.15); border: 1px solid rgba(67,97,238,0.25);
  display: grid; place-items: center; color: #8ea0ff;
  margin-bottom: 18px; transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover .card__icon { background: var(--grad-blue); color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* Grey-section card variant */
.section--grey .card {
  background: #fff;
  border-color: var(--border-dark);
  box-shadow: 0 10px 30px -18px rgba(10,15,44,0.25);
}
.section--grey .card:hover {
  border-color: rgba(67,97,238,0.4);
  box-shadow: 0 24px 50px -22px rgba(10,15,44,0.35);
}
.section--grey .card h3 { color: var(--navy); }
.section--grey .card p { color: #5b657a; }

/* Founder card */
.founder {
  display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.founder__body p { color: var(--muted); margin-bottom: 16px; }
.section--grey .founder__body p { color: #5b657a; }
.founder__list { display: grid; gap: 12px; margin-top: 22px; }
.founder__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; }
.founder__list svg { color: var(--blue); flex: none; margin-top: 3px; }

.founder__card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.founder__avatar {
  width: 84px; height: 84px; border-radius: 20px;
  background: var(--grad-blue);
  display: grid; place-items: center;
  font-size: 1.9rem; font-weight: 800; color: #fff;
  margin-bottom: 18px; box-shadow: var(--shadow-blue);
}
.founder__card h3 { color: #fff; margin-bottom: 4px; }
.founder__card .role { color: #8ea0ff; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; }
.founder__card .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; }
.founder__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.founder__tags span {
  font-size: 0.78rem; padding: 7px 12px; border-radius: 999px;
  background: rgba(67,97,238,0.15); border: 1px solid rgba(67,97,238,0.3); color: #c3cdf5;
}

/* 10. PROCESS TIMELINE ------------------------------------------------------ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  position: relative; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(67,97,238,0.4); background: var(--card-hover); }
.step__num {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 18px; box-shadow: var(--shadow-blue);
}
.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.step__connector {
  position: absolute; top: 49px; right: -12px; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  z-index: 1;
}

/* 11. PHILOSOPHY ------------------------------------------------------------ */
.philo__note {
  margin-top: 28px;
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px 22px; border-radius: var(--radius);
  background: rgba(67,97,238,0.08); border: 1px solid rgba(67,97,238,0.25);
  color: #c3cdf5; font-size: 0.95rem;
}
.philo__note svg { color: var(--blue); flex: none; margin-top: 3px; }
.philo .card h3 { color: #fff; }

/* 12. PRICING --------------------------------------------------------------- */
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.is-featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(67,97,238,0.14), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-blue);
}
.price-card__tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: var(--grad-blue); color: #fff; margin-bottom: 16px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-card__for { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; min-height: 40px; }
.price-card__price { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.price-card__price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.price-card__note-price { font-size: 0.78rem; color: var(--muted); margin-bottom: 22px; }
.price-card ul { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: #d4dbea; }
.price-card li svg { color: var(--blue); flex: none; margin-top: 3px; }
.pricing__note {
  text-align: center; max-width: 680px; margin: 32px auto 0;
  color: var(--muted); font-size: 0.92rem;
}

/* 13. CTA BANNER ------------------------------------------------------------ */
.cta-banner {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(67,97,238,0.5), transparent 60%),
    var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { max-width: 760px; margin: 0 auto 16px; }
.cta-banner p { max-width: 620px; margin: 0 auto 28px; color: var(--muted); }
.cta-banner__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* 14. FAQ ------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item.is-open { border-color: rgba(67,97,238,0.4); box-shadow: 0 16px 40px -22px rgba(10,15,44,0.3); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-size: 1.02rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q .chev {
  flex: none; transition: transform 0.3s var(--ease); color: var(--blue);
}
.faq__item.is-open .chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq__a-inner { padding: 0 24px 22px; color: #5b657a; font-size: 0.95rem; }

/* 15. CONTACT --------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact__cards { display: grid; gap: 16px; margin-top: 26px; }
.contact__card {
  display: flex; gap: 14px; align-items: center;
  padding: 18px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.contact__card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-blue); display: grid; place-items: center; color: #fff; flex: none; }
.contact__card .k { font-size: 0.78rem; color: var(--muted); }
.contact__card .v { font-weight: 600; word-break: break-word; }
.contact__card a.v:hover { color: #8ea0ff; }

.form { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; color: #cdd5e6; margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: #fff; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6e7890; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: rgba(67,97,238,0.08);
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--navy-800); }
.field textarea { resize: vertical; min-height: 110px; }
.form__btns { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 4px; }
.form__status { margin-top: 14px; font-size: 0.9rem; color: #28c840; display: none; }
.form__status.is-visible { display: block; }

/* 16. FOOTER ---------------------------------------------------------------- */
.footer {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 44px;
}
.footer__about p { color: var(--muted); font-size: 0.92rem; margin: 16px 0 20px; max-width: 340px; }
.footer__social { display: flex; gap: 10px; }
.footer h4 { font-size: 0.95rem; margin-bottom: 18px; color: #fff; }
.footer__col a, .footer__col li { color: var(--muted); font-size: 0.9rem; display: block; padding: 5px 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.footer__trust { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: #cdd5e6; }
.footer__trust svg { color: var(--blue); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--muted); font-size: 0.85rem; }
.footer__legal a:hover { color: #fff; }
.footer__copy { color: var(--muted); font-size: 0.85rem; width: 100%; text-align: center; margin-top: 18px; }

/* 17. ANIMATIONS & UTILITIES ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Floating sticky WhatsApp button (mobile-friendly) */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #06381a;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6);
  transition: transform 0.25s var(--ease);
  animation: floaty 4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }

/* 18. RESPONSIVE ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .step__connector { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__links, .nav__actions .btn, .nav__actions .icon-btn--wa { display: none; }
  .nav__toggle { display: flex; }
  .mobile-menu { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; }
  .founder { grid-template-columns: 1fr; }
  .founder__card { max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .hero__badges { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .form__btns { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .mock__metrics { grid-template-columns: repeat(3, 1fr); }
  .hero__ctas .btn { flex: 1; }
}
