/* ==========================================================================
   NextAxis Digital — Global Design System
   ========================================================================== */

:root {
  /* Brand colors (from logo) */
  --navy-950: #060e1f;
  --navy-900: #0a1630;
  --navy-800: #0f2044;
  --navy-700: #16305f;
  --navy-600: #1e4180;
  --navy-500: #2a56a8;

  --green-700: #3f7a1f;
  --green-600: #4c9226;
  --green-500: #5cb62f;
  --green-400: #7fd451;
  --green-300: #a8e585;
  --green-100: #eafce0;

  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef1f7;
  --gray-200: #dfe4ee;
  --gray-300: #c4cbdb;
  --gray-400: #9aa4bd;
  --gray-500: #6b7793;
  --gray-600: #4d5875;
  --gray-700: #364160;
  --gray-800: #232c46;
  --gray-900: #141a2e;

  --font-heading: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(10, 22, 48, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 48, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 22, 48, 0.16);
  --shadow-glow: 0 0 0 4px rgba(92, 182, 47, 0.15);

  --container-w: 1240px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p { line-height: 1.75; margin: 0 0 16px; color: var(--gray-600); }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-600);
  background: var(--green-100);
  padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { font-size: 18px; }
.section-head.align-left { margin-left: 0; text-align: left; }

h1 { font-size: clamp(34px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  padding: 16px 30px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(92, 182, 47, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(92, 182, 47, 0.4); }
.btn-secondary {
  background: var(--white); color: var(--navy-900); border-color: var(--gray-200);
}
.btn-secondary:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: var(--navy-900); border-color: var(--gray-300);
}
.btn-outline-light:hover { background: var(--gray-50); border-color: var(--navy-800); transform: translateY(-2px); }
/* On dark bands (footer CTA, cta-band, etc.) the light-on-dark variant applies automatically */
.band-navy .btn-outline-light, .on-dark .btn-outline-light, .cta-band .btn-outline-light, .mega-feature .btn-outline-light {
  color: var(--white); border-color: rgba(255,255,255,0.35);
}
.band-navy .btn-outline-light:hover, .on-dark .btn-outline-light:hover, .cta-band .btn-outline-light:hover, .mega-feature .btn-outline-light:hover {
  background: rgba(255,255,255,0.12); border-color: var(--white);
}
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-h);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; display: block; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--navy-900); }
.brand-name span { color: var(--green-600); }
.footer-brand .brand img { height: 46px; }
.mnav-head img { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 4px; min-width: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 12px 13px; font-weight: 600; font-size: 14.5px; color: var(--gray-700);
  border-radius: var(--radius-sm); transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--navy-900); background: var(--gray-50); }
.nav-link .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -3px; }
li:hover .nav-link .chev { transform: rotate(225deg); margin-top: 3px; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy-900); }
.header-phone svg { width: 18px; height: 18px; color: var(--green-600); }

/* Mega menu */
.nav-drop { position: relative; }
.nav-drop::after {
  /* invisible bridge that keeps the :hover chain unbroken while the
     cursor travels from the nav-link down into the dropdown panel */
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 18px;
}
.mega-menu {
  position: absolute; top: 100%; left: 0; transform: translateY(4px);
  margin-top: 18px;
  width: 880px; max-width: min(90vw, 880px);
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
  z-index: 40;
}
.nav-drop:hover > .mega-menu, .nav-drop:focus-within > .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear 0s;
}
.mega-menu.cols-2 { width: 640px; grid-template-columns: repeat(2, 1fr); }
.mega-menu.cols-1 { width: 300px; grid-template-columns: 1fr; }
.mega-col-title { font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--green-600); margin: 6px 0 10px; }
.mega-menu a.mega-link {
  display: flex; flex-direction: column; padding: 9px 10px; border-radius: 10px; color: var(--gray-700);
  font-weight: 600; font-size: 14.5px; transition: background .2s, color .2s;
}
.mega-menu a.mega-link:hover { background: var(--green-100); color: var(--green-700); }
.mega-menu a.mega-link small { font-weight: 500; color: var(--gray-400); font-size: 12.5px; margin-top: 2px; }
.mega-feature {
  grid-column: 3; background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-sm); padding: 22px; color: var(--white); display: flex; flex-direction: column; justify-content: space-between;
}
.mega-feature h4 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.mega-feature p { color: var(--gray-300); font-size: 13.5px; margin-bottom: 18px; }

/* Mobile nav */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border: none; background: var(--gray-50); border-radius: 10px; flex-shrink: 0; }
.mobile-toggle span { width: 20px; height: 2px; background: var(--navy-900); transition: all .3s var(--ease); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(6,14,31,0.55); backdrop-filter: blur(2px);
  z-index: 998; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.mobile-nav-backdrop.active { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 400px);
  background: var(--white); z-index: 999;
  box-shadow: -20px 0 60px rgba(6,14,31,0.25);
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }

.mnav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--gray-100); flex-shrink: 0;
}
.mnav-head img { height: 32px; width: auto; }
.mnav-close {
  width: 38px; height: 38px; border-radius: 10px; border: none; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0;
}
.mnav-close::before, .mnav-close::after {
  content: ''; position: absolute; width: 16px; height: 2px; background: var(--navy-900); border-radius: 2px;
}
.mnav-close::before { transform: rotate(45deg); }
.mnav-close::after { transform: rotate(-45deg); }

.mnav-body { flex: 1; overflow-y: auto; padding: 8px 20px 24px; }
.mobile-nav .mnav-item { border-bottom: 1px solid var(--gray-100); }
.mobile-nav .mnav-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 2px; font-weight: 700; font-size: 16px; color: var(--navy-900); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mobile-submenu.open { max-height: 900px; }
.mobile-submenu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px 10px 16px; margin-bottom: 4px;
  color: var(--gray-600); font-weight: 600; font-size: 14px; border-radius: 8px;
  border-left: 2px solid var(--gray-200);
}
.mobile-submenu a:active, .mobile-submenu a:hover { background: var(--green-100); color: var(--green-700); border-left-color: var(--green-500); }
.mnav-caret { width: 9px; height: 9px; border-right: 2px solid var(--gray-400); border-bottom: 2px solid var(--gray-400); transform: rotate(45deg); transition: transform .3s; }
.mnav-item.open .mnav-caret { transform: rotate(225deg); }

.mnav-foot {
  flex-shrink: 0; padding: 18px 20px 22px; border-top: 1px solid var(--gray-100); background: var(--gray-50);
}
.mnav-foot .btn { margin-bottom: 12px; }
.mnav-foot-contact { display: flex; flex-direction: column; gap: 10px; }
.mnav-foot-contact a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--gray-600); }
.mnav-foot-contact svg { width: 17px; height: 17px; color: var(--green-600); flex-shrink: 0; }

@media (max-width: 1080px) {
  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta .btn-sm.desktop-only { display: none; }
}
body.nav-open { overflow: hidden; }

/* Sticky mobile CTA bar */
.sticky-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: var(--white); border-top: 1px solid var(--gray-200); box-shadow: 0 -6px 24px rgba(10,22,48,.1);
  display: none; padding: 10px 16px; gap: 10px;
}
.sticky-cta-bar a { flex: 1; }
@media (max-width: 1080px) { .sticky-cta-bar { display: flex; } body { padding-bottom: 72px; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--white);
  color: var(--gray-800); padding: 70px 0 90px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,32,68,0.05) 1px, transparent 0);
  background-size: 26px 26px; opacity: .6; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-100);
  border: 1px solid rgba(92,182,47,0.35); color: var(--green-700);
  padding: 8px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 13px; margin-bottom: 24px;
}
.hero h1 { color: var(--navy-900); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--green-600); }
.hero p.lead { color: var(--gray-600); font-size: 19px; max-width: 540px; margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-heading); font-size: 28px; color: var(--navy-900); }
.hero-stats div span { font-size: 13px; color: var(--gray-500); }
.hero-visual {
  position: relative; margin: 18px 26px 18px 26px;
}
.hero-visual img { border-radius: var(--radius-lg); width: 100%; display: block; aspect-ratio: 4/3.2; object-fit: cover; box-shadow: var(--shadow-lg); }
.floating-card {
  position: absolute; background: var(--white); border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: floaty 5s ease-in-out infinite;
  max-width: calc(100% - 20px);
}
.floating-card.fc-1 { top: -18px; left: -26px; }
.floating-card.fc-2 { bottom: -18px; right: -20px; animation-delay: 1.4s; }
.floating-card strong { display: block; font-family: var(--font-heading); font-size: 18px; color: var(--navy-900); white-space: nowrap; }
.floating-card span { font-size: 12px; color: var(--gray-500); white-space: nowrap; }
.fc-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--green-100); color: var(--green-600); flex-shrink: 0; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@media (max-width: 480px) {
  .hero-visual { margin: 14px 14px 18px 14px; }
  .floating-card { padding: 10px 12px; gap: 8px; }
  .floating-card.fc-1 { top: -14px; left: -10px; }
  .floating-card.fc-2 { bottom: -14px; right: -10px; }
  .floating-card strong { font-size: 15px; }
  .fc-icon { width: 32px; height: 32px; }
}

