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

:root {
  --navy: #0B1526;
  --navy2: #111F35;
  --emerald: #00C896;
  --emerald2: #00E5A8;
  --amber: #F5A623;
  --white: #FAFAFA;
  --off: #F0EDE8;
  --muted: #8A96A8;
  --card: #162035;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1;
}

/* ========== HEADER ========== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 48px;
  height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(11,21,38,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

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

.hdr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hdr-logo-img {
  height: 100px !important;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
  transition: height 0.3s;
}

.hdr-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.hdr-nav-left a,
.hdr-nav-right a {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.hdr-nav-left a:hover,
.hdr-nav-right a:hover { color: var(--white); }

.hdr-cta {
  background: var(--emerald) !important;
  color: #0B1526 !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s !important;
  box-shadow: 0 0 20px rgba(0,200,150,0.3);
}

.hdr-cta:hover {
  background: var(--emerald2) !important;
  color: #0B1526 !important;
  box-shadow: 0 0 30px rgba(0,200,150,0.5) !important;
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hdr-burger span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

.hdr-mobile {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 9998;
}

.hdr-mobile.open { display: flex; }

.hdr-mobile a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.hdr-mobile a:hover { color: var(--emerald); }

/* ========== MOBILE HEADER ========== */
@media (max-width: 860px) {
  .hdr {
    padding: 0 20px;
    height: 90px;
    grid-template-columns: 40px 1fr 40px;
    justify-items: center;
  }

  .hdr-nav-left,
  .hdr-nav-right {
    display: none;
  }

  .hdr-logo {
    grid-column: 2;
    justify-self: center;
  }

  .hdr-logo-img {
    height: 72px !important;
  }

  .hdr-burger {
    display: flex;
    grid-column: 1;
    justify-self: start;
    margin: 0;
  }
}

.ftr-brand-logo img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.2));
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 90px 0 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 100% 50%, rgba(0,200,150,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 600px 600px at -10% 80%, rgba(245,166,35,0.05) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 0%, transparent 70%);
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
}

.hero-pill-dot {
  width: 24px;
  height: 24px;
  background: rgba(0,200,150,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pill-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,150,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(0,200,150,0); }
}

.hero-pill span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--emerald);
  color: #0B1526;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,200,150,0.3);
}

