/* ═══════════════════════════════════════════════════════════
   Pacific Windows — pacificwindowscleaning.ca
   Design system: clean, Apple-inspired, Pacific-blue accents
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #0d1a26;
  --body: #4c5b68;
  --muted: #8b98a5;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --line: #e4eaf0;
  --blue: #0a7ac2;
  --blue-deep: #075e97;
  --teal: #39b5e0;
  --teal-soft: #7ec8e3;
  --navy: #0b1e2d;
  --dark: #060d13;
  --gold: #f5b301;
  --grad: linear-gradient(96deg, #0a7ac2 0%, #39b5e0 60%, #7ec8e3 100%);
  --radius: 26px;
  --shadow-soft: 0 24px 70px rgba(13, 26, 38, 0.10);
  --shadow-card: 0 10px 34px rgba(13, 26, 38, 0.07);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
::selection { background: rgba(57, 181, 224, 0.3); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient text accent ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(13, 26, 38, 0.06);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand span { font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--body);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 8px 18px; border-radius: 980px;
  font-size: 13px !important; font-weight: 600 !important;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(10, 122, 194, 0.25);
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(10, 122, 194, 0.32); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); margin: 4.5px 0; transition: transform 0.3s, opacity 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 56px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 17px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 10px; text-align: center; padding: 13px 18px; font-size: 15px !important; }
  .nav-toggle { display: block; }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 980px; font-weight: 600; cursor: pointer; border: 0;
  font-family: var(--font);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.25s, background 0.25s;
}
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 15px 30px; font-size: 16px;
  box-shadow: 0 10px 30px rgba(10, 122, 194, 0.30);
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px) scale(1.015); box-shadow: 0 16px 40px rgba(10, 122, 194, 0.38); }
.btn-primary:active { transform: scale(0.98); }
.btn-quiet {
  background: rgba(13, 26, 38, 0.05); color: var(--ink);
  padding: 15px 28px; font-size: 16px;
}
.btn-quiet:hover { background: rgba(13, 26, 38, 0.09); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--ink);
  padding: 15px 30px; font-size: 16px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}
.btn-white:hover { transform: translateY(-2px) scale(1.015); }
.link-more {
  color: var(--blue); font-weight: 500; font-size: 16px;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.25s;
}
.link-more:hover { gap: 8px; text-decoration: underline; }
.link-more::after { content: "›"; font-size: 19px; line-height: 1; }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.sec-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.sec-eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.sec-eyebrow::after { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.sec-title { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 20px; }
.sec-sub { font-size: 19px; color: var(--body); max-width: 620px; margin: 0 auto; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0; transform: scale(0.94) translateY(18px);
  transition: opacity 1s cubic-bezier(0.2, 0.65, 0.3, 1), transform 1s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding: 150px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 50% -80px, rgba(126, 200, 227, 0.22), transparent 70%),
    radial-gradient(900px 500px at 85% 30%, rgba(10, 122, 194, 0.07), transparent 70%),
    linear-gradient(180deg, #f6fbfe 0%, #ffffff 65%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10, 122, 194, 0.08);
  border: 1px solid rgba(10, 122, 194, 0.16);
  color: var(--blue-deep);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 18px; border-radius: 980px; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(57, 181, 224, 0.25); }
.hero h1 {
  font-size: clamp(46px, 7.4vw, 92px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin: 0 auto 26px; max-width: 900px;
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px); color: var(--body);
  max-width: 640px; margin: 0 auto 38px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 34px; padding: 10px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 980px;
  box-shadow: var(--shadow-card);
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* word-by-word hero animation */
.hero .w {
  display: inline-block;
  opacity: 0; transform: translateY(28px);
  animation: wordUp 0.85s cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero .w { animation: none; opacity: 1; transform: none; } }

