:root {
  --bg: #f5f8ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #08122f;
  --ink-soft: #303a57;
  --muted: #5f6880;
  --line: rgba(26, 44, 110, 0.10);
  --line-strong: rgba(46, 68, 154, 0.16);
  --blue: #0a67ff;
  --cyan: #19c7ef;
  --purple: #5828df;
  --navy: #071532;
  --orange: #ff6b00;
  --green: #16b85a;
  --gradient: linear-gradient(135deg, var(--blue), var(--purple));
  --gradient-soft: linear-gradient(135deg, rgba(10,103,255,.08), rgba(88,40,223,.10));
  --shadow: 0 24px 60px rgba(16, 28, 67, 0.12);
  --shadow-soft: 0 18px 40px rgba(16, 28, 67, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7ff 100%);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 100%; height: 100%; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -52px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section { padding: clamp(72px, 9vw, 118px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.74);
  border-bottom: 1px solid rgba(12, 31, 95, 0.06);
}
.site-header.is-scrolled { box-shadow: 0 18px 40px rgba(8, 18, 47, 0.06); }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 102px; height: 102px; object-fit: contain; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.primary-nav > a {
  position: relative;
  padding: 12px 16px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta):focus-visible {
  color: var(--ink);
  background: rgba(255,255,255,.82);
  transform: translateY(-1px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px !important;
  color: #fff !important;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(32, 52, 181, 0.26);
  animation: pulseGlow 5.4s ease-in-out infinite;
}
.nav-cta svg { width: 16px; height: 16px; fill: currentColor; }
.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 8vw, 92px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(25, 199, 239, 0.09), transparent 23%),
    radial-gradient(circle at 88% 18%, rgba(88, 40, 223, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.58));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.light { color: #86b5ff; }
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 0 rgba(88,40,223,.18);
  animation: dotPulse 3.3s ease-in-out infinite;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.hero h1 span { color: var(--ink); }
.hero h1 strong {
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin: 22px 0 0;
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.68;
}
.hero-actions,
.cta-actions,
.about-links,
.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin-top: 30px; }
.hero-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-jump-links a,
.about-links a,
.mini-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(16,34,91,.09);
  box-shadow: 0 10px 24px rgba(18, 29, 68, 0.05);
  font-size: 13px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hero-jump-links a:hover,
.about-links a:hover,
.mini-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 29, 68, 0.08);
  border-color: rgba(16,34,91,.16);
}
.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-promises li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(15,34,92,.08);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}
.hero-promises li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 900;
}
.hero-panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(37, 60, 144, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  box-shadow: 0 30px 70px rgba(16, 28, 67, 0.14);
  backdrop-filter: blur(18px);
  animation: panelFloat 8s ease-in-out infinite;
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.18));
  pointer-events: none;
}
.hero-panel-top,
.booking-panel,
.hero-panel-list {
  position: relative;
  z-index: 1;
}
.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.hero-logo {
  width: 138px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  animation: gentleLogoBob 8.4s ease-in-out infinite;
}
.hero-panel-tag {
  flex: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gradient-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}
