
/* ====================================================================
   Clear Path Moving — premium one-page site
   Palette: deep navy #0A2540 · orange #FF7A1A · black #0A0A0A · white
   Type: Manrope (UI) + Instrument Serif (accent)
   ==================================================================== */
:root {
  --navy:        #0A2540;
  --navy-deep:   #061A30;
  --navy-soft:   #0F2E50;
  --blue:        #1E4FE3;   /* bright royal blue from logo */
  --blue-d:      #1640BD;
  --blue-l:      #5A82F0;
  --orange:      #FF7A1A;
  --orange-d:    #E5681A;
  --orange-l:    #FFB375;
  --black:       #0A0A0A;
  --ink:         #15202D;
  --ink-2:       #4A5868;
  --ink-3:       #8A95A3;
  --line:        rgba(10, 37, 64, 0.10);
  --paper:       #FFFFFF;
  --paper-2:     #F6F8FB;
  --paper-3:     #EEF2F8;
  --shadow-md:   0 10px 30px -10px rgba(10, 37, 64, 0.20);
  --shadow-lg:   0 30px 80px -20px rgba(10, 37, 64, 0.35);
  --shadow-orange: 0 12px 40px -12px rgba(255, 122, 26, 0.55);
  --font-sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:  "Instrument Serif", Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* --- Typography helpers --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--orange);
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--navy); }
h2 { font-size: clamp(36px, 5vw, 56px); }
h3 { font-size: 22px; letter-spacing: -0.01em; line-height: 1.25; }
.lede { color: var(--ink-2); font-size: 18px; line-height: 1.6; max-width: 620px; }
.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--orange); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em; transition: transform .25s cubic-bezier(.2,0,0,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(255,122,26,.7); }
.btn--ghost   { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--dark    { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ====================================================================
   Loading screen
   ==================================================================== */
#loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-deep); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
}
#loader .mark {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
#loader .bar { width: 180px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; border-radius: 2px; }
#loader .bar::after {
  content: ""; display: block; height: 100%; width: 40%;
  background: var(--orange); border-radius: 2px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); } 100% { transform: translateX(350%); }
}

/* ====================================================================
   Nav
   ==================================================================== */
.site-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.nav {
  position: static; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .3s cubic-bezier(.2,0,0,1);
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  box-shadow: 0 4px 24px -10px rgba(10,37,64,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 16px -4px rgba(30, 79, 227, .35);
  flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--paper); transition: color .3s; }
.nav.is-scrolled .brand__name { color: var(--navy); }
.brand__sub { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7); letter-spacing: 0.06em; text-transform: uppercase; transition: color .3s; }
.nav.is-scrolled .brand__sub { color: var(--ink-3); }
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__link {
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85);
  border-radius: 8px; transition: color .2s, background .2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav.is-scrolled .nav__link { color: var(--ink-2); }
.nav.is-scrolled .nav__link:hover { color: var(--navy); background: var(--paper-2); }
.nav__cta { margin-left: 12px; padding: 11px 22px; font-size: 14px; }
.nav__burger { display: none; }
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.1);
    color: #fff;
  }
  .nav.is-scrolled .nav__burger { background: var(--paper-2); color: var(--navy); }

  /* Mobile dropdown menu */
  .nav { position: relative; }
  .nav__links {
    display: flex;
    position: absolute; top: calc(100% + 6px); left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 10px; box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  }
  .nav.menu-open .nav__links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links .nav__link { color: var(--navy); padding: 13px 14px; border-radius: 9px; font-size: 15px; }
  .nav__links .nav__link:hover,
  .nav__links .nav__link.is-active { background: var(--paper-2); color: var(--orange); }
  .nav__cta.nav__cta { margin: 8px 0 2px; justify-content: center; text-align: center; }
  .nav__burger svg { transition: transform .25s var(--ease-out); }
  .nav.menu-open .nav__burger svg { transform: rotate(90deg); }
}

/* ====================================================================
   Hero
   ==================================================================== */