.btn-em:hover {
  background: var(--emerald2);
  box-shadow: 0 6px 30px rgba(0,200,150,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.hero-stats-row {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat .big {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat .big b {
  color: var(--emerald);
  font-size: 20px;
}

.hero-stat .sm {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-card-wrap {
  position: relative;
}

.hero-card-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(0,200,150,0.25), rgba(245,166,35,0.1), transparent);
  z-index: 0;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 24px;
  padding: 36px;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
}

.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.hc-header-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: 1px;
}

.hc-live::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.hc-score-ring {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.hc-score-ring svg {
  width: 160px;
  height: 160px;
}

.hc-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 8;
}

@keyframes ringAnim {
  from { stroke-dashoffset: 377; }
  to { stroke-dashoffset: 60; }
}

.hc-score-inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hc-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hc-lbl {
  font-size: 10px;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hc-bar-section { margin-bottom: 24px; }

.hc-bar-row { margin-bottom: 14px; }

.hc-bar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.hc-bar-head span:first-child { font-size: 12px; color: #aab; font-weight: 400; }
.hc-bar-head span:last-child { font-size: 11px; font-weight: 600; color: var(--white); }

.hc-bar-bg {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald2));
  animation: barIn 1.5s ease-out forwards;
}

@keyframes barIn { from { width: 0 !important; } }

.hc-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.hc-items { display: flex; flex-direction: column; gap: 12px; }

.hc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-item span:first-child { font-size: 12px; color: #8A96A8; }

.hc-tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.tag-green { background: rgba(0,200,150,0.12); color: var(--emerald); border: 1px solid rgba(0,200,150,0.2); }
.tag-amber { background: rgba(245,166,35,0.12); color: var(--amber); border: 1px solid rgba(245,166,35,0.2); }

.hc-bottom {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0,200,150,0.05);
  border: 1px solid rgba(0,200,150,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-bottom-icon {
  width: 36px; height: 36px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hc-bottom p { font-size: 12px; line-height: 1.5; }
.hc-bottom p b { color: var(--emerald); font-weight: 600; }
.hc-bottom p span { color: var(--muted); }

.float-badge {
  position: absolute;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: floatUp 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.float-badge-1 { top: -20px; left: -30px; }
.float-badge-2 { bottom: 20px; right: -20px; animation-delay: 1.5s; }

.fb-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.fb-green { background: rgba(0,200,150,0.1); }
.fb-amber { background: rgba(245,166,35,0.1); }

.fb-text b { display: block; font-size: 12px; font-weight: 700; color: var(--white); line-height: 1.2; }
.fb-text span { font-size: 10px; color: var(--muted); }


/* ========== SECTION BASE ========== */
.sec { padding: 110px 48px; }

.sec-inner { max-width: 1200px; margin: 0 auto; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--emerald);
  display: block;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-title span { color: var(--emerald); }

.sec-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
}


/* ========== SERVICES ========== */
.services-bg { background: #0D1A2F; }

.srv-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.srv-sticky { position: sticky; top: 110px; }

.srv-list { display: flex; flex-direction: column; gap: 0; }

.srv-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.srv-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--emerald);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.3s;
}

.srv-item:hover::before, .srv-item.active::before { opacity: 1; transform: scaleY(1); }
.srv-item:hover { padding-left: 12px; }

.srv-icon {
  width: 48px; height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.srv-item:hover .srv-icon {
  background: rgba(0,200,150,0.1);
  border-color: rgba(0,200,150,0.3);
}

.srv-txt h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.25s;
}

.srv-item:hover .srv-txt h4 { color: var(--emerald); }

.srv-txt p { font-size: 13px; line-height: 1.7; color: var(--muted); font-weight: 300; }

.srv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.srv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at top right, rgba(0,200,150,0.08) 0%, transparent 60%);
}

.srv-card:hover::after { opacity: 1; }

.srv-card:hover {
  border-color: rgba(0,200,150,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.srv-card-num { font-family: var(--font-mono); font-size: 11px; color: var(--emerald); letter-spacing: 2px; margin-bottom: 16px; opacity: 0.7; }

.srv-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }

.srv-card p { font-size: 12.5px; line-height: 1.75; color: var(--muted); font-weight: 300; }

.srv-card-icon-big { font-size: 28px; margin-bottom: 16px; }


/* ========== PROCESS ========== */
.process-bg { background: var(--navy); }

.process-track {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-track::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald) 30%, rgba(0,200,150,0.3) 70%, transparent);
}

.process-step { text-align: center; padding: 0 20px 0; position: relative; }

.ps-circle {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid rgba(0,200,150,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.ps-circle:hover {
  background: rgba(0,200,150,0.1);
  border-color: var(--emerald);
  box-shadow: 0 0 30px rgba(0,200,150,0.2);
}

.ps-num { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--emerald); }

.process-step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }

.process-step p { font-size: 12.5px; line-height: 1.8; color: var(--muted); font-weight: 300; }


/* ========== TESTIMONIALS CAROUSEL ========== */
.test-bg { background: #0D1A2F; }

.test-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.test-meta { display: flex; align-items: center; gap: 16px; }

.test-rating-big { font-family: var(--font-mono); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; }

.test-rating-info .stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }

.test-rating-info p { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.test-card:hover {
  border-color: rgba(0,200,150,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.test-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.test-stars-sm { color: var(--amber); font-size: 13px; letter-spacing: 2px; }

.test-pts {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--emerald);
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.test-quote {
  font-size: 13px;
  line-height: 1.85;
  color: #bbc;
  font-weight: 300;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.test-av {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--card));
  border: 1px solid rgba(0,200,150,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald);
  flex-shrink: 0;
}

.test-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; }
.test-loc { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.test-date { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; margin-top: 2px; }

.test-card.feat {
  background: linear-gradient(145deg, rgba(0,200,150,0.08), rgba(0,200,150,0.03));
  border-color: rgba(0,200,150,0.2);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.carousel-btn:hover {
  background: rgba(0,200,150,0.1);
  border-color: rgba(0,200,150,0.4);
  color: var(--emerald);
}

.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots { display: flex; gap: 8px; align-items: center; }

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--emerald);
}

.carousel-progress {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  min-width: 60px;
  text-align: center;
}


/* ========== CTA SECTION ========== */
.cta-sec {
  background: var(--navy);
  padding: 110px 48px;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(0,200,150,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 10% 90%, rgba(245,166,35,0.04) 0%, transparent 60%);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--emerald);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 100px;
  background: rgba(0,200,150,0.06);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-box h2 span { color: var(--emerald); }

.cta-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-trust {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.cta-trust-item::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  font-size: 13px;
}


/* ========== FOOTER ========== */
.ftr {
  background: #07111F;
  border-top: 1px solid var(--border);
  padding: 80px 48px 36px;
}

.ftr-inner { max-width: 1200px; margin: 0 auto; }

.ftr-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ftr-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 270px;
  margin-bottom: 24px;
  font-weight: 300;
}

.ftr-socials { display: flex; gap: 10px; }

.ftr-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s;
}

