/* =====================================================
   Internext Information Technology — Premium Stylesheet
   Black + Gold + Cream · Mobile-first · Conversion-led
   (Variables retain --blue-* names for legacy refs; values are gold.)
   ===================================================== */

:root {
  /* Brand — Electric Cyan-Blue accent on Deep Navy (2026) */
  --blue: #3FCEFF;          /* primary accent (electric cyan-blue) */
  --blue-deep: #1E70CC;     /* deeper blue */
  --blue-light: #7FE0FF;    /* soft cyan highlight */
  --blue-soft: rgba(63, 206, 255, 0.10);
  --blue-tint: #0E1A2E;     /* dark navy-blue tint */
  --blue-line: rgba(63, 206, 255, 0.22);

  /* Surfaces — Deep navy with elevated cards */
  --bg: #0A1428;            /* deep navy main bg */
  --bg-alt: #11203A;        /* elevated navy surface */
  --bg-dark: #050D1A;       /* deepest navy */
  --bg-darker: #000000;
  --surface: #11203A;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text — off-white on navy */
  --text: #F0F4F8;
  --text-2: #C8D1DC;
  --muted: #8FA3B8;
  --muted-2: #5B6B7E;

  /* Misc */
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-2: 0 12px 30px rgba(0, 0, 0, .5);
  --shadow-blue: 0 14px 40px rgba(30, 144, 255, .35);

  --maxw: 1200px;
  --header-h: 72px;

  --t-fast: 180ms;
  --t-mid: 320ms;
  --t-slow: 520ms;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
  line-height: 1.15;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--muted); }
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--text-2); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--blue-light); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--text);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

/* Gradient text accent */
.grad, .gold {
  background: linear-gradient(120deg, var(--blue-light) 0%, var(--blue) 50%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--blue);
}

.muted { color: var(--muted-2); }
.link-gold {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease);
}
.link-gold:hover { border-color: var(--blue); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(63, 206, 255, .35);
  border-color: var(--blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  color: #FFFFFF;
  box-shadow: 0 18px 50px rgba(30, 112, 204, .42);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-tint);
}

/* On dark sections, ghost should invert */
.on-dark .btn-ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.on-dark .btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  color: #fff;
}
.on-dark .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.on-dark .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 20, 40, .78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 20, 40, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}
.logo-mark { display: inline-flex; }
.logo-text { font-size: 1.18rem; color: var(--text); }
.logo-next { color: var(--blue); }
.logo-dot { color: var(--blue); }

.nav-desktop {
  display: none;
  gap: 28px;
}
.nav-desktop a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-mid) var(--ease);
}
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.nav-toggle {
  width: 42px; height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10, 20, 40, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 18px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-110%);
  transition: transform var(--t-mid) var(--ease);
  z-index: 99;
  box-shadow: 0 12px 30px rgba(15,42,86,.08);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a:not(.btn) {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--text);
}
.nav-mobile .btn { margin-top: 6px; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(63, 206, 255, .18), transparent 60%),
    radial-gradient(60% 50% at 90% 30%, rgba(60, 200, 220, .12), transparent 60%),
    linear-gradient(180deg, #0A1428 0%, #0A1428 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 360px; height: 360px; background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%); top: -80px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); bottom: -120px; right: -120px; animation-delay: -7s; opacity: .35; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-22px) scale(1.05); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  opacity: .8;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    text-align: left;
    gap: 60px;
  }
}
.hero-content { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 1000px) { .hero-content { align-items: flex-start; } }

/* Hero visual + image cards */
.hero-visual {
  position: relative;
  display: none;
}
@media (min-width: 1000px) { .hero-visual { display: block; } }

.hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
  aspect-ratio: 4 / 5;
  background: var(--blue-soft);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.hero-card-1 { top: 24px; left: -22px; animation-delay: 0s; }
.hero-card-2 { bottom: 28px; right: -22px; animation-delay: -3s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE7B3, #FFB347);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hc-icon-blue { background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: #fff; }
.hc-title { font-weight: 800; color: var(--text); font-size: .9rem; line-height: 1.2; }
.hc-sub { font-size: .76rem; color: var(--muted); margin-top: 2px; }

/* Promo banner — AED 100 / 24 hr */
.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: #0A0A0A;
  color: var(--blue-light);
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(63, 206, 255, .35);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.promo-banner:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(63, 206, 255, .45); }
.promo-flash {
  background: rgba(255,255,255,.22);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
  font-weight: 700;
}
.promo-text strong { font-weight: 800; }
.promo-arrow { font-size: 1.2rem; line-height: 1; transition: transform var(--t-fast) var(--ease); }
.promo-banner:hover .promo-arrow { transform: translateX(3px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  background: var(--blue-soft);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--blue-deep);
  margin-bottom: 22px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(63, 206, 255, .2);
}

