﻿:root {
  --navy: #0b1c2e;
  --navy-2: #123049;
  --blue: #1a4a73;
  --gold: #e2a016;
  --gold-2: #f0b429;
  --bg: #f6f8fb;
  --white: #ffffff;
  --text: #152238;
  --muted: #617489;
  --line: #e4ebf3;
  --green: #1fa855;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 28, 46, 0.08);
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 560px;
}
.section-head { margin-bottom: 40px; }
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform .25s var(--ease), background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(226,160,22,.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc94a, var(--gold-2));
  box-shadow: 0 14px 28px rgba(226,160,22,.4);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-2); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* TOP BAR */
.topbar {
  background: linear-gradient(90deg, #050d16 0%, #0b1c2e 45%, #123049 100%);
  color: rgba(255,255,255,.78);
  font-size: 0.78rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(226,160,22,.08), transparent);
  pointer-events: none;
}
.topbar::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226,160,22,.55), transparent);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; transition: color .2s ease; }
.topbar-item svg { width: 13px; height: 13px; color: var(--gold); }
.topbar a:hover { color: var(--gold-2); }
.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(226,160,22,.14);
  border: 1px solid rgba(226,160,22,.28);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(240,180,41,.2);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0 0;
  background: transparent;
  transition: padding .3s ease;
}
.nav.scrolled { padding: 8px 0 0; }
.nav-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  box-shadow:
    0 12px 40px rgba(11, 28, 46, 0.1),
    0 1px 0 rgba(255,255,255,.9) inset;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease, border-radius .3s ease, background .3s ease;
}
.nav.scrolled .nav-shell {
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  box-shadow:
    0 16px 42px rgba(11, 28, 46, 0.14),
    0 0 0 1px rgba(226,160,22,.12);
}
.nav-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--gold-2), var(--navy));
  background-size: 200% 100%;
  animation: navShine 6s linear infinite;
  pointer-events: none;
}
@keyframes navShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 14px;
  padding: 0 14px 0 18px;
  transition: height .3s ease;
}
.nav.scrolled .nav-inner { height: 62px; }
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}
.logo img {
  height: 40px;
  width: auto;
  transition: transform .3s var(--ease), height .3s ease;
}
.nav.scrolled .logo img { height: 34px; }
.logo:hover img { transform: scale(1.03); }
.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(180deg, #f4f7fb, #eef2f7);
  border: 1px solid #e2eaf2;
  padding: 4px;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(11,28,46,.04);
}
.menu a {
  position: relative;
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.menu a:hover {
  color: var(--navy);
  background: rgba(255,255,255,.85);
  transform: translateY(-1px);
}
.menu a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a73 100%);
  box-shadow: 0 8px 18px rgba(11, 28, 46, 0.22);
}
.menu a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(240,180,41,.25);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--navy);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffaf0, #fff4dc);
  border: 1px solid rgba(226,160,22,.28);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nav-phone:hover {
  border-color: rgba(226,160,22,.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(226,160,22,.18);
}
.nav-phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.nav-phone-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(226,160,22,.35);
  animation: phoneRing 2s ease-out infinite;
}
@keyframes phoneRing {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-actions .btn-primary {
  border-radius: 999px;
  height: 44px;
  padding: 0 20px;
  font-size: 0.84rem;
  box-shadow: 0 10px 22px rgba(226,160,22,.32);
  position: relative;
  overflow: hidden;
}
.nav-actions .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}
.nav-actions .btn-primary:hover::before { transform: translateX(120%); }
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.hamburger:hover {
  border-color: rgba(226,160,22,.45);
  background: rgba(226,160,22,.08);
  box-shadow: 0 6px 16px rgba(226,160,22,.15);
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.hamburger[aria-expanded="true"] {
  border-color: rgba(226,160,22,.5);
  background: rgba(226,160,22,.1);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 12px 16px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}
.mobile-menu.open { display: block; animation: menuSlide .28s var(--ease); }
@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 12px;
  border-bottom: none;
  font-weight: 600;
  color: var(--text);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mobile-menu a:not(.btn)::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #b8c4d4;
  border-bottom: 2px solid #b8c4d4;
  transform: rotate(-45deg);
  transition: border-color .2s ease, transform .2s ease;
}
.mobile-menu a:hover {
  background: rgba(226,160,22,.1);
  color: var(--navy);
  transform: translateX(3px);
}
.mobile-menu a:hover::after { border-color: var(--gold); transform: rotate(-45deg) translate(1px, 1px); }
.mobile-menu .btn {
  width: 100%;
  margin-top: 10px;
  border-radius: 999px;
  justify-content: center;
}
.mobile-menu .btn::after { display: none; }
.nav-spacer { height: 10px; }