/* soft brand glow behind the hero visual */
.hero::after {
  content: ''; position: absolute; width: 620px; height: 620px; right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(92,182,47,0.14), transparent 65%);
  pointer-events: none;
}

@media (max-width: 900px) {
  /* headline + CTA stay above the fold on phones; image follows */
  .hero-grid, .page-hero .hero-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hero p.lead { max-width: 100%; }
  .hero { padding: 48px 0 64px; }
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800); padding: 56px 0 64px;
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--gray-500); margin-bottom: 22px; }
.breadcrumbs a { color: var(--gray-500); font-weight: 600; }
.breadcrumbs a:hover { color: var(--green-600); }
.page-hero h1 { color: var(--navy-900); max-width: 760px; margin-bottom: 16px; }
.page-hero p.lead { color: var(--gray-600); font-size: 18px; max-width: 640px; margin-bottom: 28px; }
.page-hero .hero-cta-row { margin-bottom: 0; }
.page-hero .hero-eyebrow { background: var(--green-100); border-color: rgba(92,182,47,0.35); color: var(--green-700); }

/* ==========================================================================
   Sections / bands
   ========================================================================== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.band-light { background: var(--gray-50); }
.band-navy {
  background:
    radial-gradient(ellipse 60% 70% at 90% 0%, rgba(92,182,47,0.16), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(42,86,168,0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--gray-300);
}
.band-navy h2 { color: var(--white); }
.band-navy p { color: var(--gray-300); }
.band-navy .form-panel p { color: var(--gray-600); }
.band-navy .eyebrow { background: rgba(92,182,47,.15); color: var(--green-400); }
.band-navy .badge-check { color: var(--gray-200); display: flex; }
.band-navy .badge-check svg { color: var(--green-400); }
.band-navy .stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); backdrop-filter: blur(4px);
}
.band-navy .stat-card strong { color: var(--green-400); }
.band-navy .stat-card span { color: var(--gray-300); }

/* Trust bar / client logos */
.trust-bar { padding: 40px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 26px; }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; opacity: .75; }
.logo-strip .logo-chip { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--gray-500); letter-spacing: -.02em; }

/* Grid systems */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Service cards */
.service-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 32px 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--green-100), #dff4d3); color: var(--green-600); margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; font-size: 19px; }
.service-card p { font-size: 15px; margin-bottom: 16px; }
.service-card .card-link { font-weight: 700; font-size: 14px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* Feature / why-choose list */
.feature-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--gray-100); }
.feature-row:last-child { border-bottom: none; }
.feature-num { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--green-600); background: var(--green-100); width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-row h4 { margin-bottom: 6px; font-size: 16.5px; }
.feature-row p { margin: 0; font-size: 14.5px; }

/* Stats */
.stat-card { text-align: center; padding: 30px 18px; }
.stat-card strong { display: block; font-family: var(--font-heading); font-size: 40px; color: var(--green-500); }
.stat-card span { font-size: 14px; color: var(--gray-500); font-weight: 600; }

/* Process steps */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
@media (max-width: 900px) { .process-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-track { grid-template-columns: 1fr; } }
.process-step { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--gray-100); position: relative; }
.process-step .pnum { font-family: var(--font-heading); font-size: 13px; font-weight: 800; color: var(--green-600); margin-bottom: 14px; }
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; margin: 0; }

/* Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.stars { color: var(--green-500); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 15.5px; color: var(--gray-700); font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading); flex-shrink: 0; }
.t-author strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.t-author span { font-size: 12.5px; color: var(--gray-400); }

/* Testimonial slider */
.testimonial-slider { position: relative; padding: 0 8px; }
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform .45s var(--ease); }
.slider-slide { flex: 0 0 100%; max-width: 100%; padding: 4px 10px; box-sizing: border-box; }
.slider-slide .testimonial-card { height: 100%; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gray-200);
  background: var(--white); color: var(--navy-900); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: background .2s, color .2s, opacity .2s; z-index: 5;
}
.slider-arrow svg { width: 18px; height: 18px; }
.slider-arrow:hover { background: var(--navy-900); color: var(--white); }
.slider-arrow:disabled { opacity: .35; pointer-events: none; }
.slider-arrow.prev { left: -8px; }
.slider-arrow.next { right: -8px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--gray-200); padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dots button.active { background: var(--green-500); transform: scale(1.25); }
@media (min-width: 900px) {
  .slider-slide { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .slider-arrow.prev { left: -23px; }
  .slider-arrow.next { right: -23px; }
}
@media (max-width: 640px) {
  .testimonial-slider { padding: 0 4px; }
  .slider-slide { padding: 4px 4px; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow.prev { left: -4px; }
  .slider-arrow.next { right: -4px; }
}

/* Case study cards */
.case-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-100); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card .case-media { height: 190px; background: linear-gradient(140deg, var(--navy-800), var(--navy-950)); display: flex; align-items: center; justify-content: center; position: relative; }
.case-card .case-tag { position: absolute; top: 16px; left: 16px; background: var(--green-500); color: var(--white); font-size: 11.5px; font-weight: 800; padding: 6px 13px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .05em; }
.case-card .case-body { padding: 26px; }
.case-card h3 { font-size: 18px; margin-bottom: 10px; }
.case-metrics { display: flex; gap: 22px; margin: 16px 0 18px; }
.case-metrics div strong { display: block; font-family: var(--font-heading); font-size: 22px; color: var(--green-600); }
.case-metrics div span { font-size: 12px; color: var(--gray-400); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q:hover { color: var(--green-700); }
.faq-q { user-select: none; border-radius: 6px; transition: color .2s;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; cursor: pointer; font-weight: 700; font-size: 16px; color: var(--navy-900); }
.faq-plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--green-600); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 22px; margin: 0; font-size: 15px; }
.faq-item.open .faq-a { max-height: 400px; }

/* Blog cards */
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-100); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card { position: relative; }
.blog-card .blog-media { height: 180px; overflow: hidden; background: linear-gradient(140deg, var(--green-500), var(--navy-800)); }
.blog-card .blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
/* whole card is clickable via the title link */
.blog-card h3 a::after, .case-card .card-link::after { content: ''; position: absolute; inset: 0; }
.blog-card h3 a { transition: color .2s; }
.blog-card:hover h3 a { color: var(--green-700); }
.case-card { position: relative; }
.case-card .card-link { font-weight: 700; font-size: 14px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.case-card .card-link svg { transition: transform .2s; }
.case-card:hover .card-link svg { transform: translateX(4px); }
.case-card .case-media svg { transition: transform .4s var(--ease); }
.case-card:hover .case-media svg { transform: scale(1.1) rotate(-4deg); }

.section-head-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; text-align: left; max-width: 100%; margin-bottom: 0; }
.blog-card .blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--gray-400); margin-bottom: 12px; font-weight: 600; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; }
.blog-card p { font-size: 14.5px; }
.tag-chip { display: inline-block; background: var(--green-100); color: var(--green-700); font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .04em; }

