/* ============================================================
   QuikStartup — components.css
   All UI components — light theme
   ============================================================ */

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--brand);
  z-index: calc(var(--z-nav) + 10);
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Site Header / Nav ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: var(--z-nav);
  transition: border-color 0.3s var(--ease-base), box-shadow 0.3s var(--ease-base);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 72px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img { height: 56px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--track-snug);
}
.nav__logo-text .brand  { color: var(--brand); }
.nav__logo-text .dark   { color: var(--text-1); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color 0.15s, background 0.15s;
  position: relative;
  white-space: nowrap;
}
.nav__link:hover { color: var(--brand); background: var(--brand-light); }
.nav__link.is-active { color: var(--brand); }

/* CTA group */
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: var(--r-full);
  transition: transform 0.3s var(--ease-base), opacity 0.2s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide bottom-nav on desktop (screens wider than 900px) */
@media (min-width: 901px) {
  .bottom-nav {
    display: none !important;
  }
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: calc(var(--z-nav) - 1);
  height: calc(100vh - 72px);
  min-height: calc(100vh - 72px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(44,93,255,0.35); }

.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand-light); transform: translateY(-1px); }

.btn--surface { background: var(--surface-2); color: var(--text-1); border-color: var(--border); }
.btn--surface:hover { background: var(--surface-3); border-color: var(--border-2); }

.btn--ghost-dark { background: transparent; color: var(--text-2); border-color: var(--border-2); }
.btn--ghost-dark:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-light); }

.btn--white { background: #fff; color: var(--brand); border-color: #fff; }
.btn--white:hover { background: var(--brand-light); }

.btn--ghost-inv { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
.btn--ghost-inv:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }

.btn--sm  { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }
.btn--lg  { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); border-radius: var(--r-xl); }
.btn--full { width: 100%; }
.btn-magnetic { display: inline-block; }

/* ── Labels / Typography helpers ── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: var(--track-tight);
  line-height: var(--lead-snug);
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: var(--track-tight);
  line-height: var(--lead-snug);
}
.heading-2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: var(--track-snug);
  line-height: var(--lead-snug);
}
.body-lg { font-size: var(--text-lg); color: var(--text-3); line-height: var(--lead-loose); }
.body-sm { font-size: var(--text-sm); color: var(--text-3); line-height: var(--lead-loose); }

/* ── Hero — LIGHT ── */
.hero {
  background: var(--white);
  padding-top: calc(72px + var(--sp-20));
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__bg-accent {
  position: absolute;
  top: -120px; right: -120px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--brand);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-5xl), 7vw, var(--text-7xl));
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: var(--track-tight);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
}
.hero__title .accent { color: var(--brand); font-style: italic; }
.hero__desc {
  font-size: var(--text-xl);
  color: var(--text-3);
  line-height: var(--lead-loose);
  max-width: 56ch;
  margin-bottom: var(--sp-10);
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-10); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-6); }
.trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--text-2); font-weight: 500;
}
.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent-green); stroke-width: 2.5; fill: none; flex-shrink: 0;
}

/* ── Service Cards — equal height ── */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: box-shadow 0.25s var(--ease-base), border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-mid);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--brand-light);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 24px; height: 24px;
  stroke: currentColor; stroke-width: 1.75;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-3);
  line-height: var(--lead-snug);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: var(--lead-loose);
  flex: 1;
  margin-bottom: var(--sp-6);
}
.service-card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); font-weight: 600; color: var(--brand);
  margin-top: auto;
  transition: gap 0.15s;
}
.service-card:hover .service-card__link { gap: var(--sp-3); }
.service-card__btn { margin-top: auto; }

/* Services page specific card (svc-card) */
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  transition: box-shadow 0.25s var(--ease-base), border-color 0.25s, transform 0.25s;
  height: 100%;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-mid);
  transform: translateY(-2px);
}
.svc-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--sp-3); gap: var(--sp-4); }
.svc-card__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--text-1); line-height: var(--lead-snug); }
.svc-card__price { font-family: var(--font-mono); font-size: var(--text-base); font-weight: 500; color: var(--brand); white-space: nowrap; flex-shrink: 0; }
.svc-card__desc { font-size: var(--text-sm); color: var(--text-3); line-height: var(--lead-loose); flex: 1; margin-bottom: var(--sp-5); }
.svc-card__footer { margin-top: auto; }