/* HERO — water background, SaaS-style layout */
.hero {
  position: relative;
  overflow: hidden;
  background: #07131f;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=2000&q=80')
    center / cover no-repeat;
  transform: scale(1.04);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 40%, rgba(26,74,115,.35), transparent 60%),
    linear-gradient(105deg, rgba(5,13,22,.92) 0%, rgba(7,19,31,.86) 42%, rgba(11,28,46,.72) 68%, rgba(11,28,46,.55) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(240,180,41,.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(240,180,41,.2); }
  50% { box-shadow: 0 0 0 6px rgba(240,180,41,.08); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero h1 .accent-a {
  background: linear-gradient(120deg, #4db8ff, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent-b {
  background: linear-gradient(120deg, #f0b429, #ffe08a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.hero-checks {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-checks i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(77,184,255,.18);
  color: #7dd3fc;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-checks i svg { width: 12px; height: 12px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-ctas .btn-primary {
  border-radius: 999px;
  height: 50px;
  padding: 0 24px;
}
.hero-ctas .btn-ghost-light {
  border-radius: 999px;
  height: 50px;
  padding: 0 22px;
  background: rgba(255,255,255,.06);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  padding-top: 8px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: #7dd3fc;
  flex-shrink: 0;
}

/* Hero visual + form */
.hero-visual {
  position: relative;
  padding: 18px 8px 8px;
}
.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.12);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4a73, #4db8ff, var(--gold-2));
}
.hero-card-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hero-card-header h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.hero-card-header p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
}
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea {
  min-height: 72px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226,160,22,.14);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-card .btn {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border-radius: 999px;
}
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11,28,46,.78);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  color: var(--white);
  animation: floatY 5s ease-in-out infinite;
}
.hero-float strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 2px;
}
.hero-float b {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-float .up { color: #34d399; }
.hero-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(77,184,255,.16);
  color: #7dd3fc;
}
.hero-float-icon svg { width: 16px; height: 16px; }
.hero-float-icon.gold {
  background: rgba(226,160,22,.2);
  color: var(--gold-2);
}
.hero-float-icon.green {
  background: rgba(52,211,153,.16);
  color: #34d399;
}
.hero-float-a { top: 0; left: -8px; animation-delay: 0s; }
.hero-float-b { top: 18px; right: -6px; animation-delay: .8s; }
.hero-float-c { bottom: 28px; right: -10px; animation-delay: 1.4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* TRUST / STATS STRIP */
.trust {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(226,160,22,.08), transparent 55%),
    linear-gradient(180deg, #eef3f8 0%, #f8fafc 48%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 44px;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--navy), var(--gold), var(--gold-2), var(--navy), transparent);
}
.trust::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,74,115,.06), transparent 70%);
  right: -60px;
  bottom: -120px;
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.trust-item {
  text-align: center;
  padding: 28px 18px 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(228,235,243,.95);
  border-radius: 20px;
  box-shadow:
    0 10px 28px rgba(11, 28, 46, 0.06),
    0 1px 0 rgba(255,255,255,.9) inset;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(226,160,22,.12), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.trust-item::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.trust-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 48px rgba(11, 28, 46, 0.12),
    0 0 0 1px rgba(226,160,22,.18);
  border-color: rgba(226,160,22,.35);
}
.trust-item:hover::before { opacity: 1; }
.trust-item:hover::after { transform: scaleX(1); }
.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(240,180,41,.22), rgba(226,160,22,.08));
  color: #b8840c;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow:
    0 8px 18px rgba(226,160,22,.16),
    inset 0 1px 0 rgba(255,255,255,.65);
  transition: transform .4s var(--ease), box-shadow .35s ease, background .3s ease;
}
.trust-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  border: 1.5px solid rgba(226,160,22,.18);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .35s ease, transform .35s var(--ease);
}
.trust-item:hover .trust-icon {
  transform: translateY(-3px) scale(1.06);
  background: linear-gradient(145deg, rgba(240,180,41,.35), rgba(226,160,22,.14));
  box-shadow: 0 12px 24px rgba(226,160,22,.28);
  color: #9a6e08;
}
.trust-item:hover .trust-icon::before {
  opacity: 1;
  transform: scale(1);
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.trust-item strong {
  display: block;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.trust-item strong .accent {
  color: var(--gold);
  background: linear-gradient(120deg, #e2a016, #f0b429);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.trust-item .trust-label {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* ABOUT / WHY CHOOSE US */
.about {
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(226,160,22,.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 20px 50px rgba(11, 28, 46, 0.14);
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226,160,22,.4);
  border-radius: 18px;
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: 1;
}
.about-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(226,160,22,.45);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  min-width: 120px;
}
.about-badge strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.about-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-copy .kicker { margin-bottom: 12px; }
.about-copy .section-title { margin-bottom: 14px; max-width: 420px; }
.about-copy .section-sub {
  margin-bottom: 0;
  max-width: 460px;
  line-height: 1.75;
}
.about-points {
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .2s ease;
}
.about-point:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(11, 28, 46, 0.08);
  border-color: rgba(226,160,22,.35);
}
.about-point i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226,160,22,.18), rgba(226,160,22,.08));
  color: #b8840c;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-point i svg { width: 18px; height: 18px; }
