/* ============================================================
   SERVICES.CSS — Page-specific styles for services
   ============================================================ */

html { scroll-behavior: smooth; }

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

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
  font-family: var(--font-body);
}

.section-head {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 18px;
}

.section-sub {
  font-size: 1.0625rem; color: var(--text-2);
  line-height: 1.75; max-width: 560px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--r); transition: all 0.2s var(--ease);
  white-space: nowrap; cursor: pointer; position: relative; overflow: hidden;
}

.btn-primary { background: var(--orange); color: #fff; border: 2px solid var(--orange); }

.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,89,45,0.28); }

.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border-dk); }

.btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* Reveal animations */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }

.reveal.in-view { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }

.reveal-d2 { transition-delay: 0.2s; }

.reveal-d3 { transition-delay: 0.3s; }

.reveal-d4 { transition-delay: 0.4s; }

.reveal-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */

.announce-bar {
  background: var(--text); color: rgba(255,255,255,0.85);
  text-align: center; font-size: 0.8125rem; font-weight: 500;
  padding: 10px 16px; position: relative; z-index: 1001;
}

.announce-bar a { color: var(--orange); font-weight: 700; margin-left: 6px; text-decoration: underline; text-underline-offset: 2px; }

.announce-bar__close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); font-size: 1rem; cursor: pointer; transition: color 0.2s; background: none; border: none; line-height: 1; }

.announce-bar__close:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */

.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.nav.is-elevated { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav__inner { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; height: 100%; }

.nav__logo { display: flex; align-items: center; gap: 10px; margin-right: 36px; flex-shrink: 0; }

.nav__logo img { height: 36px; width: auto; transition: transform 0.3s var(--ease-spring); }

.nav__logo:hover img { transform: rotate(-4deg) scale(1.06); }

.nav__logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.nav__logo-tagline { font-size: 0.575rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-top: 2px; }

.nav__links { display: flex; align-items: stretch; gap: 0; flex: 1; height: 100%; }

.nav__link { display: inline-flex; align-items: center; gap: 5px; padding: 0 13px; height: 100%; font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--text-2); position: relative; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.18s, border-color 0.18s; }

.nav__link .chev { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 0.2s var(--ease); opacity: 0.5; }

.nav__item:hover > .nav__link .chev { transform: rotate(180deg); }

.nav__dropdown { position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); box-shadow: 0 16px 48px rgba(0,0,0,0.09); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease); transform: translateY(-6px); z-index: 999; }

.nav__item:hover > .nav__dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }

.nav__dd-inner { max-width: var(--max-w); margin: 0 auto; padding: 32px 40px 36px; display: grid; }

.nav__dd-intro { padding-right: 40px; border-right: 1px solid var(--border); }

.nav__dd-intro-title { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }

.nav__dd-intro-text { font-size: 0.8125rem; color: var(--text-3); line-height: 1.6; margin-bottom: 20px; }

.nav__dd-intro-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: var(--orange); transition: gap 0.2s; }

.nav__dd-col { padding: 0 0 0 36px; }

.nav__dd-col + .nav__dd-col { border-left: 1px solid var(--border); }

.nav__dd-col-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

.nav__dd-link { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 8px; opacity: 0; transform: translateY(6px); transition: background 0.15s, opacity 0.25s var(--ease), transform 0.25s var(--ease); }

.nav__item:hover .nav__dd-items .nav__dd-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.04s; }

.nav__item:hover .nav__dd-items .nav__dd-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }

.nav__item:hover .nav__dd-items .nav__dd-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.12s; }

.nav__item:hover .nav__dd-items .nav__dd-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.16s; }

.nav__dd-link .dd-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: background 0.2s, color 0.2s; }

.nav__dd-link:hover .dd-icon { background: var(--orange) !important; color: #fff !important; }

.nav__dd-link .dd-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }

.nav__dd-link .dd-hint { font-size: 0.75rem; color: var(--text-3); }