.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  margin: 0 0 18px;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-2);
  max-width: 720px;
  margin: 0 auto 30px;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: .9rem;
  color: var(--muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 6px; }
.check {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
}

/* ---------- About ---------- */
.about { padding: 100px 0; background: var(--bg); }
.about-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.about-stats-card {
  position: absolute;
  right: -10px;
  bottom: -28px;
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
  z-index: 2;
}
@media (max-width: 480px) {
  .about-stats-card {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }
}
.asc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.asc-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.2;
}
.asc-divider {
  width: 1px;
  align-self: stretch;
  background: var(--blue-line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stats-inline {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
}
.stats-inline .stat { padding: 18px 14px; text-align: center; }
.stats-inline .stat-num { font-size: 1.6rem; }
.stats-inline .stat-label { font-size: .78rem; }
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.stat:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .9rem; color: var(--muted); }

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--bg-alt); }

.services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(450px 200px at 50% -10%, rgba(63, 206, 255, .07), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
  border: 1px solid var(--blue-line);
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); margin-bottom: 16px; }

.service-bens {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}
.service-bens li {
  position: relative;
  padding-left: 20px;
  font-size: .92rem;
  color: var(--text-2);
}
.service-bens li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--blue);
  font-weight: 700;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--blue);
  transition: gap var(--t-fast) var(--ease);
}
.card-cta:hover { gap: 10px; color: var(--blue-deep); }

.featured-service {
  border-color: var(--blue);
  background:
    linear-gradient(180deg, var(--blue-soft), #fff 50%);
}
.featured-service h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #FF7A1A, #E8431B);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
  box-shadow: 0 3px 8px rgba(232, 67, 27, .3);
}

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(4,1fr); } }
.pricing-grid-3 {
  max-width: 1080px;
}
@media (min-width: 900px) {
  .pricing-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 34px 26px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-2);
}

.price-card.popular {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-soft) 0%, #ffffff 60%);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.badge-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-light), var(--blue), var(--blue-deep));
  color: #0A0A0A;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(63, 206, 255, .35);
}
.badge-flash {
  background: linear-gradient(135deg, #FF7A1A, #E8431B);
  box-shadow: 0 6px 18px rgba(232, 67, 27, .35);
}

.plan {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1;
  margin: 8px 0 4px;
}
.price .cur {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em;
  margin-right: 6px;
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
}
.price .per {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.plan-desc { color: var(--muted); margin-bottom: 18px; font-size: .92rem; }

.plan-feats {
  display: grid;
  gap: 10px;
  margin: 6px 0 26px;
}
.plan-feats li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  color: var(--text-2);
}
.plan-feats li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--blue);
  font-weight: 700;
}

.price-card .btn { margin-top: auto; }

.pricing-foot {
  margin-top: 44px;
  text-align: center;
}
.pricing-foot p { color: var(--muted); margin-bottom: 18px; }
.pricing-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ---------- Review Removal (DARK SECTION) ---------- */
.review-removal {
  padding: 100px 0;
  position: relative;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(63, 206, 255, .25), transparent 60%),
    radial-gradient(60% 50% at 90% 80%, rgba(63, 206, 255, .25), transparent 60%),
    linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: #fff;
}
.review-removal h2,
.review-removal h3,
.review-removal .section-title { color: #fff; }
.review-removal .lead,
.review-removal p { color: #cdd6e8; }
.review-removal .check {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.review-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .review-grid { grid-template-columns: 1.1fr 1fr; } }

.bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
}
.bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8dfee;
}

.review-pricing {
  display: grid;
  gap: 14px;
}
.rp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}
.rp-card:hover {
  border-color: var(--blue-light);
  background: rgba(255,255,255,.10);
  transform: translateX(4px);
}
.rp-tier {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 700;
}
.rp-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.rp-note { color: #b9c2d6; font-size: .9rem; }

.review-removal .btn-primary {
  background: var(--surface);
  color: var(--blue-deep);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
}
.review-removal .btn-primary:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
}

