/* ==========================================================================
   EastEnd Marketing Site
   Brand: Navy #1A3A5C, Gold #F5A623, Cyan #4AC4E0, Orange #F58220
   ========================================================================== */

:root {
  --navy: #1A3A5C;
  --navy-2: #234870;
  --navy-3: #2E5685;
  --navy-deep: #102740;
  --gold: #F5A623;
  --gold-2: #FFB733;
  --cyan: #4AC4E0;
  --orange: #F58220;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-tint: #EEF3F8;
  --ink: #0F1F33;
  --muted: #5B6B7E;
  --line: #E4EAF1;
  --shadow-sm: 0 1px 2px rgba(15, 31, 51, 0.06), 0 2px 8px rgba(15, 31, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 31, 51, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 31, 51, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.3);
}
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); color: #fff; box-shadow: 0 12px 32px rgba(26, 58, 92, 0.4); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.btn-accent {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}
.btn-accent:hover { background: var(--gold-2); color: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(245, 166, 35, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-tint); color: var(--ink); border-color: transparent; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.site-footer .brand-logo { width: 56px; height: 56px; }
@media (max-width: 480px) {
  .brand-logo { width: 52px; height: 52px; }
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag { color: rgba(255,255,255,0.6); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu:not([hidden]) { display: flex; }
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-a {
  width: 520px; height: 520px;
  top: -120px; left: -120px;
  background: radial-gradient(circle, rgba(74, 196, 224, 0.5) 0%, transparent 70%);
}
.blob-b {
  width: 600px; height: 600px;
  bottom: -160px; right: -180px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.4) 0%, transparent 70%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,58,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,92,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 196, 224, 0.12);
  border: 1px solid rgba(74, 196, 224, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2EBA61;
  box-shadow: 0 0 0 4px rgba(46, 186, 97, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 186, 97, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(46, 186, 97, 0.05); }
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
}
.accent {
  background: linear-gradient(120deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.hero-trust strong { color: var(--ink); }
.avatars {
  display: flex;
  align-items: center;
}
.avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
}
.avatars span:nth-child(1) { margin-left: 0; background: linear-gradient(135deg, #FFD27A, #F5A623); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #7AD7E8, #4AC4E0); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #6688AA, #1A3A5C); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #F8A55F, #F58220); }

/* Hero visual */
.hero-visual {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1px rgba(26, 58, 92, 0.06);
  background: linear-gradient(145deg, #F4F8FC 0%, #E9EFF6 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 58, 92, 0.12) 100%);
  pointer-events: none;
}

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--bg-soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}
.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.dot-sep { color: var(--line); }

/* ============ Sections ============ */
.section {
  padding: 100px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker.light { color: var(--gold-2); }
.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 58, 92, 0.15);
  box-shadow: var(--shadow-md);
}
.service-card.highlighted {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FBFF 100%);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 1px 0 rgba(245, 166, 35, 0.5), var(--shadow-sm);
}
.badge-pop {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(26, 58, 92, 0.2);
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--navy);
}
.service-card > p {
  color: var(--muted);
  margin: 0 0 20px;
}
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink);
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.18);
}
.bullets li::after {
  content: '';
  position: absolute;
  left: 5px; top: 11px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ============ About ============ */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 20px;
}
.lede-2 {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 16px;
}
.about-copy p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-stat-num span {
  color: var(--gold);
  font-size: 0.7em;
  margin-left: 2px;
}
.about-stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.about-card {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
}
.about-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.about-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  margin: 0 0 14px;
  color: #fff;
  position: relative;
}
.about-card p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  font-size: 15px;
  position: relative;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
  position: relative;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 12px; color: var(--gold-2); }

/* ============ How It Works ============ */
.how {
  background: var(--bg-soft);
  position: relative;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 16px;
}
.step::before {
  content: '';
  position: absolute;
  top: 36px; left: 64px; right: -24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.4;
}
.step:last-child::before { display: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy);
}
.step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.how-cta {
  margin-top: 56px;
  text-align: center;
}

/* ============ Track section ============ */
.track-section {
  padding: 80px 0;
}
.track-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.track-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 60%);
  border-radius: 50%;
}
.track-content { position: relative; }
.track-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
}
.track-content p { color: rgba(255,255,255,0.75); margin: 0; }

.track-form {
  display: flex;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  gap: 8px;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.track-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
}

/* ============ Why Us / Features ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 8px;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(74, 196, 224, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature:nth-child(2) .feature-icon { background: rgba(245, 166, 35, 0.12); color: var(--gold); }
.feature:nth-child(3) .feature-icon { background: rgba(245, 130, 32, 0.12); color: var(--orange); }
.feature:nth-child(4) .feature-icon { background: rgba(26, 58, 92, 0.1); color: var(--navy); }
.feature:nth-child(5) .feature-icon { background: rgba(74, 196, 224, 0.12); color: var(--cyan); }
.feature:nth-child(6) .feature-icon { background: rgba(245, 166, 35, 0.12); color: var(--gold); }
.feature h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy);
}
.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* ============ Stats ============ */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.stat-num span {
  font-size: 0.7em;
  color: rgba(255,255,255,0.6);
}
.stat-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-head h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  margin: 0 0 6px;
  color: inherit;
}
.price-card:not(.featured) .price-head h3 { color: var(--navy); }
.price-head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.price-card.featured .price-head p { color: rgba(255,255,255,0.7); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.price-card.featured .price-amount { border-color: rgba(255,255,255,0.15); }
.price-amount .currency { font-size: 18px; font-weight: 600; color: var(--muted); }
.price-card.featured .price-amount .currency { color: rgba(255,255,255,0.7); }
.price-amount .value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.price-card.featured .price-amount .value { color: var(--gold); }
.price-amount .unit { font-size: 16px; color: var(--muted); }
.price-card.featured .price-amount .unit { color: rgba(255,255,255,0.7); }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Testimonials ============ */
.testimonials { background: var(--bg-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0;
  position: relative;
}
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.quote blockquote {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.quote figcaption strong { color: var(--navy); }
.quote figcaption span { color: var(--muted); }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 16px;
}
.faq-intro p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] {
  border-color: rgba(26, 58, 92, 0.18);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(26, 58, 92, 0.06);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 1.5px;
  transition: transform .25s var(--ease);
}
.faq-icon::before {
  top: 50%; left: 25%;
  width: 50%; height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 25%; left: 50%;
  width: 2px; height: 50%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon { background: var(--gold); }
.faq-item[open] .faq-icon::before { background: var(--navy-deep); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 96px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 196, 224, 0.2) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #fff;
}
.cta-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 16px;
}
.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 32px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ci {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(26, 58, 92, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-list a, .contact-list span:not(.ci) {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--navy);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(46, 186, 97, 0.12);
  color: #1F8048;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  margin: 20px 0 24px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 14px;
  margin: 0 0 16px;
}

.newsletter {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter .btn { padding: 8px 18px; font-size: 13px; }
.nl-success {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-links {
  display: flex;
  gap: 24px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .track-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .brand-tag { display: none; }
  .track-form { flex-direction: column; padding: 12px; border-radius: var(--radius); }
  .track-form input { padding: 14px; }
  .hero-actions .btn { flex: 1; min-width: 0; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .about-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .container { padding: 0 20px; }
  .floating-card { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