.hero {
  position: relative; min-height: 100vh; padding: 140px 0 80px;
  background: var(--navy-deep);
  color: #fff; overflow: hidden;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, rgba(6, 26, 48, 0.92) 0%, rgba(10, 37, 64, 0.72) 50%, rgba(10, 37, 64, 0.5) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=85");
  background-size: cover; background-position: center;
  animation: hero-bg-pan 24s ease-in-out infinite alternate;
}
@keyframes hero-bg-pan {
  0%   { background-size: 110% auto; background-position: 50% 50%; }
  100% { background-size: 124% auto; background-position: 45% 55%; }
}
.hero__glow-1, .hero__glow-2 {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero__glow-1 { width: 540px; height: 540px; background: var(--orange); opacity: .28; top: -120px; right: -130px; }
.hero__glow-2 { width: 640px; height: 640px; background: var(--blue); opacity: .32; bottom: -220px; left: -180px; }
.hero__glow-3 { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: var(--blue); opacity: .15; filter: blur(80px); top: 40%; right: 20%; pointer-events: none; }
.hero__float-1, .hero__float-2, .hero__float-3 {
  position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  backdrop-filter: blur(10px); background: rgba(255,255,255,.04);
  padding: 14px 20px; font-size: 13px; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.hero__float-1 { top: 22%; right: 6%; }
.hero__float-2 { bottom: 30%; right: 12%; }
.hero__float-3 { top: 40%; right: 2%; }
.hero__float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.hero__float-dot.green { background: #22C55E; box-shadow: 0 0 12px #22C55E; }
.hero__float-dot.blue  { background: var(--blue-l); box-shadow: 0 0 12px var(--blue-l); }
@media (max-width: 880px) { .hero__float-1, .hero__float-2, .hero__float-3 { display: none; } }

.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,122,26,.12); border: 1px solid rgba(255,122,26,.3);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-l); margin-bottom: 28px;
}
.hero__eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,122,26,.6);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,122,26,.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,122,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); }
}
.hero__title {
  font-size: clamp(48px, 8vw, 92px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 0.98; color: #fff; margin-bottom: 24px;
}
.hero__title .accent { color: var(--orange); }
.hero__sub {
  font-size: clamp(17px, 1.8vw, 21px); line-height: 1.55;
  color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 38px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
}
.hero__trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ====================================================================
   Section base
   ==================================================================== */
.section { padding: 110px 0; }
.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head .eyebrow::before { display: none; }
.section__head h2 { margin-bottom: 20px; }

/* ====================================================================
   Services
   ==================================================================== */
.services { background: var(--paper-2); }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--paper); border-radius: 20px; padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,0,0,1), box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-d) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.2,0,0,1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg); border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: transform .35s, box-shadow .35s;
  box-shadow: 0 8px 20px -8px rgba(30, 79, 227, .4);
}
.service-card:hover .service-card__icon {
  box-shadow: 0 12px 28px -8px rgba(30, 79, 227, .55);
}
.service-card::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%) !important;
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-6deg); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: .02em;
}
.service-card__link .arrow { transition: transform .25s; }
.service-card:hover .service-card__link .arrow { transform: translateX(4px); }

/* ====================================================================
   Why us
   ==================================================================== */
.why { background: var(--paper); }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.why-card {
  padding: 30px 28px; border-radius: 18px; background: var(--paper-2);
  border: 1px solid var(--line); display: flex; gap: 18px; align-items: flex-start;
  transition: transform .3s, background .3s;
}
.why-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-md); }
.why-card__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 79, 227, 0.14), rgba(255, 122, 26, 0.14));
  color: var(--blue); border: 1px solid rgba(30, 79, 227, 0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.why-card:hover .why-card__icon {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: rotate(-6deg) scale(1.08);
}
.why-card h3 { font-size: 17px; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ====================================================================
   Process
   ==================================================================== */
.process {
  background: var(--navy-deep); color: #fff; position: relative; overflow: hidden;
}
.process .section__head h2 { color: #fff; }
.process .section__head .lede { color: rgba(255,255,255,.7); margin: 0 auto; }
.process__glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--orange); opacity: .12; filter: blur(120px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.process__grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 880px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process__grid { grid-template-columns: 1fr; } }
.process-step {
  padding: 32px 26px; border-radius: 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px); position: relative;
  transition: transform .3s, background .3s;
}
.process-step:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.process-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  font-weight: 800; font-size: 18px; margin-bottom: 20px;
  color: #fff;
  background: var(--orange);
  box-shadow: var(--shadow-orange);
}
.process-step:nth-child(2) .process-step__num { background: var(--blue); box-shadow: 0 12px 40px -12px rgba(30, 79, 227, .55); }
.process-step:nth-child(3) .process-step__num { background: var(--orange); }
.process-step:nth-child(4) .process-step__num { background: var(--blue); box-shadow: 0 12px 40px -12px rgba(30, 79, 227, .55); }
.process-step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.5; }