/* ---------- Why Us ---------- */
.why-us { padding: 100px 0; background: var(--bg-alt); }
.why-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3,1fr); } }

.why-card {
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1;
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- Benefits band ---------- */
.benefits {
  padding: 70px 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1A12 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 0% 0%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.benefits-grid {
  position: relative;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit { text-align: center; }
.b-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.benefit h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}
.benefit p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 0; background: var(--bg); }
.t-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .t-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .t-grid { grid-template-columns: repeat(3,1fr); } }

.t-card {
  background: var(--bg-alt);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.t-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  background: var(--surface);
}
.t-stars {
  color: #F5A623;
  letter-spacing: .15em;
  font-size: .92rem;
  margin-bottom: 12px;
}
.t-card p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 22px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep)) !important;
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(63, 206, 255, .25);
}
.t-name { font-weight: 700; font-size: .95rem; color: var(--text); }
.t-role { font-size: .82rem; color: var(--muted-2); }

/* ---------- Launch Offer banner (above pricing cards) ---------- */
.launch-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF5DC 0%, #FFE7A6 100%);
  border: 1px solid #F2C75C;
  border-radius: var(--radius);
  color: #4A3608;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(242, 199, 92, .25);
}
.lo-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #F2A41A, #E8431B);
  color: #fff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232, 67, 27, .3);
}
.lo-text strong { color: #4A3608; font-weight: 800; }

/* ---------- Always Included band (above pricing grid) ---------- */
.always-included {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) { .always-included { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .always-included { grid-template-columns: repeat(5, 1fr); } }
.always-included li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.35;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.always-included li:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.always-included li strong {
  display: block;
  font-size: .92rem;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 1px;
}
.ai-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- Setup fee line on pricing cards ---------- */
.setup-fee {
  font-size: .82rem;
  color: var(--muted);
  margin: -2px 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.setup-fee s { color: var(--muted-2); text-decoration-color: rgba(91, 100, 120, .6); }
.setup-waived {
  display: inline-block;
  padding: 3px 9px;
  background: linear-gradient(135deg, #FFE7A6, #F2A41A);
  color: #4A3608;
  border-radius: 999px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Industries section ---------- */
.industries { padding: 100px 0; background: var(--bg-alt); }
.industries-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
.ind-card {
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.ind-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.ind-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.ind-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.ind-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.ind-card strong { color: var(--blue-deep); font-weight: 700; }
.industries-note {
  text-align: center;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: .96rem;
  max-width: 720px;
}
.industries-note strong { color: var(--blue-deep); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--bg-alt); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--t-mid) var(--ease), background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--blue);
  color: #fff;
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .98rem;
}
.faq-body p { margin: 0; color: var(--text-2); }
.faq-body strong { color: var(--blue-deep); }

/* ---------- Lead form (DARK SECTION) ---------- */
.lead {
  padding: 100px 0;
  position: relative;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(63, 206, 255, .25), transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(63, 206, 255, .20), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: #fff;
}
.lead h2, .lead .section-title { color: #fff; }
.lead .lead-sub, .lead p { color: #d8dfee; }
.lead .check { background: rgba(255,255,255,.12); color: #fff; }
.lead .bullets li { color: #d8dfee; }

.lead-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .lead-grid { grid-template-columns: 1fr 1fr; gap: 70px; } }

.lead-image {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  display: none;
}
@media (min-width: 900px) { .lead-image { display: block; } }
.lead-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  color: var(--text);
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: .96rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(63, 206, 255, .15);
  background: var(--surface);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.form-note {
  margin: 0;
  font-size: .8rem;
  color: var(--muted-2);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 30px 12px;
  color: var(--text);
}
.form-success .ok {
  display: inline-flex;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.5rem;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--blue-line);
}
.form-success h3 { margin-bottom: 6px; color: var(--text); }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: center; } }

.contact-cards {
  display: grid;
  gap: 14px;
}
.c-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}
a.c-card:hover {
  border-color: var(--blue);
  transform: translateX(4px);
  background: var(--surface);
  box-shadow: var(--shadow-2);
}
.c-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--blue-line);
}
.c-label { font-size: .8rem; color: var(--muted-2); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.c-value { font-weight: 700; font-size: 1rem; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-darker);
  color: #fff;
  padding: 60px 0 24px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-next { color: var(--blue-light); }

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.foot-tag { color: #b9c2d6; margin-top: 10px; font-size: .92rem; }
.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.site-footer ul { display: grid; gap: 8px; }
.site-footer ul a, .site-footer ul li {
  color: #d8dfee;
  font-size: .92rem;
  transition: color var(--t-fast) var(--ease);
}
.site-footer ul a:hover { color: var(--blue-light); }

.foot-bar {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: #b9c2d6;
}
.foot-bar a { color: #d8dfee; }
.foot-bar a:hover { color: var(--blue-light); }

/* ---------- FOMO Popup ---------- */
.fomo-popup {
  position: fixed;
  left: 20px;
  bottom: 22px;
  width: 320px;
  max-width: calc(100vw - 90px);
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18), 0 2px 8px rgba(0,0,0,.05);
  padding: 14px 38px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 89;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.fomo-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fomo-popup[hidden] { display: none; }

.fomo-avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(63, 206, 255, .25);
}
.fomo-avatar.emoji {
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  font-size: 1.3rem;
}

.fomo-body {
  flex: 1;
  min-width: 0;
}
.fomo-text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.35;
  color: var(--text);
}
.fomo-text strong { color: var(--blue-deep); font-weight: 700; }
.fomo-meta {
  margin: 2px 0 0;
  font-size: .72rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fomo-meta .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .25);
  display: inline-block;
  animation: fomoPulse 1.6s ease-in-out infinite;
}
@keyframes fomoPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.fomo-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: transparent;
  color: var(--muted-2);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.fomo-close:hover {
  background: var(--bg-alt);
  color: var(--text);
}