.nav__dd-intro { opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }

.nav__item:hover .nav__dd-intro { opacity: 1; transform: none; }

.nav__dd-callout { margin-top: 20px; padding: 14px 16px; background: var(--bg-soft); border-radius: 10px; border: 1px solid var(--border); }

.nav__dd-callout-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }

.nav__dd-callout-text { font-size: 0.8125rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.nav__dd-callout-link { font-size: 0.8125rem; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }

.nav__dd-callout-link:hover { gap: 9px; }

.nav__dd-divider { height: 1px; background: var(--border); margin: 6px 0; }

.nav__phone { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; font-size: 0.8125rem; font-weight: 600; color: var(--text-2); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.2s, color 0.2s, background 0.2s; }

.nav__phone i { font-size: 0.7rem; color: var(--orange); }

.nav__cta { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; background: var(--text); color: #fff; font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; border-radius: var(--r); transition: background 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap; }

.nav__cta:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(241,89,45,0.28); }

.nav__cta i { font-size: 0.7rem; transition: transform 0.2s var(--ease); }

.nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: var(--r); margin-left: 8px; transition: background 0.15s; }

.nav__hamburger:hover { background: var(--bg-soft); }

.nav__hamburger span { display: block; width: 100%; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s, width 0.2s; }

.nav__mobile { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--border); padding: 24px 28px 48px; display: none; flex-direction: column; overflow-y: auto; z-index: 999; }

.nav__mobile-group-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); padding: 0 4px; margin-bottom: 6px; }

.nav__mobile a { display: flex; align-items: center; gap: 12px; padding: 11px 4px; font-size: 0.9375rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.2s; }

.nav__mobile a i { color: var(--orange); font-size: 0.875rem; width: 16px; text-align: center; }

.m-cta { margin-top: 20px; background: var(--text) !important; color: #fff !important; justify-content: center; border-radius: var(--r); padding: 15px 4px !important; font-family: var(--font-display); font-weight: 700 !important; border-bottom: none !important; }

.m-cta:hover { background: var(--orange) !important; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */

.page-hero {
  padding: 96px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 480px; height: 100%;
  background: radial-gradient(ellipse at top right, var(--orange-lt) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Hero right panel — service cards ── */

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}

.page-hero__right-panel {
  display: flex; flex-direction: column; gap: 12px;
}

.hero-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}

.hero-service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}

.hero-service-card--1::before { background: var(--orange); }

.hero-service-card--2::before { background: #2A9138; }

.hero-service-card--3::before { background: #3A5CE5; }

.hero-service-card:hover::before { transform: scaleY(1); }

.hero-service-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: var(--border-dk);
}

.hero-service-card__top {
  display: flex; align-items: center; justify-content: space-between;
}

.hero-service-card__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s var(--ease-spring);
}

.hero-service-card:hover .hero-service-card__icon { transform: scale(1.08); }

.hero-service-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 800;
  color: var(--border-dk); letter-spacing: 0.05em;
}

.hero-service-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
}

.hero-service-card__tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}

.hero-service-card__tags span {
  font-size: 0.6875rem; font-weight: 600; color: var(--text-3);
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 100px; padding: 2px 9px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-service-card:hover .hero-service-card__tags span {
  background: var(--bg-warm); border-color: var(--border-dk);
}

.hero-service-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8125rem; font-weight: 700; color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s var(--ease);
  margin-top: 2px;
}

.hero-service-card:hover .hero-service-card__link { gap: 9px; }

.hero-service-card__link i { font-size: 0.6875rem; }

.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 500; color: var(--text-3);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a { color: var(--text-3); transition: color 0.2s; }

.page-hero__breadcrumb a:hover { color: var(--orange); }

.page-hero__breadcrumb i { font-size: 0.6rem; }

.page-hero__breadcrumb span { color: var(--text-2); }

.page-hero__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: block; }

.page-hero__h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--text); margin-bottom: 24px; }

