/* ===== IMAGE LIGHTBOX ===== */
.zoomable { cursor: zoom-in; }
dialog#img-lightbox {
  padding: 0; border: none; border-radius: 12px;
  background: transparent; max-width: 95vw; max-height: 95vh;
  outline: none;
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  margin: 0;
}
dialog#img-lightbox::backdrop {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
}
dialog#img-lightbox img {
  display: block; max-width: 95vw; max-height: 90vh;
  border-radius: 10px; object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
dialog#img-lightbox .lightbox-inner {
  position: relative; display: inline-block;
}
dialog#img-lightbox .lightbox-close {
  position: absolute; top: -1.25rem; right: -1.25rem;
  background: rgba(0,0,0,0.6); border: 2px solid rgba(255,255,255,0.7); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  border-radius: 50%; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
dialog#img-lightbox .lightbox-close:hover { background: rgba(0,0,0,0.85); border-color: #fff; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.35); }

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-200, #bfdbfe);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-500); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ===== NAV ===== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #1d46ba;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--gray-900); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
  background: white;
}
.mobile-menu a {
  padding: 10px 4px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f1f5c 0%, #1e3a8a 40%, #1d4ed8 70%, #0369a1 100%);
  color: white;
  padding: 100px 0 120px;
  text-align: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,184,166,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy { text-align: left; }

.hero-visual { display: flex; align-items: center; justify-content: center; }

.hero-dashboard {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,.9);
}

.hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #7dd3fc, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 20px;
}