@media (max-width: 520px) {
  .fomo-popup {
    left: 12px;
    right: 84px;
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 10px 32px 10px 10px;
  }
  .fomo-avatar { width: 36px; height: 36px; font-size: .95rem; }
  .fomo-text { font-size: .82rem; }
  .fomo-meta { font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fomo-popup { transition: opacity .15s linear; transform: none; }
  .fomo-popup.show { transform: none; }
  .fomo-meta .live-dot { animation: none; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.2);
  z-index: 90;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 18px 40px rgba(37,211,102,.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* ---------- Blog listing ---------- */
.blog-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  text-align: center;
}
.blog-hero .eyebrow { margin-bottom: 14px; }
.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.blog-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; }

.blog-list { padding: 60px 0 100px; background: var(--bg); }
.blog-list-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) { .blog-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-list-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.blog-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-meta {
  font-size: .78rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.blog-meta .blog-cat {
  color: var(--blue);
  margin-right: 6px;
}
.blog-card h2, .blog-card h3 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}
.blog-card p {
  color: var(--muted);
  font-size: .94rem;
  margin: 0;
  flex: 1;
}
.blog-card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast) var(--ease);
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* ---------- Single article ---------- */
.article-hero {
  padding: calc(var(--header-h) + 50px) 0 30px;
  background: var(--bg-alt);
}
.article-hero .container { max-width: 820px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--muted-2); }
.article-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--text);
}
.article-meta {
  font-size: .9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
}
.article-meta .dot { width: 4px; height: 4px; background: var(--muted-2); border-radius: 50%; display: inline-block; }
.article-meta strong { color: var(--text); font-weight: 700; }

.article-cover {
  max-width: 980px;
  margin: 0 auto 0;
  padding: 0 22px;
}
.article-cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article {
  padding: 50px 0 60px;
  background: var(--surface);
}
.article .container { max-width: 760px; }
.article-body { font-size: 1.05rem; line-height: 1.75; color: var(--text-2); }
.article-body p { margin: 0 0 1.2em; color: var(--text-2); }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 2em 0 .6em;
  color: var(--text);
  line-height: 1.25;
}
.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 1.6em 0 .5em;
  color: var(--text);
}
.article-body ul, .article-body ol {
  margin: 0 0 1.4em 0;
  padding-left: 1.4em;
  list-style: none;
}
.article-body ul li, .article-body ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.article-body ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--blue);
  font-weight: 800;
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li {
  counter-increment: ol-counter;
}
.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center; justify-content: center;
  line-height: 1;
}
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--blue-deep); font-weight: 600; border-bottom: 1px solid rgba(63, 206, 255, .3); }
.article-body a:hover { border-bottom-color: var(--blue); }
.article-body blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-style: italic;
}
.article-body blockquote p { margin: 0; color: var(--text); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: .95rem;
}
.article-body th, .article-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--blue-line);
}
.article-body th {
  background: var(--bg-alt);
  font-weight: 800;
  color: var(--text);
}