/* ====================================================================
   Testimonials
   ==================================================================== */
.testimonials { background: var(--paper-2); }
.testimonial-track-wrap { position: relative; overflow: hidden; padding: 8px 0; }
.testimonial-track {
  display: flex; gap: 24px; will-change: transform; transition: transform .55s cubic-bezier(.2,0,0,1);
}
.testimonial {
  flex: 0 0 calc((100% - 48px) / 3); min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 32px;
}
@media (max-width: 980px) { .testimonial { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 680px) { .testimonial { flex: 0 0 100%; } }
.testimonial__stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 3px; font-size: 16px; }
.testimonial__quote { font-family: var(--font-serif); font-size: 22px; line-height: 1.35; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.005em; }
.testimonial__attr { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 200%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testimonial__meta { display: flex; flex-direction: column; }
.testimonial__name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial__loc  { font-size: 12px; color: var(--ink-3); }
.testimonial__nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial__nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.testimonial__nav button:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

/* ====================================================================
   Service areas
   ==================================================================== */
.areas { background: #fff; }
.areas__wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
@media (max-width: 880px) { .areas__wrap { grid-template-columns: 1fr; } }
.areas__list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px; margin-top: 30px;
}
.area-chip { font-size: 14px !important; padding: 12px 14px !important; }
.area-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: all .25s;
}
.area-chip:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
  transform: translateY(-2px); box-shadow: var(--shadow-orange);
}
.area-chip:hover svg { color: #fff; }
.area-chip svg { color: var(--orange); transition: color .25s; }
.area-map {
  position: relative; aspect-ratio: 1.1 / 1; border-radius: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.area-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-pin__dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.25), 0 0 0 14px rgba(255, 122, 26, 0.12);
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.map-pin__label {
  margin-top: 8px; font-size: 11px; font-weight: 700;
  background: #fff; color: var(--navy); padding: 4px 10px; border-radius: 6px;
  white-space: nowrap;
}

/* ====================================================================
   Gallery
   ==================================================================== */
.gallery { background: var(--paper-2); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px; gap: 14px;
}
@media (max-width: 880px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px 180px 180px; } }
.gallery__item {
  border-radius: 14px; overflow: hidden; position: relative;
  background: var(--navy-deep); cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,0,0,1);
  animation: kenburns 18s ease-in-out infinite alternate;
}
.gallery__item:nth-child(2) img { animation-delay: -3s; animation-duration: 20s; }
.gallery__item:nth-child(3) img { animation-delay: -7s; animation-duration: 22s; }
.gallery__item:nth-child(4) img { animation-delay: -11s; animation-duration: 19s; }
.gallery__item:nth-child(5) img { animation-delay: -5s; animation-duration: 23s; }
@keyframes kenburns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.2) 45%, transparent 65%);
  transition: opacity .35s; pointer-events: none;
}
.gallery__item:hover img { animation-play-state: paused; transform: scale(1.22); }
.gallery__item:hover::after { background: linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(30, 79, 227, 0.3) 50%, transparent 80%); }
.gallery__caption {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  color: #fff; pointer-events: none;
}
.gallery__caption-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-l); margin-bottom: 8px;
}
.gallery__caption-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.gallery__caption-title {
  font-size: 17px; font-weight: 700; line-height: 1.25; letter-spacing: -0.005em;
  max-width: 90%;
}
.gallery__item.span-2 .gallery__caption-title { font-size: 22px; max-width: 70%; }
.gallery__item.span-2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 880px) { .gallery__item.span-2 { grid-column: span 2; grid-row: span 1; } }

/* ====================================================================
   FAQ
   ==================================================================== */
.faq { background: #fff; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer;
}
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 18px; font-weight: 700; color: var(--navy); transition: color .2s;
}
.faq-item:hover .faq-item__q { color: var(--orange); }
.faq-item__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper-2); display: flex; align-items: center; justify-content: center;
  transition: all .3s cubic-bezier(.2,0,0,1);
}
.faq-item.is-open .faq-item__icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,0,0,1), padding-top .3s;
  color: var(--ink-2); font-size: 15px; line-height: 1.65;
}
.faq-item.is-open .faq-item__a { max-height: 220px; padding-top: 14px; }