/* Location grid */
.location-chip { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px; color: var(--navy-900); transition: all .2s; }
.location-chip:hover { border-color: var(--green-500); background: var(--green-100); color: var(--green-700); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy-900); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--gray-800); transition: border-color .2s, box-shadow .2s; background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--green-500); box-shadow: var(--shadow-glow); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-error { color: #c73838; font-size: 12.5px; margin-top: 6px; display: none; font-weight: 600; }
.form-group.has-error .form-control { border-color: #c73838; }
.form-group.has-error .form-error { display: block; }

.checkbox-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 560px) { .checkbox-tiles { grid-template-columns: 1fr; } }
.tile-check { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 13px 14px; cursor: pointer; font-size: 14px; font-weight: 600; transition: all .2s; }
.tile-check input { accent-color: var(--green-500); width: 17px; height: 17px; }
.tile-check:has(input:checked) { border-color: var(--green-500); background: var(--green-100); }

/* Multi-step form */
.step-progress { display: flex; align-items: center; gap: 6px; margin-bottom: 30px; }
.step-progress .dot { flex: 1; height: 5px; border-radius: 3px; background: var(--gray-200); transition: background .3s; }
.step-progress .dot.active, .step-progress .dot.done { background: var(--green-500); }
.step-label { font-size: 12.5px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .35s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px);} to { opacity: 1; transform: translateX(0);} }
.step-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; }
.step-nav .btn { flex: 1; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check-circle {
  width: 74px; height: 74px; border-radius: 50%; background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 34px;
}

/* Sidebar form (used on many pages) */
.side-form-wrap { position: sticky; top: calc(var(--header-h) + 24px); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--gray-400); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 14.5px; margin: 18px 0 22px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--green-500); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }
.footer-col h5 { color: var(--white); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: var(--gray-400); transition: color .2s; }
.footer-col a:hover { color: var(--green-400); }
.footer-newsletter form { display: flex; gap: 0; margin-top: 6px; }
.footer-newsletter input { flex: 1; padding: 13px 14px; border-radius: var(--radius-sm) 0 0 var(--radius-sm); border: none; font-size: 14px; }
.footer-newsletter input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--green-500); }
.footer-newsletter button { padding: 0 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border: none; background: var(--green-500); color: var(--white); font-weight: 700; transition: background .2s; }
.footer-newsletter button:hover { background: var(--green-600); }
.footer-newsletter input.is-invalid { box-shadow: inset 0 0 0 2px #e06060; }
.newsletter-msg { font-size: 13.5px; color: var(--green-400); font-weight: 600; margin: 10px 0 0; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--green-400); }
.footer-contact li { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray-400); }
.footer-bottom-links a:hover { color: var(--white); }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed; bottom: 92px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  z-index: 950; transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
@media (min-width: 1081px) { .whatsapp-float { bottom: 26px; } }
@media (max-width: 480px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 84px; right: 14px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.content-block h2 { margin-top: 44px; }
.content-block h3 { margin-top: 30px; }
.content-block ul, .content-block ol { margin: 0 0 20px; padding-left: 22px; }
.content-block li { margin-bottom: 8px; line-height: 1.75; color: var(--gray-600); }
.content-block p { font-size: 16.5px; }
.table-wrap { overflow-x: auto; margin: 24px 0; }
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.compare th, table.compare td { padding: 14px 16px; border: 1px solid var(--gray-200); text-align: left; }
table.compare th { background: var(--navy-900); color: var(--white); font-family: var(--font-heading); }
table.compare tr:nth-child(even) { background: var(--gray-50); }

.badge-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--gray-700); font-weight: 600; margin-bottom: 10px; }
.badge-check svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }

.tools-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.tool-pill { background: var(--gray-50); border: 1px solid var(--gray-200); padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 13.5px; color: var(--navy-800); }

.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-950)); border-radius: var(--radius-lg); padding: 60px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(92,182,47,0.25), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--gray-300); max-width: 560px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Author box (blog) */
.author-box { display: flex; gap: 16px; background: var(--gray-50); border-radius: var(--radius-md); padding: 24px; align-items: center; margin: 36px 0; }
.author-box .t-avatar { width: 58px; height: 58px; font-size: 18px; }
.author-box strong { display: block; color: var(--navy-900); font-size: 15px; }
.author-box span { font-size: 13px; color: var(--gray-500); }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy-900); color: var(--white); padding: 12px 20px; z-index: 2000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Respect users who ask for less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Back-to-top */
.back-to-top {
  position: fixed; right: 22px; bottom: 96px; z-index: 940; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility 0s linear .25s, background .2s, color .2s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .25s, background .2s, color .2s; }
.back-to-top:hover { background: var(--navy-900); color: var(--white); }
.back-to-top svg { width: 18px; height: 18px; }
@media (max-width: 1080px) { .back-to-top { bottom: 160px; } }
@media (max-width: 480px) { .back-to-top { right: 15px; bottom: 144px; width: 46px; height: 46px; } }

/* Scroll progress bar under the sticky header */
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--green-500), var(--green-400)); pointer-events: none; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 22px 28px; }
  .hero-stats div { min-width: calc(50% - 14px); }
  .cta-row .btn, .hero-cta-row .btn { flex: 1 1 100%; }
  .form-panel { padding: 26px; }
  .cta-band { padding: 40px 24px; }
}

/* ==========================================================================
   Service cards with photos (homepage services grid)
   ========================================================================== */
.service-card-img { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.service-card-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img .sci-media { height: 160px; overflow: hidden; }
.service-card-img .sci-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.service-card-img:hover .sci-media img { transform: scale(1.06); }
.service-card-img .sci-body { padding: 24px; }
.service-card-img h3 { margin-bottom: 10px; font-size: 18px; }
.service-card-img p { font-size: 14.5px; margin-bottom: 16px; }
.service-card-img .card-link { font-weight: 700; font-size: 14px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.service-card-img .card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card-img:hover .card-link svg { transform: translateX(4px); }

/* ==========================================================================
   Quick lead-capture form (compact, embedded on service/location pages)
   ========================================================================== */
.quick-lead-form { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px; }
.quick-lead-form h3 { font-size: 18px; margin-bottom: 6px; }
.quick-lead-form .qlf-sub { font-size: 13.5px; color: var(--gray-500); margin-bottom: 20px; }
.quick-lead-form .form-group { margin-bottom: 14px; }
.quick-lead-form .form-group label { font-size: 12.5px; margin-bottom: 6px; }
.quick-lead-form .form-control { padding: 12px 14px; font-size: 14px; }
.quick-lead-form .qlf-note { font-size: 11.5px; color: var(--gray-400); text-align: center; margin-top: 12px; margin-bottom: 0; }
.quick-lead-form .form-success { padding: 10px 4px; }
.quick-lead-form .form-success .check-circle { width: 54px; height: 54px; font-size: 24px; margin-bottom: 14px; }
.quick-lead-form .form-success h3 { margin-bottom: 8px; }
.quick-lead-form .form-success p { font-size: 13.5px; }

/* Inline band version (full-width section rather than sidebar card) */
.lead-band { background: var(--gray-50); border-radius: var(--radius-lg); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lead-band .quick-lead-form { box-shadow: none; border: 1px solid var(--gray-200); }
@media (max-width: 860px) { .lead-band { grid-template-columns: 1fr; padding: 28px; gap: 24px; } }

/* ==========================================================================
   Blog post layout — main content + sidebar
   ========================================================================== */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.blog-sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post .sp-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.sidebar-post .sp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-post .sp-body a { font-size: 13px; font-weight: 700; color: var(--navy-900); line-height: 1.4; display: block; margin-bottom: 4px; }
.sidebar-post .sp-body a:hover { color: var(--green-600); }
.sidebar-post .sp-body span { font-size: 11.5px; color: var(--gray-400); }
.sidebar-categories { display: flex; flex-direction: column; gap: 2px; }
.sidebar-categories a { display: flex; justify-content: space-between; align-items: center; padding: 9px 4px; font-size: 13.5px; font-weight: 600; color: var(--gray-700); border-radius: 8px; }
.sidebar-categories a:hover { background: var(--green-100); color: var(--green-700); }
.sidebar-categories a span { font-size: 11.5px; color: var(--gray-400); background: var(--gray-50); padding: 2px 8px; border-radius: var(--radius-pill); }
.sidebar-contact-card { background: var(--navy-900); color: var(--white); border: none; }
.sidebar-contact-card h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.12); }
.sidebar-contact-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sidebar-contact-card li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-300); }
.sidebar-contact-card svg { width: 16px; height: 16px; color: var(--green-400); flex-shrink: 0; }
@media (max-width: 980px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; flex-direction: column; }
  .blog-sidebar .sidebar-card { width: 100%; }
}

/* ==========================================================================
   v2 — 3D creative layer (appended by build/build.js from build/assets/v2.css)
   ========================================================================== */
:root { --glass: rgba(255,255,255,0.08); --glass-line: rgba(255,255,255,0.16); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10,22,48,.25); }
.btn-glass { background: var(--glass); color: var(--white); border-color: var(--glass-line); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--green-700); }
.link-arrow:hover svg { transform: translateX(4px); }
.mega-menu a.mega-link.current { background: var(--gray-50); color: var(--green-700); }
.nav-link { padding: 12px 11px; }
@media (max-width: 1280px) { .header-phone { display: none; } }

