:root {
  --bg: #f5f7ff;
  --surface: #ffffff;
  --muted-surface: #eef2ff;
  --text: #0f172a;
  --muted-text: #475569;
  --primary: #0f766e;
  --primary-dark: #0f5a54;
  --accent: #7c3aed;
  --accent-2: #0284c7;
  --border: #dbe2f2;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

body.dark-theme {
  --bg: #0b1220;
  --surface: #111a2e;
  --muted-surface: #0e172a;
  --text: #e2e8f0;
  --muted-text: #94a3b8;
  --primary: #14b8a6;
  --primary-dark: #0f766e;
  --accent: #8b5cf6;
  --accent-2: #38bdf8;
  --border: #24334f;
  --shadow: 0 14px 34px rgba(2, 6, 23, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, #e0ecff 0%, transparent 34%),
    radial-gradient(circle at 95% 15%, #d1fae5 0%, transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7ff 45%, #eef3ff 100%);
  line-height: 1.6;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.ambient-dot {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.45;
  animation: ambientFloat 12s ease-in-out infinite;
}

.ambient-dot-a {
  width: 240px;
  height: 240px;
  top: 9%;
  left: 4%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.36), transparent 70%);
}

.ambient-dot-b {
  width: 280px;
  height: 280px;
  top: 38%;
  right: 2%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.33), transparent 72%);
  animation-delay: 1.2s;
}

.ambient-dot-c {
  width: 260px;
  height: 260px;
  bottom: 6%;
  left: 22%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.34), transparent 70%);
  animation-delay: 2.2s;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(245, 247, 255, 0.92);
  backdrop-filter: blur(4px);
  z-index: 1200;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1201;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-2));
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 55%, transparent);
}

.loader-orb {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--accent-2), var(--primary));
  -webkit-mask: radial-gradient(circle, transparent 48%, #000 50%);
  animation: loaderSpin 0.9s linear infinite;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface) 68%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 8%, transparent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand img {
  border-radius: 0.65rem;
  box-shadow: var(--shadow);
  background: #fff;
  object-fit: contain;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.brand-text span {
  color: var(--primary);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--primary);
  text-shadow: 0 0 10px color-mix(in srgb, var(--primary) 30%, transparent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0.5rem;
  padding: 0.45rem 0.75rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: clip;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.07), rgba(124, 58, 237, 0.09));
  border-bottom: 1px solid var(--border);
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), rgba(14, 165, 233, 0.07), transparent 70%);
  right: -160px;
  top: -130px;
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite;
  will-change: transform;
}

.hero-glow-two {
  left: -140px;
  bottom: -180px;
  top: auto;
  right: auto;
  animation-duration: 11s;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.hero-grid > div {
  position: relative;
}

.premium-pill {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(120deg, #ccfbf1, #dbeafe, #ede9fe);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin: 0;
}

.highlight {
  background: linear-gradient(120deg, #0ea5e9, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin: 0.6rem 0 0.9rem;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted-text);
  max-width: 65ch;
  font-size: 1.04rem;
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.quick-proof span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 78%, #dbeafe);
  padding: 0.32rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.quick-proof span::before {
  content: "✓";
  margin-right: 0.35rem;
  color: var(--primary);
  font-weight: 800;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 0.7rem;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #14b8a6);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.34);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 130%;
}

.hero-points {
  padding-left: 1.1rem;
  color: var(--muted-text);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(4px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: saturate(1.12);
}

.hero-card h2,
.hero-card p {
  padding-inline: 1rem;
}

.hero-card h2 {
  margin-top: 0.9rem;
}

.cities {
  font-weight: 700;
}

.offer {
  color: var(--muted-text);
}

.section {
  padding: 4rem 0;
  scroll-margin-top: 78px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.86), rgba(241, 245, 255, 0.86));
}

.section-theme-mint {
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.48), rgba(236, 253, 245, 0.7));
}

.section-theme-lavender {
  background: linear-gradient(180deg, rgba(237, 233, 254, 0.55), rgba(245, 243, 255, 0.82));
}

.section-theme-sky {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.56), rgba(240, 249, 255, 0.88));
}

.section-theme-cyan {
  background: linear-gradient(180deg, rgba(207, 250, 254, 0.52), rgba(236, 254, 255, 0.86));
}

.section-theme-ice {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.58), rgba(239, 246, 255, 0.88));
}

.section-theme-rose {
  background: linear-gradient(180deg, rgba(255, 228, 230, 0.56), rgba(255, 241, 242, 0.9));
}

.section-theme-lime {
  background: linear-gradient(180deg, rgba(217, 249, 157, 0.28), rgba(236, 252, 203, 0.58));
}

.section-theme-gold {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.52), rgba(255, 251, 235, 0.88));
}