.article-cta {
  margin: 2.4em 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}
.article-cta h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.article-cta p { color: rgba(255,255,255,.92); margin: 0 0 16px; }
.article-cta .btn { background: var(--surface); color: var(--blue-deep); }
.article-cta .btn:hover { background: var(--blue-soft); }

.article-author {
  margin: 50px 0 0;
  padding: 22px 24px;
  border-top: 1px solid var(--blue-line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.aa-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.aa-name { font-weight: 800; color: var(--text); }
.aa-role { font-size: .88rem; color: var(--muted); }

.article-related {
  padding: 60px 0 100px;
  background: var(--bg-alt);
}
.article-related h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 1.6rem;
}


/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- GEO band: "Be the business AI recommends" ---------- */
.geo-band {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(60% 70% at 82% 18%, rgba(0,212,160,.12), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(63,206,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.geo-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) { .geo-inner { grid-template-columns: 1.05fr .95fr; gap: 60px; } }
.geo-copy .section-title { margin-bottom: 16px; }
.geo-copy .section-sub { color: var(--muted); }
.geo-copy em { color: var(--text-2); font-style: italic; }
.geo-copy code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(63,206,255,.12);
  color: var(--blue-light);
  padding: 1px 6px; border-radius: 6px; font-size: .85em;
}
.geo-points {
  list-style: none; padding: 0; margin: 22px 0 26px;
  display: grid; gap: 11px;
}
.geo-points li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-2); font-size: .98rem;
}
.geo-points .check { flex: 0 0 auto; margin-top: 2px; }

