/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body, ul, ol { margin: 0; padding: 0; list-style: none; }

/* Accessibility: skip-to-content */
.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
  background: #1D1F3F;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  text-decoration: none;
}
.skip-link:focus { top: 0; left: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1D1F3F;
  overflow-x: hidden;
}

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

/* =========================================================
   LAYOUT
========================================================= */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* =========================================================
   NAVBAR
========================================================= */
.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(29,31,63,0.55) 0%, rgba(29,31,63,0) 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-radius 0.4s, box-shadow 0.4s;
}

/* Scrolled state — white card navbar */
.hd.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 0 0 25px 25px;
  box-shadow: 0 2px 24px rgba(29,31,63,0.09);
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
}

/* Logo — white on hero, dark when scrolled */
.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s;
}
.hd-logo span { color: #48BEE9; }
.hd.scrolled .hd-logo { color: #1D1F3F; }

.hd-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.hd.scrolled .hd-logo-img {
  filter: none;
}

.hd-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(119deg, rgba(255,255,255,0.4) -3.5%, rgba(255,255,255,0) 51.63%), #47BEE9;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* Nav links — white on hero, dark when scrolled */
.hd-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hd-nav::before {
  content: '';
  position: absolute;
  left: -28px; top: 0; bottom: 0;
  margin: auto;
  width: 1px; height: 25px;
  background: rgba(255,255,255,0.3);
  transition: background 0.4s;
}
.hd.scrolled .hd-nav::before { background: rgba(29,31,63,0.12); }

.hd-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s;
}
.hd-nav a:hover { color: #48BEE9; }
.hd.scrolled .hd-nav a { color: #1D1F3F; }
.hd.scrolled .hd-nav a:hover { color: #48BEE9; }

.hd-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Lang switch — white on hero, dark when scrolled */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.lang-switch button {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}
.lang-switch button.active { color: #fff; font-weight: 700; }
.lang-switch span { color: rgba(255,255,255,0.3); }
.hd.scrolled .lang-switch button { color: #949DAA; }
.hd.scrolled .lang-switch button.active { color: #1D1F3F; }
.hd.scrolled .lang-switch span { color: #ECEEF2; }

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  background: linear-gradient(119deg, rgba(255,255,255,0.4) -3.5%, rgba(255,255,255,0) 51.63%), #47BEE9;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 0 28px;
  height: 48px;
  border: none;
  cursor: pointer;
  transition: filter 0.3s;
  white-space: nowrap;
}
.btn:hover { filter: saturate(1.4); }
.btn-outline {
  background: none;
  border: 1.5px solid #48BEE9;
  color: #1D1F3F;
}
.btn-outline:hover { background: #48BEE9; color: #fff; filter: none; }
.btn-white {
  background: #fff;
  color: #1D1F3F;
}
.btn-white:hover { background: #47BEE9; color: #fff; filter: none; }

/* Burger — white on hero, dark when scrolled */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 22px;
  color: #fff;
  transition: color 0.4s;
}
.hd.scrolled .burger { color: #1D1F3F; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hd.scrolled .mobile-menu { border-top-color: #ECEEF2; }
.mobile-menu a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
}
.hd.scrolled .mobile-menu a { color: #1D1F3F; }
.mobile-menu a:hover { color: #48BEE9; }

.mobile-menu.open {
  display: flex;
  animation: mobileMenuIn 0.25s ease forwards;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open > * {
  opacity: 0;
  animation: mobileItemIn 0.22s ease forwards;
}
.mobile-menu.open > *:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.open > *:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.open > *:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.open > *:nth-child(4) { animation-delay: 0.16s; }
.mobile-menu.open > *:nth-child(5) { animation-delay: 0.20s; }
.mobile-menu.open > *:nth-child(6) { animation-delay: 0.24s; }
@keyframes mobileItemIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Mobile menu bottom row: login btn + lang switch */
.mobile-menu-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
}
.mobile-lang-switch button {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #949DAA;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}
.mobile-lang-switch button.active { color: #1D1F3F; font-weight: 700; }
.mobile-lang-switch span { color: #ECEEF2; }

/* =========================================================
   HERO  — full-screen with background image
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Fallback gradient shown while image loads or if it fails */
  background-color: #0f1628;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(15,22,40,0.88) 0%,
    rgba(29,31,63,0.72) 50%,
    rgba(72,190,233,0.22) 100%
  );
}

/* Inner wrapper — full height, flex column, spreads content */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 130px 80px 0;
}

/* Top badge */
.hero-top { margin-bottom: 0; }
.hero-badge {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(72,190,233,0.4);
  border-radius: 20px;
  padding: 6px 16px;
}
.hero-badge span { color: #48BEE9; }

/* Center content — headline, subtitle, CTAs */
.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
}
.hero-h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-h1 b { color: #48BEE9; font-weight: 500; }
.hero-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
}
.hero-trust-item i { color: #48BEE9; font-size: 14px; }

/* Key value cards row */
.hero-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.hero-value-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
}
.hero-value-card:hover {
  background: rgba(72,190,233,0.14);
  border-color: rgba(72,190,233,0.4);
}
.hero-value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(72,190,233,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #48BEE9;
  margin-bottom: 16px;
}
.hero-value-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.hero-value-desc {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

/* Stats bar — pinned at bottom */
.hero-stats {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hero-stat-num {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 1px solid #48BEE9;
  padding-bottom: 5px;
  margin-bottom: 6px;
}
.hero-stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

/* =========================================================
   SECTION COMMON
========================================================= */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-tag {
  color: #48BEE9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h2 {
  color: #1D1F3F;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}
.h2 b { font-weight: 500; color: #48BEE9; }
.h3 {
  color: #1D1F3F;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.15;
}
.h3 b { font-weight: 500; color: #48BEE9; }
.body-text {
  color: #1D1F3F;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.text-muted { color: #949DAA; }
.divider { height: 1px; background: #ECEEF2; margin: 0; }

/* Card base */
.card {
  border-radius: 25px;
  border: 1px solid #ECEEF2;
  background: linear-gradient(194deg, rgba(255,255,255,0.4) 70.93%, rgba(199,211,230,0.4) 119.29%);
  overflow: hidden;
}
.card-gray {
  border-radius: 25px;
  background: #F5F7F9;
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.about-header-left .h2 { margin-top: 14px; }
.about-header-right .body-text { margin-bottom: 16px; }
.about-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #ECEEF2;
}
.about-badge {
  background: #F5F7F9;
  border: 1px solid #ECEEF2;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1D1F3F;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-badge i { color: #48BEE9; }
.about-showcase {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(29,31,63,0.13);
  border: 1px solid #ECEEF2;
}
.about-showcase .screenshot-frame {
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
}
.about-showcase .screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
/* kept for any legacy reference */
.about-right-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Mockup inside about-right */
.about-mockup {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, #1D1F3F 0%, #1a3a5c 100%);
}

/* =========================================================
   FEATURES GRID
========================================================= */
.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}
.features-intro-left { }
.features-intro-left .h2 { margin-bottom: 16px; }
.features-intro-right .body-text { max-width: 480px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  border-radius: 25px;
  background: #F5F7F9;
  padding: 30px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(29,31,63,0.08);
}
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #48BEE9;
  margin-bottom: 28px;
}
.feat-title {
  font-size: 15px;
  font-weight: 600;
  color: #1D1F3F;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-desc {
  font-size: 12px;
  font-weight: 400;
  color: #1D1F3F;
  line-height: 1.5;
}

/* Large feature card (span 2) */
.feat-card-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #1D1F3F;
  color: #fff;
  min-height: 280px;
  border-radius: 25px;
  overflow: hidden;
}
.feat-card-lg-text {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-card-lg-text .feat-title { color: #fff; font-size: 18px; }
.feat-card-lg-text .feat-desc { color: rgba(255,255,255,0.65); font-size: 13px; }
.feat-card-lg-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(72,190,233,0.3) 0%, rgba(72,190,233,0.05) 100%);
}
.feat-card-lg-icon-wrap i {
  font-size: 80px;
  color: rgba(72,190,233,0.4);
}

/* Second features row */
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* =========================================================
   HOW IT WORKS (numbered list)
========================================================= */
.how-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.how-left { padding: 50px 60px 50px 0; }
.how-left .h2 { margin-bottom: 20px; }
.how-left .body-text { margin-bottom: 32px; }
.how-right {
  counter-reset: steps;
}
.how-item {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #ECEEF2;
  counter-increment: steps;
}
.how-item:last-child { border-bottom: none; }
.how-num {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: #F5F7F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #48BEE9;
}
.how-num::before {
  content: counter(steps, decimal-leading-zero);
}
.how-text-title {
  font-size: 20px;
  font-weight: 500;
  color: #1D1F3F;
  margin-bottom: 4px;
}
.how-text-desc {
  font-size: 13px;
  color: #949DAA;
  line-height: 1.4;
}

/* =========================================================
   SPOTLIGHT SECTIONS (split screen feature showcases)
========================================================= */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid #ECEEF2;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(115deg, rgba(255,255,255,0.4) 84.2%, rgba(199,211,230,0.4) 107.92%);
}
.spotlight-reverse { }
.spotlight-img {
  background: #1a1c3a;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 30px;
}
.spotlight-text {
  padding: 50px 56px 50px 46px;
}
.spotlight-reverse .spotlight-img { order: 2; }
.spotlight-reverse .spotlight-text { order: 1; padding: 50px 46px 50px 56px; }
.spotlight-text .section-tag { margin-bottom: 16px; }
.spotlight-text .h3 { margin-bottom: 20px; }
.spotlight-text .body-text { margin-bottom: 28px; }
.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #1D1F3F;
  line-height: 1.4;
}
.spotlight-list li i { color: #48BEE9; margin-top: 2px; font-size: 14px; flex-shrink: 0; }

/* =========================================================
   MINI MOCKUP COMPONENTS
========================================================= */
.mockup-window {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 100%;
}
.mockup-bar {
  background: #F5F7F9;
  border-bottom: 1px solid #ECEEF2;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-url {
  flex: 1; margin: 0 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ECEEF2;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  color: #949DAA;
}
.mockup-body { padding: 20px; }

/* =========================================================
   SCREENSHOT FRAMES (replaces coded mockups)
========================================================= */
.screenshot-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  width: 100%;
}
.screenshot-bar {
  background: #F5F7F9;
  border-bottom: 1px solid #ECEEF2;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.screenshot-url {
  flex: 1;
  margin: 0 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ECEEF2;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  color: #949DAA;
}
.screenshot-body {
  line-height: 0;
  background: #f8fafc;
}
.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Tooth grid */
.tooth-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}
.tooth-cell {
  aspect-ratio: 1;
  border-radius: 7px;
  border: 1.5px solid #ECEEF2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #949DAA;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.tooth-cell:hover { border-color: #48BEE9; color: #48BEE9; background: rgba(72,190,233,0.06); }
.tooth-cell.treated { border-color: #48BEE9; color: #48BEE9; background: rgba(72,190,233,0.1); }
.tooth-cell.flagged { border-color: #f59e0b; color: #f59e0b; background: rgba(245,158,11,0.08); }

/* Stat mini cards */
.stat-mini {
  background: #F5F7F9;
  border-radius: 12px;
  padding: 14px 18px;
}
.stat-mini-num { font-size: 22px; font-weight: 500; color: #1D1F3F; }
.stat-mini-label { font-size: 11px; color: #949DAA; margin-top: 2px; }
.stat-mini-delta { font-size: 11px; color: #48BEE9; font-weight: 600; }

/* Appointment row */
.appt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #F5F7F9;
  margin-bottom: 8px;
}
.appt-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(119deg, rgba(255,255,255,0.4) -3.5%, rgba(255,255,255,0) 51.63%), #47BEE9;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.appt-info { flex: 1; }
.appt-name { font-size: 12px; font-weight: 600; color: #1D1F3F; }
.appt-detail { font-size: 11px; color: #949DAA; }
.appt-status {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.appt-status.confirmed { background: rgba(72,190,233,0.12); color: #48BEE9; }
.appt-status.pending { background: rgba(245,158,11,0.12); color: #f59e0b; }

/* Invoice row */
.inv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ECEEF2;
}
.inv-row:last-child { border: none; }
.inv-label { font-size: 12px; color: #1D1F3F; }
.inv-amount { font-size: 13px; font-weight: 600; color: #1D1F3F; }
.inv-total { color: #48BEE9; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  border-radius: 25px;
  border: 1px solid #ECEEF2;
  background: #fff;
  padding: 36px 32px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: #48BEE9; }
.testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-quote {
  font-size: 14px;
  font-weight: 400;
  color: #1D1F3F;
  line-height: 1.65;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: #1D1F3F; }
.testi-role { font-size: 11px; color: #949DAA; }

/* =========================================================
   PRICING
========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.pricing-card {
  border-radius: 25px;
  border: 1px solid #ECEEF2;
  background: #fff;
  padding: 40px 36px;
}
.pricing-card-popular {
  background: #1D1F3F;
  border-color: #1D1F3F;
  transform: scale(1.04);
}
.pricing-plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #949DAA;
  margin-bottom: 10px;
}
.pricing-card-popular .pricing-plan { color: #48BEE9; }
.pricing-price {
  font-size: 42px;
  font-weight: 400;
  color: #1D1F3F;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card-popular .pricing-price { color: #fff; }
.pricing-price span { font-size: 14px; color: #949DAA; font-weight: 400; }
.pricing-card-popular .pricing-price span { color: rgba(255,255,255,0.5); }
.pricing-annual-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #949DAA;
  margin-top: 4px;
  min-height: 16px;
}
.pricing-card-popular .pricing-annual-note { color: rgba(255,255,255,0.45); }
.pricing-desc {
  font-size: 12px;
  color: #949DAA;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ECEEF2;
}
.pricing-card-popular .pricing-desc { border-color: rgba(255,255,255,0.12); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1D1F3F;
}
.pricing-card-popular .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li i { color: #48BEE9; font-size: 13px; flex-shrink: 0; }
.pricing-features li.off { color: #ECEEF2; }
.pricing-features li.off i { color: #ECEEF2; }
.pricing-card-popular .pricing-features li.off { color: rgba(255,255,255,0.2); }
.pricing-popular-badge {
  display: inline-block;
  background: #48BEE9;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Limited offer banner */
.pricing-offer-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(120deg, #13152e 0%, #1D1F3F 100%);
  border: 1px solid rgba(72,190,233,0.28);
  border-radius: 18px;
  padding: 20px 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 32px rgba(72,190,233,0.12), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.pricing-offer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(72,190,233,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.offer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #48BEE9;
}
.offer-tag i { font-size: 9px; }
.offer-main {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
  margin: 0;
  max-width: max-content;
}
.offer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #48BEE9;
  border-radius: 12px;
  padding: 10px 22px;
  position: relative;
  gap: 0;
}
.offer-badge-line1 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29,31,63,0.65);
  line-height: 1;
  margin-bottom: 3px;
}
.offer-badge-value {
  font-size: 30px;
  font-weight: 800;
  color: #1D1F3F;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 640px) {
  .pricing-offer-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }
  .offer-badge {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
  }
  .offer-badge-line1 { margin-bottom: 0; }
  .offer-badge-value { font-size: 22px; }
}
/* Price block */
.pricing-price-block { margin-bottom: 6px; }
.pricing-old-price {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}
.pricing-old-amount {
  font-size: 15px;
  color: #b0b7c3;
  text-decoration: line-through;
}
.pricing-old-suffix {
  font-size: 12px;
  color: #b0b7c3;
  text-decoration: line-through;
}
.pricing-card-popular .pricing-old-amount,
.pricing-card-popular .pricing-old-suffix { color: rgba(255,255,255,0.35); }
.pricing-discount-pill {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
/* Billing toggle */
.pricing-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #1D1F3F;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: #ECEEF2;
  border-radius: 13px;
  transition: background 0.25s;
}
.toggle-track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch input:checked ~ .toggle-track { background: #48BEE9; }
.toggle-switch input:checked ~ .toggle-track::after { transform: translateX(22px); }
.pricing-save-badge {
  background: #48BEE9;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
/* Addon row */
.pricing-features li.pricing-addon {
  color: #949DAA;
  font-size: 12px;
  border-top: 1px solid #ECEEF2;
  padding-top: 10px;
  margin-top: 2px;
}
.pricing-features li.pricing-addon i { color: #949DAA; font-size: 11px; }
.pricing-card-popular .pricing-features li.pricing-addon {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
.pricing-card-popular .pricing-features li.pricing-addon i { color: rgba(255,255,255,0.45); }

/* =========================================================
   CTA / CONTACT SECTION
========================================================= */
.contact-box {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(29,31,63,0.10);
}

/* Left panel — dark navy with accent */
.contact-left {
  background: linear-gradient(160deg, #1D1F3F 0%, #1a3358 100%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
/* Decorative circle accent */
.contact-left::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,190,233,0.18) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.contact-left .h3 { color: #fff; margin-bottom: 16px; }
.contact-left .body-text { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(72,190,233,0.15);
  border: 1px solid rgba(72,190,233,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: #48BEE9; font-size: 15px; }
.contact-info-item span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.contact-tag {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Right panel — form */
.contact-right {
  padding: 56px 60px;
  background: #fff;
}
.contact-right .h3 { color: #1D1F3F; margin-bottom: 8px; }
.contact-form-subtitle {
  font-size: 13px;
  color: #949DAA;
  margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #1D1F3F;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ECEEF2;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #1D1F3F;
  background: #F5F7F9;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  resize: none;
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: #c8cdd6;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #48BEE9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(72,190,233,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B8C4; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.form-note { font-size: 11px; color: #949DAA; line-height: 1.5; }
#form-success {
  display: none;
  color: #48BEE9;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  padding: 60px 0 0;
}
.ft-box {
  border-radius: 25px;
  background: linear-gradient(343deg, rgba(255,255,255,0.4) 43.29%, rgba(199,211,230,0.4) 108.04%);
  border: 1px solid #ECEEF2;
  padding: 56px 0 0;
  overflow: hidden;
  position: relative;
}
.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px 40px;
}
.ft-logo { display: flex; align-items: center; }
.ft-logo-img { height: 72px; width: auto; display: block; }
.ft-phone a { font-size: 28px; font-weight: 500; color: #1D1F3F; }
.ft-phone a span { color: #48BEE9; }
.ft-top-right { display: flex; align-items: center; gap: 16px; }
.ft-scroll-btn {
  width: 60px; height: 60px;
  border-radius: 15px;
  border: 1px solid #ECEEF2;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #48BEE9;
  font-size: 18px;
}
.ft-scroll-btn:hover { background: #48BEE9; color: #fff; border-color: #48BEE9; }
.ft-center {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 56px 40px;
  border-top: 1px solid #ECEEF2;
  border-bottom: 1px solid #ECEEF2;
}
.ft-nav-col h5 { font-size: 13px; font-weight: 700; color: #1D1F3F; margin-bottom: 18px; }
.ft-nav-col ul { display: flex; flex-direction: column; gap: 12px; }
.ft-nav-col a { font-size: 13px; font-weight: 500; color: #1D1F3F; transition: color 0.3s; }
.ft-nav-col a:hover { color: #48BEE9; }
.ft-socials { display: flex; gap: 10px; }
.ft-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid #ECEEF2;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #1D1F3F;
  transition: all 0.3s;
}
.ft-social:hover { background: #48BEE9; color: #fff; border-color: #48BEE9; }
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
}
.ft-bottom p, .ft-bottom a {
  font-size: 11px;
  color: #949DAA;
  line-height: 1;
}
.ft-bottom a { text-decoration: underline; }
.ft-bottom a:hover { color: #1D1F3F; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal { opacity: 0; transform: translateY(40px); }

/* =========================================================
   SCROLLBAR
========================================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F5F7F9; }
::-webkit-scrollbar-thumb { background: #48BEE9; border-radius: 3px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card-lg { grid-column: span 2; }
  .features-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .about-left { padding: 40px; }
}
@media (max-width: 900px) {
  .hd-nav, .hd-right .btn { display: none; }
  .burger { display: block; }
  .about-header { grid-template-columns: 1fr; }
  .how-split { grid-template-columns: 1fr; }
  .how-left { padding: 0 0 40px 0; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-img { min-height: 280px; }
  .spotlight-reverse .spotlight-img { order: 1; }
  .spotlight-reverse .spotlight-text { order: 2; padding: 36px 30px; }
  .spotlight-text { padding: 36px 30px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-popular { transform: none; }
  .contact-box { grid-template-columns: 1fr; }
  .contact-right { padding: 40px 30px; }
  .contact-left { padding: 44px 30px; }
  .ft-top, .ft-center, .ft-bottom { padding-left: 30px; padding-right: 30px; }
  .ft-top { flex-wrap: wrap; gap: 20px; }
  .ft-center { flex-wrap: wrap; gap: 30px; }
  .hero-inner { padding: 110px 40px 0; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 20px; padding: 20px 40px; }
  .hero-values { grid-template-columns: repeat(2, 1fr); }
  .features-intro { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .hd-right .lang-switch { display: none; }
  .hero-inner { padding: 100px 20px 0; }
  .hero-h1 { font-size: 28px; }
  .hero-values { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
  .hero-stats { padding: 16px 20px; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { min-height: 160px; }
  .feat-card-lg { grid-column: span 1; grid-template-columns: 1fr; }
  .feat-card-lg-icon-wrap { display: none; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .hero-bottom-row { flex-direction: column; align-items: flex-start; }
  .hero-stats { padding: 16px 20px; }
  .hero-stat-num { font-size: 24px; }
}