/* ═══════════ TRUST STRIP ═══════════ */
.trust { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-row { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-row span { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.trust-row svg { flex-shrink: 0; }

/* ═══════════ BEFORE / AFTER SLIDER ═══════════ */
.ba {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  touch-action: none;
  background: var(--bg-soft);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-clip { position: absolute; inset: 0; overflow: hidden; }
.ba-chip {
  position: absolute; top: 16px; z-index: 5;
  padding: 7px 15px; border-radius: 980px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: rgba(6, 13, 19, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba-chip-l { left: 16px; }
.ba-chip-r { right: 16px; background: rgba(10, 122, 194, 0.82); }
.ba-bar {
  position: absolute; top: 0; bottom: 0; width: 3px; z-index: 4;
  background: #fff; box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
  pointer-events: none; transform: translateX(-50%);
}
.ba-knob {
  position: absolute; top: 50%; z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transform: translate(-50%, -50%);
  color: var(--blue-deep);
}
.ba:not(.touched) .ba-knob { animation: nudge 2.6s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% + 10px), -50%); }
}
@media (prefers-reduced-motion: reduce) { .ba .ba-knob { animation: none !important; } }
.ba:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.ba-hint { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 16px; letter-spacing: 0.02em; }

.ba-featured { aspect-ratio: 4 / 3; max-width: 940px; margin: 0 auto; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 34px auto 0; }
.ba-grid .ba { aspect-ratio: 3 / 4; }
@media (max-width: 680px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 480px; }
  .ba-featured { aspect-ratio: 3 / 4; }
}

/* ═══════════ FEATURE CARDS (bento) ═══════════ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.3, 1), box-shadow 0.35s;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.bento-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 122, 194, 0.10), rgba(126, 200, 227, 0.18));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--blue);
}
.bento-card h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -0.02em; }
.bento-card p { font-size: 15px; line-height: 1.65; }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ═══════════ DARK SECTION / VIDEO ═══════════ */
.dark-sec {
  background: radial-gradient(1000px 600px at 50% -10%, #10293c 0%, var(--dark) 62%);
  color: rgba(255, 255, 255, 0.62);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.dark-sec .sec-title, .dark-sec h2, .dark-sec h3 { color: #fff; }
.dark-sec .sec-eyebrow { color: var(--teal-soft); }
.dark-sec .sec-sub { color: rgba(255, 255, 255, 0.55); }
.video-shell {
  max-width: 420px; margin: 0 auto;
  border-radius: 34px; overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  background: #000;
}
.video-shell video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
  cursor: pointer; border: 0; width: 100%;
  transition: opacity 0.4s;
}
.video-play .ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.video-play:hover .ring { transform: scale(1.08); }
.video-play.hidden { opacity: 0; pointer-events: none; }
.video-caption { text-align: center; margin-top: 26px; font-size: 14.5px; color: rgba(255, 255, 255, 0.45); }

/* ═══════════ PRICING ═══════════ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px 34px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.3, 1), box-shadow 0.35s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  background: linear-gradient(170deg, #0e2a40 0%, var(--navy) 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.6);
}
.price-card.featured h3 { color: #fff; }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 980px; white-space: nowrap;
}
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-num { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); margin: 10px 0 2px; }
.price-card.featured .price-num { color: #fff; }
.price-num small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-from { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue); }
.price-card.featured .price-from { color: var(--teal-soft); }
.price-desc { font-size: 14.5px; line-height: 1.65; margin: 14px 0 22px; flex: 1; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-feats li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.price-feats .ck { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ═══════════ REVIEWS ═══════════ */
.rev-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rev-track { display: flex; gap: 22px; width: max-content; animation: marquee 55s linear infinite; padding: 8px 0 26px; }
.rev-marquee:hover .rev-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; overflow-x: auto; width: auto; }
}
.rev-card {
  width: 340px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 26px 26px 22px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.rev-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.rev-text { font-size: 14.5px; line-height: 1.65; color: var(--ink); }
.rev-who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.rev-ava {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.rev-name { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.rev-meta { font-size: 12px; color: var(--muted); }
.rev-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 30px; flex-wrap: wrap;
}
.rev-google span { font-size: 13.5px; color: var(--muted); }
.rev-google a { font-size: 13.5px; font-weight: 600; color: var(--blue); }
.rev-google a:hover { text-decoration: underline; }

/* Reviews page grid */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-grid .rev-card { width: auto; }
.rev-reply {
  background: var(--bg-soft); border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0; padding: 12px 14px;
  font-size: 13px; line-height: 1.55; color: var(--body);
}
.rev-reply strong { color: var(--ink); font-size: 12.5px; display: block; margin-bottom: 2px; }
@media (max-width: 960px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rev-grid { grid-template-columns: 1fr; } }

/* ═══════════ STATS ═══════════ */
.stats-row { display: flex; justify-content: center; gap: clamp(30px, 7vw, 90px); flex-wrap: wrap; text-align: center; }
.stat-num { font-size: clamp(40px, 5.4vw, 64px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 10px; font-weight: 500; }

/* ═══════════ QUOTE FORM ═══════════ */
.quote-sec {
  background: linear-gradient(170deg, #0e2a40 0%, var(--navy) 70%, #0a1926 100%);
  padding: 120px 0; color: rgba(255, 255, 255, 0.6);
  position: relative; overflow: hidden;
}
.quote-sec::before {
  content: ""; position: absolute; top: -260px; right: -180px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 181, 224, 0.14), transparent 68%);
}
.quote-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px;
  align-items: start; position: relative; z-index: 2;
}
.quote-info h2 { color: #fff; font-size: clamp(32px, 4vw, 46px); margin-bottom: 18px; }
.quote-info .sec-eyebrow { color: var(--teal-soft); }
.quote-info p { font-size: 16.5px; max-width: 420px; }
.quote-perks { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.quote-perk { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.quote-perk strong { color: #fff; font-weight: 600; }
.quote-perk .ck {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(57, 181, 224, 0.15); border: 1px solid rgba(57, 181, 224, 0.35);
  color: var(--teal-soft); font-size: 11px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.quote-call { margin-top: 34px; font-size: 15px; }
.quote-call a { color: var(--teal-soft); font-weight: 700; }
.quote-call a:hover { text-decoration: underline; }

.qform {
  background: #fff; border-radius: 28px; padding: 42px;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.4);
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field { margin-bottom: 14px; }
.qf-label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 7px;
}
.qf-input, .qf-select, .qf-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: 15px; color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.qf-input:focus, .qf-select:focus, .qf-textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 122, 194, 0.12);
}
.qf-textarea { resize: vertical; min-height: 84px; }
.qf-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.qf-type {
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 8px; text-align: center; cursor: pointer;
  background: var(--bg-soft); transition: all 0.2s;
}
.qf-type:hover { border-color: var(--teal); }
.qf-type.selected { border-color: var(--blue); background: rgba(10, 122, 194, 0.07); box-shadow: 0 0 0 4px rgba(10, 122, 194, 0.10); }
.qf-type input { display: none; }
.qf-type-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.qf-type-price { font-size: 11px; color: var(--blue); margin-top: 3px; font-weight: 600; }
.qf-submit {
  width: 100%; background: var(--blue); color: #fff;
  border: 0; padding: 16px; border-radius: 980px;
  font-family: var(--font); font-size: 16px; font-weight: 700; cursor: pointer;
  margin-top: 10px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 10px 30px rgba(10, 122, 194, 0.3);
}
.qf-submit:hover { background: var(--blue-deep); transform: translateY(-2px); }
.qf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.qf-success { display: none; text-align: center; padding: 40px 16px; }
.qf-success.show { display: block; }
.qf-success-ic {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(57, 181, 224, 0.14); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.qf-success h3 { font-size: 24px; margin-bottom: 10px; }
.qf-success p { font-size: 15px; }
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .qform { padding: 30px 22px; }
}
@media (max-width: 560px) { .qf-row { grid-template-columns: 1fr; } .qf-types { grid-template-columns: 1fr; } }

/* ═══════════ AREAS ═══════════ */
.areas-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip {
  background: #fff; border: 1px solid var(--line);
  padding: 11px 22px; border-radius: 980px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: all 0.25s; box-shadow: var(--shadow-card);
}
.area-chip:hover { border-color: var(--teal); color: var(--blue); transform: translateY(-2px); }

/* ═══════════ FAQ ═══════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 16.5px; font-weight: 600; color: var(--ink);
  padding: 22px 58px 22px 26px; position: relative; letter-spacing: -0.01em;
}
.faq-q::after {
  content: "+"; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--blue);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.2, 0.65, 0.3, 1); }
.faq-a-inner { padding: 0 26px 24px; font-size: 15px; line-height: 1.7; }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  text-align: center; padding: 120px 0;
  background:
    radial-gradient(800px 420px at 50% 110%, rgba(126, 200, 227, 0.25), transparent 70%),
    var(--bg-soft);
}
.cta-banner h2 { font-size: clamp(34px, 4.8vw, 58px); margin-bottom: 18px; }
.cta-banner p { font-size: 19px; max-width: 560px; margin: 0 auto 36px; }

/* ═══════════ PHOTO BLEND SECTIONS ═══════════ */
.blend-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.blend-img img { width: 100%; height: 100%; object-fit: cover; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.rev-order .split-copy { order: 2; }
.split-copy h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; }
.split-copy p { font-size: 16.5px; margin-bottom: 16px; }
.split-copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.split-copy ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.split-copy ul .ck { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.rev-order .split-copy { order: 0; }
}

/* ═══════════ PROCESS TIMELINE ═══════════ */
.steps { max-width: 860px; margin: 0 auto; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(180deg, var(--teal), rgba(126, 200, 227, 0.1));
}
.step { display: flex; gap: 28px; padding: 26px 0; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--teal);
  color: var(--blue-deep); font-weight: 700; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 6px 20px rgba(10, 122, 194, 0.15);
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15.5px; max-width: 620px; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--dark); color: rgba(255, 255, 255, 0.5); padding: 70px 0 36px; }
.foot-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 46px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot-brand img { width: 44px; height: 44px; object-fit: contain; }
.foot-brand span { font-weight: 700; font-size: 18px; color: #fff; }
.foot-desc { font-size: 14px; max-width: 300px; line-height: 1.65; }
.foot-col-title {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-soft); margin-bottom: 18px;
}
.foot-link { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-bottom: 11px; transition: color 0.2s; }
.foot-link:hover { color: #fff; }
.foot-bottom {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.3); flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; gap: 32px; } }

/* ═══════════ PAGE HERO (subpages) ═══════════ */
.page-hero { padding: 150px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero .hero-bg { z-index: -1; }
.page-hero h1 { font-size: clamp(40px, 6vw, 74px); letter-spacing: -0.03em; margin-bottom: 22px; max-width: 860px; margin-left: auto; margin-right: auto; }
.page-hero p { font-size: clamp(17px, 2vw, 20px); max-width: 620px; margin: 0 auto; }

/* Floating orca watermark */
.orca-float {
  position: absolute; right: -40px; bottom: -30px; width: 300px; opacity: 0.05;
  pointer-events: none; filter: grayscale(1) brightness(2.4);
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(-1deg); } }
@media (prefers-reduced-motion: reduce) { .orca-float { animation: none; } }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; color: var(--blue); padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ═══════════ VIDEO HERO + CLIP REEL ═══════════ */
.hero-media { padding: 176px 0 96px; }
.hero-bg-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--navy); }
.hero-bg-media img, .hero-bg-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 50% 42%, rgba(4, 10, 15, 0.30), transparent 75%),
    linear-gradient(180deg, rgba(5, 13, 20, 0.66) 0%, rgba(5, 13, 20, 0.46) 42%, rgba(5, 13, 20, 0.80) 100%);
}
.hero-media h1 { color: #fff; text-shadow: 0 2px 34px rgba(3, 9, 14, 0.55); }
.hero-media .grad-text {
  background: linear-gradient(96deg, #56c5f0 0%, #9adef8 55%, #d8f2fd 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-media .hero-sub { color: rgba(233, 243, 250, 0.92); text-shadow: 0 1px 22px rgba(3, 9, 14, 0.6); }
.hero-media .hero-eyebrow {
  background: rgba(9, 22, 33, 0.42); border-color: rgba(255, 255, 255, 0.22); color: #dcf1fc;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero-media .btn-quiet {
  background: rgba(255, 255, 255, 0.14); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.hero-media .btn-quiet:hover { background: rgba(255, 255, 255, 0.24); }
.hero-media .hero-rating { box-shadow: 0 14px 44px rgba(3, 9, 14, 0.5); }
.hero-proofline {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px; font-size: 13.5px; font-weight: 600;
  color: rgba(226, 240, 249, 0.85); letter-spacing: 0.01em;
  text-shadow: 0 1px 14px rgba(3, 9, 14, 0.6);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #35e08d; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(53, 224, 141, 0.22);
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.reel-head { text-align: center; margin: 72px auto 28px; max-width: 640px; padding: 0 24px; }
.reel-head h3 { color: #fff; font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; }
.reel-head p { color: rgba(255, 255, 255, 0.55); font-size: 15px; margin-top: 10px; }
.reel {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 6px max(24px, calc((100vw - 1180px) / 2)) 22px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel-card {
  position: relative; flex: 0 0 auto;
  width: clamp(198px, 22vw, 258px); aspect-ratio: 9 / 16;
  border-radius: 22px; overflow: hidden; scroll-snap-align: center;
  background: #0d2233;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; }
.reel-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 15px 13px; font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(4, 10, 15, 0.82));
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}
