@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:         #0a1628;
  --c-bg-alt:     #060b18;
  --c-bg-glass:   rgba(5, 11, 24, 0.85);
  --c-primary:    #3B82F6;
  --c-deep:       #2563EB;
  --c-gold:       #FFD700;
  --c-lime:       #84ff5c;
  --c-white:      #ffffff;
  --c-muted:      rgba(255, 255, 255, 0.6);
  --glass-bg:     rgba(5, 11, 24, 0.82);
  --glass-border: rgba(59, 130, 246, 0.28);
  --glass-radius: 12px;
  --font:         'Space Grotesk', sans-serif;
  --header-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Header ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 72px);
  background: rgba(5, 11, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 11, 24, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 999px;
  padding: 6px 20px 6px 6px;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}
.brand:hover { border-color: rgba(59, 130, 246, 0.85); background: rgba(8, 16, 34, 0.95); }
.brand__mark { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.brand__name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand__tagline {
  font-size: 0.72rem;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.header-nav {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  background: rgba(5, 11, 24, 0.82);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 999px;
  padding: 10px clamp(28px, 4vw, 52px);
  backdrop-filter: blur(16px);
  align-items: center;
}
.header-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.header-nav__link:hover,
.header-nav__link--active { color: var(--c-white); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.nav-dropdown__toggle:hover { color: var(--c-white); }
.nav-dropdown__arrow { font-size: 0.65em; transition: transform 0.2s ease; display: inline-block; }
.nav-dropdown.open .nav-dropdown__arrow { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: rgba(5, 11, 24, 0.96);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  min-width: 290px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  pointer-events: none;
}
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--c-white);
  transition: background 0.18s;
  font-size: 0.875rem;
}
.dropdown-item:hover { background: rgba(59, 130, 246, 0.12); }
.dropdown-item__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 9px;
  flex-shrink: 0;
  color: #60a5fa;
}
.dropdown-item__icon svg { width: 20px; height: 20px; display: block; }
.dropdown-item__text strong { display: block; font-size: 0.875rem; font-weight: 600; }
.dropdown-item__text small { display: block; font-size: 0.75rem; color: var(--c-muted); margin-top: 2px; }
.dropdown-item--view-all {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 6px;
  padding-top: 14px;
  color: var(--c-primary);
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.02em;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(5, 11, 24, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.mobile-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 21px; }
.mobile-toggle span:nth-child(3) { top: 28px; }
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: rgba(5, 11, 24, 0.98);
  border-left: 1px solid rgba(59, 130, 246, 0.25);
  padding: calc(var(--header-h) + 24px) 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__group { margin-bottom: 8px; }
.mobile-drawer__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 10px;
  padding-left: 4px;
}
.mobile-drawer__sublink,
.mobile-drawer__link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.18s, color 0.18s;
}
.mobile-drawer__sublink:hover,
.mobile-drawer__link:hover { background: rgba(59, 130, 246, 0.12); color: var(--c-white); }
.mobile-drawer__link { font-size: 1rem; font-weight: 500; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 4px; }

/* ── Page body spacing (accounts for fixed header) ── */
.page-content { padding-top: var(--header-h); }

/* ── Section base ── */
section {
  width: 100%;
  padding: 96px clamp(24px, 6vw, 96px);
  position: relative;
}
section:nth-child(even) { background: var(--c-bg-alt); }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Typography ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 16px;
}

