
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy: #0B1D32;
  --navy-deep: #060F1A;
  --navy-mid: #122842;
  --gold: #C9A24D;
  --gold-light: #E4C97A;
  --gold-soft: rgba(201,162,77,0.08);
  --gold-glow: rgba(201,162,77,0.15);
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --ink: #1A1A2E;
  --ink-mid: #4A4A6A;
  --ink-light: #8888A0;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 150ms;
  --dur-med: 300ms;
  --dur-slow: 500ms;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); overflow-x: hidden; }
img { max-width:100%; display:block; }
a { text-decoration: none; color: inherit; }

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

/* ===== FOCUS STATES ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top var(--dur-med) var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ===== NOISE TEXTURE ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 max(32px, env(safe-area-inset-left)); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-deep);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(201,162,77,0.1);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.7); transition: color var(--dur-fast); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-right { display: flex; gap: 16px; }
.top-bar-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.top-bar-right a:hover { border-color: var(--gold); background: var(--gold); color: var(--navy-deep); }
.top-bar-right svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,29,50,0.95);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(201,162,77,0.12);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo {
  display: flex; align-items: center;
}
.logo img {
  height: 52px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer .logo img {
  height: 42px;
}

.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-deep) !important;
  padding: 10px 24px; border-radius: 8px;
  font-weight: 600 !important; letter-spacing: 0 !important;
  box-shadow: 0 4px 20px rgba(201,162,77,0.25);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,77,0.4) !important; }
.nav-cta:active { transform: translateY(0); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(6,15,26,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 18px 0;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--dur-fast), padding-left var(--dur-med) var(--ease-out);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav .nav-cta-mobile {
  display: inline-block; margin-top: 24px;
  padding: 16px 32px; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep); border-radius: 10px; font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  background: var(--navy);
  display: flex; align-items: center; overflow: hidden;
  padding: env(safe-area-inset-top) 0 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,162,77,0.07), transparent),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(18,40,66,0.8), transparent),
    radial-gradient(circle at 50% 120%, rgba(201,162,77,0.04), transparent);
}
.hero::after {
  content: ''; position: absolute;
  right: -120px; top: -120px;
  width: 600px; height: 600px;
  border: 1px solid rgba(201,162,77,0.08);
  border-radius: 50%;
  animation: hero-circle 30s linear infinite;
}
@keyframes hero-circle { to { transform: rotate(360deg); } }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2; padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px); font-weight: 700;
  line-height: 1.05; color: var(--white);
  letter-spacing: -0.02em; text-wrap: balance;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 600; }
.hero-text {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.65); max-width: 520px; margin-top: 24px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.6s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 40px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.8s forwards;
}

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep); font-weight: 700; font-size: 15px;
  border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,162,77,0.3);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(201,162,77,0.45); }
.btn-gold:active { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,162,77,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: transparent;
  color: var(--white); font-weight: 600; font-size: 15px;
  border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,77,0.05); }
.btn-outline:active { background: rgba(201,162,77,0.1); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 1s forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--gold);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.02em; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,162,77,0.1);
  color: var(--ink); position: relative;
  opacity: 0; animation: fade-up 1s var(--ease-out) 0.6s forwards;
}
.hero-card::before {
  content: ''; position: absolute;
  top: -1px; left: 40px; right: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 0 0 4px 4px;
}
.hero-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hero-card p { color: var(--ink-mid); font-size: 15px; margin-bottom: 28px; }
.hero-card-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card-service {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: var(--cream);
  border-radius: 10px; font-size: 13px; font-weight: 600;
  color: var(--navy); border: 1px solid transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-med) var(--ease-out);
}
.hero-card-service:hover { background: var(--gold-soft); border-color: rgba(201,162,77,0.2); transform: translateY(-2px); }
.hero-card-service:active { transform: translateY(0); }
.hero-card-service .icon {
  width: 32px; height: 32px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; flex-shrink: 0;
}
.hero-card-bottom {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-trust { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-mid); }
.hero-card-trust strong { color: var(--gold); font-size: 15px; font-variant-numeric: tabular-nums; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.services-marquee {
  background: var(--navy-deep); padding: 20px 0; overflow: hidden;
  border-top: 1px solid rgba(201,162,77,0.08);
  border-bottom: 1px solid rgba(201,162,77,0.08);
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.services-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.4); white-space: nowrap;
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; opacity: 0.5;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
  position: relative; overflow: hidden; display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(11,29,50,0.1); border-color: rgba(201,162,77,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:active { transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px; color: var(--gold);
  box-shadow: 0 4px 16px rgba(11,29,50,0.15);
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }
.service-card .arrow {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--gold);
  transition: gap var(--dur-med) var(--ease-out);
}
.service-card:hover .arrow { gap: 14px; }

/* ===== STATS ===== */
.stats-section { background: var(--navy); position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,77,0.06), transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 2; }
.stat-item {
  text-align: center; padding: 48px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur-med), border-color var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.stat-item:hover { background: rgba(201,162,77,0.06); border-color: rgba(201,162,77,0.15); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 800;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 8px; }
.stat-line { width: 32px; height: 2px; background: var(--gold); margin: 16px auto 0; opacity: 0.4; }

/* ===== WHY YABS ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.why-features { display: flex; flex-direction: column; gap: 32px; }
.why-feature {
  display: flex; gap: 20px; padding: 28px; border-radius: 14px;
  border: 1px solid transparent;
  transition: background var(--dur-med), border-color var(--dur-med), box-shadow var(--dur-med);
}
.why-feature:hover { background: var(--white); border-color: rgba(201,162,77,0.12); box-shadow: 0 8px 32px rgba(11,29,50,0.06); }
.why-feature-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--gold); flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft); border-radius: 12px;
}
.why-feature h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-feature p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

.why-visual {
  position: relative; height: 500px; border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
}
.why-visual-inner { text-align: center; padding: 48px; }
.why-visual-big {
  font-family: var(--font-display); font-size: 120px; font-weight: 800;
  color: var(--gold); line-height: 1; opacity: 0.9;
  font-variant-numeric: tabular-nums;
}
.why-visual-text { font-size: 18px; color: rgba(255,255,255,0.7); margin-top: 16px; }
.why-visual::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,162,77,0.12); border-radius: 24px; pointer-events: none;
}

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,162,77,0.1), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201,162,77,0.06), transparent 50%);
}
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  text-wrap: balance;
}
.cta-content h2 em { color: var(--gold); font-style: italic; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep); padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
  padding-bottom: env(safe-area-inset-bottom);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 64px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .header .container { height: 64px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { top: 64px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 48px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-card-services { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ===== INNER PAGE STYLES ===== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,162,77,0.07), transparent),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(18,40,66,0.8), transparent);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: balance; max-width: 800px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 600px; margin-top: 20px; line-height: 1.7;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; fill: currentColor; opacity: 0.4; }
.content-section { padding: 100px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-header { max-width: 720px; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--navy);
  text-wrap: balance;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 17px; color: var(--ink-mid);
  margin-top: 16px; line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,29,50,0.08); border-color: rgba(201,162,77,0.15); }
.feature-card .icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; counter-reset: step; }
.process-step {
  position: relative; padding: 32px; padding-top: 48px;
  background: var(--white); border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  counter-increment: step;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,29,50,0.08); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -16px; left: 32px;
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.pricing-card {
  background: var(--white); border-radius: 20px; padding: 48px;
  border: 1px solid rgba(201,162,77,0.15);
  box-shadow: 0 16px 64px rgba(11,29,50,0.08);
  text-align: center; max-width: 480px; margin: 0 auto;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  color: var(--gold); margin: 16px 0;
}
.pricing-card .price-note { font-size: 14px; color: var(--ink-mid); }
.pricing-card ul { list-style: none; text-align: left; margin: 32px 0; }
.pricing-card li {
  padding: 12px 0; font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: 12px;
}
.pricing-card li::before {
  content: "\2713"; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding: 24px 0; }
.faq-q {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; width: 100%; text-align: left; padding: 0;
}
.faq-q::after {
  content: "+"; font-size: 24px; color: var(--gold);
  transition: transform var(--dur-med) var(--ease-out);
  flex-shrink: 0; margin-left: 16px;
}
.faq-q[aria-expanded="true"]::after { content: "\2212"; }
.faq-a {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; padding-top: 16px; display: none;
}
.faq-a.open { display: block; }
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; color: var(--ink); background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft); outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.contact-channel {
  background: var(--white); border-radius: 16px; padding: 32px;
  border: 1px solid rgba(0,0,0,0.04); text-align: center;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
  display: block;
}
.contact-channel:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,29,50,0.08); border-color: rgba(201,162,77,0.15); }
.contact-channel .ch-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
}
.contact-channel h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-channel p { font-size: 14px; color: var(--ink-mid); }
.benefits-grid-dark { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.benefit-card-dark {
  padding: 36px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur-med), border-color var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.benefit-card-dark:hover { background: rgba(201,162,77,0.06); border-color: rgba(201,162,77,0.15); transform: translateY(-4px); }
.benefit-card-dark h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--gold); margin-bottom: 10px;
}
.benefit-card-dark p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.styled-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,29,50,0.06);
}
.styled-table th {
  background: var(--navy); color: var(--gold);
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; padding: 16px 24px; text-align: left;
}
.styled-table td {
  padding: 16px 24px; font-size: 14px; color: var(--ink-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: var(--gold-soft); }
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .content-section { padding: 64px 0; }
  .contact-channels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ===== DROPDOWN NAV ===== */
.nav-item {
  position: relative;
}
.nav-item > a,
.nav-item > .nav-trigger {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
  position: relative;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  white-space: nowrap;
}
.nav-item > a::after,
.nav-item > .nav-trigger::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-item > a:hover,
.nav-item > .nav-trigger:hover { color: var(--white); }
.nav-item > a:hover::after,
.nav-item > .nav-trigger:hover::after { width: 100%; }

.nav-chevron {
  display: inline-block;
  width: 10px; height: 10px;
  flex-shrink: 0;
  transition: transform var(--dur-fast);
  opacity: 0.6;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 60px rgba(11,29,50,0.18), 0 2px 8px rgba(11,29,50,0.08);
  border: 1px solid rgba(201,162,77,0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(201,162,77,0.15);
  border-top: 1px solid rgba(201,162,77,0.15);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item .nav-trigger[aria-expanded="true"] + .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Bridge hover gap between trigger and dropdown so mouse can travel safely */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
}
.nav-item:hover::after,
.nav-item:focus-within::after,
.nav-item .nav-trigger[aria-expanded="true"] ~ .dropdown {
  pointer-events: auto;
}
/* Show chevron rotation when open */
.nav-item .nav-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy) !important;
  transition: color var(--dur-fast), background var(--dur-fast), padding-left var(--dur-fast);
  border-bottom: none !important;
  letter-spacing: 0;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201,162,77,0.06);
  padding-left: 26px !important;
}
.dropdown a:first-child { border-radius: 8px 8px 0 0; }
.dropdown a:last-child { border-radius: 0 0 8px 8px; }
.dropdown-divider {
  height: 1px;
  background: rgba(11,29,50,0.06);
  margin: 4px 0;
}

/* Nav contact link (no dropdown, plain link) */
.nav-contact {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.nav-contact::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-contact:hover { color: var(--white); }
.nav-contact:hover::after { width: 100%; }

/* ===== MOBILE ACCORDION NAV ===== */
.mob-section {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-section-toggle {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 18px 0;
  background: none; border: none; cursor: pointer;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.mob-section-toggle:hover { color: var(--gold); }
.mob-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-out);
  opacity: 0.5;
  color: var(--gold);
}
.mob-section-toggle[aria-expanded="true"] .mob-arrow { transform: rotate(180deg); opacity: 1; }
.mob-section-links {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out);
}
.mob-section-links.open { max-height: 800px; }
.mob-section-links a {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color var(--dur-fast), padding-left var(--dur-med) var(--ease-out);
}
.mob-section-links a:hover { color: var(--gold); padding-left: 24px; }
.mob-section-links a:last-child { border-bottom: none; margin-bottom: 8px; }
.mob-plain-link {
  display: block; padding: 18px 0;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--dur-fast), padding-left var(--dur-med) var(--ease-out);
}
.mob-plain-link:hover { color: var(--gold); padding-left: 8px; }

/* ===== Y3 SERVICE PAGE COMPONENTS ===== */
/* Hero with sidebar price card */
.y3-svc-hero {
  padding: 120px 0 80px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.y3-svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,77,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.y3-svc-hero .section-eyebrow {
  color: var(--gold);
}
.y3-svc-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 640px;
}
.y3-svc-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.y3-svc-hero .lede {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}
.y3-svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .y3-svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-ctas .btn-gold,
.hero-ctas .btn-outline {
  padding: 14px 24px;
  font-size: 15px;
}

/* Hero pills */
.y3-svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.y3-svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(201,162,77,0.12);
  border: 1px solid rgba(201,162,77,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* Price card sidebar */
.y3-svc-hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  position: sticky;
  top: 100px;
}
.y3-svc-hero-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.y3-svc-hero-card > p {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.y3-svc-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.y3-svc-hero-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.y3-svc-hero-card ul li:last-child { border-bottom: none; }
.y3-svc-hero-card small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-light);
  text-align: center;
}
.y3-svc-hero-card .btn-gold {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 20px;
}

/* Price display */
.y3-svc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin: 16px 0;
}
.y3-svc-price-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.y3-svc-price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.y3-svc-price-amount small {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  display: inline;
  margin: 0;
}

/* Logo chips bar */
.y3-logos {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
}
.y3-logos .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.y3-logos-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.y3-logos-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.y3-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Section header inside content sections */
.content-section .section-header,
.content-section .y3-section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 680px;
}

/* FAQ full paragraph answers */
.faq-a {
  display: none;
  padding: 16px 20px 20px;
  background: var(--cream);
  border-radius: 0 0 12px 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}
.faq-a p { margin: 0; }
.faq-a p + p { margin-top: 12px; }
.faq-a.open { display: block; }

/* CTA section inside page content */
.y3-section.cta-section .cta-content,
.section.cta-section .cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Blog card styles */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
  padding: 28px;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(11,29,50,0.1);
  transform: translateY(-4px);
}
.blog-card-content { display: flex; flex-direction: column; height: 100%; }
.blog-card-title { font-size: 18px; line-height: 1.4; margin: 8px 0 12px; }
.blog-card-title a { color: var(--navy); }
.blog-card-title a:hover { color: var(--gold); }
.blog-meta { margin-bottom: 4px; }
.blog-date {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Info page content (privacy/T&C) */
.content-section h2 { font-size: 24px; margin: 40px 0 12px; }
.content-section h3 { font-size: 19px; margin: 28px 0 10px; }
.content-section p { margin-bottom: 16px; line-height: 1.8; }

/* Global lede paragraph */
.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 600px;
}
.y3-svc-hero .lede,
.cta-section .lede {
  color: rgba(255,255,255,0.7);
}
.cta-content .lede {
  margin: 0 auto 40px;
  max-width: 580px;
}

/* CTA section text centering */
.cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-content .section-eyebrow {
  justify-content: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

/* ===== INTERACTION ENHANCEMENTS ===== */

/* Header shrink on scroll */
.header {
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header-scrolled .container { height: 64px !important; }
.header-scrolled .logo img { height: 40px; transition: height 0.3s ease; }
.header-hidden {
  transform: translateY(-100%);
}

/* FAQ smooth expand */
.faq-a {
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.3s ease;
}
.faq-a.open {
  display: block;
  padding: 16px 20px 20px;
}
.faq-q {
  transition: color 0.2s ease, background 0.2s ease;
  padding: 20px 0;
  border-radius: 8px;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q::after {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

/* Price card entrance */
.y3-svc-hero-card,
.pricing-card,
.hero-card {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s ease,
              box-shadow 0.3s ease;
}
.y3-svc-hero-card:not(.price-visible),
.pricing-card:not(.price-visible) {
  opacity: 0.3;
  transform: translateY(30px) scale(0.97);
}
.y3-svc-hero-card.price-visible,
.pricing-card.price-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Service card hover - lift + glow */
.service-card,
.feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.service-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11,29,50,0.12), 0 0 0 1px rgba(201,162,77,0.15);
}

/* Gold button press effect */
.btn-gold {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 0 4px 16px rgba(201,162,77,0.3) !important;
}

/* Outline button hover glow */
.btn-outline {
  transition: border-color 0.2s ease,
              color 0.2s ease,
              background 0.2s ease,
              box-shadow 0.3s ease;
}
.btn-outline:hover {
  box-shadow: 0 0 20px rgba(201,162,77,0.15);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201,162,77,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.3s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease,
              box-shadow 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 32px rgba(201,162,77,0.4);
  transform: translateY(-3px) scale(1.05);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 91;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* Hero parallax effect */
.hero::before,
.y3-svc-hero::before,
.page-hero::before {
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

/* Logo chip hover */
.y3-logo-chip {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.y3-logo-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,162,77,0.12);
}

/* Service pill shimmer on hover */
.y3-svc-pill {
  transition: background 0.2s ease, transform 0.2s ease;
}
.y3-svc-pill:hover {
  background: rgba(201,162,77,0.2);
  transform: translateY(-1px);
}

/* Stat counter glow while counting */
.stat-num, .hero-stat-num {
  transition: text-shadow 0.5s ease;
}

/* Section eyebrow line animation */
.section-eyebrow::before {
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}
.visible .section-eyebrow::before,
.section-eyebrow:only-child::before {
  width: 24px;
}

/* Breadcrumb subtle entrance */
.breadcrumb {
  opacity: 0;
  animation: fadeIn 0.5s ease 0.3s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Smooth page load */
main {
  animation: pageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .back-to-top { bottom: 100px; right: 20px; width: 44px; height: 44px; }
  .wa-float { bottom: 24px; right: 20px; width: 52px; height: 52px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .header { transition: none; }
  .faq-a { transition: none; }
  .y3-svc-hero-card, .pricing-card, .hero-card { transition: none; opacity: 1 !important; transform: none !important; }
  .back-to-top { transition: opacity 0.1s; transform: none !important; }
  .back-to-top.visible { transform: none; }
  .wa-float { animation: none; }
  main { animation: none; }
  .breadcrumb { animation: none; opacity: 1; }
}

/* ===== FIX: Service page hero overlap ===== */
.y3-svc-hero {
  padding: 140px 0 80px;
  overflow: visible;
}
.y3-svc-hero::before {
  pointer-events: none;
  z-index: 0;
}
.y3-svc-hero .container {
  position: relative;
  z-index: 2;
}
.y3-svc-hero-grid {
  align-items: start;
}
/* Remove sticky - causes issues inside hero */
.y3-svc-hero-card {
  position: relative;
  top: auto;
}
/* Ensure h1 font renders properly */
.y3-svc-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 640px;
}
.y3-svc-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
/* Feature card list styling */
.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
/* Price card list checkmarks */
.y3-svc-hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* Dropdown z-index over hero */
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  z-index: 300;
}
/* Mobile hero fix */
@media (max-width: 900px) {
  .y3-svc-hero { padding: 110px 0 60px; }
  .y3-svc-hero h1 { font-size: clamp(24px, 6vw, 36px); }
  .y3-svc-hero-card { margin-top: 20px; }
}

/* ===== gen_pages extra_css BEGIN (auto-managed, do not edit) ===== */


/* ===== INNER PAGE STYLES ===== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,162,77,0.07), transparent),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(18,40,66,0.8), transparent);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: balance; max-width: 800px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 600px; margin-top: 20px; line-height: 1.7;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; fill: currentColor; opacity: 0.4; }
.content-section { padding: 100px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.section-header { max-width: 720px; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--navy);
  text-wrap: balance;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 17px; color: var(--ink-mid);
  margin-top: 16px; line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: 16px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,29,50,0.08); border-color: rgba(201,162,77,0.15); }
.feature-card .icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; counter-reset: step; }
.process-step {
  position: relative; padding: 32px; padding-top: 48px;
  background: var(--white); border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  counter-increment: step;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,29,50,0.08); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -16px; left: 32px;
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.pricing-card {
  background: var(--white); border-radius: 20px; padding: 48px;
  border: 1px solid rgba(201,162,77,0.15);
  box-shadow: 0 16px 64px rgba(11,29,50,0.08);
  text-align: center; max-width: 480px; margin: 0 auto;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  color: var(--gold); margin: 16px 0;
}
.pricing-card .price-note { font-size: 14px; color: var(--ink-mid); }
.pricing-card ul { list-style: none; text-align: left; margin: 32px 0; }
.pricing-card li {
  padding: 12px 0; font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: 12px;
}
.pricing-card li::before {
  content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding: 24px 0; }
.faq-q {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; width: 100%; text-align: left; padding: 0;
}
.faq-q::after {
  content: '+'; font-size: 24px; color: var(--gold);
  transition: transform var(--dur-med) var(--ease-out);
  flex-shrink: 0; margin-left: 16px;
}
.faq-q[aria-expanded="true"]::after { content: '\2212'; }
.faq-a {
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; padding-top: 16px; display: none;
}
.faq-a.open { display: block; }
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; color: var(--ink); background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft); outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.contact-channel {
  background: var(--white); border-radius: 16px; padding: 32px;
  border: 1px solid rgba(0,0,0,0.04); text-align: center;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
  display: block;
}
.contact-channel:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,29,50,0.08); border-color: rgba(201,162,77,0.15); }
.contact-channel .ch-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
}
.contact-channel h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-channel p { font-size: 14px; color: var(--ink-mid); }
.benefits-grid-dark { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.benefit-card-dark {
  padding: 36px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur-med), border-color var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.benefit-card-dark:hover { background: rgba(201,162,77,0.06); border-color: rgba(201,162,77,0.15); transform: translateY(-4px); }
.benefit-card-dark h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--gold); margin-bottom: 10px;
}
.benefit-card-dark p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.styled-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,29,50,0.06);
}
.styled-table th {
  background: var(--navy); color: var(--gold);
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; padding: 16px 24px; text-align: left;
}
.styled-table td {
  padding: 16px 24px; font-size: 14px; color: var(--ink-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: var(--gold-soft); }
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .content-section { padding: 64px 0; }
  .contact-channels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ===== CALCULATOR ===== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.calc-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 48px rgba(11,29,50,0.06);
}
.calc-step { margin-bottom: 24px; }
.calc-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.calc-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-body);
}
.calc-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.calc-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  outline: none;
}
.calc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.calc-result {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 120px;
}
.calc-result-head { margin-bottom: 24px; }
.calc-result-head h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}
.calc-table {
  width: 100%;
  border-collapse: collapse;
}
.calc-table td {
  padding: 14px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.calc-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.calc-table tr.calc-total td {
  padding-top: 20px;
  border-bottom: none;
  font-size: 16px;
  color: var(--gold);
  font-family: var(--font-display);
}
.calc-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.calc-note a { color: var(--gold); }
.calc-note a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 32px; }
  .calc-result { position: static; }
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow), border-color var(--dur-med);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,29,50,0.08);
  border-color: rgba(201,162,77,0.15);
}
.blog-date {
  font-size: 12px;
  color: var(--ink-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card h3 a {
  color: inherit;
  transition: color var(--dur-fast);
}
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap var(--dur-fast), color var(--dur-fast);
  align-self: flex-start;
}
.blog-read:hover { color: var(--gold-light); }

/* ===== gen_pages extra_css END ===== */