/* ---------- 3D hero ---------- */
.hero-3d {
  position: relative; overflow: hidden; color: var(--gray-300);
  background: radial-gradient(ellipse 80% 60% at 70% 10%, #13306a 0%, transparent 60%), linear-gradient(170deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 64px 0 96px;
}
.hero-3d-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-3d-bg .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero-3d-bg .b1 { width: 420px; height: 420px; background: #2a56a8; top: -120px; left: -80px; }
.hero-3d-bg .b2 { width: 380px; height: 380px; background: rgba(92,182,47,.55); bottom: -160px; right: 8%; }
.hero-3d-bg .grid-floor {
  position: absolute; left: -20%; right: -20%; bottom: -40%; height: 90%;
  background-image: linear-gradient(rgba(127,212,81,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(127,212,81,.16) 1px, transparent 1px);
  background-size: 56px 56px; transform: perspective(700px) rotateX(62deg); transform-origin: top center;
  mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 75%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.9), transparent 75%);
  animation: floor 18s linear infinite;
}
@keyframes floor { to { background-position: 0 56px, 0 0; } }
.hero-3d-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-3d .breadcrumbs { color: var(--gray-400); margin-bottom: 20px; }
.hero-3d .breadcrumbs a { color: var(--gray-300); }
.hero-3d .breadcrumbs a:hover { color: var(--green-400); }
.hero-3d .breadcrumbs .sep { opacity: .5; }
.hero-chip { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--glass); border: 1px solid var(--glass-line); color: var(--white); font-weight: 700; font-size: 13px; margin-bottom: 22px; backdrop-filter: blur(6px); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 0 rgba(127,212,81,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(127,212,81,0); } 100% { box-shadow: 0 0 0 0 rgba(127,212,81,0); } }
.hero-3d h1 { color: var(--white); font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -.02em; margin-bottom: 20px; }
.hero-3d h1 em { font-style: normal; background: linear-gradient(90deg, var(--green-400), #c6f3a6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-3d .lead { color: var(--gray-300); font-size: 18.5px; max-width: 580px; margin-bottom: 32px; }
.hero-3d .hero-cta-row { margin-bottom: 34px; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.hero-proof .avatars { display: flex; }
.hero-proof .avatars span { width: 38px; height: 38px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--navy-900); display: flex; align-items: center; justify-content: center; font: 800 12px var(--font-heading); color: var(--white); background: linear-gradient(135deg, var(--green-500), var(--navy-600)); }
.hero-proof .avatars span:first-child { margin-left: 0; }
.hero-proof .avatars span:nth-child(2) { background: linear-gradient(135deg, #2a56a8, #6d8fd6); }
.hero-proof .avatars span:nth-child(3) { background: linear-gradient(135deg, #4c9226, #a8e585); }
.hero-proof strong { display: block; color: var(--white); font-family: var(--font-heading); font-size: 15px; }
.hero-proof span { font-size: 13px; color: var(--gray-400); }

/* 3D scene */
.scene3d { perspective: 1400px; position: relative; }
.scene-inner { position: relative; transform-style: preserve-3d; transform: rotateY(-14deg) rotateX(6deg); transition: transform .5s var(--ease); }
.scene-card { position: relative; border-radius: 26px; padding: 10px; background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.04)); border: 1px solid var(--glass-line); box-shadow: 0 50px 90px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04) inset; }
.scene-card img { border-radius: 18px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.scene-float { position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 14px 18px; border-radius: 16px; background: rgba(10,22,48,.62); border: 1px solid var(--glass-line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 24px 50px -12px rgba(0,0,0,.55); color: var(--gray-300); font-size: 12.5px; animation: bob 6s ease-in-out infinite; max-width: 220px; }
.scene-float strong { color: var(--green-400); font: 800 24px var(--font-heading); }
.scene-float.f1 { top: 8%; left: -34px; transform: translateZ(60px); }
.scene-float.f2 { bottom: 10%; right: -28px; transform: translateZ(90px); animation-delay: -2s; }
.scene-float.f3 { bottom: -26px; left: 14%; flex-direction: row; align-items: center; gap: 10px; transform: translateZ(40px); animation-delay: -4s; color: var(--white); font-weight: 700; max-width: none; }
.bars { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.bars i { width: 5px; border-radius: 2px; background: var(--green-400); animation: bar 1.6s ease-in-out infinite; transform-origin: bottom; }
.bars i:nth-child(1) { height: 30%; } .bars i:nth-child(2) { height: 55%; animation-delay: .15s; } .bars i:nth-child(3) { height: 42%; animation-delay: .3s; } .bars i:nth-child(4) { height: 75%; animation-delay: .45s; } .bars i:nth-child(5) { height: 100%; animation-delay: .6s; }
@keyframes bar { 50% { transform: scaleY(.55); } }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb.o1 { width: 92px; height: 92px; top: -40px; right: 12%; background: radial-gradient(circle at 32% 30%, #d9ffc2, var(--green-500) 45%, #1f4d0e 100%); box-shadow: 0 24px 40px -8px rgba(40,90,20,.6); transform: translateZ(120px); animation: bob 7s ease-in-out infinite; }
.orb.o2 { width: 54px; height: 54px; bottom: 24%; left: -58px; background: radial-gradient(circle at 32% 30%, #c9d8ff, #2a56a8 50%, #0a1630 100%); box-shadow: 0 18px 30px -6px rgba(0,0,0,.5); transform: translateZ(30px); animation: bob 5s ease-in-out infinite -1s; }
.torus { position: absolute; width: 120px; height: 120px; right: -46px; top: 36%; border-radius: 50%; border: 14px solid transparent; background: linear-gradient(var(--navy-900), var(--navy-900)) padding-box, linear-gradient(135deg, #a8e585, #2a56a8) border-box; opacity: .9; transform: translateZ(70px) rotateX(64deg); animation: spin 14s linear infinite; pointer-events: none; }
@keyframes spin { to { rotate: 360deg; } }
.cube { position: absolute; width: 46px; height: 46px; top: 44%; left: -20px; transform-style: preserve-3d; transform: translateZ(100px); animation: cube 12s linear infinite; pointer-events: none; }
.cube i { position: absolute; inset: 0; border: 1.5px solid rgba(168,229,133,.8); background: rgba(92,182,47,.14); }
.cube i:nth-child(1) { transform: translateZ(23px); } .cube i:nth-child(2) { transform: rotateY(180deg) translateZ(23px); }
.cube i:nth-child(3) { transform: rotateY(90deg) translateZ(23px); } .cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(23px); }
.cube i:nth-child(5) { transform: rotateX(90deg) translateZ(23px); } .cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(23px); }
@keyframes cube { from { rotate: 1 1 0 0deg; } to { rotate: 1 1 0 360deg; } }
@media (max-width: 960px) {
  .hero-3d { padding: 44px 0 76px; }
  .hero-3d-grid { grid-template-columns: 1fr; gap: 56px; }
  .scene3d { max-width: 560px; margin: 0 auto; width: calc(100% - 40px); }
  .scene-inner { transform: rotateY(-8deg) rotateX(4deg); }
}
@media (max-width: 560px) {
  .scene-float { padding: 10px 12px; }
  .scene-float strong { font-size: 18px; }
  .scene-float.f1 { left: -16px; } .scene-float.f2 { right: -14px; }
  .torus { width: 80px; height: 80px; right: -22px; border-width: 10px; }
  .orb.o2, .cube { display: none; }
}

/* ---------- Trust marquee ---------- */
.trust-marquee { padding: 34px 0; border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.trust-marquee .trust-label { margin-bottom: 20px; padding: 0 16px; }
.marquee { mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .logo-chip { font: 800 20px var(--font-heading); color: var(--gray-400); letter-spacing: -.02em; white-space: nowrap; transition: color .2s; }
.marquee .logo-chip:hover { color: var(--navy-800); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.split-top { align-items: start; }
.split-copy p { font-size: 16.5px; }
.split-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.media-3d { position: relative; border-radius: var(--radius-lg); transform-style: preserve-3d; margin: 0 22px 22px 0; }
.media-3d img { position: relative; border-radius: var(--radius-lg); width: 100%; aspect-ratio: 10/8; object-fit: cover; box-shadow: 0 40px 80px -24px rgba(10,22,48,.45); }
.media-3d::before { content: ''; position: absolute; inset: 22px -22px -22px 22px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-400), var(--navy-600)); opacity: .9; transform: translateZ(-40px); }
.media-badge { position: absolute; left: -26px; bottom: 34px; background: var(--white); border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-lg); transform: translateZ(50px); }
.media-badge span { display: block; font-size: 12px; font-weight: 600; color: var(--gray-500); }
.media-badge strong { font: 800 24px var(--font-heading); color: var(--navy-900); }
.media-badge small { font-size: 13px; color: var(--gray-500); font-weight: 600; margin-left: 2px; }
.tools-title { font-size: 17px; margin: 30px 0 14px; }
.table-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 10px; }
.table-card .table-wrap { margin: 0; }
.table-card table.compare th:first-child { border-top-left-radius: 14px; }
.table-card table.compare th:last-child { border-top-right-radius: 14px; }
.table-card table.compare th, .table-card table.compare td { border-width: 0 0 1px; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .media-badge { left: 12px; }
}

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit-card { position: relative; background: var(--white); border-radius: var(--radius-md); padding: 30px 26px; border: 1px solid var(--gray-100); overflow: hidden; }
.benefit-card:hover { box-shadow: var(--shadow-md); }
.benefit-card::after { content: ''; position: absolute; width: 140px; height: 140px; right: -50px; top: -50px; border-radius: 50%; background: radial-gradient(circle, rgba(92,182,47,.18), transparent 70%); }
.benefit-num { display: block; font: 800 42px/1 var(--font-heading); background: linear-gradient(135deg, var(--green-500), var(--navy-600)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-section { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(92,182,47,.10), transparent 70%), var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; padding-top: 14px; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; padding: 34px 30px 30px; transform-style: preserve-3d; }
.price-card:hover { box-shadow: 0 30px 60px -20px rgba(10,22,48,.25); border-color: var(--gray-300); }
.price-card.popular { background: linear-gradient(165deg, var(--navy-800), var(--navy-950)); border-color: transparent; color: var(--gray-300); box-shadow: 0 30px 70px -20px rgba(10,22,48,.55); }
.price-card.popular::before { content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1.5px; background: linear-gradient(140deg, var(--green-400), transparent 40%, transparent 60%, #6d8fd6); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%) translateZ(30px); background: linear-gradient(135deg, var(--green-400), var(--green-600)); color: var(--white); font: 800 11.5px var(--font-heading); text-transform: uppercase; letter-spacing: .08em; padding: 7px 16px; border-radius: var(--radius-pill); box-shadow: 0 8px 20px rgba(92,182,47,.4); white-space: nowrap; }
.pc-head { transform: translateZ(24px); }
.pc-level { display: inline-block; font: 800 12px var(--font-heading); color: var(--green-600); background: var(--green-100); padding: 4px 10px; border-radius: 8px; margin-bottom: 14px; }
.popular .pc-level { background: rgba(127,212,81,.14); color: var(--green-400); }
.pc-head h3 { font-size: 24px; margin-bottom: 6px; }
.popular .pc-head h3 { color: var(--white); }
.pc-head p { font-size: 14.5px; margin: 0; }
.popular .pc-head p { color: var(--gray-400); }
.pc-price { margin: 24px 0 22px; padding: 20px 0; border-top: 1px dashed var(--gray-200); border-bottom: 1px dashed var(--gray-200); transform: translateZ(36px); }
.popular .pc-price { border-color: rgba(255,255,255,.14); }
.pc-from { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 4px; }
.popular .pc-from { color: var(--gray-400); }
.pc-price strong { font: 800 40px/1.1 var(--font-heading); color: var(--navy-900); letter-spacing: -.02em; }
.popular .pc-price strong { color: var(--white); }
.pc-unit { font-size: 15px; font-weight: 600; color: var(--gray-500); margin-left: 6px; }
.pc-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pc-list li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--gray-700); }
.popular .pc-list li { color: var(--gray-200); }
.pc-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; padding: 3px; border-radius: 50%; background: var(--green-100); color: var(--green-600); }
.popular .pc-list svg { background: rgba(127,212,81,.16); color: var(--green-400); }
.price-card .btn { transform: translateZ(30px); }
.pricing-foot { text-align: center; margin-top: 34px; }
.pricing-foot p { font-size: 13.5px; color: var(--gray-500); max-width: 720px; margin: 0 auto 10px; }

/* ---------- Mobile swipe slider (one card at a time) ---------- */
.m-dots { display: none; }
@media (max-width: 768px) {
  .m-slider { display: flex !important; grid-template-columns: none !important; gap: 16px !important; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 22px 24px 26px; scroll-padding: 0 24px; }
  .m-slider::-webkit-scrollbar { display: none; }
  .m-slider > * { flex: 0 0 86%; max-width: 86%; scroll-snap-align: center; scroll-snap-stop: always; }
  .m-slider > [hidden] { display: none; }
  .m-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
  .m-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: var(--gray-300); transition: width .25s var(--ease), background .25s; }
  .m-dots button.active { width: 24px; background: var(--green-500); }
  .band-navy .m-dots button { background: rgba(255,255,255,.25); }
  .band-navy .m-dots button.active { background: var(--green-400); }
  .m-hint { display: block; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--gray-500); margin-top: 10px; }
}
.m-hint { display: none; }

/* ---------- Image service cards ---------- */
.svc-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; overflow: hidden; transform-style: preserve-3d; }
.svc-card:hover { box-shadow: 0 30px 60px -24px rgba(10,22,48,.3); }
.svc-media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-group { font: 800 11px var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); margin-bottom: 8px; }
.svc-body h3 { font-size: 19px; margin-bottom: 8px; }
.svc-body h3 a:hover { color: var(--green-700); }
.svc-body p { font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.svc-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.svc-price { font-size: 13px; color: var(--gray-500); font-weight: 600; margin: -8px 0 16px; }
.svc-price strong { color: var(--navy-900); font-family: var(--font-heading); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 2px; background: linear-gradient(90deg, var(--green-400), var(--navy-500)); opacity: .35; }
.tl-step { position: relative; background: var(--white); border: 1px solid var(--gray-100); border-radius: 18px; padding: 44px 20px 22px; margin-top: 22px; }
.tl-num { position: absolute; top: 0; left: 20px; width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font: 800 15px var(--font-heading); color: var(--white); background: linear-gradient(135deg, var(--green-500), var(--green-700)); box-shadow: 0 10px 20px -6px rgba(76,146,38,.6), inset 0 -3px 0 rgba(0,0,0,.15); transform: translateY(-50%) perspective(200px) rotateX(12deg); }
.tl-step:nth-child(even) .tl-num { background: linear-gradient(135deg, var(--navy-500), var(--navy-800)); box-shadow: 0 10px 20px -6px rgba(10,22,48,.5), inset 0 -3px 0 rgba(0,0,0,.2); }
.tl-step h3 { font-size: 16.5px; margin-bottom: 8px; }
.tl-step p { font-size: 14px; margin: 0; }
.timeline.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .timeline, .timeline.cols-4 { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } .timeline::before { display: none; } }
@media (max-width: 640px) { .timeline, .timeline.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Stats band ---------- */
.stats-band .stat-card strong { font-size: 44px; }

/* ---------- Video reviews ---------- */
.video-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); transform-style: preserve-3d; }
.video-frame { position: relative; display: block; width: 100%; aspect-ratio: 16/9; padding: 0; border: 0; background: var(--navy-900); overflow: hidden; cursor: pointer; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .5s var(--ease), opacity .3s; }
.video-frame:hover img { transform: scale(1.05); opacity: .65; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn { position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; margin: -34px 0 0 -34px; border-radius: 50%; background: rgba(255,255,255,.95); color: #e62117; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(255,255,255,.2), 0 16px 30px rgba(0,0,0,.35); transition: transform .25s var(--ease); }
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video-frame:hover .play-btn { transform: scale(1.1); }
.video-len, .yt-badge { position: absolute; bottom: 12px; font-size: 12px; font-weight: 700; color: var(--white); background: rgba(0,0,0,.6); padding: 4px 9px; border-radius: 6px; }
.video-len { right: 12px; } .yt-badge { left: 12px; background: #e62117; }
.video-soon { position: absolute; left: 12px; right: 12px; top: 12px; font-size: 12.5px; font-weight: 600; color: var(--white); background: rgba(10,22,48,.85); padding: 8px 12px; border-radius: 8px; }
.video-meta { padding: 20px 22px 22px; }
.video-meta p { font-size: 15px; color: var(--gray-700); font-style: italic; margin-bottom: 12px; }
.video-meta strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.video-meta span { font-size: 12.5px; color: var(--gray-500); }

/* ---------- FAQ layout ---------- */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-aside-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.faq-section .faq-list { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 6px 26px; box-shadow: var(--shadow-sm); }
.faq-section .faq-item:last-child { border-bottom: 0; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 30px; } .faq-aside { position: static; } .faq-section .faq-list { padding: 4px 18px; } }

/* ---------- 3D CTA + quick form ---------- */
.cta-3d { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px; border-radius: 30px; overflow: hidden; color: var(--gray-300);
  background: radial-gradient(circle at 12% 110%, rgba(92,182,47,.35), transparent 45%), radial-gradient(circle at 100% 0%, rgba(42,86,168,.55), transparent 50%), linear-gradient(150deg, var(--navy-900), var(--navy-950)); }
.cta-3d::after { content: ''; position: absolute; width: 260px; height: 260px; left: 38%; top: -150px; border-radius: 50%; border: 30px solid rgba(127,212,81,.12); pointer-events: none; }
.cta-3d-copy { position: relative; z-index: 1; }
.cta-3d h2 { color: var(--white); }
.cta-3d .eyebrow { background: rgba(92,182,47,.15); color: var(--green-400); }
.cta-3d p { color: var(--gray-300); }
.tick-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-200); font-weight: 600; font-size: 15px; }
.tick-list svg { width: 20px; height: 20px; flex-shrink: 0; padding: 3px; border-radius: 50%; background: rgba(127,212,81,.18); color: var(--green-400); }
.cta-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.cta-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; font-size: 14.5px; }
.cta-contact a:hover { color: var(--green-400); }
.cta-contact svg { width: 18px; height: 18px; color: var(--green-400); }
.cta-3d .quick-lead-form { position: relative; z-index: 1; border: 0; box-shadow: 0 40px 80px -20px rgba(0,0,0,.5); }
.cta-3d .quick-lead-form p { color: var(--gray-500); }
.quick-lead-form .form-success[hidden] { display: none; }
.quick-lead-form .form-success:not([hidden]) { display: block; }
@media (max-width: 900px) { .cta-3d { grid-template-columns: 1fr; padding: 34px 20px; gap: 30px; border-radius: 24px; } .cta-3d .quick-lead-form { padding: 22px 18px; } }

/* ---------- Location / city extras ---------- */
.content-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.content-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 28px; }
.content-card h3 { font-size: 19px; }
.content-card p:last-child { margin-bottom: 0; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin: 18px 0 0; }
.why-list li { display: flex; gap: 10px; font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.why-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; padding: 3px; border-radius: 50%; background: var(--green-100); color: var(--green-600); }
@media (max-width: 700px) { .content-cards, .why-list { grid-template-columns: 1fr; } }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; color: var(--white); font: 800 16px var(--font-heading); padding: 16px; isolation: isolate; }
.city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease); }
.city-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(6,14,31,.88), rgba(6,14,31,.05) 65%); }
.city-card:hover img { transform: scale(1.08); }
.city-card small { display: block; font: 600 12px var(--font-body); color: var(--gray-300); }
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .city-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .city-card { font-size: 14px; padding: 12px; } }
.country-block + .country-block { margin-top: 52px; }
.country-block h3 { display: flex; align-items: center; gap: 10px; font-size: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.country-block h3 a { font-size: 14px; font-weight: 700; color: var(--green-600); margin-left: auto; }

/* ---------- Pricing explorer (home / pricing page) ---------- */
.px-select-wrap { max-width: 460px; margin: 0 auto 30px; }
.px-select-wrap label { display: block; text-align: center; font-weight: 700; font-size: 13.5px; color: var(--gray-600); margin-bottom: 8px; }
.px-select-wrap select { font-weight: 700; color: var(--navy-900); border-radius: var(--radius-pill); padding: 14px 20px; text-align: center; }
.px-link { text-align: center; margin-top: 18px; }

/* ---------- Portfolio ---------- */
.pf-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.pf-filters button { border: 1px solid var(--gray-200); background: var(--white); padding: 10px 20px; border-radius: var(--radius-pill); font: 700 14px var(--font-heading); color: var(--gray-700); transition: all .2s; }
.pf-filters button:hover { border-color: var(--navy-800); }
.pf-filters button.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-card { transform-style: preserve-3d; }
.pf-card[hidden] { display: none !important; }
.browser { border-radius: 16px; overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 30px 60px -28px rgba(10,22,48,.4); transition: box-shadow .3s var(--ease); }
.pf-card:hover .browser { box-shadow: 0 40px 80px -28px rgba(10,22,48,.55); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; flex-shrink: 0; }
.browser-bar i:nth-child(2) { background: #febc2e; } .browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar span { flex: 1; margin-left: 8px; font-size: 11.5px; color: var(--gray-500); background: var(--white); border: 1px solid var(--gray-200); border-radius: 6px; padding: 3px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-view { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.browser-view img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease); }
.pf-card:hover .browser-view img { transform: scale(1.06); }
.pf-sample { position: absolute; top: 10px; right: 10px; font-size: 11px; font-weight: 700; background: rgba(10,22,48,.75); color: var(--white); padding: 4px 8px; border-radius: 6px; }
.pf-info { padding: 20px 4px 0; }
.pf-info .svc-group { display: block; }
.pf-info h3 { font-size: 19px; margin-bottom: 6px; }
.pf-info p { font-size: 14.5px; margin-bottom: 12px; }
.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pf-tags span { font-size: 12px; font-weight: 700; color: var(--navy-800); background: var(--gray-50); border: 1px solid var(--gray-200); padding: 4px 10px; border-radius: var(--radius-pill); }
.pf-result { display: inline-flex; align-items: center; gap: 6px; font: 800 15px var(--font-heading); color: var(--green-600); margin-bottom: 14px; }
.pf-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
@media (max-width: 980px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Get Started form ---------- */
.gs-wrap { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: start; }
.gs-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 28px; box-shadow: 0 40px 90px -40px rgba(10,22,48,.4); padding: 40px; }
.gs-progress { display: flex; gap: 8px; margin-bottom: 10px; }
.gs-progress span { flex: 1; height: 6px; border-radius: 6px; background: var(--gray-100); overflow: hidden; position: relative; }
.gs-progress span::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-400), var(--green-600)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.gs-progress span.done::after, .gs-progress span.active::after { transform: scaleX(1); }
.gs-steplabel { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 26px; }
.gs-step { display: none; border: 0; margin: 0; padding: 0; min-width: 0; }
.gs-step.active { display: block; animation: stepIn .35s var(--ease); }
.gs-step legend { padding: 0; }
.gs-step h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 6px; }
.gs-step .gs-sub { margin-bottom: 24px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.choice { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 38px 16px 16px; border: 1.5px solid var(--gray-200); border-radius: 14px; cursor: pointer; transition: border-color .2s, background .2s, transform .2s, box-shadow .2s; font-weight: 700; font-size: 14.5px; color: var(--navy-900); line-height: 1.35; }
.choice:hover { border-color: var(--gray-400); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice small { font-weight: 500; font-size: 12.5px; color: var(--gray-500); }
.choice .ch-price { font: 800 18px var(--font-heading); color: var(--green-600); }
.choice:has(input:checked) { border-color: var(--green-500); background: var(--green-100); box-shadow: 0 0 0 3px rgba(92,182,47,.18); }
.choice:has(input:focus-visible) { outline: 3px solid var(--green-500); outline-offset: 2px; }
.choice::after { content: ''; position: absolute; top: 14px; right: 12px; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--gray-300); background: var(--white); }
.choice:has(input[type="checkbox"])::after { border-radius: 5px; }
.choice:has(input:checked)::after { border-color: var(--green-500); background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
.choice-group-title { font: 800 12px var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); margin: 20px 0 10px; }
.choice-group-title:first-of-type { margin-top: 0; }
.phone-row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
.consent { display: flex; gap: 10px; font-size: 13px; color: var(--gray-600); align-items: flex-start; margin-top: 6px; font-weight: 500 !important; }
.consent input { accent-color: var(--green-500); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.gs-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.gs-nav .btn { min-width: 140px; }
.gs-nav .btn:only-child { margin-left: auto; }
.gs-step-error { display: none; color: #c73838; font-size: 13.5px; font-weight: 600; margin-top: 12px; }
.gs-step.show-error .gs-step-error { display: block; }
.gs-summary { background: var(--gray-50); border-radius: 14px; padding: 14px 18px; font-size: 14px; margin-bottom: 20px; }
.gs-summary div { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.gs-summary span { color: var(--gray-500); }
.gs-summary strong { color: var(--navy-900); text-align: right; }
.gs-side { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 18px; }
.gs-side-card { border-radius: 22px; padding: 26px; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); color: var(--gray-300); }
.gs-side-card h3 { color: var(--white); font-size: 18px; }
.gs-side-card ol { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.gs-side-card ol strong { color: var(--white); }
.gs-side-light { background: var(--white); border: 1px solid var(--gray-100); color: var(--gray-600); box-shadow: var(--shadow-sm); }
.gs-side-light h3 { color: var(--navy-900); }
.gs-side-light .tick-list li { color: var(--gray-700); }
.gs-side-light .tick-list svg { background: var(--green-100); color: var(--green-600); }
.gs-done { text-align: center; padding: 20px 0; }
.gs-done .check-circle { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; font-size: 38px; color: var(--white); background: radial-gradient(circle at 30% 30%, #b8f08f, var(--green-600)); box-shadow: 0 20px 40px -10px rgba(76,146,38,.6); }
.gs-done .cta-row { margin-top: 20px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 1000px) { .gs-wrap { grid-template-columns: 1fr; } .gs-side { position: static; } }
@media (max-width: 640px) {
  .gs-card { padding: 24px 18px; border-radius: 22px; }
  .choice-grid, .choice-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .phone-row { grid-template-columns: 112px 1fr; }
  .gs-nav .btn { min-width: 0; flex: 1; }
}
@media (max-width: 400px) { .choice-grid, .choice-grid.cols-2, .choice-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Tilt helper ---------- */
[data-tilt] { transition: transform .3s var(--ease), box-shadow .3s var(--ease); will-change: transform; }

/* ---------- Compact hero for utility pages ---------- */
.hero-3d.compact { padding: 56px 0 72px; }
.hero-3d.compact .hero-3d-grid { grid-template-columns: 1fr; }
.hero-3d.compact .hero-3d-copy { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-3d.compact .lead { margin-left: auto; margin-right: auto; }
.hero-3d.compact .breadcrumbs, .hero-3d.compact .hero-cta-row { justify-content: center; }
.hero-3d.compact .hero-cta-row { margin-bottom: 0; }

/* ---------- Homepage hero (light, 3D) ---------- */
.hero .scene3d { margin: 10px 30px; }
.hero .scene-float { background: rgba(255,255,255,.82); border-color: rgba(10,22,48,.08); color: var(--gray-500); box-shadow: 0 24px 50px -16px rgba(10,22,48,.35); }
.hero .scene-float strong { color: var(--navy-900); }
.hero .scene-float.f3 { color: var(--navy-900); }
.hero .scene-card { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.4)); border-color: rgba(10,22,48,.08); box-shadow: 0 50px 90px -30px rgba(10,22,48,.45); }
.hero .torus { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #7fd451, #2a56a8) border-box; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .grid-floor, .torus, .cube, .scene-float, .orb, .bars i, .pulse { animation: none !important; }
}

/* Single-column layouts must be allowed to shrink below their content width on phones */
@media (max-width: 1000px) { .gs-wrap { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 960px) { .hero-3d-grid, .split { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 900px) { .faq-layout, .cta-3d { grid-template-columns: minmax(0, 1fr); } }
.gs-card, .gs-side, .split-copy, .cta-3d-copy, .quick-lead-form { min-width: 0; }
.choice { min-width: 0; overflow-wrap: anywhere; }
.blog-layout { grid-template-columns: minmax(0, 1fr) 340px; }
@media (max-width: 980px) { .blog-layout { grid-template-columns: minmax(0, 1fr); } }
/* Logo is dark-on-light artwork — give it a light plate on the navy footer */
.footer-brand .brand { display: inline-flex; background: var(--white); padding: 8px 14px; border-radius: 14px; box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.footer-brand .brand img { height: 40px; }
.choice .ch-price { display: block; margin: 2px 0 2px; }

/* ---------- Language & currency switcher ---------- */
.locale { position: relative; }
.locale-btn { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 12px; border-radius: var(--radius-pill); border: 1px solid var(--gray-200); background: var(--white); color: var(--navy-900); font: 700 13px var(--font-heading); white-space: nowrap; transition: border-color .2s, background .2s; }
.locale-btn:hover, .locale-btn[aria-expanded="true"] { border-color: var(--navy-800); background: var(--gray-50); }
.locale-btn svg { width: 17px; height: 17px; color: var(--green-600); }
.locale-panel { position: absolute; top: calc(100% + 10px); right: 0; width: 280px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px; z-index: 1100; display: flex; flex-direction: column; gap: 12px; }
.locale-panel[hidden] { display: none; }
.locale-panel label, .mnav-locale label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.locale-panel .form-control, .mnav-locale .form-control { padding: 10px 12px; font-size: 14px; text-transform: none; letter-spacing: 0; }
.locale-detected { font-size: 12.5px; color: var(--gray-500); margin: 0; }
.mnav-locale { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.mnav-locale .btn { grid-column: 1 / -1; margin-bottom: 0 !important; }
@media (max-width: 420px) { .header-cta .locale { display: none; } }
.nx-price { white-space: nowrap; }
[data-rates-credit] { font-size: 12px; color: var(--gray-400); text-decoration: underline; }

/* "View in English" pill — only when the page is translated */
.lang-pill { position: fixed; left: 18px; bottom: 26px; z-index: 950; display: none; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--radius-pill); border: 1px solid var(--gray-200); background: var(--white); color: var(--navy-900); font: 700 13px var(--font-heading); box-shadow: var(--shadow-md); }
.lang-pill svg { width: 16px; height: 16px; color: var(--green-600); }
html:not([lang="en"]) .lang-pill { display: inline-flex; }
@media (max-width: 1080px) { .lang-pill { bottom: 84px; left: 12px; padding: 8px 12px; } }

/* Hide Google Translate's own toolbar, tooltips and highlight */
.skiptranslate iframe, iframe.skiptranslate, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight, font[style] { background: none !important; box-shadow: none !important; }
#google_translate_element { display: none; }

/* ---------- Right-to-left (Arabic, Hebrew, Urdu) ---------- */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .btn svg, html[dir="rtl"] .link-arrow svg, html[dir="rtl"] .card-link svg { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(3px); }
html[dir="rtl"] .section-head, html[dir="rtl"] .text-center, html[dir="rtl"] .pricing-foot, html[dir="rtl"] .hero-3d.compact .hero-3d-copy { text-align: center; }
html[dir="rtl"] .locale-panel { right: auto; left: 0; }
html[dir="rtl"] .mega-menu { left: auto; right: 0; }
html[dir="rtl"] .scene-inner { transform: rotateY(14deg) rotateX(6deg); }
html[dir="rtl"] .media-badge { left: auto; right: -26px; }
html[dir="rtl"] .whatsapp-float, html[dir="rtl"] .back-to-top { right: auto; left: 22px; }
html[dir="rtl"] .lang-pill { left: auto; right: 18px; }
html[dir="rtl"] .pc-list li, html[dir="rtl"] .tick-list li, html[dir="rtl"] .why-list li { text-align: right; }
html[dir="rtl"] .content-block ul, html[dir="rtl"] .content-block ol, html[dir="rtl"] .gs-side-card ol { padding-left: 0; padding-right: 22px; }
html[dir="rtl"] .choice { padding: 16px 16px 16px 38px; }
html[dir="rtl"] .choice::after { right: auto; left: 12px; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
html[dir="rtl"] .phone-row input, html[dir="rtl"] input[type="tel"], html[dir="rtl"] input[type="email"] { direction: ltr; text-align: right; }
@media (max-width: 960px) { html[dir="rtl"] .media-badge { right: 12px; } }
/* Direction-safe skip link (negative offsets create scroll overflow in RTL) */
.skip-link { left: 0; right: auto; transform: translateY(-120%); transition: transform .2s; }
.skip-link:focus { left: 0; transform: none; }
html[dir="rtl"] .skip-link { left: auto; right: 0; }

/* ---------- Pay Now ---------- */
.pc-pay { display: block; text-align: center; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.popular .pc-pay { color: var(--green-400); }
.pc-pay.muted { color: var(--gray-400); text-decoration: none; font-weight: 600; }
.popular .pc-pay.muted { color: var(--gray-400); }
.pay-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 36px; align-items: start; }
.pay-summary { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 18px; }
.pay-kicker { font: 800 12px var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--green-400); margin-bottom: 14px; }
.pay-summary .form-group label { color: var(--gray-300); }
.pay-plans { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pay-plan { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.14); cursor: pointer; transition: border-color .2s, background .2s; }
.pay-plan input { accent-color: var(--green-500); width: 18px; height: 18px; flex-shrink: 0; }
.pay-plan span { flex: 1; min-width: 0; }
.pay-plan strong { display: block; color: var(--white); font-size: 15px; }
.pay-plan small { display: block; color: var(--gray-400); font-size: 12px; }
.pay-plan em { font-style: normal; font: 800 16px var(--font-heading); color: var(--white); text-align: right; white-space: nowrap; }
.pay-plan em small { display: inline; font: 600 11px var(--font-body); color: var(--gray-400); margin-left: 2px; }
.pay-plan:has(input:checked) { border-color: var(--green-400); background: rgba(127,212,81,.1); }
.pay-plan.disabled { opacity: .5; cursor: not-allowed; }
.pay-total { border-top: 1px dashed rgba(255,255,255,.16); padding-top: 16px; }
.pay-total > div { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.pay-total strong { color: var(--white); }
.pay-due { margin-top: 6px; padding-top: 10px !important; border-top: 1px solid rgba(255,255,255,.1); }
.pay-due span { color: var(--white); font-weight: 700; }
.pay-due strong { font: 800 26px var(--font-heading); color: var(--green-400); }
.pay-small { font-size: 12.5px; color: var(--gray-400); margin: 8px 0 0; }
.pay-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,.16); }
.pay-features li { display: flex; gap: 8px; font-size: 13.5px; color: var(--gray-200); }
.pay-features svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green-400); }
.pay-trust .tick-list li { font-size: 14px; }
.gs-card h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 6px; }
@media (max-width: 1000px) { .pay-wrap { grid-template-columns: minmax(0, 1fr); } .pay-summary { position: static; } }

/* ---------- Local pages: link chips & country hub ---------- */
.link-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.link-chip { display: inline-flex; flex-direction: column; padding: 10px 16px; border-radius: 14px; border: 1px solid var(--gray-200); background: var(--white); font-weight: 700; font-size: 14px; color: var(--navy-900); transition: border-color .2s, background .2s, transform .2s; }
.link-chip small { font-weight: 600; font-size: 12px; color: var(--green-700); }
.link-chip:hover { border-color: var(--green-500); background: var(--green-100); transform: translateY(-2px); }
.hub-group { font-size: 20px; margin: 40px 0 18px; }
.hub-group:first-of-type { margin-top: 0; }
.hub-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-100); border-radius: 18px; overflow: hidden; transform-style: preserve-3d; }
.hub-card:hover { box-shadow: 0 26px 50px -24px rgba(10,22,48,.3); }
.hub-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hub-body { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px 20px; }
.hub-body strong { font: 800 17px var(--font-heading); color: var(--navy-900); }
.hub-body small { font-size: 13.5px; color: var(--gray-600); }
.hub-body em { font-style: normal; font-weight: 700; font-size: 14px; color: var(--green-700); margin-top: 6px; }
.pay-msg { background: #fff4e5; border: 1px solid #f5c27a; color: #8a5300; border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 600; margin: 0 0 14px; }
.pay-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.pay-methods span { font-size: 11.5px; font-weight: 700; color: var(--gray-600); border: 1px solid var(--gray-200); border-radius: 6px; padding: 3px 8px; background: var(--gray-50); }
.form-alert { background: #fff4e5; border: 1px solid #f5c27a; color: #7a4a00; border-radius: 12px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; margin: 4px 0 14px; }
.form-alert p { margin: 0 0 8px; color: inherit; font-size: 13.5px; }
.form-alert-links { display: flex; flex-wrap: wrap; gap: 14px; }
.form-alert-links a { color: #0a1630; text-decoration: underline; }

/* ---------- Free SEO tools ---------- */
.tool-hero { padding-bottom: 110px; }
.tool-section { padding-top: 0; margin-top: -80px; position: relative; z-index: 3; }
.tool-box { max-width: 980px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-100); border-radius: 26px; box-shadow: 0 40px 90px -40px rgba(10,22,48,.45); padding: 30px; }
.tool-form { display: flex; gap: 12px; }
.tool-form .form-control { flex: 1; min-width: 0; font-size: 17px; padding: 16px 20px; border-radius: var(--radius-pill); }
.tool-hint { font-size: 13px; color: var(--gray-500); margin: 12px 4px 0; }
.tool-example { border: 0; background: none; padding: 0; color: var(--green-700); font-weight: 700; text-decoration: underline; cursor: pointer; }
.tool-status { margin-top: 20px; padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.tool-status[hidden] { display: none; }
.tool-status.loading { background: var(--gray-50); color: var(--gray-700); }
.tool-status.error { background: #fff4e5; border: 1px solid #f5c27a; color: #7a4a00; }
.t-spinner { width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--gray-200); border-top-color: var(--green-500); animation: spin .8s linear infinite; flex-shrink: 0; }
.tool-results { margin-top: 28px; }
.t-head { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.t-head-copy { flex: 1; min-width: 240px; }
.t-head h2 { font-size: 22px; margin-bottom: 10px; }
.t-url { color: var(--green-700); word-break: break-all; }
.t-rings { display: flex; gap: 18px; flex-wrap: wrap; }
.t-ring { --p: 0; width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--ring) calc(var(--p) * 1%), var(--gray-100) 0); flex-shrink: 0; }
.t-ring > div { width: 104px; height: 104px; border-radius: 50%; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.t-ring strong { font: 800 32px/1 var(--font-heading); color: var(--navy-900); }
.t-ring span { font-size: 11.5px; font-weight: 700; color: var(--gray-500); margin-top: 4px; padding: 0 8px; }
.t-ring.good { --ring: var(--green-500); } .t-ring.ok { --ring: #f5a524; } .t-ring.bad { --ring: #e5484d; }
.t-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.t-pill { font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.t-pill.pass { background: var(--green-100); color: var(--green-700); }
.t-pill.warn { background: #fff4e0; color: #9a5b00; }
.t-pill.fail { background: #ffe9e9; color: #b42318; }
.t-note { font-size: 13px; color: var(--gray-500); margin: 10px 0 0; }
.t-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 12px; }
.t-stat { background: var(--gray-50); border-radius: 14px; padding: 14px 16px; }
.t-stat strong { display: block; font: 800 22px var(--font-heading); color: var(--navy-900); }
.t-stat span { font-size: 12.5px; color: var(--gray-500); font-weight: 600; }
.t-speed { padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.t-speed h3, .t-group h3 { font-size: 17px; margin: 0 0 14px; }
.t-speed .t-ring { width: 104px; height: 104px; } .t-speed .t-ring > div { width: 82px; height: 82px; } .t-speed .t-ring strong { font-size: 24px; }
.t-group { padding-top: 24px; }
.t-check { border: 1px solid var(--gray-100); border-radius: 12px; margin-bottom: 8px; background: var(--white); }
.t-check summary { display: grid; grid-template-columns: 28px minmax(140px, 220px) 1fr; gap: 12px; align-items: center; padding: 12px 14px; cursor: pointer; list-style: none; }
.t-check summary::-webkit-details-marker { display: none; }
.t-ico { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 13px; color: var(--white); }
.t-check.pass .t-ico { background: var(--green-500); } .t-check.warn .t-ico { background: #f5a524; } .t-check.fail .t-ico { background: #e5484d; }
.t-check strong { font-size: 14.5px; color: var(--navy-900); }
.t-detail { font-size: 13.5px; color: var(--gray-600); overflow-wrap: anywhere; }
.t-fix { margin: 0; padding: 0 14px 14px 54px; font-size: 13.5px; color: var(--gray-700); }
.t-table td { font-size: 13.5px; }
.t-src { max-width: 360px; overflow-wrap: anywhere; }
.t-domains { display: flex; flex-wrap: wrap; gap: 8px; }
.t-domains span { display: inline-flex; gap: 8px; align-items: center; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-pill); padding: 6px 12px; font-size: 13px; font-weight: 600; }
.t-domains b { color: var(--green-700); font-size: 12px; }
.t-cta { margin-top: 28px; padding: 22px; border-radius: 18px; background: linear-gradient(150deg, var(--navy-900), var(--navy-950)); color: var(--gray-300); text-align: center; }
.t-cta p { color: var(--gray-200); font-size: 15.5px; }
.t-cta b { color: var(--white); }
.t-cta .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.tool-grid { gap: 20px; }
.tool-card { display: flex; flex-direction: column; gap: 8px; padding: 26px; border-radius: 20px; background: var(--white); border: 1px solid var(--gray-100); }
.tool-card:hover { box-shadow: var(--shadow-md); }
.tool-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font: 800 16px var(--font-heading); color: var(--white); background: linear-gradient(135deg, var(--green-500), var(--navy-600)); margin-bottom: 6px; }
.tool-card strong { font: 800 19px var(--font-heading); color: var(--navy-900); }
.tool-card small { font-size: 14px; color: var(--gray-600); }
.tool-card em { font-style: normal; font-weight: 700; font-size: 14px; color: var(--green-700); display: inline-flex; gap: 6px; align-items: center; margin-top: 6px; }
.tool-card em svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .tool-box { padding: 18px; border-radius: 20px; }
  .tool-form { flex-direction: column; }
  .t-head { justify-content: center; text-align: center; }
  .t-rings { justify-content: center; }
  .t-check summary { grid-template-columns: 28px 1fr; }
  .t-detail { grid-column: 2; }
  .t-fix { padding-left: 14px; }
}

/* ---------- Legal pages ---------- */
.legal .container-narrow { max-width: 820px; }
.legal h2 { font-size: 22px; margin-top: 36px; }
.legal-summary { background: var(--green-100); border: 1px solid rgba(92,182,47,.3); border-radius: 18px; padding: 22px 26px; }
.legal-summary h2 { margin-top: 0; font-size: 19px; }
.legal-summary ul { margin-bottom: 0; }