/* ====================================================================
   Quote form
   ==================================================================== */
.quote {
  background: var(--navy-deep); color: #fff; position: relative; overflow: hidden;
}
.quote__glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--orange); opacity: .15; filter: blur(100px);
  top: -100px; right: -50px;
}
.quote__wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; position: relative; z-index: 2; }
@media (max-width: 880px) { .quote__wrap { grid-template-columns: 1fr; } }
.quote__left h2 { color: #fff; margin-bottom: 20px; }
.quote__left .lede { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.quote__perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.quote__perks li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: 15px; }
.quote__perks svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.form {
  background: #fff; color: var(--ink);
  border-radius: 24px; padding: 36px; box-shadow: var(--shadow-lg);
}
.form__title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.form__sub { font-size: 14px; color: var(--ink-3); margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-size: 12px; font-weight: 700; color: var(--ink-2);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px;
}
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: 15px; padding: 12px 14px;
  background: var(--paper-2); border: 1.5px solid transparent; border-radius: 10px;
  color: var(--ink); transition: all .2s;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__submit { margin-top: 8px; width: 100%; justify-content: center; padding: 16px; }

/* ====================================================================
   Footer
   ==================================================================== */
.footer {
  background: var(--black); color: rgba(255,255,255,.7); padding: 80px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand .brand__name, .footer__brand .brand__sub { color: #fff; }
.footer__about { margin-top: 18px; font-size: 14px; line-height: 1.65; max-width: 320px; }
.footer__title {
  font-size: 12px; font-weight: 700; color: #fff;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__list a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.footer__social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px; color: rgba(255,255,255,.45);
}
@media (max-width: 540px) { .footer__bar { flex-direction: column; gap: 10px; text-align: center; } }

/* ====================================================================
   Sticky mobile call
   ==================================================================== */
.sticky-call {
  display: none; position: fixed; bottom: 18px; right: 18px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); color: #fff;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange);
  animation: pulseRing 2s infinite;
}
@media (max-width: 880px) { .sticky-call { display: flex; left: 18px; right: auto; } }

/* ====================================================================
   Clear Path Assistant (chat bot widget)
   ==================================================================== */
.cpm-bot { position: fixed; bottom: 22px; right: 22px; z-index: 120; font-family: var(--font-sans); }
@media (max-width: 880px) { .cpm-bot { bottom: 18px; right: 18px; } }

.cpm-bot__fab {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px -8px rgba(255, 122, 26, 0.7); cursor: pointer;
  transition: transform .25s cubic-bezier(.2,0,0,1), box-shadow .25s;
}
.cpm-bot__fab:hover { transform: translateY(-3px) scale(1.04); }
.cpm-bot__fab .cpm-bot__fab-close { display: none; position: absolute; }
.cpm-bot__fab.is-open { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); box-shadow: var(--shadow-lg); }
.cpm-bot__fab.is-open .cpm-bot__fab-chat { display: none; }
.cpm-bot__fab.is-open .cpm-bot__fab-close { display: block; }
.cpm-bot__badge {
  position: absolute; top: -2px; right: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.cpm-bot__fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 122, 26, .55); animation: pulseRing 2.2s infinite;
}
.cpm-bot__fab.is-open::after { display: none; }