.section-theme-violet {
  background: linear-gradient(180deg, rgba(221, 214, 254, 0.55), rgba(243, 232, 255, 0.88));
}

.section-theme-slate {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.62), rgba(241, 245, 249, 0.9));
}

.section-theme-teal {
  background: linear-gradient(180deg, rgba(204, 251, 241, 0.55), rgba(240, 253, 250, 0.9));
}

.section-theme-indigo {
  background: linear-gradient(180deg, rgba(224, 231, 255, 0.6), rgba(238, 242, 255, 0.9));
}

.section-theme-emerald {
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.58), rgba(236, 253, 245, 0.88));
}

.section-theme-azure {
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.5), rgba(240, 249, 255, 0.9));
}

.instant-value {
  padding-top: 2.2rem;
}

.instant-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.instant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.instant-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.instant-card p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.section-theme-lavender .legacy-card {
  border-radius: 1.2rem;
  border-top-color: #a78bfa;
  background: linear-gradient(180deg, #ffffff, #f8f4ff);
}

.section-theme-ice .info-card {
  border-radius: 1.1rem;
  border-left: 4px solid #38bdf8;
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
}

.section-theme-rose .info-card {
  border-radius: 1.1rem;
  border-left: 4px solid #f43f5e;
  background: linear-gradient(180deg, #ffffff, #fff1f2);
}

.section-theme-slate .service-card {
  border-radius: 1.15rem;
  border-top: 4px solid #64748b;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.section-theme-violet .roadmap-form {
  border: 1px solid #c4b5fd;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
}

.section-theme-azure .contact-form {
  border: 1px solid #7dd3fc;
  border-radius: 1.2rem;
  background-image: linear-gradient(180deg, #ffffff, #eff6ff);
}

.section-theme-indigo .testimonial {
  border-top: 4px solid #6366f1;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.section p {
  font-size: 1.01rem;
  line-height: 1.72;
  color: color-mix(in srgb, var(--text) 88%, #334155);
}

.section > .container > p:first-of-type {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: color-mix(in srgb, var(--surface) 82%, #dbeafe);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.6rem 0.8rem;
  display: inline-block;
}

.section h3 {
  letter-spacing: -0.01em;
}

.info-card h3,
.service-card h3,
.legacy-card h3,
.instant-card h3,
.testimonial h3 {
  color: var(--primary-dark);
  font-size: 1.06rem;
}

.hero-points li,
.section li {
  margin-bottom: 0.36rem;
}

.section ul:not(.contact-list):not(.hero-points) {
  padding-left: 1.1rem;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 62%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.75;
}

.section-divider {
  width: 100%;
  height: 52px;
  margin-top: -1px;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-divider path {
  fill: color-mix(in srgb, var(--surface) 85%, #dbeafe);
  opacity: 0.95;
}

.section-divider-soft path {
  fill: color-mix(in srgb, var(--surface) 82%, #dcfce7);
}

.stats {
  padding-top: 1rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  text-shadow: 0 8px 22px color-mix(in srgb, var(--primary) 22%, transparent);
}

.legacy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.legacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  border-top: 3px solid #c4b5fd;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legacy-card p,
.info-card p,
.service-card p,
.instant-card p,
.testimonial p,
.gallery-item figcaption {
  color: color-mix(in srgb, var(--text) 82%, #475569);
}

.legacy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 1.3rem;
}

select,
input,
textarea {
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.65rem 0.8rem;
}

.card-grid,
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-image: linear-gradient(180deg, #ffffff, #fbfdff);
  position: relative;
  transform: translateZ(0);
}

.info-card::before,
.service-card::before,
.featured-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #38bdf8, #8b5cf6, #14b8a6);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.info-card:hover,
.service-card:hover,
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.info-card:hover::before,
.service-card:hover::before,
.featured-card:hover::before {
  opacity: 1;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.5), rgba(219, 234, 254, 0.45), rgba(248, 250, 252, 0.95));
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.2) contrast(1.05);
}

.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.gallery-item figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.featured-section {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.55), rgba(248, 250, 252, 0.9));
}

.featured-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.featured-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
  will-change: transform;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}
.featured-card:hover {
  transform: translateY(-5px);
}

.featured-card figcaption {
  padding: 0.7rem 0.85rem;
  font-weight: 600;
  color: #334155;
  background: linear-gradient(180deg, #ffffff, #f3f7ff);
}

.ticker-section {
  padding-top: 0.6rem;
}

.ticker {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #f8fbff);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-width: 1.5px;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  padding: 0.65rem 0.8rem;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  background: linear-gradient(120deg, #dbeafe, #dcfce7);
  color: #0f172a;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

body.dark-theme .hero,
body.dark-theme .featured-section,
body.dark-theme .gallery-section,
body.dark-theme .section-muted,
body.dark-theme .roadmap-section {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.65), rgba(15, 23, 42, 0.85));
}

body.dark-theme .section-theme-mint,
body.dark-theme .section-theme-lavender,
body.dark-theme .section-theme-sky,
body.dark-theme .section-theme-cyan,
body.dark-theme .section-theme-ice,
body.dark-theme .section-theme-rose,
body.dark-theme .section-theme-lime,
body.dark-theme .section-theme-gold,
body.dark-theme .section-theme-violet,
body.dark-theme .section-theme-slate,
body.dark-theme .section-theme-teal,
body.dark-theme .section-theme-indigo,
body.dark-theme .section-theme-emerald,
body.dark-theme .section-theme-azure {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
}

body.dark-theme .section-theme-lavender .legacy-card,
body.dark-theme .section-theme-ice .info-card,
body.dark-theme .section-theme-rose .info-card,
body.dark-theme .section-theme-slate .service-card,
body.dark-theme .section-theme-violet .roadmap-form,
body.dark-theme .section-theme-azure .contact-form,
body.dark-theme .section-theme-indigo .testimonial {
  background: linear-gradient(180deg, #16233d, #0f1b31);
}

body.dark-theme .quick-proof span {
  background: #1b2a46;
  border-color: #2e4367;
  color: #cbd5e1;
}

body.dark-theme .section > .container > p:first-of-type {
  background: #15233b;
  border-color: #2a3d5f;
  color: #bfdbfe;
}

body.dark-theme .section p {
  color: color-mix(in srgb, #e2e8f0 86%, #94a3b8);
}

body.dark-theme .btn-secondary,
body.dark-theme .theme-toggle,
body.dark-theme .menu-toggle {
  background: #16233d;
}

body.dark-theme .page-loader {
  background: rgba(11, 18, 32, 0.88);
}

.testimonial-grid {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: calc(33.333% - 0.67rem);
  backdrop-filter: blur(3px);
}

.testimonial h3 {
  margin-bottom: 0;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.wizard-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.wizard-form {
  display: grid;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.wizard-result {
  min-height: 1.8rem;
  margin: 0.25rem 0 0;
  color: var(--primary-dark);
  font-weight: 600;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.slider-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.image-fallback {
  background: linear-gradient(120deg, #dbeafe, #f1f5f9);
  display: grid;
  place-items: center;
  color: #334155;
  font-weight: 700;
  font-size: 0.92rem;
}

.roadmap-section {
  background: linear-gradient(180deg, rgba(224, 231, 255, 0.85), rgba(248, 250, 252, 0.95));
}

.roadmap-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.roadmap-form {
  display: grid;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.form-status {
  min-height: 1.4rem;
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.small-note {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: var(--muted-text);
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.info-card h3,
.service-card h3 {
  margin-top: 0;
  line-height: 1.3;
}

.contact-wrap {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.1fr 1fr;
}

.contact-list {
  padding-left: 1rem;
}

.contact-list a {
  color: var(--primary-dark);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  background-image: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap nav {
  display: flex;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--text);
  text-decoration: none;
}

.footer-wrap a:hover {
  color: var(--primary-dark);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  background: linear-gradient(120deg, var(--accent), #2563eb);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floatCta 2.8s ease-in-out infinite;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 4.35rem;
  z-index: 70;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floatCta 3.1s ease-in-out infinite;
}

.sticky-enquiry {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 80;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  padding: 0.6rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.sticky-enquiry p {
  margin: 0 0.35rem 0 0.2rem;
  font-weight: 600;
}

.close-sticky {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.sticky-enquiry.hidden {
  display: none;
}

.sticky-enquiry.hidden-by-intent {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}

.sticky-enquiry {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.parallax-layer {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .parallax-layer,
  .reveal,
  .ambient-dot,
  .floating-cta,
  .floating-whatsapp,
  .ticker-track {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(8px);
  }
}

@keyframes floatCta {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 860px) {
  html {
    scroll-snap-type: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .contact-wrap,
  .roadmap-wrap,
  .wizard-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .sticky-enquiry {
    width: calc(100% - 1rem);
    border-radius: 0.8rem;
    justify-content: center;
    bottom: 0.5rem;
  }

  .sticky-enquiry p {
    display: none;
  }

  .floating-whatsapp {
    bottom: 4.6rem;
  }

  .section h2::after {
    width: 72%;
  }

  .testimonial {
    min-width: 100%;
  }

  .premium-pill {
    font-size: 0.72rem;
  }

  .quick-proof span {
    font-size: 0.78rem;
  }

  .section > .container > p:first-of-type {
    display: block;
  }
}
