/* =========================================================
   VISIBLE ONLINE, Rebuilt design system
   Brand: purple #7c3aed + deep purple #1a0d2e + black
   Fonts: Plus Jakarta Sans (everything, with italic-bold for accents)
   ========================================================= */
:root {
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-muted: #8c8c8c;
  --line: #e6e6e6;
  --line-strong: #d0d0d0;
  --accent: #7c3aed;
  --accent-soft: #f5f0ff;
  --accent-deep: #6d28d9;
  --accent-darker: #5b21b6;
  --brand-purple: #1a0d2e;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.10);
  --shadow-pop: 0 1px 2px rgba(0,0,0,.06), 0 20px 48px -16px rgba(0,0,0,.22);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
.serif { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-style: italic; font-weight: 700; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  background: rgba(250,250,250,0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo svg { height: 26px; width: auto; fill: var(--ink); transition: fill 0.2s ease; }
.logo:hover svg { fill: var(--accent); }
.nav-links { display: flex; gap: 2px; align-items: center; font-size: 14.5px; color: var(--ink-soft); }
.nav-links > a, .nav-links .has-menu > span {
  padding: 9px 14px; border-radius: 8px; transition: all 0.15s ease; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px; font-weight: 500;
}
.nav-links a:hover, .nav-links .has-menu:hover > span { background: var(--bg-soft); color: var(--ink); }
.nav-links a.active { color: var(--accent); background: var(--accent-soft); }
.nav-links .has-menu { position: relative; }
.nav-links .has-menu .caret { font-size: 13px; opacity: 0.6; transition: transform 0.2s; }
.nav-links .has-menu:hover .caret { transform: rotate(180deg); }
.nav-links .submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 12px; padding: 8px; min-width: 260px;
  box-shadow: var(--shadow-pop);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
}
.nav-links .has-menu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(4px); }
.nav-links .submenu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-soft);
}
.nav-links .submenu a:hover { background: var(--bg-soft); color: var(--accent); }
.nav-links .submenu a small { font-size: 12px; color: var(--ink-muted); font-weight: 400; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: white;
  padding: 11px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; transition: all 0.15s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--ink); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: all 0.2s ease; cursor: pointer; border: none;
  font-family: inherit; text-decoration: none;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: var(--bg-elev); border-color: var(--ink); }
.btn .ti { font-size: 17px; }

/* ============ SECTIONS / HEADINGS ============ */
section.block { padding: 96px 0; }
section.block.tight { padding: 60px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; margin-right: 0; text-align: left; }
.section-head.split { max-width: 100%; display: flex; justify-content: space-between; align-items: flex-end; text-align: left; gap: 24px; margin-bottom: 56px; }
.kicker {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 700;
  margin-bottom: 14px; display: inline-block;
}
h1, h2, h3, h4 { color: var(--ink); }
h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 22px; font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 46px); letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 16px; font-weight: 600; }
h3 { font-size: 22px; margin: 0 0 10px; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 16px; margin: 0 0 10px; font-weight: 600; }
h1 .serif, h2 .serif, h3 .serif { color: var(--accent); font-weight: 400; }
.section-sub { font-size: 17px; color: var(--ink-soft); margin: 0; max-width: 580px; }
.section-head:not(.left):not(.split) .section-sub { margin: 0 auto; }

/* ============ HERO ============ */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--accent-darker);
  background: var(--accent-soft); padding: 6px 12px;
  border-radius: 999px; font-weight: 600; margin-bottom: 24px;
}
.eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } }
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin: 0 0 36px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-chip {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 14px; background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 999px;
}