/* Teaser bubble */
.cpm-bot__teaser {
  position: absolute; bottom: 78px; right: 0; width: 232px;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: 16px 16px 4px 16px; padding: 14px 16px; font-size: 13.5px;
  line-height: 1.45; font-weight: 500; box-shadow: var(--shadow-lg);
  cursor: pointer; opacity: 0; transform: translateY(12px) scale(.96);
  pointer-events: none; transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.cpm-bot__teaser.is-in { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cpm-bot__teaser b { color: var(--orange); }
.cpm-bot__teaser-close {
  position: absolute; top: 6px; right: 8px; font-size: 17px; line-height: 1;
  color: var(--ink-3); background: none; border: none; cursor: pointer;
}

/* Panel */
.cpm-bot__panel {
  position: absolute; bottom: 78px; right: 0; width: 370px; max-width: calc(100vw - 36px);
  height: 540px; max-height: calc(100vh - 120px);
  background: var(--paper); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(10, 37, 64, 0.45);
  opacity: 0; transform: translateY(20px) scale(.97); pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.cpm-bot__panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.cpm-bot__head {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff;
}
.cpm-bot__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cpm-bot__head-text { flex: 1; min-width: 0; }
.cpm-bot__head-name { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.cpm-bot__head-status { font-size: 11.5px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; margin-top: 1px; }
.cpm-bot__dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; }
.cpm-bot__min { color: rgba(255,255,255,.8); background: none; border: none; cursor: pointer; padding: 4px; border-radius: 6px; transition: background .2s; }
.cpm-bot__min:hover { background: rgba(255,255,255,.12); }

.cpm-bot__body {
  flex: 1; overflow-y: auto; padding: 18px 16px 8px;
  background: var(--paper-2); display: flex; flex-direction: column; gap: 12px;
}
.cpm-msg { display: flex; gap: 8px; align-items: flex-end; animation: cpmIn .35s var(--ease-out); }
@keyframes cpmIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cpm-msg__av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cpm-msg__bubble {
  background: #fff; border: 1px solid var(--line); border-radius: 14px 14px 14px 4px;
  padding: 11px 14px; font-size: 14px; line-height: 1.5; color: var(--ink); max-width: 78%;
}
.cpm-msg__bubble b { color: var(--navy); font-weight: 700; }
.cpm-msg--user { justify-content: flex-end; }
.cpm-msg--user .cpm-msg__bubble {
  background: var(--navy); color: #fff; border-color: var(--navy);
  border-radius: 14px 14px 4px 14px;
}
.cpm-msg--cta-row { padding-left: 34px; }
.cpm-msg__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(255, 122, 26, 0.6);
  transition: transform .2s;
}
.cpm-msg__cta:hover { transform: translateY(-2px); }

.cpm-typing { display: flex; gap: 4px; align-items: center; }
.cpm-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); opacity: .4;
  animation: cpmBlink 1.2s infinite;
}
.cpm-typing span:nth-child(2) { animation-delay: .2s; }
.cpm-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cpmBlink { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.cpm-bot__quick {
  display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px;
  background: var(--paper-2); border-top: 1px solid var(--line);
}
.cpm-chip {
  background: #fff; border: 1.5px solid var(--line); color: var(--navy);
  font-size: 12.5px; font-weight: 600; padding: 8px 13px; border-radius: 999px;
  cursor: pointer; transition: all .2s;
}
.cpm-chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }

.cpm-bot__input {
  display: flex; gap: 8px; padding: 12px 14px; background: #fff; border-top: 1px solid var(--line);
}
.cpm-bot__input input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 11px 16px; font: inherit; font-size: 14px; color: var(--ink);
  background: var(--paper-2); transition: all .2s;
}
.cpm-bot__input input:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,122,26,.12); }
.cpm-bot__input button {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .2s;
}
.cpm-bot__input button:hover { transform: scale(1.06); }

@media (max-width: 420px) {
  .cpm-bot__panel { width: calc(100vw - 28px); height: calc(100vh - 110px); }
}

/* ====================================================================
   Stats strip — animated counters
   ==================================================================== */
.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 720px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.stat { text-align: center; }
.stat__num {
  font-size: clamp(40px, 5vw, 56px); font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Google-review badge polish */
.testimonial__src {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--ink-3); font-weight: 600;
}
.gbadge {
  width: 18px; height: 18px; border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC04 180deg 270deg, #EA4335 270deg 360deg);
  display: inline-block;
}

/* CTA breathe */
@keyframes breathe {
  0%, 100% { box-shadow: 0 12px 40px -12px rgba(255, 122, 26, 0.55); }
  50% { box-shadow: 0 16px 50px -10px rgba(255, 122, 26, 0.75); }
}
.btn--primary { animation: breathe 3.2s ease-in-out infinite; }

/* Tighten brand text spacing for taller logo mark */
.brand__name { font-size: 17px; }

/* Honest-launch additions */
.stat__num {
  font-size: clamp(28px, 3.4vw, 38px) !important; font-weight: 800;
  line-height: 1.05; letter-spacing: -0.02em;
}
.stat__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 79, 227, 0.12), rgba(255, 122, 26, 0.12));
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 1px solid rgba(30, 79, 227, 0.16);
}