.page-hero__h1 em { font-style: italic; font-weight: 300; color: var(--text-3); }

.page-hero__sub { font-size: 1.0625rem; color: var(--text-2); line-height: 1.78; max-width: 500px; margin-bottom: 40px; }

.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   SERVICE NAV TABS
═══════════════════════════════════════════ */

.service-tabs {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.service-tabs__inner {
  display: flex; align-items: center; gap: 0;
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  overflow-x: auto; scrollbar-width: none;
}

.service-tabs__inner::-webkit-scrollbar { display: none; }

.service-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: 0.875rem; font-weight: 600; color: var(--text-3);
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s; cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
}

.service-tab:hover { color: var(--text); }

.service-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.service-tab i { font-size: 0.875rem; }

/* ═══════════════════════════════════════════
   SERVICE SECTIONS
═══════════════════════════════════════════ */

.service-section { padding: 100px 0; border-bottom: 1px solid var(--border); }

.service-section:nth-child(even) { background: var(--bg-soft); }

.service-section:nth-child(odd)  { background: var(--bg); }

/* Service header */

.svc-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 72px;
}

.svc-header__num {
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 800; line-height: 1;
  color: var(--border); letter-spacing: -0.04em;
  margin-bottom: -16px;
}

.svc-header__icon-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}

.svc-header__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}

.svc-header__badge {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  border: 1px solid currentColor;
}

.svc-header__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 16px;
}

.svc-header__desc { font-size: 1rem; color: var(--text-2); line-height: 1.8; margin-bottom: 28px; }

.svc-header__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right panel */

.svc-header__right { display: flex; flex-direction: column; gap: 12px; padding-top: 40px; }

.svc-highlight {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.svc-highlight:hover { transform: translateX(5px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-color: var(--border-dk); }

.svc-highlight__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }

.svc-highlight__title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }

.svc-highlight__desc { font-size: 0.8125rem; color: var(--text-3); line-height: 1.55; }

/* Offerings grid */

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 64px;
}

.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}

.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--border-dk); }

.svc-card:hover::after { transform: scaleX(1); }

.svc-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-bottom: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.svc-card:hover .svc-card__icon { transform: scale(1.1); }

.svc-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }

.svc-card__desc { font-size: 0.875rem; color: var(--text-3); line-height: 1.7; }

/* Process steps */

.svc-process { margin-bottom: 64px; }

.svc-process__title {
  font-family: var(--font-display); font-size: 1.375rem;
  font-weight: 800; color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.svc-steps::before { content: ''; position: absolute; top: 20px; left: 24px; right: 24px; height: 1px; background: var(--border); z-index: 0; }

.svc-step { display: flex; flex-direction: column; align-items: flex-start; padding: 0 12px; position: relative; z-index: 1; }

.svc-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 800;
  color: var(--text-3); margin-bottom: 16px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.svc-step:hover .svc-step__num {
  background: var(--orange); color: #fff;
  border-color: var(--orange); box-shadow: 0 4px 14px rgba(241,89,45,0.3);
}

.svc-step__title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }

.svc-step__desc { font-size: 0.8125rem; color: var(--text-3); line-height: 1.6; }

/* Tech tags */

.svc-tech { display: flex; flex-wrap: wrap; gap: 8px; }

.svc-tech-tag {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-2);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.svc-tech-tag:hover { background: var(--orange-lt); border-color: var(--orange-mid); color: var(--orange-dk); transform: translateY(-2px); }

.svc-tech-tag i { font-size: 0.875rem; }

/* ═══════════════════════════════════════════
   WHY SECURITY FIRST STRIP
═══════════════════════════════════════════ */

.security-strip {
  background: var(--text); padding: 56px 0;
}

.security-strip__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.security-strip .section-label { color: var(--orange); }

.security-strip .section-head { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }

.security-strip .section-sub { color: rgba(255,255,255,0.55); max-width: 440px; }

.security-strip__checks { display: flex; flex-direction: column; gap: 10px; }

