/* ======================================
   FixKaro — Design System
   Aesthetic: Modern Indian Service Brand
   Font: Syne (display) + DM Sans (body)
   ====================================== */

:root {
  --navy:        #0C1B3A;
  --navy-deep:   #060F22;
  --navy-light:  #1E3A6E;
  --orange:      #FF5A1F;
  --orange-lt:   #FF7A45;
  --orange-pale: #FFF4F0;
  --cream:       #FAFAF7;
  --white:       #FFFFFF;
  --text:        #1A2537;
  --muted:       #6B7A96;
  --border:      #E2E8F0;
  --success:     #10B981;
  --wa-green:    #25D366;
  --shadow-sm:   0 1px 8px rgba(12,27,58,.06);
  --shadow:      0 2px 20px rgba(12,27,58,.10);
  --shadow-md:   0 4px 32px rgba(12,27,58,.14);
  --shadow-lg:   0 8px 48px rgba(12,27,58,.18);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* sticky bar offset */
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ---- LAYOUT ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--cream); }
.section-dark  { background: var(--navy-deep); }
.text-center   { text-align: center; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mt-10  { margin-top: 10px; }
.w-full { width: 100%; }
.muted-text { color: var(--muted); font-size: .9rem; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,90,31,.18); color: #FF8A65; }
.section-h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.section-h2.white { color: var(--white); }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin-bottom: 40px; }
.text-accent { color: var(--orange); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(255,90,31,.35);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,90,31,.45); }
.btn-lg { font-size: 1.05rem; padding: 16px 36px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.30);
  white-space: nowrap;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-wa.btn-lg { font-size: 1.05rem; padding: 16px 36px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(12,27,58,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.logo-accent { color: var(--orange); }
.header-nav { display: flex; gap: 6px; margin-left: auto; }
.header-nav a {
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call-header {
  display: flex; align-items: center; gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-call-header:hover { background: var(--orange-lt); }
.btn-wa-header {
  display: flex; align-items: center;
  background: var(--wa-green);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background var(--transition);
}
.btn-wa-header:hover { background: #1ebe5d; }
.hamburger { display: none; color: var(--white); font-size: 1.4rem; padding: 8px; margin-left: auto; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.85);
  padding: 13px 24px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); }
.mobile-menu .mobile-call {
  background: var(--orange);
  color: var(--white);
  margin: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: none;
  font-weight: 700;
}

/* ---- STICKY BOTTOM BAR (mobile) ---- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  display: none;
  height: 58px;
}
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem;
  color: var(--white);
}
.sticky-call { background: var(--orange); }
.sticky-wa   { background: var(--wa-green); }

/* ---- HERO ---- */
.hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,90,31,.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(30,58,110,.5) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.01) 0px, rgba(255,255,255,.01) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,.18);
  color: #FF8A65;
  font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid rgba(255,90,31,.25);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 600px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills span {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
}
.trust-pills.compact span {
  background: rgba(255,90,31,.1);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,90,31,.2);
}

/* ---- STATS BAR ---- */
.stats-bar { background: var(--orange); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide: solid rgba(255,255,255,.2);
}
.stat {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.8); font-weight: 500; margin-top: 2px; }

/* ---- SERVICE GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.service-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: .95rem; font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.service-price { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.service-link { font-size: .8rem; color: var(--orange); font-weight: 600; margin-top: auto; }

/* ---- HOW IT WORKS ---- */
.steps-row {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 40px;
}
.step-card {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-arrow { font-size: 2rem; color: var(--orange); align-self: center; padding: 0 8px; flex-shrink: 0; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--orange); opacity: .7;
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ---- WHY GRID ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--orange); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .9rem; }

/* ---- BRANDS ---- */
.brand-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition);
}
.brand-chip:hover { border-color: var(--orange); }
.brand-strip.compact .brand-chip { font-size: .8rem; padding: 5px 12px; }

/* ---- AREAS GRID ---- */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.area-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; }
.reviewer strong { color: rgba(255,255,255,.85); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--orange); padding: 48px 0; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: .95rem; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--navy); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--navy-deep); }
.cta-band .btn-wa { background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.4); box-shadow: none; }
.cta-band .btn-wa:hover { background: rgba(255,255,255,.35); }

/* ---- PAGE HERO (template) ---- */
.page-hero {
  background: var(--navy-deep);
  padding: 40px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,90,31,.1) 0%, transparent 60%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--orange); }
.bc-sep { color: rgba(255,255,255,.3); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.page-hero-text { position: relative; z-index: 1; }
.page-hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.page-hero-text .hero-sub { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 24px; }
.page-hero-text .hero-ctas { margin-bottom: 20px; }
.page-hero-form { position: relative; z-index: 1; }

/* ---- MINI STATS ---- */
.mini-stats { background: var(--white); border-bottom: 1px solid var(--border); }
.mini-stats-row { display: flex; }
.mini-stat { flex: 1; padding: 16px; text-align: center; border-right: 1px solid var(--border); }
.mini-stat:last-child { border-right: none; }
.mini-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.4rem; color: var(--orange); }
.mini-stat span { font-size: .78rem; color: var(--muted); }