.hero-panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.hero-panel-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid rgba(16,34,91,.06);
  font-size: 14px;
  font-weight: 750;
  color: var(--ink);
}
.bullet {
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}
.booking-panel {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248,250,255,.96), rgba(255,255,255,.98));
  border: 1px solid rgba(16,34,91,.08);
}
.booking-panel img {
  width: 122px;
  height: 122px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(13, 23, 59, 0.08);
}
.booking-kicker {
  margin: 0 0 6px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.booking-panel p { margin: 0 0 16px; color: var(--muted); line-height: 1.65; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
  opacity: .9;
}
.hero-orb-one {
  width: 20px; height: 20px; left: 8%; top: 24%;
  background: linear-gradient(135deg, rgba(25,199,239,.85), rgba(10,103,255,.85));
  animation: orbFloatA 11s ease-in-out infinite;
}
.hero-orb-two {
  width: 14px; height: 14px; right: 11%; top: 22%;
  background: linear-gradient(135deg, rgba(88,40,223,.85), rgba(25,199,239,.75));
  animation: orbFloatB 9s ease-in-out infinite;
}
.hero-orb-three {
  width: 24px; height: 24px; right: 6%; bottom: 16%;
  background: linear-gradient(135deg, rgba(10,103,255,.75), rgba(88,40,223,.75));
  animation: orbFloatC 12s ease-in-out infinite;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.trust-strip { padding: 0 0 12px; }
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 84px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
}
.stars { color: #f4a300; letter-spacing: .14em; }
.trust-item strong { color: #17a34a; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(19,33,79,.12);
}
.orange-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulseOrange 2.8s ease-in-out infinite;
}

.services-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(249,251,255,.96));
}
.services-section::before,
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.services-section::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(10,103,255,.05), transparent 24%),
    radial-gradient(circle at 90% 76%, rgba(88,40,223,.06), transparent 25%);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 304px;
  padding: 28px;
  border: 1px solid rgba(222,228,243,.96);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,251,255,.98));
  box-shadow: 0 12px 34px rgba(30,44,95,.06);
  overflow: hidden;
  isolation: isolate;
  outline: none;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease, border-color .38s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(10,103,255,.06), rgba(88,40,223,.08));
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: 22px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
  transition: width .32s ease, opacity .24s ease;
}
.service-card:hover,
.service-card:focus-visible,
.service-card.is-open {
  transform: translateY(-10px);
  border-color: rgba(49, 82, 205, .24);
  box-shadow: 0 28px 60px rgba(33,47,102,.15);
}
.service-card:hover::before,
.service-card:focus-visible::before,
.service-card.is-open::before { opacity: 1; }
.service-card:hover::after,
.service-card:focus-visible::after,
.service-card.is-open::after { width: 92px; opacity: 0; }
.service-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(125,142,195,.18);
  color: #56607d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(30,44,95,.06);
  transition: opacity .26s ease, transform .26s ease;
}
.service-icon,
.service-card h3,
.service-card > p { transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .22s ease; }
.service-card:hover .service-chip,
.service-card:focus-visible .service-chip,
.service-card.is-open .service-chip,
.service-card:hover .service-icon,
.service-card:focus-visible .service-icon,
.service-card.is-open .service-icon,
.service-card:hover h3,
.service-card:focus-visible h3,
.service-card.is-open h3,
.service-card:hover > p,
.service-card:focus-visible > p,
.service-card.is-open > p {
  transform: translateY(-18px);
  opacity: .12;
}
.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.service-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.service-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.service-more {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
  color: #fff;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(5,79,224,.98), rgba(46,8,157,.98));
  opacity: 0;
  transform: translateY(22px) scale(.985);
  pointer-events: none;
  transition: opacity .3s ease, transform .36s cubic-bezier(.2,.8,.2,1);
}
.service-more::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(28px - 1px);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  pointer-events: none;
}
.service-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(121,196,255,.3), transparent 34%);
  pointer-events: none;
}
.service-card:hover .service-more,
.service-card:focus-visible .service-more,
.service-card.is-open .service-more {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.service-more-kicker,
.service-more ul,
.service-more-link { position: relative; z-index: 1; }
.service-more-kicker {
  margin-bottom: 12px;
  color: #c8ddff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-more ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-more li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}
.service-more li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #8fd6ff;
}
.service-more-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 18px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  transition: background .22s ease, transform .22s ease;
}
.service-more-link:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.service-footer-note {
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.about-section {
  position: relative;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.about-section::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(10,103,255,.06), transparent 22%),
    radial-gradient(circle at 88% 70%, rgba(88,40,223,.07), transparent 24%);
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}
.about-copy h2,
.why-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.about-copy p:not(.eyebrow),
.why-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.about-note { max-width: 740px; }
.about-links { margin-top: 24px; }
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(214,221,239,.9);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(29,43,96,.10);
  backdrop-filter: blur(14px);
}
.about-stat {
  min-height: 146px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248,250,255,.98), rgba(255,255,255,.98));
  border: 1px solid rgba(225,230,243,.95);
}
.about-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.about-stat span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}
.about-stat:nth-child(1) strong,
.about-stat:nth-child(4) strong { color: var(--blue); }
.about-stat:nth-child(2) strong,
.about-stat:nth-child(3) strong { color: var(--purple); }

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 15%, rgba(23,108,255,.22), transparent 22%),
    linear-gradient(135deg, #08162f 0%, #091f48 100%);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.why-copy > p:not(.eyebrow) { color: #b8c3db; }
.why-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.why-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.why-list .bullet {
  grid-row: 1 / 3;
  align-self: center;
  color: #7ab7ff;
}
.why-list b {
  font-size: 16px;
  line-height: 1.3;
}
.why-list small {
  margin-top: 4px;
  color: #9fb0cf;
  font-size: 14px;
  line-height: 1.45;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.credential-card {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.cred-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  font-weight: 900;
}
.cred-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cred-icon.gold { background: #ffb51d; color: #6c3e00; }
.cred-icon.blue { background: #1789ff; color: #ffffff; }
.cred-icon.insured { background: #1e65ff; color: #ffffff; }
.cred-icon.guaranteed { background: #12a84d; color: #ffffff; }
.credential-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.credential-card p {
  margin: 0;
  color: #b4c1dd;
  line-height: 1.6;
}

.cta-section { padding-top: 44px; padding-bottom: 44px; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b00 0%, #ff6b00 30%, #0a67ff 72%, #5828df 100%);
  box-shadow: 0 26px 60px rgba(40, 47, 102, 0.18);
}
.cta-eyebrow { color: rgba(255,255,255,.8); margin-bottom: 12px; }
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.cta-band p:not(.eyebrow) { margin: 12px 0 0; color: rgba(255,255,255,.88); line-height: 1.6; }

.contact-section { background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(214,221,239,.9);
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 36px rgba(28,43,99,.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40,65,185,.18);
  box-shadow: 0 22px 42px rgba(28,43,99,.10);
}
.contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--gradient);
  transition: transform .22s ease;
}
.contact-card:hover .contact-icon { transform: scale(1.05); }
.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-icon.whatsapp { background: var(--green); }
.contact-icon.whatsapp svg { fill: currentColor; stroke: none; }
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.contact-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.site-footer {
  padding: 24px 0 36px;
  background: #09142e;
  color: rgba(255,255,255,.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.footer-brand span {
  max-width: 350px;
  color: rgba(255,255,255,.74);
  line-height: 1.6;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 36px rgba(35,75,225,.25);
  animation: pulseGlow 6.2s ease-in-out infinite;
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.85);
  border-color: rgba(16,34,91,.10);
  box-shadow: 0 12px 24px rgba(18,29,68,.05);
}
.btn-white {
  color: var(--ink);
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 30px rgba(8,18,47,.10);
}
.btn-outline-white {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.28);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: #18b85b;
  box-shadow: 0 18px 38px rgba(6,90,40,.28);
  animation: whatsappLift 4.2s ease-in-out infinite;
}
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.floating-whatsapp span { font-size: 13px; font-weight: 850; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes gentleLogoBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(.35deg); }
}
@keyframes orbFloatA {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(10px,-16px,0); }
}
@keyframes orbFloatB {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-8px,12px,0); }
}
@keyframes orbFloatC {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-10px,-12px,0); }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 34px rgba(32, 52, 181, 0.22); }
  50% { transform: scale(1.016); box-shadow: 0 20px 38px rgba(32, 52, 181, 0.30); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,40,223,.18); }
  50% { box-shadow: 0 0 0 8px rgba(88,40,223,0); }
}
@keyframes dotPulseOrange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}
@keyframes whatsappLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .why-grid { grid-template-columns: 1fr; }
  .cta-band,
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(16,34,91,.08);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-panel,
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { border-radius: 28px; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .brand img { width: 84px; height: 84px; }
  .hero-panel-top,
  .booking-panel { grid-template-columns: 1fr; display: grid; }
  .hero-panel-top { gap: 14px; }
  .hero-logo { width: 126px; }
  .hero-panel-list,
  .service-grid,
  .contact-grid,
  .about-panel,
  .credential-grid { grid-template-columns: 1fr; }
  .trust-grid {
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }
  .trust-divider { width: 40px; height: 1px; }
  .contact-card { min-height: 0; }
  .footer-brand { align-items: flex-start; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}


/* SEO service hub + individual service pages */
.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 106px) 0 clamp(60px, 8vw, 96px);
  background:
    radial-gradient(circle at 84% 18%, rgba(88,40,223,.10), transparent 24%),
    radial-gradient(circle at 14% 22%, rgba(25,199,239,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,255,.96));
}
.service-page-hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px,5vw,70px); align-items:center; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:20px; color:var(--muted); font-size:13px; font-weight:700; }
.breadcrumbs a { color:var(--blue); }
.service-page-hero h1 { margin:0; font-size:clamp(3rem,5.7vw,5.3rem); line-height:.98; letter-spacing:-.06em; }
.service-page-hero h1 span { background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.service-page-lead { margin:22px 0 0; max-width:720px; color:var(--ink-soft); font-size:clamp(19px,2vw,23px); line-height:1.68; }
.service-page-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.service-summary-panel { padding:28px; border:1px solid var(--line); border-radius:30px; background:rgba(255,255,255,.9); box-shadow:var(--shadow); backdrop-filter:blur(14px); }
.service-summary-panel .mini-logo { width:112px; height:112px; object-fit:contain; margin-bottom:18px; }
.service-summary-panel h2 { margin:0 0 12px; font-size:28px; line-height:1.08; letter-spacing:-.04em; }
.service-summary-panel p { margin:0; color:var(--muted); line-height:1.65; }
.service-summary-links { display:grid; gap:9px; margin-top:18px; }
.service-summary-links a { display:flex; align-items:center; justify-content:space-between; min-height:44px; padding:0 14px; border-radius:14px; background:#f7f9ff; border:1px solid rgba(16,34,91,.07); color:var(--ink); font-size:14px; font-weight:800; transition:transform .2s ease, background .2s ease; }
.service-summary-links a:hover { transform:translateX(3px); background:#f0f5ff; }
.service-content-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px); align-items:start; }
.service-copy h2 { margin:0; font-size:clamp(2.3rem,4vw,3.8rem); line-height:1.05; letter-spacing:-.05em; }
.service-copy p { color:var(--muted); font-size:18px; line-height:1.75; }
.service-feature-list { display:grid; gap:12px; margin:0; padding:0; list-style:none; }
.service-feature-list li { position:relative; padding:17px 18px 17px 48px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 12px 26px rgba(20,35,80,.05); font-weight:700; line-height:1.5; }
.service-feature-list li::before { content:'✓'; position:absolute; left:18px; top:16px; display:grid; place-items:center; width:22px; height:22px; border-radius:50%; color:#fff; background:var(--gradient); font-size:12px; }
.service-why-box { margin-top:24px; padding:24px; border-radius:24px; background:linear-gradient(145deg,rgba(10,103,255,.07),rgba(88,40,223,.08)); border:1px solid rgba(45,69,168,.10); }
.service-why-box h3 { margin:0 0 10px; font-size:22px; letter-spacing:-.03em; }
.service-why-box p { margin:0; }
.related-section { background:linear-gradient(180deg,#fff,#f8faff); }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:30px; }
.related-card { display:block; padding:24px; border-radius:22px; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-soft); transition:transform .24s ease, box-shadow .24s ease; }
.related-card:hover { transform:translateY(-4px); box-shadow:0 22px 42px rgba(28,43,99,.10); }
.related-card span { display:block; margin-bottom:8px; color:var(--purple); font-size:11px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.related-card strong { display:block; font-size:20px; line-height:1.2; letter-spacing:-.03em; }
.related-card p { margin:10px 0 0; color:var(--muted); line-height:1.55; }
.services-hub-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:34px; }
.services-hub-card { display:flex; flex-direction:column; min-height:220px; padding:26px; border-radius:24px; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-soft); transition:transform .25s ease, box-shadow .25s ease; }
.services-hub-card:hover { transform:translateY(-5px); box-shadow:0 24px 48px rgba(28,43,99,.11); }
.services-hub-card .tag { color:var(--blue); font-size:11px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.services-hub-card h2 { margin:12px 0 10px; font-size:26px; letter-spacing:-.04em; line-height:1.1; }
.services-hub-card p { margin:0; color:var(--muted); line-height:1.6; }
.services-hub-card .service-hub-link { margin-top:auto; padding-top:18px; color:var(--blue); font-weight:850; }
.service-page-link { display:inline-flex; margin-top:14px; color:var(--blue); font-size:13px; font-weight:850; }
.service-card:hover > .service-page-link, .service-card:focus-visible > .service-page-link, .service-card.is-open > .service-page-link { transform:translateY(-18px); opacity:.12; }
.service-page-link { transition:transform .34s cubic-bezier(.2,.8,.2,1), opacity .22s ease; }
.section-text-link { display:inline-flex; margin-top:14px; color:var(--blue); font-size:14px; font-weight:850; }
.service-footer-note a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.page-contact-bar { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:22px; }
.page-contact-bar a { display:flex; align-items:center; justify-content:center; min-height:48px; padding:0 14px; border-radius:16px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.09); color:#fff; font-size:14px; font-weight:800; }

@media (max-width: 900px) {
  .service-page-hero-grid,.service-content-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr; }
  .services-hub-grid { grid-template-columns:1fr; }
}
@media (max-width: 650px) {
  .page-contact-bar { grid-template-columns:1fr; }
}