/* City landing page hero */
.city-hero { padding: 80px 0 32px; position: relative; overflow: hidden; }
.city-hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.city-hero > .container { position: relative; z-index: 1; }
.city-meta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); background: var(--bg-elev); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.city-meta .ti { color: var(--accent); font-size: 14px; }
.city-services-strip { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 32px; }
.city-services-strip .chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink); background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px; font-weight: 500;
}
.hero-stats { display: grid; gap: 12px; }
.stat-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.25s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.stat-card .num { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat-card .num .unit { font-size: 24px; color: var(--accent); margin-left: 2px; }
.stat-card .label { font-size: 13px; color: var(--ink-soft); max-width: 170px; text-align: right; line-height: 1.35; }
.stat-card.featured { background: var(--accent); color: white; border-color: var(--accent); }
.stat-card.featured .num { color: white; }
.stat-card.featured .num .unit { color: white; }
.stat-card.featured .label { color: rgba(255,255,255,.85); }

/* ============ TRUST STRIP ============ */
/* ============ TRUST MARQUEE ============ */
.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.trust-label-wrap {
  flex-shrink: 0;
  padding: 0 24px 0 max(24px, calc((100vw - 1180px) / 2));
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  background: var(--bg-soft);
}
.trust-label::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  margin-left: 24px;
  vertical-align: middle;
}
.trust-marquee {
  flex: 1;
  min-width: 0; /* allows flex child to shrink below content width */
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-left: 36px;
  width: max-content; /* allow track to grow beyond container */
  animation: trust-scroll 40s linear infinite;
  will-change: transform;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-tag .ti { font-size: 18px; color: var(--accent); }

@media (max-width: 700px) {
  .trust {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    align-items: stretch;
  }
  .trust-label-wrap {
    padding: 0 24px;
    text-align: center;
    font-size: 11.5px;
  }
  .trust-label::after { display: none; }
  .trust-marquee {
    width: 100%;
    flex: none;
  }
  .trust-track {
    animation-duration: 28s;
    gap: 24px;
    padding-left: 24px;
  }
  .trust-tag { font-size: 13.5px; }
  .trust-tag .ti { font-size: 16px; }
}

/* Reduced motion: slow the animation way down but don't stop it,
   and never wrap to stacked layout */
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation-duration: 120s; }
}

/* ============ PROCESS / VALUES ============ */
.process-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.process-card, .value-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.process-card:hover, .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent); }
.process-card:hover .process-icon, .value-card:hover .value-icon { background: var(--accent); color: white; }
.process-icon, .value-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px; transition: all 0.25s ease;
}
.process-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 700;
  font-size: 32px; color: var(--ink-muted); opacity: 0.5;
}
.process-card p, .value-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ============ SERVICES (dark) ============ */
.services { background: var(--brand-purple); color: white; }
.services h2, .services h3 { color: white; }
.services .section-sub { color: rgba(255,255,255,0.8); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.25s ease; text-decoration: none; color: inherit; display: block;
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: white; transform: translateY(-2px); }
.service-card .service-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.service-icon {
  width: 44px; height: 44px; background: white; color: var(--ink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.service-arrow { color: rgba(255,255,255,0.4); transition: all 0.25s ease; font-size: 22px; }
.service-card:hover .service-arrow { color: white; transform: translate(4px, -4px); }
.service-card p { margin: 0 0 18px; color: rgba(255,255,255,0.7); font-size: 15px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; }
.service-features span { font-size: 12.5px; padding: 5px 10px; background: rgba(255,255,255,0.07); border-radius: 999px; color: rgba(255,255,255,0.8); }

/* ============ PACKAGES ============ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.pkg-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; transition: all 0.25s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pkg-card.featured {
  background: var(--accent); color: white; border-color: var(--accent);
  transform: scale(1.02); box-shadow: var(--shadow-pop);
}
.pkg-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pkg-card.featured .pkg-name { color: white; }
.pkg-card.featured .pkg-tag { color: rgba(255,255,255,0.8); }
.pkg-card.featured .pkg-feat { color: rgba(255,255,255,0.95); }
.pkg-card.featured .pkg-feat .ti { color: white; }
.pkg-card.featured .pkg-price { color: white; }
.pkg-card.featured .btn-primary { background: white; color: var(--accent); }
.pkg-card.featured .btn-primary:hover { background: var(--ink); color: white; }
.pkg-card.featured .pkg-badge { background: var(--ink); color: white; }
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
}
.pkg-name { font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; text-transform: uppercase; }
.pkg-price { margin: 14px 0 4px; font-size: 48px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
.pkg-price .from { font-size: 18px; color: var(--ink-muted); font-weight: 400; }
.pkg-card.featured .pkg-price .from { color: rgba(255,255,255,0.5); }
.pkg-tag { font-size: 14px; color: var(--ink-muted); margin-bottom: 28px; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.pkg-feat .ti { font-size: 17px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pkg-card .btn { width: 100%; justify-content: center; }

/* ============ CASE STUDIES ============ */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0;
  transition: all 0.25s ease; cursor: pointer;
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.case-image { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-image img { transform: scale(1.04); }
.case-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.case-tag {
  display: inline-block; font-size: 11px; padding: 4px 10px;
  background: var(--accent-soft); color: var(--accent-darker);
  border-radius: 999px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  align-self: flex-start;
}
.case-card h3 { font-size: 22px; margin: 0 0 14px; line-height: 1.25; }
.case-card p { margin: 0 0 24px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; flex: 1; }
.case-metrics { display: flex; gap: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.case-metric .num { font-size: 30px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; color: var(--accent); }
.case-metric .lbl { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

/* ============ CASES CAROUSEL (homepage) ============ */
.cases-carousel { position: relative; }
.cases-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cases-track .case-card { scroll-snap-align: start; }
.cases-dots { display: none; }

@media (max-width: 1100px) {
  .cases-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cases-track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 22px 8px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .cases-track::-webkit-scrollbar { display: none; }
  .cases-track .case-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
  }
  .cases-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .cases-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--line-strong);
    transition: background 0.2s, transform 0.2s;
  }
  .cases-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }
}

/* ============ REVIEWS CAROUSEL (homepage) ============ */
.reviews-carousel { position: relative; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.review-card .stars { font-size: 15px; margin-bottom: 14px; }
.review-quote {
  font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 22px;
  color: var(--ink);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-author .name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.review-author .role {
  font-size: 12.5px;
  color: var(--ink-muted);
}
.reviews-dots { display: none; }

@media (max-width: 1100px) {
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .reviews-track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 4px 22px 8px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
  }
  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .reviews-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--line-strong);
    transition: background 0.2s, transform 0.2s;
  }
  .reviews-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--accent); font-size: 16px; }