.launch-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff; padding: 24px 0; position: relative; overflow: hidden;
}
.launch-banner::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--orange); opacity: .25; filter: blur(70px);
}
.launch-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  text-align: center; flex-wrap: wrap; position: relative; z-index: 2;
}
.launch-banner__pill {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--orange); color: #fff; padding: 6px 14px; border-radius: 999px;
}
.launch-banner__text { font-size: clamp(15px, 1.6vw, 18px); font-weight: 600; }
.launch-banner__text strong { color: var(--orange-l); font-weight: 800; }
.launch-banner__cta {
  font-size: 13px; font-weight: 700; color: #fff;
  border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: color .2s;
}
.launch-banner__cta:hover { color: var(--orange-l); }

.founder-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  padding: 44px; max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) { .founder-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; } }
.founder-card__photo {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 38px; letter-spacing: -0.02em;
  box-shadow: 0 10px 30px -8px rgba(30, 79, 227, .3); flex-shrink: 0;
}
@media (max-width: 720px) { .founder-card__photo { margin: 0 auto; } }
.founder-card__quote {
  font-family: var(--font-serif); font-size: 22px; line-height: 1.4;
  color: var(--navy); letter-spacing: -0.005em; margin-bottom: 16px;
}
.founder-card__sig { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.founder-card__sig strong { color: var(--navy); font-weight: 700; }

.first-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  color: #fff; border-radius: 24px; padding: 56px 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) { .first-card { grid-template-columns: 1fr; padding: 40px 28px; } }
.first-card::before {
  content: ""; position: absolute; bottom: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--blue); opacity: .35; filter: blur(80px);
}
.first-card__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 14px;
  position: relative; z-index: 2;
}
.first-card h3 {
  font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px;
  max-width: 520px; position: relative; z-index: 2;
}
.first-card p { font-size: 15px; color: rgba(255,255,255,.92); line-height: 1.5; max-width: 520px; position: relative; z-index: 2; }
.first-card__btn {
  position: relative; z-index: 2;
  background: #fff; color: var(--orange-d);
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  transition: transform .25s;
}
/* ====================================================================
   Quick-pages nav strip (home — under hero)
   ==================================================================== */
.quicknav { background: var(--paper); padding: 56px 0 24px; }
.quicknav__head {
  text-align: center; margin-bottom: 28px;
}
.quicknav__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.quicknav__title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.quicknav__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
@media (max-width: 980px) { .quicknav__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .quicknav__grid { grid-template-columns: repeat(2, 1fr); } }
.qn-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 12px; border-radius: 16px;
  background: var(--paper-2); border: 1px solid var(--line);
  text-decoration: none; color: var(--navy);
  transition: transform .25s cubic-bezier(.2,0,0,1), box-shadow .25s, background .25s;
}
.qn-card:hover {
  transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-md);
  border-color: transparent;
}
.qn-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 130%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.qn-card:hover .qn-card__icon { transform: scale(1.08) rotate(-6deg); }
.qn-card__title { font-size: 13px; font-weight: 700; text-align: center; }

/* ====================================================================
   Friendly intro strip (small images preview)
   ==================================================================== */
.peek {
  padding: 40px 0 70px; background: var(--paper);
}
.peek__inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: center;
}
@media (max-width: 880px) { .peek__inner { grid-template-columns: 1fr; } }
.peek__text h2 { font-size: clamp(28px, 3.4vw, 38px); }
.peek__text .lede { margin-bottom: 18px; }
.peek__strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  height: 260px;
}
@media (max-width: 600px) { .peek__strip { height: 180px; } }
.peek__img {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--navy-deep);
}
.peek__img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.peek__img:nth-child(2) img { animation-delay: -6s; animation-duration: 22s; }
.peek__img:nth-child(3) img { animation-delay: -12s; animation-duration: 20s; }
.peek__img:hover img { animation-play-state: paused; transform: scale(1.16); }