/* ── Package Cards ── */
.package-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  transition: box-shadow 0.25s var(--ease-base), border-color 0.25s, transform 0.25s;
  position: relative;
  height: 100%;
}
.package-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-mid);
  transform: translateY(-4px);
}
.package-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.package-card--featured:hover { border-color: var(--navy); }

.pkg-badge {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--brand); background: var(--brand-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  display: inline-block; margin-bottom: var(--sp-5);
}
.package-card--featured .pkg-badge { color: var(--brand-light); background: rgba(44,93,255,0.25); }

.pkg-name { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-4); line-height: var(--lead-snug); }
.package-card--featured .pkg-name { color: #fff; }

.pkg-price { display: flex; align-items: baseline; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.pkg-amount { font-family: var(--font-mono); font-size: var(--text-4xl); font-weight: 500; color: var(--brand); }
.package-card--featured .pkg-amount { color: var(--brand-mid); }
.pkg-period { font-size: var(--text-sm); color: var(--text-3); }
.package-card--featured .pkg-period { color: rgba(255,255,255,0.5); }

.pkg-disclaimer { font-size: var(--text-xs); color: var(--text-3); margin-bottom: var(--sp-6); line-height: var(--lead-loose); }
.package-card--featured .pkg-disclaimer { color: rgba(255,255,255,0.4); }

.pkg-features { display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; margin-bottom: var(--sp-8); }
.pkg-feature { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--text-2); line-height: var(--lead-snug); }
.package-card--featured .pkg-feature { color: rgba(255,255,255,0.75); }
.pkg-check { width: 18px; height: 18px; stroke: var(--brand); stroke-width: 2.5; fill: none; flex-shrink: 0; margin-top: 1px; }
.package-card--featured .pkg-check { stroke: var(--brand-mid); }

/* ── Comparison Table ── */
.table-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-size: var(--text-sm);
}
.compare-table th {
  background: var(--surface-1);
  padding: var(--sp-4) var(--sp-5);
  font-weight: 700;
  color: var(--text-1);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.compare-table th.col-featured { background: var(--navy); color: #fff; }
.compare-table td {
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
.compare-table td.col-featured { background: rgba(11,20,38,0.04); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface-1); }
.compare-table tr:hover td.col-featured { background: rgba(11,20,38,0.07); }
.compare-section-row td { background: var(--surface-2); font-weight: 700; color: var(--text-1); font-size: var(--text-xs); letter-spacing: var(--track-wide); text-transform: uppercase; }
.compare-check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-light); }
.compare-check svg { width: 12px; height: 12px; stroke: var(--brand); stroke-width: 2.5; fill: none; }
.compare-dash { color: var(--border-2); font-size: var(--text-lg); }

/* ── Process Steps ── */
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.process-step:hover { box-shadow: var(--shadow-md); border-color: var(--brand-mid); transform: translateY(-2px); }
.process-step__num { font-family: var(--font-mono); font-size: var(--text-lg); font-weight: 500; color: var(--brand); margin-bottom: var(--sp-3); }
.process-step__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-2); }
.process-step__desc { font-size: var(--text-sm); color: var(--text-3); line-height: var(--lead-loose); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-4);
  padding-block: var(--sp-5);
  background: none; border: none;
  font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 600;
  color: var(--text-1); text-align: left; cursor: pointer;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--brand); }
.faq-item.is-open .faq-trigger { color: var(--brand); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.2s, border-color 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--text-3); stroke-width: 2.5; fill: none; transition: stroke 0.2s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--brand-light); border-color: var(--brand-mid); }
.faq-item.is-open .faq-icon svg { stroke: var(--brand); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-body__inner { padding: 0 0 var(--sp-5); font-size: var(--text-sm); color: var(--text-3); line-height: var(--lead-loose); }
.faq-body__inner a { color: var(--brand); font-weight: 600; }

/* ── Forms ── */
.form-stack { display: flex; flex-direction: column; gap: var(--sp-5); }

.form-field { position: relative; }
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-1);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder { color: transparent; }
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }

.form-label {
  position: absolute;
  left: var(--sp-4); top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-sm);
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.2s var(--ease-fast);
  background: var(--white);
  padding-inline: var(--sp-1);
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 0;
  transform: translateY(-50%);
  font-size: var(--text-xs);
  color: var(--brand);
  font-weight: 600;
}

.form-textarea { min-height: 120px; resize: vertical; }
.form-textarea + .form-label { top: var(--sp-4); transform: none; }
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  top: 0; transform: translateY(-50%);
  font-size: var(--text-xs); color: var(--brand); font-weight: 600;
}

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group > .form-label { position: static; transform: none; font-size: var(--text-sm); color: var(--text-2); font-weight: 600; padding: 0; background: none; }
.form-group > .form-label.form-label--static { top: auto; transform: none; }