.testi-quote { font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 700; font-size: 20px; line-height: 1.4; margin: 0 0 20px; color: var(--ink); flex: 1; }
.testi-author { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-darker); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.avatar-lg { width: 56px; height: 56px; font-size: 18px; }

/* Featured single quote */
.testi-featured {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 56px 48px;
  position: relative;
}
.testi-featured .stars { justify-content: center; font-size: 20px; margin-bottom: 22px; }
.testi-featured-quote {
  font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.3; margin: 0 0 32px;
  color: var(--ink); font-style: normal;
}
.testi-featured-quote em { color: var(--accent); font-style: italic; }
.testi-featured-author { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.testi-featured-author .name { font-weight: 600; font-size: 16px; color: var(--ink); }
.testi-featured-author .role { font-size: 13.5px; color: var(--ink-muted); }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink); color: white;
  border-radius: var(--radius-lg);
  padding: 72px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute; width: 280px; height: 280px;
  border-radius: 50%; filter: blur(80px);
}
.final-cta::before { top: -120px; left: -80px; background: var(--accent); opacity: 0.35; }
.final-cta::after { bottom: -120px; right: -80px; background: var(--brand-purple); opacity: 0.38; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: white; margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 480px; margin: 0 auto 32px; }
.final-cta .btn-primary { background: var(--accent); color: white; }
.final-cta .btn-primary:hover { background: white; color: var(--ink); }
.final-cta .btn-secondary { border-color: rgba(255,255,255,0.3); color: white; }
.final-cta .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ============ FOOTER ============ */
footer { padding: 80px 0 32px; margin-top: 80px; background: var(--brand-purple); color: rgba(255, 255, 255, 0.85); }
.foot-newsletter {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg); padding: 40px;
  margin-bottom: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.foot-newsletter h3 { font-size: 24px; margin: 0 0 6px; color: white; }