.hero-pills {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pills li {
  display: flex;
}

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pill-blue   { background: rgba(125,211,252,.18); color: #7dd3fc; border: 1px solid rgba(125,211,252,.35); }
.pill-teal   { background: rgba(94,234,212,.18);  color: #5eead4; border: 1px solid rgba(94,234,212,.35); }
.pill-green  { background: rgba(52,211,153,.18);  color: #34d399; border: 1px solid rgba(52,211,153,.35); }
.pill-purple { background: rgba(167,139,250,.18); color: #a78bfa; border: 1px solid rgba(167,139,250,.35); }
.pill-orange { background: rgba(251,146,60,.18);  color: #fb923c; border: 1px solid rgba(251,146,60,.35); }

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.hero-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin-top: 10px;
}

.hero-aws {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  white-space: nowrap;
}
.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-pills span {
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all .2s ease;
}
.feature-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-600);
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.feature-card-split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.feature-card-text {
  flex: 0 0 320px;
}

.feature-card-image {
  flex: 1;
  min-width: 0;
}

.feature-card-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  display: block;
}

@media (max-width: 680px) {
  .feature-card-split {
    flex-direction: column;
    gap: 24px;
  }
  .feature-card-text {
    flex: none;
  }
}

/* ===== PRICING ===== */
.product-preview {
  padding: 100px 0;
  background: var(--white);
}
.product-preview-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  margin-bottom: 1.5rem;
  margin-left: -5%;
  margin-right: -5%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.product-preview-img {
  width: 100%;
  height: auto;
  display: block;
}
.product-preview-caption {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.pricing-left {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-900));
  padding: 56px 48px;
  color: white;
}

.pricing-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 28px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.pricing-currency { font-size: 18px; font-weight: 600; opacity: .7; }
.pricing-price {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.pricing-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

.pricing-right {
  background: var(--white);
  padding: 56px 48px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 500;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== BRAND COLOURS ===== */
/* ===== SERVICE CATALOGUE ===== */
.service-catalogue {
  padding: 96px 0;
  background: #fff;
}

.service-catalogue-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.service-catalogue-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.service-catalogue-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.catalogue-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalogue-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700, #374151);
  font-weight: 500;
}

.catalogue-features li svg {
  flex-shrink: 0;
}

.service-catalogue-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: block;
}

@media (max-width: 768px) {
  .service-catalogue-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.brand-colours {
  padding: 96px 0;
  background: var(--gray-50, #f9fafb);
}

.brand-colours-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.brand-colours-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.brand-colours-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
}

.brand-colours-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: block;
}

@media (max-width: 768px) {
  .brand-colours-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 96px 0;
  background: #fff;
}
.about-inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 680px;
}
.about-team {
  margin-bottom: 64px;
}
.team-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--teal-600) 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px;
}
.team-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-600);
  display: block;
  margin-bottom: 14px;
}
.team-info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.team-info p:last-child {
  margin-bottom: 0;
}
.about-why h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
}
.why-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== EARLY ADOPTER CARDS ===== */
.ea-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.ea-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.ea-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.ea-card--featured {
  border: 2px solid var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59,130,246,.08), var(--shadow-lg);
  position: relative;
}
.ea-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-600);
  margin-bottom: 20px;
}
.ea-badge--muted { color: var(--gray-400); }
.ea-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 8px;
}
.ea-currency { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); line-height: 2; }
.ea-currency--muted { color: var(--gray-400); }
.ea-price { font-size: 3.5rem; font-weight: 800; color: var(--gray-900); line-height: 1; letter-spacing: -.03em; }
.ea-price--muted { color: var(--gray-400); }
.ea-unit { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 8px; padding-left: 4px; }
.ea-tagline { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 24px; }
.ea-tagline--muted { color: var(--gray-400); }
.ea-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.ea-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.ea-perks--muted li { color: var(--gray-400); }
.ea-spots { margin-bottom: 24px; }
.ea-spots-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.ea-spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-500));
  border-radius: 100px;
  transition: width .6s ease;
}
.ea-spots-label {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.ea-spots-label strong { color: var(--gray-800); }
.ea-fine-print { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 12px; }
.ea-fine-print--muted { color: var(--gray-300); }
.ea-closed-msg {
  display: none;
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #713f12;
  text-align: center;
  margin-bottom: 12px;
}
.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== SAVINGS CALCULATOR ===== */
.calc-section {
  padding: 100px 0;
  background: var(--white);
}
.calc-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.calc-slider-wrap { margin-bottom: 48px; }
.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calc-slider-header label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.calc-staff-count {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-600);
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-500) 9%, var(--gray-200) 9%);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-500);
  box-shadow: 0 2px 8px rgba(59,130,246,.25);
  cursor: pointer;
  transition: transform .1s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-500);
  cursor: pointer;
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.calc-slider-ticks span { font-size: 0.75rem; color: var(--gray-400); }
.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.calc-result {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.calc-result--ea { border-color: var(--blue-200); background: var(--blue-50); }
.calc-result--saving { border-color: #bbf7d0; background: #f0fdf4; }
.calc-result-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.calc-result-value { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); letter-spacing: -.02em; }
.calc-result-value--muted { color: var(--gray-400); }
.calc-result-value--green { color: #16a34a; }
.calc-result-sub { font-size: 0.7rem; color: var(--gray-400); margin-top: 4px; }
.calc-note { font-size: 0.8rem; color: var(--gray-400); text-align: center; }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item--open { border-color: var(--blue-200); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}
.faq-q:hover { color: var(--blue-600); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform .25s ease;
}
.faq-item--open .faq-chevron { transform: rotate(180deg); color: var(--blue-500); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item--open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--teal-600) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.cta-inner h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.contact-text p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 32px;
  transition: color .15s;
}
.contact-email:hover { color: var(--blue-700); }

.contact-social { display: flex; gap: 16px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all .15s;
}
.social-link:hover { background: var(--gray-50); border-color: var(--gray-400); }
.social-link svg { width: 18px; height: 18px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-note { font-size: 14px; text-align: center; min-height: 20px; }
.form-note--success { color: var(--teal-600); }
.form-note--error { color: #dc2626; }
.form-label-hint { font-size: 12px; font-weight: 400; color: var(--gray-400); }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: var(--gray-400); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { color: var(--gray-400); transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }

.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 4px; }
.footer-col a { font-size: 15px; color: var(--gray-400); transition: color .15s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: var(--gray-600); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; }
.cookie-banner p a { color: #7dd3fc; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-outline { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.cookie-actions .btn-outline:hover { background: rgba(255,255,255,.08); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .calc-results { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 88px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy { text-align: center; }
  .hero-cta { justify-content: center; }
  .features { padding: 72px 0; }
  .pricing { padding: 72px 0; }
  .ea-section { padding: 72px 0; }
  .calc-section { padding: 72px 0; }
  .faq-section { padding: 72px 0; }
  .about { padding: 72px 0; }
  .cta-band { padding: 64px 0; }
  .contact { padding: 72px 0; }

  .ea-cards { grid-template-columns: 1fr; }
  .calc-card { padding: 32px 24px; }

  .team-card { flex-direction: column; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }

  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 24px; }

  .pricing-left,
  .pricing-right { padding: 36px 28px; }

  .footer-links { flex-direction: column; gap: 32px; }

  .trust-inner { gap: 14px; }
}

@media (max-width: 540px) {
  .calc-results { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .trust-pills { gap: 8px; }
  .trust-label { width: 100%; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #000000;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 48px 10px 16px;
  position: relative;
  text-align: center;
}
.announce-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.announce-link { color: #7dd3fc; font-weight: 600; text-decoration: underline; white-space: nowrap; }
.announce-link:hover { color: #bae6fd; }
.announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
.announce-close:hover { color: white; }

/* ===== PRICING CARDS (index) ===== */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 2rem auto 2.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.pricing-toggle-label { font-size: 0.875rem; font-weight: 500; color: #94a3b8; transition: color 0.15s; }
.pricing-toggle-label.active { color: #0f172a; }
.pricing-toggle-switch {
  position: relative; width: 44px; height: 24px;
  background: #e2e8f0; border-radius: 999px; border: none;
  cursor: pointer; transition: background 0.2s; padding: 0;
}
.pricing-toggle-switch.on { background: #0ea5e9; }
.pricing-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.pricing-toggle-switch.on .pricing-toggle-thumb { transform: translateX(20px); }
.pricing-badge-green {
  font-size: 0.7rem; font-weight: 700;
  background: #ecfdf5; color: #059669;
  padding: 2px 6px; border-radius: 999px; margin-left: 4px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 1.5rem;
}
.pricing-cards .pricing-plan {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 640px) { .pricing-cards .pricing-plan { max-width: 100%; } }
.pricing-cards--two {
  max-width: 860px;
}
.pricing-cards--two .pricing-plan {
  flex: 1;
  max-width: none;
}

.pricing-plan {
  background: white;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-plan--pro {
  background: #1d46ba;
  border-color: #1d46ba;
  overflow: hidden;
}
.plan-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8; }
.pricing-plan--pro .plan-label { color: #93c5fd; }
.plan-price-row { display: flex; align-items: flex-end; gap: 4px; margin: 0.5rem 0 0.25rem; }
.plan-price { font-size: 2.5rem; font-weight: 800; color: #0f172a; }
.pricing-plan--pro .plan-price { color: white; }
.plan-price-unit { font-size: 0.875rem; color: #94a3b8; margin-bottom: 6px; }
.pricing-plan--pro .plan-price-unit { color: #93c5fd; }
.plan-desc { font-size: 0.875rem; color: #64748b; margin-bottom: 0.25rem; }
.pricing-plan--pro .plan-desc { color: #bfdbfe; }
.plan-note { font-size: 0.75rem; color: #94a3b8; margin-bottom: 1.5rem; }
.pricing-plan--pro .plan-note { color: #7dd3fc; }
.plan-most-popular {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.7rem; font-weight: 700;
  background: rgba(255,255,255,0.2); color: white;
  padding: 3px 10px; border-radius: 999px;
}
.plan-features { list-style: none; flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: #475569; }
.pricing-plan--pro .plan-features li { color: rgba(255,255,255,0.9); }
.plan-features li svg { flex-shrink: 0; margin-top: 2px; }
.plan-feature-group { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #93c5fd; margin-top: 0.75rem; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.plan-feature-group:first-child { margin-top: 0; }

.pricing-plan--enterprise {
  background: #0f172a;
  border-color: #0f172a;
}
.pricing-plan--enterprise .plan-label { color: #a78bfa; }
.pricing-plan--enterprise .plan-price { color: white; font-size: 1.75rem; }
.pricing-plan--enterprise .plan-price-unit { color: #a78bfa; }
.pricing-plan--enterprise .plan-features li { color: rgba(255,255,255,0.9); }
.btn-enterprise {
  display: block; text-align: center;
  padding: 0.65rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600;
  background: #7c3aed; color: white;
  transition: background 0.15s;
}
.btn-enterprise:hover { background: #6d28d9; }

.btn-white-on-dark {
  display: block; text-align: center;
  padding: 0.65rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600;
  background: white; color: #1d46ba;
  transition: background 0.15s;
}
.btn-white-on-dark:hover { background: #eff6ff; }

.pricing-enterprise { max-width: 860px; margin: 0 auto; }
.pricing-enterprise-inner {
  background: white; border-radius: 18px;
  border: 1px solid #e2e8f0; padding: 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.pricing-enterprise-inner h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.pricing-enterprise-inner p { font-size: 0.875rem; color: #64748b; max-width: 480px; }
.btn-dark {
  display: inline-block; padding: 0.65rem 1.5rem;
  border-radius: 10px; background: #0f172a; color: white;
  font-size: 0.875rem; font-weight: 600; white-space: nowrap;
  transition: background 0.15s;
}
.btn-dark:hover { background: #1e293b; }

/* DATA PRIVACY SECTION */
.data-privacy { padding: 5rem 0; background: #ffffff; }
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.privacy-points { display: flex; flex-direction: column; gap: 2rem; }
.privacy-point { display: flex; gap: 1rem; align-items: flex-start; }
.privacy-point-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #2563eb;
}
.privacy-point-icon svg { width: 20px; height: 20px; }
.privacy-point h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.privacy-point p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }
.privacy-image img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.10);
  border: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-image { order: -1; }
}