.sec-check {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r);
  transition: background 0.2s, border-color 0.2s;
}

.sec-check:hover { background: rgba(255,255,255,0.08); border-color: rgba(241,89,45,0.25); }

.sec-check i { color: var(--green); font-size: 0.875rem; }

.sec-check span { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.faq { padding: 96px 0; background: var(--bg-soft); }

.faq__head { text-align: center; margin-bottom: 56px; }

.faq__head .section-sub { margin: 0 auto; }

.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}

.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  font-size: 0.9375rem; font-weight: 700; color: var(--text);
  font-family: var(--font-body); text-align: left;
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}

.faq-item__q:hover { color: var(--orange); }

.faq-item__q .faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; color: var(--text-3); transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s; }

.faq-item.open .faq-item__q .faq-icon { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s var(--ease); }

.faq-item.open .faq-item__a { max-height: 200px; }

.faq-item__a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* ═══════════════════════════════════════════
   BOTTOM CTA
═══════════════════════════════════════════ */

.bottom-cta { padding: 100px 0; background: var(--bg); }

.bottom-cta__inner { text-align: center; }

.bottom-cta .section-sub { margin: 0 auto 40px; }

.bottom-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer__newsletter .btn { flex-shrink: 0; height: 48px; }

/* Scroll to top */

.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 16px rgba(241,89,45,0.35); cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease-spring); z-index: 500; border: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .nav__phone, .nav__actions-divider { display: none; }
  .svc-header { gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .svc-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 12px; }
}

@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__right-panel { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-service-card { transform: none !important; }
  .svc-header { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .svc-header__right { padding-top: 0; }
  .security-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__grid { grid-template-columns: 1fr; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 20px; }
  .nav__logo { margin-right: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; }
  .service-section { padding: 64px 0; }
  .page-hero { padding: 64px 0; }
  .hero-stat-card { padding: 18px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__top { padding: 36px 0; }
  .footer__top-inner { gap: 20px; }
  .footer__newsletter { max-width: none; }
  .footer__main { padding: 48px 0 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding: 24px 0; }
  .bottom-cta__actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   HERO ENTRANCE ANIMATIONS
═══════════════════════════════════════════ */

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes nav-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero elements use animation directly — no JS needed */

.page-hero__breadcrumb { animation: hero-rise 0.55s 0.25s cubic-bezier(0.4,0,0.2,1) both; }

.page-hero__label      { animation: hero-rise 0.55s 0.35s cubic-bezier(0.4,0,0.2,1) both; }

.page-hero__h1         { animation: hero-rise 0.65s 0.45s cubic-bezier(0.4,0,0.2,1) both; }

.page-hero__sub        { animation: hero-rise 0.6s  0.58s cubic-bezier(0.4,0,0.2,1) both; }

.page-hero__actions    { animation: hero-rise 0.6s  0.7s  cubic-bezier(0.4,0,0.2,1) both; }

.page-hero__stats      { animation: hero-rise 0.7s  0.5s  cubic-bezier(0.4,0,0.2,1) both; }

/* Stat cards: stagger within the stats block */

.hero-stat-card:nth-child(1) { animation: hero-rise 0.55s 0.6s  cubic-bezier(0.4,0,0.2,1) both; }

.hero-stat-card:nth-child(2) { animation: hero-rise 0.55s 0.72s cubic-bezier(0.4,0,0.2,1) both; }

.hero-stat-card:nth-child(3) { animation: hero-rise 0.55s 0.84s cubic-bezier(0.4,0,0.2,1) both; }

#nav { animation: nav-in 0.45s 0.1s cubic-bezier(0.4,0,0.2,1) both; }

@media (prefers-reduced-motion: reduce) {
  .page-hero__breadcrumb, .page-hero__label, .page-hero__h1,
  .page-hero__sub, .page-hero__actions, .page-hero__stats,
  .hero-stat-card { animation: none; opacity: 1; transform: none; }
}