.form-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-10) var(--sp-4) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-1);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A9E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right var(--sp-4) center / 16px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }

.checkbox-group { display: flex; align-items: flex-start; gap: var(--sp-3); }
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--brand); cursor: pointer;
}
.checkbox-group label { font-size: var(--text-sm); color: var(--text-2); line-height: var(--lead-normal); }
.checkbox-group label a { color: var(--brand); font-weight: 600; }

/* ── Callout / Notice ── */
.callout, .notice {
  background: var(--surface-1);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: var(--lead-loose);
}
.callout strong, .notice strong { color: var(--text-1); font-weight: 700; }

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-3);
}

/* ── Marquee ── */
.marquee-track {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-4);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: var(--sp-8);
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { font-size: var(--text-sm); font-weight: 600; color: var(--text-2); white-space: nowrap; }
.marquee-sep { color: var(--border-2); user-select: none; }

/* ── Footer ── */
.site-footer { background: var(--navy); padding-top: var(--sp-20); padding-bottom: var(--sp-8); }

.footer-brand__logo { height: 40px; width: auto; }
.footer-brand__logo-text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; line-height: 1; }
.footer-brand__logo-text .brand { color: var(--brand); }
.footer-brand__logo-text .light { color: #fff; }
.footer-brand__desc { font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: var(--lead-loose); margin-top: var(--sp-4); margin-bottom: var(--sp-5); }

.footer-contact-lines { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.footer-contact-line { display: flex; align-items: center; gap: var(--sp-3); }
.footer-contact-line svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.35); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-contact-line a { font-size: var(--text-sm); color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-contact-line a:hover { color: #fff; }

.footer-whatsapp {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: #25D366; color: #fff;
  font-size: var(--text-xs); font-weight: 700;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  transition: background 0.15s, transform 0.15s;
  margin-top: var(--sp-2);
}
.footer-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.footer-whatsapp svg { width: 14px; height: 14px; fill: #fff; }

.footer-col__title { font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--track-wider); text-transform: uppercase; color: var(--brand); margin-bottom: var(--sp-4); }
.footer-col__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col__link { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col__link:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--sp-16);
  padding-top: var(--sp-8);
}
.footer-bottom__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.3); line-height: var(--lead-loose); }
.footer-bottom__links { display: flex; gap: var(--sp-5); }
.footer-bottom__link { font-size: var(--text-xs); color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-bottom__link:hover { color: rgba(255,255,255,0.7); }

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: #1877F2;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  text-decoration: none;
  margin-top: var(--sp-3);
  transition: background 0.15s, transform 0.15s;
}
.footer-facebook:hover {
  background: #0d65d9;
  transform: translateY(-1px);
}
.footer-facebook svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* ── Cookie Bar ── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-4) var(--sp-8);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); flex-wrap: wrap;
  z-index: calc(var(--z-modal) - 1);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.cookie-bar.is-hidden { transform: translateY(100%); }
.cookie-bar__text { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: var(--lead-normal); }
.cookie-bar__text a { color: var(--brand-mid); font-weight: 600; }
.cookie-bar__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }

/* ── Digital Marketing section heading ── */
.section-category-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--track-snug);
}
.section-category-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: var(--lead-loose);
  margin-bottom: var(--sp-10);
  max-width: 56ch;
}

/* ── Services sticky sidebar ── */
.services-layout { display: grid; grid-template-columns: 200px 1fr; gap: var(--sp-12); align-items: start; }
.services-sidebar { position: sticky; top: 88px; }
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-sidebar { display: none; }
}
.sidebar-nav { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-5); }
.sidebar-nav__title { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: var(--track-wider); color: var(--text-3); margin-bottom: var(--sp-3); }
.sidebar-nav__link { display: flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-3); border-radius: var(--r-md); font-size: var(--text-sm); font-weight: 500; color: var(--text-3); transition: color 0.15s, background 0.15s; }
.sidebar-nav__link::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--border-2); flex-shrink: 0; transition: background 0.15s; }
.sidebar-nav__link:hover { color: var(--brand); background: var(--brand-light); }
.sidebar-nav__link:hover::before { background: var(--brand); }

/* ── Filter Pills ── */
.filter-pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.filter-pill {
  font-size: var(--text-xs); font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-pill:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.filter-pill.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }
