:root {
  --blue: #1e5fd0;
  --blue-dark: #174bab;
  --blue-deep: #0a2e6d;
  --blue-soft: #e8f0fc;
  --blue-pale: #dae9fb;
  --gold: #d4a857;
  --gold-soft: #f3e7cc;
  --white: #ffffff;
  --cream: #e6eff9;
  --ink: #0a1933;
  --ink-soft: #3a4766;
  --muted: #6b7a9a;
  --line: #e4ebf7;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(10, 46, 109, 0.06);
  --shadow: 0 12px 40px rgba(10, 46, 109, 0.10);
  --shadow-lg: 0 28px 80px rgba(10, 46, 109, 0.18);
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(30, 95, 208, 0.4);
}

/* Floating background bubbles */
.floating-bubbles {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
/* Iridescent soap bubble — high contrast on any background */
.bubble {
  position: absolute;
  border-radius: 50%;
  background:
    /* top highlight */
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.4) 12%, transparent 28%),
    /* bottom reflection */
    radial-gradient(circle at 72% 78%, rgba(255,255,255,0.7) 0%, transparent 22%),
    /* blue iridescent soap film — cyan → periwinkle → royal → teal */
    conic-gradient(from 45deg at 50% 50%,
      rgba(140, 220, 255, 0.55) 0%,
      rgba(110, 180, 255, 0.55) 18%,
      rgba(160, 160, 245, 0.55) 36%,
      rgba(80, 140, 230, 0.55) 54%,
      rgba(120, 220, 230, 0.55) 72%,
      rgba(180, 210, 255, 0.55) 90%,
      rgba(140, 220, 255, 0.55) 100%);
  border: 2px solid rgba(180, 220, 255, 0.9);
  box-shadow:
    0 0 24px rgba(30, 95, 208, 0.35),
    0 2px 10px rgba(30, 95, 208, 0.2),
    inset 0 0 14px rgba(200, 230, 255, 0.55),
    inset 3px 4px 10px rgba(255,255,255,0.45);
  animation: bubble-rise-pop var(--dur, 16s) ease-in infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  opacity: 0;
  will-change: transform, opacity;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.bubble.gold {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.4) 12%, transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(255,255,255,0.7) 0%, transparent 22%),
    conic-gradient(from 45deg at 50% 50%,
      rgba(255, 210, 140, 0.5) 0%,
      rgba(255, 240, 180, 0.5) 25%,
      rgba(255, 180, 120, 0.5) 50%,
      rgba(255, 220, 160, 0.5) 75%,
      rgba(255, 210, 140, 0.5) 100%);
  border: 2px solid rgba(255, 240, 200, 0.9);
  box-shadow:
    0 0 22px rgba(180, 120, 40, 0.3),
    0 2px 10px rgba(180, 120, 40, 0.18),
    inset 0 0 14px rgba(255, 255, 230, 0.6),
    inset 3px 4px 10px rgba(255,255,255,0.45);
}
/* Forced pop triggered by scroll */
.bubble.popping {
  animation: pop-burst 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}
@keyframes pop-burst {
  0%   { transform: scale(1); opacity: 0.9; }
  40%  { transform: scale(1.5); opacity: 0.75; filter: blur(0.5px); }
  70%  { transform: scale(2); opacity: 0.3; filter: blur(1px); }
  100% { transform: scale(2.4); opacity: 0; filter: blur(2px); }
}

@keyframes bubble-rise-pop {
  0%   { transform: translateY(110vh) translateX(0) scale(0.4); opacity: 0; }
  6%   { opacity: 0.95; transform: translateY(100vh) translateX(8px) scale(0.75); }
  30%  { transform: translateY(70vh) translateX(-18px) scale(1); }
  55%  { transform: translateY(40vh) translateX(22px) scale(1.02); opacity: 0.9; }
  78%  { transform: translateY(12vh) translateX(-10px) scale(1.05); opacity: 0.88; }
  88%  { transform: translateY(-5vh) translateX(0) scale(1.08); opacity: 0.85; }
  92%  { transform: translateY(-8vh) translateX(0) scale(1.45); opacity: 0.7; }
  96%  { transform: translateY(-10vh) translateX(0) scale(1.85); opacity: 0.15; }
  100% { transform: translateY(-12vh) translateX(0) scale(2.1); opacity: 0; }
}

/* Scroll reveal — alternating directions */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.in-view { opacity: 1; transform: translate(0, 0); }
.reveal.d-1 { transition-delay: 0.1s; }
.reveal.d-2 { transition-delay: 0.2s; }
.reveal.d-3 { transition-delay: 0.3s; }
.reveal.d-4 { transition-delay: 0.4s; }
.reveal.d-5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0s !important; animation-iteration-count: 1 !important; }
}

/* Animated broom — fixed on the right, sweeps with scroll direction */
.broom-wrap {
  position: fixed;
  right: 18px;
  top: 45%;
  z-index: 20;
  pointer-events: none;
  transform-origin: center top;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  opacity: 0;
}
.broom-wrap.visible { opacity: 0.9; }
.broom-wrap svg {
  width: 80px; height: auto;
  filter: drop-shadow(0 8px 20px rgba(10, 46, 109, 0.18));
}
.dust-particle {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.9) 0%, rgba(212, 168, 87, 0) 70%);
  pointer-events: none;
  z-index: 19;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .broom-wrap { right: 8px; }
  .broom-wrap svg { width: 52px; }
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(228, 235, 247, 0.8);
  padding: 16px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav .brand { display: flex; align-items: center; gap: 10px; }
.nav .brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(30, 95, 208, 0.35);
}
.nav .brand-mark svg { width: 22px; height: 22px; }
.nav .brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav .brand-name { font-size: 17px; font-weight: 800; letter-spacing: 1.5px; color: var(--ink); }
.nav .brand-sub { font-size: 9px; font-weight: 500; letter-spacing: 2.5px; color: var(--muted); margin-top: 3px; text-transform: uppercase; }
.nav .links { display: flex; gap: 32px; align-items: center; }
.nav .links a { font-weight: 500; font-size: 14px; color: var(--ink-soft); transition: color .2s ease; }
.nav .links a:hover { color: var(--blue); }
.nav .cta-btn {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav .cta-btn:hover { background: var(--blue); transform: translateY(-1px); }
.nav .cta-btn::after { content: '→'; transition: transform .25s ease; }
.nav .cta-btn:hover::after { transform: translateX(3px); }

/* Hero — mesh gradient + big serif headline */
.hero {
  position: relative;
  padding: 110px 0 140px;
  background: linear-gradient(180deg, #0a1933 0%, #0f2547 100%);
  color: var(--white);
  overflow: hidden;
}
.hero h1, .hero .hero-wordmark { color: var(--white); }
.hero .hero-wordmark-sub { color: rgba(255,255,255,0.7); }
.hero .hero-wordmark-sub em { color: var(--gold); }
.hero .lede { color: rgba(255,255,255,0.85); }
.hero .btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.hero .btn-primary {
  background: var(--white);
  color: var(--ink);
}
.hero .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}
.hero-mesh {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(30, 95, 208, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 20% 60%, rgba(212, 168, 87, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 85%, rgba(30, 95, 208, 0.15) 0%, transparent 60%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: drift 20s ease-in-out infinite;
  pointer-events: none;
}
.hero-blob.b1 {
  width: 420px; height: 420px;
  background: rgba(30, 95, 208, 0.3);
  top: -120px; right: -80px;
  animation-delay: 0s;
}
.hero-blob.b2 {
  width: 360px; height: 360px;
  background: rgba(212, 168, 87, 0.2);
  bottom: -100px; left: -80px;
  animation-delay: 5s;
}
.hero-blob.b3 {
  width: 280px; height: 280px;
  background: rgba(30, 95, 208, 0.2);
  top: 40%; left: 40%;
  animation-delay: 10s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.hero .container { position: relative; text-align: center; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(30, 95, 208, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.hero-brand {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 28px;
  text-align: center;
}
.hero-mark {
  width: 160px; height: 160px;
  margin-bottom: 20px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-bubble {
  position: relative;
  width: 160px; height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.5) 14%, transparent 32%),
    radial-gradient(circle at 72% 78%, rgba(255,255,255,0.7) 0%, transparent 22%),
    conic-gradient(from 45deg at 50% 50%,
      rgba(140, 220, 255, 0.55) 0%,
      rgba(110, 180, 255, 0.55) 18%,
      rgba(160, 160, 245, 0.55) 36%,
      rgba(80, 140, 230, 0.55) 54%,
      rgba(120, 220, 230, 0.55) 72%,
      rgba(180, 210, 255, 0.55) 90%,
      rgba(140, 220, 255, 0.55) 100%);
  border: 2.5px solid rgba(255,255,255,0.85);
  box-shadow:
    0 0 40px rgba(30, 95, 208, 0.4),
    0 8px 28px rgba(30, 95, 208, 0.25),
    inset 0 0 30px rgba(255,255,255,0.5),
    inset 4px 6px 14px rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: bubble-life 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
  will-change: transform, opacity;
}
.logo-P {
  font-family: var(--serif);
  font-size: 104px;
  font-weight: 500;
  color: #0a1933;
  line-height: 1;
  margin-top: -8px;
  text-shadow: 0 2px 4px rgba(255,255,255,0.6);
  animation: logo-P-life 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

/* Bubble lifecycle: fade in, float/wobble, pop at ~3s, gone, respawn */
@keyframes bubble-life {
  0%    { transform: scale(0) rotate(-10deg); opacity: 0; }
  10%   { transform: scale(1.08) rotate(2deg); opacity: 1; }
  14%   { transform: scale(1) rotate(0deg); opacity: 1; }
  25%   { transform: scale(1.02) translateY(-4px) rotate(-1deg); opacity: 1; }
  33%   { transform: scale(1) translateY(2px) rotate(1deg); opacity: 1; }
  38%   { transform: scale(1.15) translateY(0) rotate(0deg); opacity: 1; } /* tension */
  42%   { transform: scale(1.8); opacity: 0.7; filter: blur(1px); }        /* POP */
  46%   { transform: scale(2.6); opacity: 0; filter: blur(3px); }
  100%  { transform: scale(0); opacity: 0; }
}
@keyframes logo-P-life {
  0%    { transform: scale(0); opacity: 0; }
  10%   { transform: scale(1); opacity: 1; }
  38%   { transform: scale(1.1); opacity: 1; }
  42%   { transform: scale(1.8); opacity: 0; }
  100%  { transform: scale(0); opacity: 0; }
}
/* Staggered logo build-in: circle first, ring, then P letter, then gold dot */
.hero-mark svg > circle:nth-child(1) {
  transform-origin: center;
  animation: mark-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hero-mark svg > circle:nth-child(2) {
  animation: mark-ring 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  transform-origin: center;
}
.hero-mark svg > circle:nth-child(3) {
  animation: mark-ring 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
  transform-origin: center;
}
.hero-mark svg > text {
  animation: mark-letter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}
.hero-mark svg > circle:nth-child(5) {
  animation: mark-dot 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s both;
  transform-origin: 164px 44px;
}
.hero-mark svg > circle:nth-child(6) {
  animation: mark-dot 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
  transform-origin: 164px 44px;
}

@keyframes mark-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes mark-ring {
  0%   { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes mark-letter {
  0%   { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes mark-dot {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Wordmark and sub fade/slide in after the mark */
.hero-wordmark {
  animation: wordmark-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}
.hero-wordmark-sub {
  animation: wordmark-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.25s both;
}
@keyframes wordmark-in {
  0%   { opacity: 0; transform: translateY(14px); letter-spacing: 20px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 4px; }
}
.hero-wordmark {
  font-family: var(--serif);
  font-size: clamp(64px, 11vw, 148px);
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 0.9;
  color: var(--ink);
  margin: 0 0 6px;
}
.hero-wordmark-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.hero-wordmark-sub em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--blue);
  font-size: 1.3em;
  margin-left: 6px;
}
.hero p.lede {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 620px; margin: 0 auto 42px;
  color: var(--ink-soft);
  font-weight: 400;
}
.hero .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  font-family: inherit;
  cursor: pointer; border: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(30, 95, 208, 0.35);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn-primary:hover::before { left: 100%; }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* Trust stats bar */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--serif);
  font-size: 34px; font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-stat .num em { font-style: normal; color: var(--gold); }
.trust-stat .lbl {
  display: block;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Sections */
section { padding: 120px 0; position: relative; }
.section-eyebrow {
  text-align: center;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--blue); font-weight: 400; }
.section-sub {
  text-align: center; color: var(--muted); font-size: 18px;
  max-width: 620px; margin: 0 auto 72px;
  font-weight: 400;
}

/* Services — glass-ish cards with icon + text */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(30,95,208,0.10) 0, transparent 45%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-card .icon-wrap {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-soft), #d5e5fb);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--blue);
  transition: transform 0.4s ease;
}
.service-card:hover .icon-wrap { transform: scale(1.05) rotate(-3deg); }
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 10px; color: var(--ink);
}
.service-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.service-card .arrow {
  margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateX(-6px);
  transition: all 0.3s ease;
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* Pricing */
.prices {
  background: linear-gradient(180deg, #0a1933 0%, #0f2547 100%);
  color: var(--white);
}
.prices .section-title { color: var(--white); }
.prices .section-title em { color: var(--gold); }
.prices .section-eyebrow { color: var(--gold); }
.prices .section-sub { color: rgba(255,255,255,0.75); }
.prices .price-notes {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.prices .price-notes h4 { color: var(--white); }
.prices .price-notes ul { color: rgba(255,255,255,0.8); }
.prices .price-notes strong { color: var(--gold); }
.prices .btn-ghost-dark {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.prices .btn-ghost-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 22px;
}
.price-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative; overflow: hidden;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.price-head { margin-bottom: 22px; }
.price-head .emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-soft);
  margin-bottom: 14px; font-size: 24px;
}
.price-head h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 4px;
}
.price-head .freq {
  font-size: 12px; color: var(--muted); letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 22px;
  border-top: 1px solid var(--line);
}
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-list li span { color: var(--ink-soft); }
.price-list li strong {
  color: var(--ink); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-includes {
  margin-top: auto;
  background: var(--cream);
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 13px;
}
.price-includes .includes-label {
  margin: 0 0 6px; color: var(--blue); font-weight: 700; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.price-includes p:last-child { margin: 0; color: var(--ink-soft); line-height: 1.5; }

.price-hourly {
  text-align: center; padding: 28px 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1;
}
.price-hourly .big-rate {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.price-hourly .from { font-size: 13px; color: var(--muted); font-weight: 500; }
.price-hourly .rate {
  font-family: var(--serif);
  font-size: 44px; font-weight: 500; color: var(--blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.price-hourly .unit { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-hourly .rate-note { font-size: 13px; color: var(--muted); margin: 0; }

.price-notes {
  background: linear-gradient(135deg, var(--blue-soft) 0%, #f0f5ff 100%);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 36px;
}
.price-notes h4 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 20px; font-weight: 500; color: var(--ink);
}
.price-notes ul {
  margin: 0; padding-left: 20px;
  color: var(--ink-soft); font-size: 15px; line-height: 1.8;
}
.price-notes strong { color: var(--blue-deep); }

.price-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-ghost-dark {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-ghost-dark:hover { background: var(--blue); color: var(--white); }

@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-side { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-mark {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--serif);
  font-size: 64px; color: var(--blue-soft);
  line-height: 1;
}
.testimonial-card .stars {
  color: var(--gold); font-size: 14px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 15px; color: var(--ink); line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial-card .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 15px;
  flex: 0 0 42px;
}
.testimonial-card .who-info { display: flex; flex-direction: column; }
.testimonial-card .who-name { font-weight: 600; color: var(--ink); font-size: 15px; }
.testimonial-card .who-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* About */
.about {
  background: linear-gradient(180deg, #0a1933 0%, #0f2547 100%);
  color: var(--white);
}
.about .section-title { color: var(--white); }
.about .section-title em { color: var(--gold); }
.about .section-eyebrow { color: var(--gold); }
.about .about-words p { color: rgba(255,255,255,0.82); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-words h2 { text-align: left; margin-bottom: 24px; }
.about-words p {
  color: var(--ink-soft); font-size: 17px; line-height: 1.7;
  margin-bottom: 18px;
}
.about-quote {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white); padding: 48px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 32px 80px rgba(10, 46, 109, 0.3);
  overflow: hidden;
}
.about-quote::before {
  content: '"';
  position: absolute; top: 10px; left: 24px;
  font-family: var(--serif);
  font-size: 140px; line-height: 1;
  color: rgba(255,255,255,0.15);
}
.about-quote-text {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400; line-height: 1.3;
  font-style: italic;
  position: relative;
}
.about-quote-sig {
  margin-top: 24px; font-size: 13px; opacity: 0.85;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Booking */
.booking { background: var(--white); }
.booking-form {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.booking-form .field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.booking-form .field { margin-bottom: 20px; }
.booking-form .field-row .field { margin-bottom: 20px; }
.booking-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.booking-form label .req { color: var(--blue); }
.booking-form label .opt { color: var(--muted); font-weight: 400; font-size: 12px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all .25s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 95, 208, 0.1);
}
.booking-form input.invalid,
.booking-form select.invalid,
.booking-form textarea.invalid {
  border-color: #d94444;
  background: #fef5f5;
}
.booking-form textarea { resize: vertical; min-height: 90px; }
.booking-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a9a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.booking-form .checkbox {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  padding: 12px 0; cursor: pointer;
  user-select: none;
}
.booking-form .checkbox input { width: auto; margin: 0; accent-color: var(--blue); }
.booking-form .checkbox strong { color: var(--blue); }
.booking-form .submit-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
}
.booking-form .btn-whatsapp {
  background: #25D366; color: #fff;
  flex: 1 1 auto; min-width: 200px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.booking-form .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45); }
.booking-form .btn-secondary {
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--line);
  justify-content: center; flex: 0 1 auto; min-width: 170px;
}
.booking-form .btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.booking-form .form-note {
  margin: 20px 0 0; text-align: center;
  font-size: 13px; color: var(--muted);
}

@media (max-width: 640px) {
  .booking-form { padding: 32px 24px; }
  .booking-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form .btn-whatsapp,
  .booking-form .btn-secondary { width: 100%; min-width: 0; }
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(30, 95, 208, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 20% 80%, rgba(212, 168, 87, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact .container { position: relative; }
.contact .section-title, .contact .section-eyebrow { color: var(--white); }
.contact .section-title em { color: var(--gold); }
.contact .section-sub { color: rgba(255,255,255,0.75); }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px; text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: var(--white);
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
}
.contact-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}
.contact-card .label {
  font-size: 11px; opacity: 0.75;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 8px;
}
.contact-card .value { font-size: 17px; font-weight: 600; word-break: break-word; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.footer .tagline em { color: var(--gold); }
.footer .small { font-size: 13px; opacity: 0.6; }

@media (max-width: 640px) {
  .nav .links a:not(.cta-btn) { display: none; }
  section { padding: 80px 0; }
  .hero { padding: 80px 0 100px; }
}
