/* Skip link — pure CSS, always focusable */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: #009FC2;
    color: #ffffff;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 3px solid #F4C300;
    outline-offset: 2px;
}

/* Reserve space before fonts load — prevents hero layout shift */
.hero-title {
    min-height: 4.2rem;
    contain: layout style;
}
.hero-subtitle {
    min-height: 3.5rem;
    contain: layout style;
}
.nav-cta-wrapper {
    min-width: 160px;
    min-height: 40px;
}
.hero-stats {
    min-height: 80px;
    contain: layout;
}

/* ── CSS Custom Properties ──────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --cyan:       #009FC2;
  --cyan-dark:  #0088A8;
  --cyan-light: #00B8D9;
  --magenta:    #B34B91;
  --yellow:     #F4C300;
  --lime:       #B6D500;
  --orange:     #E67E4A;
  --dark:       #0F172A;
  --dark-2:     #1E293B;
  --dark-3:     #334155;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-300:   #CBD5E1;
  --gray-400:   #94A3B8;
  --gray-500:   #64748B;
  --gray-600:   #475569;
  --text:       #0F172A;
  --text-muted: #64748B;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --radius-sm:  0.375rem;
  --radius:     0.625rem;
  --radius-md:  0.875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-cyan: 0 8px 32px rgba(0,159,194,.3);
  --shadow-glow: 0 0 40px rgba(0,159,194,.4);

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  150ms;
  --dur:       250ms;
  --dur-slow:  400ms;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
/* CLS prevention: reserve space and fade in lazy images */
img[data-src] { opacity: 0; transition: opacity 0.3s ease; }
img.img-loaded { opacity: 1; }
a { color: var(--cyan); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--cyan-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text); }
p { line-height: 1.7; }

/* ── Screen reader only ─────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Typography scale ───────────────────────────────────────────────────────── */
.display-1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h1  { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2  { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.015em; }
h3  { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }
h4  { font-size: 1.25rem; font-weight: 600; }
h5  { font-size: 1.125rem; font-weight: 600; }
h6  { font-size: 1rem; font-weight: 600; }
.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.75rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-muted { color: var(--text-muted); }
.text-cyan  { color: var(--cyan); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }

/* ── Layout utilities ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section-sm { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 { color: var(--white); }
.section-gray { background: var(--gray-50); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  box-shadow: 0 8px 24px rgba(0,136,168,.4);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-secondary:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
  color: var(--white);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-outline-dark:hover {
  background: var(--cyan);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border-color: transparent;
  padding-inline: var(--sp-4);
}
.btn-ghost:hover { background: rgba(0,159,194,.08); color: var(--cyan-dark); }

.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-xl  { padding: 1.125rem 2.75rem; font-size: 1.125rem; }
.btn-nav { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.875rem 1.75rem;
  background: #25D366;
  color: var(--dark);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa-lg:hover {
  background: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  color: var(--white);
}

/* ── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
  transition: all var(--dur-slow) var(--ease-spring);
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.card-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--dur-slow) var(--ease-spring);
}
.card-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,159,194,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(0,159,194,.2);
}

.card-dark {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--dur-slow) var(--ease-spring);
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), var(--shadow-cyan);
}

/* ── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-cyan    { background: rgba(0,159,194,.12); color: var(--cyan); border: 1px solid rgba(0,159,194,.2); }
.badge-magenta { background: rgba(179,75,145,.12); color: var(--magenta); border: 1px solid rgba(179,75,145,.2); }
.badge-yellow  { background: rgba(244,195,0,.12); color: #8B6F00; border: 1px solid rgba(244,195,0,.3); }
.badge-lime    { background: rgba(182,213,0,.12); color: #5A6B00; border: 1px solid rgba(182,213,0,.3); }
.badge-orange  { background: rgba(230,126,74,.12); color: #8B3A00; border: 1px solid rgba(230,126,74,.25); }
.badge-dark    { background: var(--dark); color: var(--white); }
.badge-popular { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: var(--dark); border: none; }
.badge-new     { background: linear-gradient(135deg, var(--lime), var(--cyan)); color: var(--dark); border: none; }
.badge-value   { background: linear-gradient(135deg, var(--magenta), var(--cyan)); color: var(--white); border: none; }

/* ── Section Headers ─────────────────────────────────────────────────────────  */
.section-header {
  max-width: 640px;
  margin-bottom: var(--sp-12);
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--sp-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: var(--radius-full);
}
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { color: var(--text-muted); font-size: 1.0625rem; }

/* ── Gradient text ──────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Dividers ───────────────────────────────────────────────────────────────── */
.divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: var(--radius-full);
  margin-block: var(--sp-6);
}
.divider.center { margin-inline: auto; }

/* ── Check list ─────────────────────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23009FC2' opacity='.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23009FC2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Highlight box ──────────────────────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,159,194,.08), rgba(179,75,145,.06));
  border: 1px solid rgba(0,159,194,.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
}

/* ── Icon box ───────────────────────────────────────────────────────────────── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-box-cyan    { background: linear-gradient(135deg, rgba(0,159,194,.15), rgba(0,184,217,.1)); color: var(--cyan); }
.icon-box-magenta { background: linear-gradient(135deg, rgba(179,75,145,.15), rgba(200,80,160,.1)); color: var(--magenta); }
.icon-box-yellow  { background: linear-gradient(135deg, rgba(244,195,0,.15), rgba(244,195,0,.1)); color: #8B6F00; }
.icon-box-lime    { background: linear-gradient(135deg, rgba(182,213,0,.15), rgba(182,213,0,.1)); color: #5A6B00; }
.icon-box-orange  { background: linear-gradient(135deg, rgba(230,126,74,.15), rgba(230,126,74,.1)); color: var(--orange); }

/* ── Number steps ───────────────────────────────────────────────────────────── */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-cyan);
}

/* ── Trust badges ───────────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
}
.trust-badge svg { flex-shrink: 0; }

/* ── Scroll hint ────────────────────────────────────────────────────────────── */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  margin-top: var(--sp-10);
}
.scroll-hint .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint .mouse::after {
  content: '';
  width: 4px;
  height: 6px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: mouseScroll 1.5s ease infinite;
}

/* ── Horizontal scroll container ───────────────────────────────────────────── */
.scroll-x {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  padding-bottom: var(--sp-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}
.scroll-x > * { scroll-snap-align: start; flex-shrink: 0; }
.scroll-x::-webkit-scrollbar { height: 4px; }
.scroll-x::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.scroll-x::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* Logo */
.nav-logo img,
.footer-logo img {
    display: block;
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.footer-logo img {
    max-height: 42px;
    /* Optional: make logo white/light on dark footer */
    filter: brightness(0) invert(1);
}

/* Remove filter above if your logo already works on dark background */