/* Mock AI-chat card */
.geo-chat {
  position: relative;
  background: linear-gradient(180deg, rgba(20,24,31,.96), rgba(11,13,18,.96));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(63,206,255,.08);
  max-width: 480px; margin: 0 auto;
}
.geo-q {
  margin-left: auto;
  max-width: 80%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 16px 16px 4px 16px;
  font-size: .95rem; font-weight: 500;
  margin-bottom: 14px;
}
.geo-a {
  max-width: 92%;
  background: linear-gradient(135deg, rgba(0,212,160,.14), rgba(63,206,255,.10));
  border: 1px solid rgba(0,212,160,.3);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 16px;
}
.geo-a p { margin: 6px 0 0; color: var(--text); font-size: .95rem; line-height: 1.55; }
.geo-a strong { color: var(--blue-light); }
.geo-bot {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
}
.geo-spark { color: var(--blue-light); font-size: .95rem; }
.geo-engines {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.geo-engines span {
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) { .geo-band { } }

/* ---------- Earn band: "Your website can pay for itself" ---------- */
.earn-band {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(55% 65% at 12% 20%, rgba(52,227,200,.12), transparent 60%),
    radial-gradient(50% 60% at 92% 85%, rgba(63,206,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.earn-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) { .earn-inner { grid-template-columns: .95fr 1.05fr; gap: 60px; } }
.earn-copy .section-title { margin-bottom: 16px; }
.earn-copy .section-sub { color: var(--muted); }
.earn-copy .section-sub strong { color: var(--text); }
.earn-points {
  list-style: none; padding: 0; margin: 22px 0 26px;
  display: grid; gap: 11px;
}
.earn-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-2); font-size: .98rem; }
.earn-points .check { flex: 0 0 auto; margin-top: 2px; }
.earn-points strong { color: var(--blue-light); }

/* Earnings dashboard card */
.earn-card {
  max-width: 460px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,24,31,.96), rgba(11,13,18,.96));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 24px 24px 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(52,227,200,.08);
}
.earn-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.earn-card-label { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.earn-dot { width: 8px; height: 8px; border-radius: 50%; background: #34e3c8; box-shadow: 0 0 0 4px rgba(52,227,200,.18); }
.earn-card-net {
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #34e3c8; background: rgba(52,227,200,.1);
  border: 1px solid rgba(52,227,200,.28); padding: 4px 9px; border-radius: 999px;
}
.earn-amount {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 2.8rem); color: #fff; line-height: 1; margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.earn-amount-sub {
  font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700;
  color: #34e3c8; background: rgba(52,227,200,.1);
  padding: 3px 9px; border-radius: 999px; letter-spacing: .01em;
}
.earn-chart {
  display: flex; align-items: flex-end; gap: 7px; height: 92px; margin-bottom: 14px;
}
.earn-chart span {
  flex: 1; border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #34e3c8, rgba(52,227,200,.25));
  min-height: 8px;
}
.earn-chart span:last-child { background: linear-gradient(180deg, #7FF5D5, #34e3c8); box-shadow: 0 0 18px rgba(52,227,200,.4); }
.earn-card-foot {
  display: flex; align-items: center; gap: 10px; padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: .82rem; font-weight: 700; color: var(--muted);
}
.earn-arrow { color: #34e3c8; }
@media (prefers-reduced-motion: reduce) { .earn-band { } }

/* ---------- WhatsApp Enquiry Modal ---------- */
.wa-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.wa-modal.show { opacity: 1; }
.wa-modal[hidden] { display: none; }
.wa-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 8, 18, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.wa-modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: linear-gradient(180deg, #14181F, #0E1117);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(63,206,255,.08);
  transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease);
}
.wa-modal.show .wa-modal-card { transform: translateY(0) scale(1); }
.wa-modal-x {
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.05); color: var(--muted);
  font-size: 1.5rem; line-height: 1; cursor: pointer; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.wa-modal-x:hover { background: rgba(255,255,255,.12); color: #fff; }
.wa-modal-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; padding-right: 28px; }
.wa-modal-badge {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: #25D366; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.35);
}
.wa-modal-head h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 0 0 4px; color: var(--text); }
.wa-modal-head p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.4; }
.wa-modal-form { display: grid; gap: 13px; }
.wa-field { display: grid; gap: 5px; }
.wa-field label { font-size: .82rem; font-weight: 700; color: var(--text-2); }
.wa-field .wa-opt { color: var(--muted-2); font-weight: 500; }
.wa-field input, .wa-field select, .wa-field textarea {
  width: 100%; background: #0B0D12; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 12px 13px; font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.wa-field textarea { resize: vertical; min-height: 56px; }
.wa-field input:focus, .wa-field select:focus, .wa-field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(63,206,255,.16);
}
.wa-field input::placeholder, .wa-field textarea::placeholder { color: var(--muted-2); }
.wa-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 51%, calc(100% - 12px) 51%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px;
}
.wa-modal-submit { margin-top: 4px; }
.wa-modal-skip {
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: .82rem; font-family: inherit;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 4px; margin: 2px auto 0; display: block;
}
.wa-modal-skip:hover { color: var(--blue); }
.wa-modal-done { text-align: center; padding: 14px 6px 6px; }
.wa-modal-tick {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(37,211,102,.14); color: #25D366; border: 1px solid rgba(37,211,102,.4);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.wa-modal-done h3 { font-family: 'Playfair Display', serif; margin: 0 0 6px; color: var(--text); }
.wa-modal-done p { color: var(--muted); font-size: .9rem; margin: 0 0 16px; }
@media (max-width: 420px) {
  .wa-modal-card { padding: 22px 18px 20px; border-radius: 18px; }
  .wa-modal-head h3 { font-size: 1.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-modal, .wa-modal-card { transition: opacity .15s linear; }
  .wa-modal-card { transform: none; }
}

/* Setup-fee hint under the plan dropdown (WhatsApp modal) */
.wa-setup-hint {
  margin: 7px 0 0;
  font-size: .8rem;
  color: var(--blue-light);
  background: rgba(63,206,255,.08);
  border: 1px solid rgba(63,206,255,.22);
  border-radius: 9px;
  padding: 7px 11px;
  line-height: 1.35;
}
.wa-setup-hint[hidden] { display: none; }
.wa-setup-hint s { color: var(--muted-2); }
.wa-setup-hint strong { color: #34e3c8; }

/* ---------- AI Office Automation band ---------- */
.auto-band {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(55% 65% at 88% 18%, rgba(63,206,255,.12), transparent 60%),
    radial-gradient(50% 60% at 8% 88%, rgba(46,155,224,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.auto-inner {
  display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) { .auto-inner { grid-template-columns: 1.05fr .95fr; gap: 60px; } }
.auto-copy .section-title { margin-bottom: 16px; }
.auto-copy .section-sub { color: var(--muted); }
.auto-points { list-style: none; padding: 0; margin: 22px 0 24px; display: grid; gap: 11px; }
.auto-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-2); font-size: .98rem; }
.auto-points .check { flex: 0 0 auto; margin-top: 2px; }
.auto-note { margin: 14px 0 0; font-size: .82rem; color: var(--muted-2); }

/* Automation flow diagram */
.auto-flow {
  max-width: 420px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.auto-node, .auto-brain { width: 100%; text-align: center; }
.auto-node-in {
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 14px 18px; font-weight: 700; color: var(--text); font-size: .95rem;
}
.auto-line { width: 2px; height: 26px; background: linear-gradient(180deg, var(--blue), rgba(63,206,255,.2)); }
.auto-brain {
  background: linear-gradient(135deg, rgba(63,206,255,.16), rgba(46,155,224,.08));
  border: 1px solid rgba(63,206,255,.4);
  border-radius: 16px; padding: 16px 18px;
  font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; color: var(--blue-light);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 10px 30px rgba(63,206,255,.14);
}
.auto-spark { color: var(--blue-light); font-size: 1rem; }
.auto-outs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; margin-top: 4px; }
.auto-outs span {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 12px; font-size: .86rem; font-weight: 600; color: var(--text-2); text-align: center;
}
@media (max-width: 420px) { .auto-outs { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .auto-band { } }


/* === Phase2: legal/lang/cookie === */
.foot-legal{margin-top:6px;font-size:.85rem}
.foot-legal a{color:#9FB3C8;text-decoration:none}
.foot-legal a:hover{color:#3FCEFF}
.lang-switch{display:inline-flex;align-items:center;margin-right:10px;padding:.4em .7em;border:1px solid rgba(63,206,255,.35);border-radius:999px;color:#cfe8f6;font-weight:700;font-size:.85rem;text-decoration:none;line-height:1}
.lang-switch:hover{color:#fff;border-color:#3FCEFF;background:rgba(63,206,255,.10)}
.cookie-bar{position:fixed;left:50%;bottom:16px;width:min(520px,calc(100% - 24px));z-index:1300;background:#11203A;border:1px solid rgba(63,206,255,.25);border-radius:14px;padding:16px 18px;box-shadow:0 14px 40px rgba(0,0,0,.45);color:#E6EEF6;font-size:.9rem;line-height:1.5;transform:translateX(-50%) translateY(10px);opacity:0;transition:opacity .35s,transform .35s}
.cookie-bar.show{opacity:1;transform:translateX(-50%)}
.cookie-bar a{color:#3FCEFF}
.cookie-actions{display:flex;gap:10px;margin-top:12px}
.cookie-bar button{flex:1;border:0;border-radius:10px;padding:.6em 1em;font-weight:700;font-size:.85rem;cursor:pointer}
.cookie-accept{background:linear-gradient(90deg,#3FCEFF,#2E9BE0);color:#0A1428}
.cookie-decline{background:transparent;color:#9FB3C8;border:1px solid rgba(255,255,255,.18)}
.cookie-decline:hover{color:#fff}
@media (max-width:480px){.cookie-bar{bottom:10px}}

.nav-mobile .lang-switch{align-self:flex-start;margin:0 0 6px}

/* ===== White header with real Internext logo (added 2026-06-22) ===== */
.site-header{ background:rgba(255,255,255,.92) !important; border-bottom:1px solid rgba(10,20,40,.08); }
.site-header.scrolled{ background:#fff !important; box-shadow:0 4px 20px rgba(10,20,40,.10); }
.logo-img{ height:40px; width:auto; display:block; }
.site-header .nav-desktop a{ color:#1d2b3e; }
.site-header .nav-desktop a:hover{ color:var(--blue); }
.site-header .nav-toggle{ border-color:rgba(10,20,40,.18); background:#fff; }
.site-header .nav-toggle span{ background:#0A1428; }
.site-header .lang-switch{ color:#1d2b3e; border-color:rgba(10,20,40,.28); }
.site-header .lang-switch:hover{ color:var(--blue); border-color:var(--blue); background:rgba(63,206,255,.08); }
/* mobile dropdown matches the white header */
.nav-mobile{ background:rgba(255,255,255,.98) !important; border-bottom-color:rgba(10,20,40,.10); }
.nav-mobile a:not(.btn){ color:#1d2b3e; border-bottom-color:rgba(10,20,40,.08); }
.nav-mobile .lang-switch{ color:#1d2b3e; border-color:rgba(10,20,40,.28); }
/* footer stays dark — real logo sits on a clean white chip */
.site-footer .logo-img{ height:34px; background:#fff; padding:7px 11px; border-radius:8px; }