/* ---- TEMPLATE LAYOUT ---- */
.template-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.template-main { min-width: 0; }
.template-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 20px; }

/* ---- CONTENT BLOCKS ---- */
.content-block { margin-bottom: 48px; }
.content-block h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange-pale);
}
.content-block p { color: var(--text); font-size: .97rem; line-height: 1.75; margin-bottom: 12px; }

/* ---- PROBLEMS GRID ---- */
.problems-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.problem-chip {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition);
}
.problem-chip:hover { border-color: var(--orange); background: var(--orange-pale); }

/* ---- BENEFIT LIST ---- */
.benefit-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.benefit-list li {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: .93rem;
  line-height: 1.6;
}

/* ---- PRICING TABLE ---- */
.pricing-block { }
.price-table {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(odd) { background: var(--cream); }
.price-val { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--orange); }
.price-note { color: var(--muted); font-size: .82rem; font-style: italic; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.step {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 20px;
  border: 1.5px solid var(--border);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--orange); opacity: .6;
  flex-shrink: 0; line-height: 1;
  min-width: 42px;
}
.step strong { display: block; margin-bottom: 4px; font-size: .97rem; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--cream); }
.faq-item p { padding: 16px 20px; font-size: .9rem; color: var(--muted); line-height: 1.75; background: var(--cream); }

/* ---- CHIP GRID ---- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .84rem;
  font-weight: 500;
  transition: all var(--transition);
}
.chip:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-1px); }

/* ---- LEAD FORM ---- */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lead-form-header {
  background: var(--navy);
  padding: 24px 24px 20px;
}
.lead-form-badge {
  display: inline-block;
  background: rgba(255,90,31,.25);
  color: #FF8A65;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 10px;
}
.lead-form-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.lead-form-header p { color: rgba(255,255,255,.65); font-size: .84rem; }
.lead-form { padding: 20px 24px 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* ---- SIDEBAR CARDS ---- */
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-card h4 { font-size: 1rem; margin-bottom: 10px; }
.sidebar-card p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.trust-list { display: flex; flex-direction: column; gap: 8px; }
.trust-list li { font-size: .88rem; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.55); margin-top: 12px; margin-bottom: 16px; max-width: 260px; line-height: 1.6; }
.footer-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.footer-badges span { font-size: .8rem; color: rgba(255,255,255,.6); }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info p { font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-contact-info a { color: rgba(255,255,255,.8); }
.footer-contact-info a:hover { color: var(--orange); }
.footer-col h4 { font-family: 'Syne', sans-serif; color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col li a:hover { color: var(--orange); }
.footer-areas {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.footer-areas h4 { font-family: 'Syne', sans-serif; color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
.area-links { display: flex; flex-wrap: wrap; gap: 8px; }
.area-links a { font-size: .78rem; color: rgba(255,255,255,.45); padding: 4px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 50px; transition: all var(--transition); }
.area-links a:hover { color: var(--orange); border-color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal a { color: rgba(255,255,255,.45); font-size: .8rem; }
.footer-legal a:hover { color: var(--orange); }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 1rem; margin-bottom: 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-channel { display: flex; align-items: center; gap: 16px; background: var(--cream); border-radius: var(--radius); padding: 16px 20px; border: 1.5px solid var(--border); }
.contact-channel-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-channel h4 { font-size: .9rem; margin-bottom: 2px; }
.contact-channel a, .contact-channel p { font-size: .9rem; color: var(--muted); }
.contact-channel a:hover { color: var(--orange); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-form { display: block; max-width: 480px; width: 100%; margin: 0 auto; }
  .template-layout { grid-template-columns: 1fr; }
  .template-sidebar { position: static; }
  .header-nav { display: none; }
  .template-sidebar .lead-form-card { display: none; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4), .stat:nth-child(5) { display: none; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-areas { display: none; }
  .header-ctas .btn-wa-header { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .btn-call-header span:last-child { display: none; }
  .btn-call-header .btn-icon { margin: 0; }
}

@media (max-width: 600px) {
  .hamburger { display: block; }
  .header-ctas { gap: 8px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .section { padding: 48px 0; }
  .hero { padding: 56px 0 64px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat:nth-child(5) { display: none; }
  .mini-stats-row { flex-wrap: wrap; }
  .mini-stat { min-width: 50%; }
  .sticky-bar { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp .55s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .4s; }
.hero-content > *:nth-child(5) { animation-delay: .5s; }

/* ---- UTILITY ---- */
.success-msg { background: #D1FAE5; border: 1px solid #6EE7B7; color: #065F46; padding: 14px 20px; border-radius: var(--radius-sm); font-size: .9rem; }
.error-msg   { background: #FEE2E2; border: 1px solid #FCA5A5; color: #991B1B; padding: 14px 20px; border-radius: var(--radius-sm); font-size: .9rem; }