.ftr-social:hover {
  border-color: rgba(0,200,150,0.4);
  color: var(--emerald);
  background: rgba(0,200,150,0.06);
}

.ftr-col h5 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.ftr-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.ftr-links a { font-size: 13px; color: #667080; text-decoration: none; transition: color 0.2s; font-weight: 300; }
.ftr-links a:hover { color: var(--white); }

.ftr-contact-items { display: flex; flex-direction: column; gap: 16px; }

.ftr-ci { display: flex; align-items: flex-start; gap: 12px; }

.ftr-ci-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--emerald);
}

.ftr-ci-txt strong { display: block; font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.ftr-ci-txt span { font-size: 13px; color: #aab; font-weight: 300; }

.ftr-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 28px; }

.ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px;
  color: #445060;
}

.ftr-bottom-links { display: flex; gap: 24px; }
.ftr-bottom-links a { color: #445060; text-decoration: none; transition: color 0.2s; }
.ftr-bottom-links a:hover { color: var(--muted); }


/* ============================================
   RESPONSIVE — MEDIA QUERIES (6 Breakpoints)
   ============================================
   ≥1280px : Large Desktop (default)
   ≤1280px : Laptop
   ≤1100px : Small Laptop / Large Tablet
   ≤ 960px : Tablet Landscape
   ≤ 768px : Tablet Portrait
   ≤ 640px : Large Mobile
   ≤ 480px : Mobile
   ≤ 380px : Small Mobile
============================================ */

img, svg, video { max-width: 100%; height: auto; }
img.hdr-logo-img, .ftr-brand-logo img { height: auto; }

/* ----- LAPTOP (≤1280px) ----- */
@media (max-width: 1280px) {
  .hdr { padding: 0 32px; }
  .hero-inner { padding: 60px 32px; gap: 60px; grid-template-columns: 1fr 440px; }
  .sec { padding: 100px 32px; }
  .cta-sec { padding: 100px 32px; }
  .ftr { padding: 70px 32px 32px; }
}

/* ----- SMALL LAPTOP / LARGE TABLET (≤1100px) ----- */
@media (max-width: 1100px) {
  .hdr-nav-left, .hdr-nav-right { gap: 24px; }
  .hdr-nav-left a, .hdr-nav-right a { font-size: 12px; }

  .hero-inner { grid-template-columns: 1fr 400px; gap: 40px; }
  .hero h1 { font-size: clamp(38px, 5vw, 56px); }
  .float-badge-1 { top: -10px; left: -15px; }
  .float-badge-2 { right: -10px; }

  .srv-layout { grid-template-columns: 1fr; gap: 50px; }
  .srv-sticky { position: static; }
  .srv-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .srv-item { padding: 20px; }
  .srv-item:hover { padding-left: 20px; }
  .srv-cards { grid-template-columns: 1fr 1fr; }

  .test-card { flex: 0 0 calc(50% - 10px); }
}

/* ----- TABLET LANDSCAPE (≤960px) ----- */
@media (max-width: 960px) {
  .hero { padding-top: 90px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 32px;
  }
  .hero-content { text-align: center; }
  .hero-pill { margin: 0 auto 28px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats-row { justify-content: center; gap: 40px; }
  .hero-card-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
  .float-badge-1 { top: -16px; left: 8px; }
  .float-badge-2 { bottom: 12px; right: 8px; }

  .process-track { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-track::after { display: none; }

  .test-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .test-meta { align-self: flex-start; }

  .ftr-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ftr-top > div:first-child { grid-column: 1 / -1; text-align: center; }
  .ftr-top > div:first-child .ftr-brand-desc { margin-left: auto; margin-right: auto; }
  .ftr-top > div:first-child .ftr-socials { justify-content: center; }
  .ftr-brand-logo img { margin: 0 auto; }
}

/* ----- TABLET PORTRAIT (≤768px) ----- */
@media (max-width: 768px) {
  .sec { padding: 80px 24px; }
  .cta-sec { padding: 80px 24px; }

  .hero h1 { font-size: clamp(34px, 8vw, 48px); line-height: 1.15; }
  .hero-desc { font-size: 15px; margin-bottom: 36px; }
  .hero-stats-row { gap: 28px; padding-top: 32px; }
  .hero-stat .big { font-size: 28px; }
  .hero-stat .sm { font-size: 10px; }

  .hero-card { padding: 28px; }
  .hc-num { font-size: 38px; }

  .sec-title { font-size: clamp(26px, 5vw, 40px); }
  .sec-desc { font-size: 14px; }

  .srv-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .srv-card { padding: 24px 20px; }

  .cta-box h2 { font-size: clamp(28px, 6vw, 44px); }
  .cta-box p { font-size: 15px; margin-bottom: 36px; }
  .cta-trust { gap: 20px; }
}

/* ----- LARGE MOBILE (≤640px) ----- */
@media (max-width: 640px) {
  .hdr { padding: 0 16px; height: 80px; }
  .hdr-logo-img { height: 64px !important; }
  .hdr-mobile { top: 80px; padding: 20px 24px; }

  .hero { padding-top: 80px; }
  .hero-inner { padding: 48px 20px; gap: 48px; }
  .hero-pill { padding: 5px 14px 5px 7px; }
  .hero-pill span { font-size: 10px; letter-spacing: 1px; }
  .hero-pill-dot { width: 20px; height: 20px; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); margin-bottom: 20px; }
  .hero-desc { font-size: 14px; line-height: 1.7; margin-bottom: 32px; }

  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .btn-em, .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px 24px;
    padding-top: 28px;
    justify-content: space-around;
  }
  .hero-stat { flex: 0 0 calc(33.333% - 16px); text-align: center; }
  .hero-stat .big { font-size: 24px; }
  .hero-stat .big b { font-size: 16px; }

  .hero-card { padding: 24px 20px; border-radius: 18px; }
  .hero-card-wrap::before { border-radius: 22px; }
  .hc-header { margin-bottom: 22px; }
  .hc-header-title { font-size: 10px; letter-spacing: 1.5px; }
  .hc-live { font-size: 9px; padding: 3px 8px; }
  .hc-score-ring svg { width: 130px; height: 130px; }
  .hc-num { font-size: 34px; }
  .hc-bottom { padding: 12px; }
  .hc-bottom p { font-size: 11px; }
  .hc-bottom-icon { width: 32px; height: 32px; font-size: 14px; }

  .sec { padding: 64px 20px; }
  .cta-sec { padding: 64px 20px; }
  .sec-title { font-size: clamp(24px, 7vw, 34px); }
  .sec-label { font-size: 9px; letter-spacing: 2px; }

  .srv-list { grid-template-columns: 1fr; }
  .srv-item { padding: 18px 0; }
  .srv-item:hover { padding-left: 0; }
  .srv-item::before { display: none; }
  .srv-icon { width: 42px; height: 42px; font-size: 18px; }
  .srv-txt h4 { font-size: 15px; }
  .srv-txt p { font-size: 12.5px; }

  .srv-cards { grid-template-columns: 1fr; gap: 14px; }
  .srv-card { padding: 22px 20px; }
  .srv-card h3 { font-size: 16px; }
  .srv-card-icon-big { font-size: 24px; margin-bottom: 12px; }

  .process-track { grid-template-columns: 1fr; gap: 36px; margin-top: 50px; }
  .process-step { padding: 0; }
  .ps-circle { width: 64px; height: 64px; margin-bottom: 20px; }
  .ps-num { font-size: 20px; }
  .process-step h4 { font-size: 15px; }
  .process-step p { font-size: 12.5px; }

  .test-header { gap: 20px; margin-bottom: 40px; }
  .test-rating-big { font-size: 38px; }
  .test-rating-info .stars { font-size: 15px; }
  .test-card {
    flex: 0 0 100%;
    padding: 24px 20px;
  }
  .test-quote { font-size: 12.5px; line-height: 1.75; }
  .test-av { width: 36px; height: 36px; font-size: 13px; }
  .test-name { font-size: 12.5px; }
  .test-loc, .test-date { font-size: 10.5px; }

  .carousel-controls { gap: 12px; margin-top: 36px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 16px; }
  .carousel-progress { font-size: 10px; min-width: 50px; }

  .cta-box h2 { font-size: clamp(26px, 8vw, 36px); }
  .cta-box p { font-size: 14px; line-height: 1.65; margin-bottom: 32px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-em, .cta-btns .btn-ghost { width: 100%; padding: 15px 24px !important; font-size: 13px !important; }
  .cta-trust { gap: 12px 20px; margin-top: 32px; justify-content: center; }
  .cta-trust-item { font-size: 11px; }

  .ftr { padding: 56px 20px 24px; }
  .ftr-top { grid-template-columns: 1fr; gap: 32px; text-align: center; margin-bottom: 40px; }
  .ftr-top > div { text-align: center; }
  .ftr-top > div:first-child { grid-column: auto; }
  .ftr-brand-logo img { height: 60px; margin: 0 auto; }
  .ftr-brand-desc { margin-left: auto; margin-right: auto; }
  .ftr-socials { justify-content: center; }
  .ftr-col h5 { text-align: center; }
  .ftr-links { align-items: center; }
  .ftr-ci { justify-content: center; }
  .ftr-contact-items { align-items: center; }
  .ftr-ci-txt { text-align: left; }
  .ftr-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .ftr-bottom-links { justify-content: center; gap: 16px; flex-wrap: wrap; }
}

/* ----- MOBILE (≤480px) ----- */
@media (max-width: 480px) {
  .hdr { padding: 0 14px; height: 72px; }
  .hdr-logo-img { height: 56px !important; }
  .hdr-mobile { top: 72px; padding: 18px 20px; }
  .hdr-burger { width: 36px; height: 36px; }

  .hero { padding-top: 72px; }
  .hero-inner { padding: 40px 16px; }
  .hero h1 { font-size: 30px; line-height: 1.2; }

  .hero-stats-row { gap: 16px 12px; padding-top: 24px; }
  .hero-stat { flex: 0 0 calc(33.333% - 8px); }
  .hero-stat .big { font-size: 22px; }
  .hero-stat .big b { font-size: 14px; }
  .hero-stat .sm { font-size: 9px; letter-spacing: 1px; }

  .hero-card { padding: 22px 18px; }
  .hc-score-ring svg { width: 120px; height: 120px; }
  .hc-num { font-size: 30px; }

  .sec { padding: 56px 16px; }
  .cta-sec { padding: 56px 16px; }
  .ftr { padding: 48px 16px 22px; }

  .float-badge { display: none !important; }

  .srv-card { padding: 20px 16px; }
  .srv-card h3 { font-size: 15px; }
  .srv-card p { font-size: 12px; }

  .test-card { padding: 22px 18px; }

  .cta-eyebrow { font-size: 9px; letter-spacing: 3px; padding: 5px 16px; }
  .cta-trust { gap: 10px 16px; }
  .cta-trust-item { font-size: 10.5px; }
}

/* ----- SMALL MOBILE (≤380px) ----- */
@media (max-width: 380px) {
  .hdr { padding: 0 12px; height: 68px; }
  .hdr-logo-img { height: 48px !important; }
  .hero-inner { padding: 32px 14px; }
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 13.5px; }

  .hero-stats-row { gap: 12px 10px; }
  .hero-stat .big { font-size: 20px; }
  .hero-stat .sm { font-size: 8.5px; }

  .sec, .cta-sec { padding: 48px 14px; }
  .ftr { padding: 40px 14px 20px; }

  .btn-em, .btn-ghost { font-size: 12.5px; padding: 13px 20px; }
  .hc-num { font-size: 26px; }
  .test-rating-big { font-size: 32px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 14px; }
}

/* ----- LANDSCAPE MOBILE ORIENTATION ----- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
  .hero-inner { padding: 30px 32px; gap: 40px; }
}

/* ----- LARGE SCREENS (≥1600px) ----- */
@media (min-width: 1600px) {
  .hdr { padding: 0 64px; }
  .hero-inner { max-width: 1400px; padding: 100px 64px; }
  .sec-inner { max-width: 1320px; }
  .ftr-inner { max-width: 1320px; }
  .sec { padding: 130px 64px; }
}

/* ----- TOUCH DEVICE FIXES ----- */
@media (hover: none) and (pointer: coarse) {
  .srv-card:hover, .test-card:hover, .ps-circle:hover { transform: none; }
  .btn-em:hover, .btn-ghost:hover, .hdr-cta:hover { transform: none; }
}

/* ----- ACCESSIBILITY: REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