.foot-newsletter p { margin: 0; color: rgba(255, 255, 255, 0.65); font-size: 15px; }
.foot-newsletter form { display: flex; gap: 8px; }
.foot-newsletter button { justify-content: center; }
.foot-newsletter input { padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05); color: white; font-family: inherit; font-size: 14.5px; width: 100%; }
.foot-newsletter input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-grid h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: white; font-weight: 700; margin: 0 0 16px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: rgba(255, 255, 255, 0.55); font-size: 14.5px; transition: color 0.15s; }
.foot-grid a:hover { color: #c4b5fd; }
.foot-tag { color: rgba(255, 255, 255, 0.55); font-size: 14.5px; margin: 12px 0 20px; max-width: 320px; line-height: 1.5; }
.foot-logo svg { height: 28px; fill: white; }
.foot-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: rgba(255, 255, 255, 0.65); }
.foot-contact a { color: rgba(255, 255, 255, 0.85); display: inline-flex; align-items: center; gap: 6px; }
.foot-contact a:hover { color: white; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.foot-legal { display: flex; gap: 18px; align-items: center; }
.foot-legal a { color: rgba(255, 255, 255, 0.65); margin-left: 16px; }
.foot-legal a:hover { color: white; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { color: rgba(255, 255, 255, 0.65); width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; }
.foot-social a:hover { background: var(--accent); color: white; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ INNER PAGE HEADER ============ */
.page-header { padding: 80px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; top: -120px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; }
.page-header .page-lede { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto 32px; line-height: 1.5; }
.breadcrumb { font-size: 13px; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .ti { font-size: 14px; }

/* ============ FEATURE GRID ============ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: all 0.25s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--accent); }
.feature-card:hover .feature-icon { background: var(--accent); color: white; }
.feature-icon {
  width: 44px; height: 44px; background: var(--accent-soft); color: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px; transition: all 0.25s ease;
}
.feature-card h3 { font-size: 18px; margin: 0 0 8px; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ============ SPLITS ============ */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-2 h2 { margin-bottom: 18px; }
.split-2 p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; margin: 0 0 16px; }
.split-image { background: var(--bg-soft); border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ FORMS ============ */
.contact-form {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 640px; margin: 0 auto;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px;
  transition: all 0.2s ease; font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-full { grid-column: 1 / -1; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-pill {
  position: relative; cursor: pointer; user-select: none;
}
.checkbox-pill input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-pill span {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line-strong);
  font-size: 13.5px; color: var(--ink-soft); transition: all 0.15s ease;
}
.checkbox-pill input:checked + span {
  background: var(--accent-soft); border-color: var(--accent); color: var(--accent-darker); font-weight: 600;
}

/* ============ STATS ROW ============ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stats-row .stat { text-align: center; padding: 28px 16px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); }
.stats-row .num { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--accent); }
.stats-row .lbl { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-soft); margin-bottom: 14px; border: 1px solid var(--line); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin: 0 0 4px; font-size: 17px; }
.team-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

/* ============ STEPS ============ */
.steps { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: flex-start;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.25s ease;
}
.step:hover { border-color: var(--accent); transform: translateX(4px); }
.step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 700; font-size: 48px; color: var(--accent); line-height: 1; }
.step-body h3 { margin: 0 0 6px; font-size: 19px; }
.step-body p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all 0.2s ease; }
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  font-size: 16.5px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 24px; color: var(--accent);
  font-weight: 400; transition: transform 0.2s ease; line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }

/* ============ BLOG ============ */
.blog-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.blog-filter {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: transparent; font-size: 14px; color: var(--ink-soft);
  cursor: pointer; transition: all 0.15s ease; font-family: inherit;
}
.blog-filter:hover { border-color: var(--ink); color: var(--ink); }
.blog-filter.active { background: var(--ink); border-color: var(--ink); color: white; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%); overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; font-size: 11px; padding: 3px 9px; background: var(--accent-soft); color: var(--accent-darker); border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; align-self: flex-start; margin-bottom: 12px; }
.blog-card h3 { font-size: 18px; line-height: 1.3; margin: 0 0 10px; }
.blog-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.blog-date { font-size: 12.5px; color: var(--ink-muted); }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.blog-page-arrow {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.blog-page-arrow:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.blog-page-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.blog-page-nums {
  display: flex;
  gap: 4px;
  margin: 0 8px;
}
.blog-page-num {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-page-num:hover {
  border-color: var(--ink);
}
.blog-page-num.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
@media (max-width: 600px) {
  .blog-pagination { gap: 6px; }
  .blog-page-arrow { padding: 8px 14px; font-size: 13px; }
  .blog-page-arrow span { display: none; }
  .blog-page-num { width: 36px; height: 36px; font-size: 13px; }
}

/* ============ BLOG POST ============ */
.post-header { padding: 72px 0 40px; text-align: center; }
.post-header .breadcrumb { justify-content: center; }
.post-header h1 { max-width: 800px; margin: 0 auto 18px; }
.post-meta { color: var(--ink-muted); font-size: 14px; display: flex; gap: 16px; justify-content: center; align-items: center; margin-top: 16px; }
.post-meta .dot { width: 4px; height: 4px; background: var(--ink-muted); border-radius: 50%; }
.post-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--ink); }
.post-body p { margin: 0 0 22px; }
.post-body h2 { font-size: 28px; margin: 40px 0 14px; }
.post-body h3 { font-size: 22px; margin: 32px 0 12px; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 22px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { font-weight: 600; color: var(--ink); }

/* ============ CASE STUDY DETAIL ============ */
.cs-hero { padding: 60px 0 40px; }
.cs-hero h1 { font-size: clamp(32px, 4.5vw, 48px); max-width: 900px; margin-bottom: 28px; }
.cs-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cs-meta h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin: 0 0 8px; font-weight: 700; }
.cs-meta p { margin: 0; font-size: 14.5px; color: var(--ink); }
.cs-meta .big { font-size: 38px; font-weight: 600; color: var(--accent); letter-spacing: -0.025em; line-height: 1; }
.cs-meta .big + small { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.cs-body { max-width: 800px; margin: 0 auto; padding: 60px 0; font-size: 17px; line-height: 1.7; color: var(--ink); }
.cs-body h2 { font-size: 28px; margin: 32px 0 14px; }
.cs-body p { margin: 0 0 20px; color: var(--ink-soft); }
.cs-body ul { padding-left: 22px; color: var(--ink-soft); }

/* ============ CONTACT LAYOUT ============ */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.contact-info {
  background: var(--accent); color: white; border-radius: var(--radius-lg);
  padding: 40px; position: sticky; top: 100px;
}
.contact-info h3 { color: white; }
.contact-info .info-block { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.18); display: flex; gap: 14px; align-items: flex-start; }
.contact-info .info-block:first-of-type { border-top: none; }
.contact-info .info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.15); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info .info-label { font-size: 12px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info .info-value { font-size: 15px; margin-top: 2px; }
.contact-info .info-value a { color: white; }
.contact-info .info-value a:hover { color: white; }
.contact-info .info-social { display: flex; gap: 10px; margin-top: 8px; }
.contact-info .info-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.2s; }
.contact-info .info-social a:hover { background: white; color: var(--accent); border-color: white; }
.contact-form-large { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; max-width: 100%; }