.about-point strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.about-point p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.about-actions .btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.about-actions .btn-outline:hover {
  border-color: var(--navy);
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,160,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.services .section-head { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.service-card {
  background: #eef2f7;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(11, 28, 46, 0.06);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(11, 28, 46, 0.16);
  border-color: rgba(226,160,22,.35);
}
.service-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(11,28,46,.78);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  letter-spacing: 0.02em;
}
.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d9e2ec;
}
.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.service-card:hover .service-media::before { transform: translateX(120%); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,28,46,.28) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover .service-media::after { opacity: 1; }
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f4f7fb;
}
.service-body h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.service-body p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.55;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a5f9e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease, gap .25s var(--ease);
}
.service-card:hover .service-link { color: var(--gold); gap: 10px; }
.service-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }
.services-cta { margin-top: 44px; text-align: center; }
.services-cta .btn-dark {
  border-radius: 999px;
  height: 52px;
  padding: 0 36px;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(11, 28, 46, 0.22);
}
.services-cta .btn-dark:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 32px rgba(11, 28, 46, 0.28);
}

/* WHY */
.why {
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(226,160,22,.12), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(26,74,115,.5), transparent 55%),
    linear-gradient(160deg, #07131f 0%, #0b1c2e 55%, #123049 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,.68); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform .35s var(--ease), background .25s ease, border-color .25s ease, box-shadow .35s ease;
  backdrop-filter: blur(6px);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  border-color: rgba(226,160,22,.4);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(226,160,22,.28), rgba(226,160,22,.1));
  color: var(--gold-2);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: transform .35s var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-4deg); }
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.55;
}

/* CTA BAND */
.cta-band {
  background:
    linear-gradient(120deg, rgba(7,19,31,.94), rgba(18,48,73,.88)),
    url('https://vipwaterproofingsquad.com/wp-content/uploads/2025/04/about1.jpg') center/cover;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,160,22,.2), transparent 70%);
  right: 8%;
  top: -80px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 8px 0;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,.78); font-size: 1.02rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-actions .btn-primary {
  border-radius: 999px;
  padding: 0 28px;
  height: 50px;
}
.cta-actions .btn-white {
  border-radius: 999px;
  padding: 0 24px;
  height: 50px;
}

/* REVIEWS */
.reviews {
  background:
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(226,160,22,.06), transparent 55%),
    var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 8px 28px rgba(11,28,46,.05);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .25s ease;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(226,160,22,.12);
  pointer-events: none;
}
.review-card::after {
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .35s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11,28,46,.1);
  border-color: rgba(226,160,22,.3);
}
.review-card:hover::after { transform: scaleY(1); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); color: var(--gold); }
.review-card p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 16px rgba(11,28,46,.18);
}
.review-user strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}
.review-user span {
  font-size: 0.8rem;
  color: var(--muted);
}
.reviews-cta { margin-top: 28px; text-align: center; }

/* FOOTER */
.footer {
  background: #07131f;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
}
.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  max-width: 280px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: .2s ease;
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.socials svg { width: 14px; height: 14px; }
.footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--gold); }
.contact-line {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
}
.contact-line svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-line a { color: rgba(255,255,255,.5); }
.contact-line a:hover { color: var(--gold); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* FLOATS */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-float, .wa-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  transition: transform .25s var(--ease);
}
.call-float { background: var(--navy); color: var(--white); }
.wa-float { background: var(--green); color: var(--white); }
.call-float:hover, .wa-float:hover { transform: scale(1.08); }
.call-float svg, .wa-float svg { width: 24px; height: 24px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 360px; gap: 28px; }
  .hero-content { max-width: 100%; }
  .hero-float { display: none; }
  .hero-visual { padding: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { min-height: 320px; max-width: 560px; }
  .about-media img { min-height: 320px; }
  .about-media::before { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust { padding: 28px 0 32px; }
  .trust-item { padding: 22px 14px 20px; border-radius: 16px; }
  .trust-icon { width: 48px; height: 48px; border-radius: 14px; }
  .menu { display: none; }
  .hamburger { display: flex; }
  .nav-phone span:not(.nav-phone-icon) { display: none; }
  .nav-phone { padding: 6px; }
  .topbar-item:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-phone, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .topbar-right, .topbar-item:not(.topbar-chip) { display: none; }
  .topbar-left { width: 100%; justify-content: center; }
  .nav { padding: 8px 0 0; }
  .nav-shell { border-radius: 16px; width: min(100% - 20px, 1200px); }
  .nav-inner { height: 60px; padding: 0 10px 0 12px; }
  .nav.scrolled .nav-inner { height: 56px; }
  .nav-spacer { height: 8px; }
  .services-grid, .reviews-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid { gap: 18px; }
  .service-body { padding: 20px 18px 22px; }
  .service-media { aspect-ratio: 16 / 11; }
  .hero { min-height: auto; padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 12px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .cta-actions { width: 100%; justify-content: center; }
  .cta-actions .btn { flex: 1; min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .nav-shell::before { animation: none; }
  .nav-phone-icon::after { animation: none; }
  .hero-float { animation: none; }
}