.heading-xl {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subheading {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 600px;
}

em.accent { font-style: italic; color: var(--c-primary); }
em.accent-lime { font-style: italic; color: var(--c-lime); }

.accent-gradient {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn--primary {
  background: #ffffff;
  color: #0a1f2e;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  background: #e8fff8;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 200, 160, 0.35);
}
.btn--ghost {
  background: rgba(0, 200, 160, 0.13);
  border: 1.5px solid rgba(0, 220, 180, 0.42);
  color: #c8fff0;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(0, 200, 160, 0.25);
  border-color: rgba(0, 240, 200, 0.65);
  color: #fff;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Section ── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(132, 255, 92, 0.06) 0%, transparent 55%),
    var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(24px, 6vw, 96px);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero .subheading {
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-trust {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span { color: var(--c-lime); font-weight: 600; }

/* ── Feature Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.card {
  position: relative;
  background: rgba(5, 11, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(80, 160, 255, 0.5);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}
.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(150, 190, 220, 0.75);
  filter: drop-shadow(0 0 5px rgba(130, 180, 230, 0.35));
  transition: color 0.3s, filter 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon {
  color: rgba(200, 235, 255, 0.95);
  filter: drop-shadow(0 0 12px rgba(120, 200, 255, 0.7));
  transform: translateY(-3px) scale(1.08);
}
.card__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card__body {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  flex: 1;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.two-col__copy {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* ── Stat cards (inside two-col right) ── */
.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: rgba(5, 11, 24, 0.65);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.stat-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
  color: #60a5fa;
}
.stat-card__icon svg { width: 20px; height: 20px; }
.stat-card__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.stat-card__caption {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── Section heading block ── */
.section-head { margin-bottom: 0; }
.section-head .subheading { margin-top: 14px; }

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}
.pricing-card--popular {
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.09) 100%);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 0 1.5px rgba(34, 211, 238, 0.18), 0 16px 40px rgba(34, 211, 238, 0.12);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.35), 0 24px 56px rgba(34, 211, 238, 0.2);
}

.pc-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgb(34, 211, 238);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pc-name {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pc-from {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
  margin-top: 10px;
  letter-spacing: 0.03em;
}
.pc-currency {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-start;
  margin-top: 6px;
}
.pc-amount {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pc-delivery {
  font-size: 0.75rem;
  color: rgba(0, 220, 180, 0.75);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.pc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.08) 80%, transparent 100%);
  margin-bottom: 16px;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}
.pc-features li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-features li svg { width: 13px; height: 13px; flex-shrink: 0; color: rgb(34, 211, 238); }

.pc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s, border-color 0.22s;
  margin-top: auto;
  text-decoration: none;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.pc-btn:hover { transform: translateY(-2px); }
.pc-btn--primary {
  background: #ffffff;
  color: #0a1f2e;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.pc-btn--primary:hover { background: #e8fff8; box-shadow: 0 6px 22px rgba(0, 200, 160, 0.35); }
.pc-btn--ghost {
  background: rgba(0, 200, 160, 0.12);
  color: #a8ffe8;
  border: 1.5px solid rgba(0, 220, 180, 0.42);
  backdrop-filter: blur(8px);
}
.pc-btn--ghost:hover { background: rgba(0, 200, 160, 0.24); border-color: rgba(0, 240, 200, 0.65); color: #fff; box-shadow: 0 0 18px rgba(0, 200, 160, 0.28); }

.pricing-footnote {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ── Trust section ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.trust-item {
  background: rgba(5, 11, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 32px 28px;
}
.trust-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  color: #60a5fa;
  margin-bottom: 18px;
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item__label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.trust-item__body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}

/* ── Contact section ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.contact-info {
  padding-top: 8px;
}
.contact-info .subheading { margin-bottom: 40px; }
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.18s;
}
.contact-detail a:hover { color: var(--c-white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--c-white);
  font-family: var(--font);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--c-primary); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #0a1628; color: var(--c-white); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-status {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}
.form-status--success { background: rgba(0, 220, 160, 0.12); border: 1px solid rgba(0, 220, 160, 0.3); color: #a8ffe8; display: block; }
.form-status--error { background: rgba(255, 80, 80, 0.1); border: 1px solid rgba(255, 80, 80, 0.3); color: #ffb3b3; display: block; }

/* ── Callout banner (for cybersecurity.html) ── */
.sp-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  align-self: flex-start;
  max-width: 440px;
}
.sp-callout:hover { border-color: rgba(59, 130, 246, 0.55); background: rgba(59, 130, 246, 0.14); color: var(--c-white); }
.sp-callout svg { width: 16px; height: 16px; flex-shrink: 0; color: #60a5fa; }
.sp-callout strong { color: #60a5fa; font-weight: 600; }

/* ── Footer ── */
.site-footer {
  width: 100%;
  background: var(--c-bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  padding: 56px clamp(24px, 6vw, 96px) 36px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 280px;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.footer-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-desc { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.footer-social { list-style: none; display: flex; gap: 18px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { color: var(--c-white); border-color: rgba(59, 130, 246, 0.6); background: rgba(59, 130, 246, 0.1); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 56px;
  flex: 0 0 auto;
  margin-left: auto;
}
.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); transition: color 0.18s; }
.footer-col li a:hover { color: var(--c-white); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(24px, 6vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-copy { font-size: 0.72rem; color: rgba(255, 255, 255, 0.3); text-align: center; }
.footer-legal { list-style: none; display: flex; gap: 20px; justify-self: end; }
.footer-legal a { font-size: 0.72rem; color: rgba(255, 255, 255, 0.3); transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-4px); }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px clamp(20px, 5vw, 40px); }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .trust-row { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-drawer { display: block; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-brand { flex: none; max-width: 100%; }
  .footer-cols { width: 100%; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .footer-legal { justify-self: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .btn-row { flex-direction: column; align-items: flex-start; }
  .pricing-grid { max-width: 100%; }
}