/* ============ CUSTOM CTA CARD ============ */
.custom-cta {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.custom-cta-body .kicker { display: block; margin-bottom: 8px; }
.custom-cta-body h2 { font-size: 28px; margin: 0 0 10px; }
.custom-cta-body p { color: var(--ink-soft); margin: 0; font-size: 16px; }
.custom-cta-btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 700px) {
  .custom-cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 20px;
    text-align: center;
  }
  .custom-cta-body h2 { font-size: 24px; }
  .custom-cta-btn { justify-self: center; }
}

/* ============ PACKAGE PRICE HERO ============ */
.pkg-price-hero {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.pkg-price-amount {
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.035em;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}
.pkg-price-period {
  font-size: clamp(14px, 3.5vw, 18px);
  color: var(--ink-soft);
  white-space: nowrap;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pkg-price-hero { gap: 8px; }
}

/* ============ COOKIE CONSENT ============ */
/* Force [hidden] attribute to always hide, even with display: flex/grid below */
[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  animation: cookie-slide-up 0.35s ease-out;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  padding: 22px 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text strong { display: block; margin-bottom: 6px; font-size: 15px; }
.cookie-banner-text p { color: rgba(255,255,255,0.78); font-size: 13.5px; margin: 0; line-height: 1.5; }
.cookie-banner-text a { color: white; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn-small { padding: 10px 16px; font-size: 13px; }
.cookie-banner .btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-banner .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}
@media (max-width: 700px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { padding: 18px 18px; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* Cookie modal */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 250;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.cookie-modal-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-pop);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--bg-soft);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
}
.cookie-modal-close:hover { background: var(--line); }
.cookie-modal-card h3 { font-size: 22px; margin-bottom: 8px; }
.cookie-modal-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.cookie-option strong { font-size: 14.5px; display: block; margin-bottom: 4px; }
.cookie-option p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.cookie-toggle {
  position: relative;
  width: 42px; height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle span {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle span::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle input:checked + span { background: var(--accent); }
.cookie-toggle input:checked + span::before { transform: translateX(18px); }
.cookie-toggle.disabled span { background: var(--accent-soft); cursor: not-allowed; opacity: 0.7; }
.cookie-toggle.disabled input:checked + span { background: var(--accent); opacity: 0.5; }
.cookie-modal-actions {
  display: flex; gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cookie-modal-card { padding: 24px 20px; }
  .cookie-modal-actions .btn { flex: 1; justify-content: center; }
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; z-index: 90;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); color: white; box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 4px 8px rgba(0,0,0,0.15); }
.whatsapp-fab .ti { line-height: 1; }
@media (max-width: 900px) {
  .whatsapp-fab { width: 52px; height: 52px; font-size: 26px; bottom: 18px; right: 18px; }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-elev);
  padding: 88px 24px 32px; z-index: 100;
  display: none; flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 18px 4px; font-size: 22px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.15s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  background: var(--accent); color: white;
  border-radius: 999px; padding: 18px 24px;
  border-bottom: none; font-size: 18px;
  justify-content: center; gap: 10px;
}
.mobile-menu .mobile-cta:hover, .mobile-menu .mobile-cta:active { color: white; background: var(--accent-deep); }
.mobile-menu .close { position: absolute; top: 22px; right: 22px; background: var(--bg-soft); border: none; padding: 10px; border-radius: 50%; cursor: pointer; color: var(--ink); }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 56px 0 40px; }
  .hero-grid, .split-2, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .process-grid, .services-grid, .pkg-grid, .cases-grid, .testi-grid,
  .feature-grid, .team-grid, .values-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-row, .cs-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .step-num { font-size: 36px; }
  section.block { padding: 64px 0; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-4px); }
  .final-cta { padding: 48px 28px; }

  /* Footer: fully stacked single column */
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-newsletter { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .foot-newsletter form { flex-direction: column; gap: 10px; }
  .foot-newsletter input { width: 100%; }
  .foot-newsletter button { width: 100%; justify-content: center; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .contact-form, .contact-form-large { padding: 28px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .testi-featured { padding: 40px 24px; }
  .hero-chips { gap: 6px; }

  /* Page headers (about, services, etc): smaller H1 and tighter padding so more fits in first viewport */
  .page-header { padding: 40px 0 32px; }
  .page-header h1 { font-size: 30px; line-height: 1.15; margin-bottom: 14px; }
  .page-header .page-lede { font-size: 16px; margin-bottom: 24px; }
  .post-header { padding: 40px 0 24px; }
  .post-header h1 { font-size: 28px; line-height: 1.2; }

  /* Body content on inner pages needs horizontal padding on mobile */
  .post-body, .cs-body { padding-left: 24px; padding-right: 24px; }
  .post-body img, .cs-body img { max-width: 100%; height: auto; }
  .post-header h1, .cs-hero h1 { padding-left: 4px; padding-right: 4px; }
}

/* Center pricing card content on the dedicated packages page only */
.page-packages .pkg-card { text-align: center; }
.page-packages .pkg-card .pkg-feat { text-align: left; }  /* keep checklist items left-aligned */
.page-packages .pkg-card .btn { width: 100%; justify-content: center; }

/* Homepage FAQ accordion */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary i.ti-plus { transform: rotate(45deg); }
.faq-item summary i.ti-plus { transition: transform 0.25s ease; }
.faq-item[open] { background: white !important; box-shadow: var(--shadow-card); }

/* Comparison table responsive */
@media (max-width: 720px) {
  .pkg-compare { font-size: 13px; }
  .pkg-compare th, .pkg-compare td { padding: 10px 12px !important; }
}

/* Hero phone link hover */
.hero-phone a:hover { color: var(--accent) !important; }

/* Founder section — preserves photo (no crop) and stacks on mobile */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.founder-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-card);
  background: var(--accent-soft);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (max-width: 720px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .founder-photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Newsletter inline section — responsive */
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.newsletter-grid form input[type="email"] {
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: white;
  width: 100%;
}
.newsletter-grid form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .newsletter-grid form {
    width: 100%;
  }
  .newsletter-grid h3 {
    font-size: 22px !important;
  }
}

/* No-Ads section (from zichtbaaronline.be) */
.no-ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.no-ads-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s ease;
}
.no-ads-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.no-ads-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.no-ads-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.no-ads-card h4 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
}
.no-ads-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .no-ads-grid { grid-template-columns: 1fr; }
}

.foot-newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.foot-newsletter input:focus { outline: none; border-color: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2); }
.newsletter-grid form button { justify-content: center; }