#cpm-map { width: 100%; height: 100%; min-height: 460px; border-radius: 20px; box-shadow: var(--shadow-lg); }
#cpm-map .leaflet-control-container { font-family: var(--font-sans); }
.cpm-pin { position: relative; pointer-events: none; }
.cpm-pin .cpm-pin__dot {
  position: absolute; inset: 25%;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 4px 12px rgba(255, 122, 26, 0.6);
}
.cpm-pin .cpm-pin__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.25;
  animation: cpmPinPulse 2.2s ease-in-out infinite;
}
.cpm-pin--main .cpm-pin__dot { background: var(--blue); box-shadow: 0 0 0 3px #fff, 0 6px 18px rgba(30, 79, 227, 0.7); }
.cpm-pin--main .cpm-pin__ring { background: var(--blue); opacity: 0.3; }
@keyframes cpmPinPulse {
  0%   { transform: scale(1);   opacity: 0.3; }
  100% { transform: scale(2.4); opacity: 0;   }
}
.leaflet-tooltip.cpm-tip {
  background: var(--navy); color: #fff; border: none; border-radius: 6px;
  padding: 4px 10px; font-family: var(--font-sans); font-weight: 700; font-size: 11px;
  letter-spacing: 0.04em; box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.leaflet-tooltip.cpm-tip::before { border-top-color: var(--navy); }
.area-map svg { display: none !important; } /* hide legacy fake-map SVG if still present */
.area-map .map-pin { display: none !important; }

.pricing { background: var(--paper-2); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 980px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pricing__grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px 28px;
  transition: transform .3s cubic-bezier(.2,0,0,1), box-shadow .3s, border-color .3s;
  overflow: hidden; display: flex; flex-direction: column; gap: 16px;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.2,0,0,1);
}
.price-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.price-card:hover::before { transform: scaleX(1); }

.price-card__head {
  display: flex; align-items: center; gap: 12px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.price-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-card__title { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.price-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.price-card__label { font-size: 14px; font-weight: 600; color: var(--ink); }
.price-card__sub   { font-size: 11px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
.price-card__price {
  font-size: 18px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.price-card__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--ink-3); font-weight: 500;
}

.price-notes {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: 18px; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
}
.price-notes::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--orange); opacity: .18; filter: blur(80px);
}
@media (max-width: 880px) { .price-notes { grid-template-columns: 1fr; } }
.price-note { position: relative; z-index: 2; display: flex; gap: 14px; align-items: flex-start; }
.price-note__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 122, 26, 0.18); color: var(--orange-l);
  display: flex; align-items: center; justify-content: center;
}
.price-note__title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.price-note__body { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.5; }


/* ====================================================================
   Reveal animations (no-JS fallback safe)
   ==================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,0,0,1), transform .8s cubic-bezier(.2,0,0,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,0,0,1), transform .7s cubic-bezier(.2,0,0,1); }
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 560ms; }


/* ====================================================================
   Multi-page additions
   ==================================================================== */
.nav__link.is-active { color: var(--orange); background: rgba(255,122,26,.08); }
.nav.is-scrolled .nav__link.is-active { color: var(--orange); background: rgba(255,122,26,.1); }

/* Page hero — compact intro band for sub-pages */
.page-hero {
  position: relative; padding: 160px 0 90px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff; overflow: hidden;
}
.page-hero__glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--blue); opacity: .22; filter: blur(120px);
  top: -120px; right: -100px; pointer-events: none;
}
.page-hero__glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--orange); opacity: .2; filter: blur(120px);
  bottom: -140px; left: -100px; pointer-events: none;
}
.page-hero__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero__crumbs a { color: rgba(255,255,255,.6); }
.page-hero__crumbs a:hover { color: var(--orange); }
.page-hero__title {
  font-size: clamp(40px, 6vw, 68px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.02; color: #fff; margin-bottom: 16px;
}
.page-hero__title .accent { color: var(--orange); }
.page-hero__title .accent-blue { color: var(--blue-l); }
.page-hero__sub {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,.78); max-width: 640px; margin: 0;
}

/* Reviews grid (non-carousel) */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .reviews-grid { grid-template-columns: 1fr; } }
.reviews-grid .testimonial { flex: none; }

/* Summary CTA banner */
.cta-banner {
  margin: 0 28px; max-width: 1240px; margin: 0 auto;
}
.cta-banner__inner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%);
  border-radius: 24px; padding: 60px 56px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner__inner::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--blue); opacity: .25; filter: blur(60px);
}
.cta-banner h3 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800;
  letter-spacing: -0.02em; color: #fff; line-height: 1.1; max-width: 540px;
  position: relative; z-index: 2;
}
.cta-banner__btn {
  position: relative; z-index: 2;
  background: #fff; color: var(--navy);
  padding: 16px 28px; border-radius: 999px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; transition: transform .25s;
}
.cta-banner__btn:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .cta-banner__inner { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
}
