/* ============================================
   ECOMMERCE MANAGEMENT — SHARED STYLESHEET v2
   Warm gold/amber growth-agency redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  /* Color tokens */
  --ink: #17151C;
  --ink-soft: #26232C;
  --gold: #C99A3E;
  --gold-dark: #A67D2E;
  --gold-light: #F4E4C1;
  --grey: #6B6B76;
  --bg-cream: #FAF8F5;
  --bg-band: #F4EDE0;
  --border: #EAE3D6;
  --white: #FFFFFF;
  --success: #2FA36B;

  /* Hero pastel gradient stops */
  --hero-a: #FDF4E3;
  --hero-b: #FBEAF1;
  --hero-c: #E9F1F8;

  /* Type tokens */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout tokens */
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.text-gold { color: var(--gold); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #000; box-shadow: 0 8px 20px rgba(23,21,28,0.25); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 20px rgba(201,154,62,0.32); }

.btn-whatsapp {
  background: var(--success);
  color: var(--white);
}
.btn-whatsapp:hover { background: #278a5a; box-shadow: 0 8px 20px rgba(47,163,107,0.28); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { box-shadow: 0 8px 20px rgba(23,21,28,0.1); }

.btn-block { width: 100%; }

/* ============ TOP BAR ============ */

.topbar {
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a:hover { color: var(--white); }

/* ============ NAVIGATION ============ */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.96rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold-dark); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============ EYEBROW PILL ============ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.center-pill { display: flex; justify-content: center; }

/* ============ HERO ============ */

.hero {
  background: linear-gradient(120deg, var(--hero-a) 0%, var(--hero-b) 50%, var(--hero-c) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 46ch;
  margin-bottom: 26px;
}
.hero-bullets { margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets .bullet-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating dashboard-style card cluster */
.hero-visual {
  position: relative;
  min-height: 380px;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(23,21,28,0.1);
  padding: 16px 18px;
}
.float-card .fc-label {
  font-size: 0.72rem;
  color: var(--grey);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.float-card .fc-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}
.float-card .fc-delta { color: var(--success); font-size: 0.78rem; font-weight: 600; margin-left: 6px; }

.fc-1 { top: 0; left: 10%; width: 210px; animation: float-a 6s ease-in-out infinite; }
.fc-2 { top: 130px; left: 0; width: 190px; animation: float-b 7s ease-in-out infinite; }
.fc-3 { top: 60px; right: 0; width: 220px; animation: float-a 6.5s ease-in-out infinite; }
.fc-4 { bottom: 0; left: 18%; width: 230px; animation: float-b 7.5s ease-in-out infinite; }

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

.fc-split-row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.fc-mini-bar { height: 5px; border-radius: 4px; background: var(--gold-light); margin-top: 8px; position: relative; overflow: hidden; }
.fc-mini-bar span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); border-radius: 4px; }

/* ============ MARKETPLACE MARQUEE ("Our Network") ============ */

.network-section { padding: 60px 0 70px; text-align: center; }
.network-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 14px 0 12px; }
.network-section p.sub { color: var(--grey); max-width: 60ch; margin: 0 auto 36px; }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.market-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 84px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  padding: 0 20px;
}

/* ============ SECTION HEADINGS ============ */

.section { padding: 76px 0; }
.section-alt { background: var(--bg-cream); }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--grey); font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ SERVICE CARDS ============ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 14px 32px rgba(23,21,28,0.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.service-card h3 .accent { color: var(--gold-dark); }
.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
}
.service-card a.card-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}
.service-card a.card-link:hover { background: #000; }

/* ============ STATS STRIP ============ */

.stats-strip {
  background: var(--bg-band);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}
.stat-label {
  font-size: 0.88rem;
  color: var(--grey);
  margin-top: 6px;
}

/* ============ PROCESS TIMELINE ============ */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--border);
}
.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--white);
  background: var(--gold);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-step h4 { font-size: 1rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.9rem; color: var(--grey); }

/* ============ WHY US ============ */

.why-band {
  background: var(--bg-band);
  border-radius: 24px;
  padding: 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.why-card .why-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card h4 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--grey); font-size: 0.9rem; }

/* ============ TESTIMONIAL (dark band) ============ */

.testimonial-section {
  background: var(--ink);
  color: var(--white);
  padding: 76px 0;
}
.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.testimonial-head .pill { background: transparent; border-color: rgba(255,255,255,0.2); color: var(--gold-light); }
.testimonial-head h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); max-width: 46ch; }
.testimonial-card {
  background: var(--ink-soft);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 680px;
}
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.testimonial-card .name {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-family: var(--font-mono);
}

/* ============ CTA BAND ============ */

.cta-band {
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink);
  color: #B8B4BF;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-logo { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; display: block; }
.footer-tagline { font-size: 0.9rem; max-width: 32ch; }
.footer-contact-box {
  border: 1px solid rgba(201,154,62,0.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-contact-item .fc-label { font-size: 0.75rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.footer-contact-item .fc-value { color: var(--white); font-weight: 500; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ WHATSAPP FLOAT ============ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--success);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(47,163,107,0.4);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============ PAGE HEADER (inner pages) ============ */

.page-header {
  background: linear-gradient(120deg, var(--hero-a) 0%, var(--hero-c) 100%);
  padding: 56px 0;
}
.page-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 10px; }
.page-header p { color: var(--grey); max-width: 60ch; }

/* ============ SERVICE DETAIL BLOCKS (services page) ============ */

.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-detail p.desc { color: var(--grey); margin-bottom: 16px; max-width: 70ch; }
.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.service-detail ul li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============ ABOUT PAGE ============ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.value-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-num {
  font-family: var(--font-mono);
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 24px; }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,154,62,0.18);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.78rem; color: var(--gold-light); font-family: var(--font-mono); }
.contact-method-value { font-size: 1rem; color: var(--white); font-weight: 500; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  transition: border-color 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-note {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 10px;
}

/* ============ BLOG PAGE ============ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { box-shadow: 0 14px 32px rgba(23,21,28,0.08); transform: translateY(-3px); }
.blog-card-cover {
  height: 150px;
  background: linear-gradient(135deg, var(--hero-a), var(--hero-b));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.blog-card-body { padding: 22px 22px 26px; }
.blog-card .blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 14px; }
.blog-card .blog-meta { font-size: 0.78rem; color: var(--grey); font-family: var(--font-mono); }
.blog-card .read-more { display: inline-block; margin-top: 12px; font-size: 0.86rem; font-weight: 600; color: var(--gold-dark); border-bottom: 1px solid transparent; }
.blog-card .read-more:hover { border-color: var(--gold-dark); }

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-band);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 56px;
}
.blog-featured .blog-tag { margin-bottom: 14px; }
.blog-featured h2 { font-size: 1.6rem; margin-bottom: 14px; }
.blog-featured p { color: var(--grey); margin-bottom: 20px; }
.blog-featured-visual {
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--hero-c));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; margin-top: 20px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-top: none; border-left: 2px solid var(--border); padding-top: 0; padding-left: 24px; }
  .timeline-step::before { top: 0; left: -14px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-band { padding: 24px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-contact-box { flex-direction: column; gap: 16px; }
  .section { padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-head { flex-direction: column; align-items: flex-start; }
}
