/* =====================================================================
   LaunchPad Marketing - Home Page v6
   Page shell + components + responsive. Tokens live in colors_and_type.css.
   Recreated as static HTML/CSS from the v6 design prototype.
   ===================================================================== */

/* Continuous dark canvas - fixed behind everything so all sections share one
   seamless background + ambient brand glows. Sections render transparent. */

/* ---------- Keyframes ---------- */

@keyframes ripple { 0% { transform: scale(0.3); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }
@keyframes pinDrop {
  0%   { transform: rotateZ(46deg) rotateX(-56deg) translateY(-160px); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: rotateZ(46deg) rotateX(-56deg) translateY(-26px); opacity: 1; }
}
@keyframes marqL { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Layout helpers ---------- */

section[id], .v6-deepdive { scroll-margin-top: 80px; }

/* Starfield decorative layer */

/* ---------- Eyebrow ---------- */

/* ---------- Buttons ---------- */

.btn-outline { background: rgba(255,255,255,0.02); transition: background 150ms ease, color 150ms ease; }
.btn-outline.cyan  { color: #40def3; border-color: rgba(64,222,243,0.7); }
.btn-outline.cyan:hover  { background: rgba(64,222,243,0.1); }
.btn-outline.green { color: #6ced40; border-color: rgba(108,237,64,0.7); }
.btn-outline.green:hover { background: rgba(108,237,64,0.1); }
.btn-outline.white { color: #ffffff; border-color: rgba(255,255,255,0.7); }
.btn-outline.white:hover { background: rgba(255,255,255,0.1); }

/* Get Started / deep-dive outline CTA that fills on hover */
.btn-fill-hover { background: transparent; }
.btn-fill-hover.cyan  { color: #40def3; border-color: #40def3; }
.btn-fill-hover.cyan:hover  { background: #40def3; color: #06121c; }
.btn-fill-hover.green { color: #6ced40; border-color: #6ced40; }
.btn-fill-hover.green:hover { background: #6ced40; color: #06121c; }

/* ---------- Logo ---------- */

/* ---------- Site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 20px 28px;
  /* Full-bleed: span the whole viewport even if a host container (Elementor's
     boxed content width) constrains the embed to a narrower column. */
  width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  background: rgba(5,13,28,0.35);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 200ms ease;
}

/* ---------- Section seam ---------- */

/* =====================================================================
   HERO - Iso Service Map
   ===================================================================== */
.hero {
  position: relative; overflow: hidden; min-height: 860px;
  background: radial-gradient(ellipse at 70% 30%, #0e2740 0%, #081320 55%, #050b14 100%);
  display: flex; align-items: center; padding: 110px 48px; perspective: 1600px;
}
.v6-hero-iso-content { position: relative; max-width: 1240px; margin: 0 auto; width: 100%; z-index: 5; pointer-events: none; }
.v6-hero-iso-content .hero-copy { max-width: 600px; pointer-events: auto; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(58px, 7.5vw, 116px); line-height: 0.94; letter-spacing: -0.02em;
  margin: 24px 0 0; color: #fff;
}
.hero h1 .grad { background: linear-gradient(100deg, #40def3, #6ced40); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-family: var(--font-body); font-size: 20px; line-height: 1.6; color: #cfe0f2; margin-top: 26px; max-width: 460px; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* trust line */
.trust-line { display: flex; align-items: center; gap: 20px; margin-top: 34px; color: #8aa3c2; font-size: 13px; flex-wrap: wrap; }
.trust-line .stars { display: inline-flex; align-items: center; gap: 9px; }
.trust-line .stars .glyphs { color: #ffc83d; letter-spacing: 2px; font-size: 15px; }
.trust-line .stars .score { font-family: var(--font-display); font-weight: 700; color: #fff; }
.trust-line .stars a { display: inline-flex; align-items: center; margin-left: 2px; line-height: 0; opacity: 0.95; transition: opacity .15s, transform .15s; }
.trust-line .stars a:hover { opacity: 1; transform: scale(1.12); }

/* iso map */
.v6-hero-iso-map {
  position: absolute; top: 50%; right: -4%; width: 760px; height: 760px; margin-top: -300px;
  transform-style: preserve-3d; perspective: 1600px; z-index: 4;
}
.iso-plane {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(-46deg); transition: transform 0.1s linear;
  background-image:
    linear-gradient(rgba(64,222,243,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64,222,243,0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  box-shadow: inset 0 0 120px rgba(64,222,243,0.12);
  border-radius: 8px;
}
.iso-road-h { position: absolute; top: 38%; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, rgba(108,237,64,0.5), transparent); }
.iso-road-v { position: absolute; left: 46%; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, transparent, rgba(64,222,243,0.5), transparent); }
.iso-pin { position: absolute; transform-style: preserve-3d; z-index: 10; pointer-events: none; }
.iso-pin .ripple { position: absolute; left: -28px; top: -28px; width: 56px; height: 56px; border-radius: 50%; border: 2px solid; animation: ripple 2.6s ease-out infinite; pointer-events: none; }
.iso-pin .stand { transform-style: preserve-3d; animation: pinDrop 0.6s ease-out both; }
.iso-pin .head { display: block; width: 26px; height: 26px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.iso-pin .head::after { content: ""; position: absolute; left: 50%; top: 9px; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: #06121c; }
.iso-pin.active { z-index: 30; }
.iso-pin.active .head { transform: rotate(-45deg) scale(1.25); }

/* hit overlay - sits ABOVE hero text + map so every pin is hoverable */
.iso-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 30; }
.iso-hit { position: absolute; left: 0; top: 0; }
.iso-hit .target {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; border: none; background: transparent;
  cursor: pointer; pointer-events: auto; padding: 0; z-index: 2;
}
.iso-hit .bubble {
  position: absolute; left: 0; top: 0;
  transform: translate(-50%, calc(-100% - 14px)) translateY(6px);
  width: max-content; max-width: 230px; pointer-events: none;
  opacity: 0; transition: transform 0.18s ease, opacity 0.18s ease;
  background: rgba(8,17,28,0.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid; border-radius: 12px; padding: 11px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55); text-align: left;
}
.iso-hit.active .bubble { opacity: 1; transform: translate(-50%, calc(-100% - 14px)) translateY(0); }
.iso-hit .bubble .label { display: block; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; letter-spacing: 0.01em; }
.iso-hit .bubble .tag { display: block; font-family: var(--font-body); font-size: 12px; color: #9fb4cc; margin-top: 3px; }
.iso-hit .bubble .arrow { position: absolute; left: 50%; top: 100%; width: 12px; height: 12px; margin-left: -6px; margin-top: -6px; background: rgba(8,17,28,0.96); border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg); }

/* hint */
.hero-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(138,163,194,0.7);
  display: inline-flex; align-items: center; gap: 10px; z-index: 20; white-space: nowrap; pointer-events: none;
}
.hero-hint::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #40def3; box-shadow: 0 0 8px #40def3; }
.hero-hint .touch { display: none; }

/* =====================================================================
   PARTNER SPOTLIGHT
   ===================================================================== */
.partners { position: relative; overflow: hidden; background: transparent; padding: 44px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.partners .kicker { text-align: center; margin-bottom: 26px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #5b7493; }
.marquee-mask { position: relative; overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-block; animation: marqL 57s linear infinite; }
.partners .partner { display: inline-flex; align-items: center; gap: 16px; margin: 0 30px; }
.partners .partner .name { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: 0.02em; color: #8aa3c2; }
.partners .partner .dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg,#40def3,#6ced40); box-shadow: 0 0 8px #40def3; }

/* =====================================================================
   SECTION HEADINGS
   ===================================================================== */
.sec-head { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.sec-head .eyebrow-wrap { display: flex; justify-content: center; }
.sec-head h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin: 18px 0 16px; }
.sec-head p { font-family: var(--font-body); line-height: 1.65; color: #d6e2f0; margin: 0; }
.grad-text { background: linear-gradient(100deg,#40def3,#6ced40); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =====================================================================
   SERVICES OVERVIEW - bento (production default)
   ===================================================================== */
.services-head h2 { font-size: clamp(30px,4.2vw,54px); }
.services-head p { font-size: 18px; }
.v6-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.v6-bento-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, rgba(15,33,56,0.85), rgba(10,23,41,0.7));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 34px 34px 30px;
  min-height: 200px; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; text-decoration: none;
}
.v6-bento-item:nth-child(1) { grid-column: span 7; }
.v6-bento-item:nth-child(2) { grid-column: span 5; }
.v6-bento-item:nth-child(3) { grid-column: span 5; }
.v6-bento-item:nth-child(4) { grid-column: span 7; }
.v6-bento-item:hover { transform: translateY(-5px); }
/* hover outline glow in each service's brand color (left = cyan, right = green) */
.v6-bento-item:nth-child(1):hover,
.v6-bento-item:nth-child(3):hover { border-color: rgba(64,222,243,0.55); box-shadow: 0 0 28px rgba(64,222,243,0.28), 0 18px 40px rgba(0,0,0,0.35); }
.v6-bento-item:nth-child(2):hover,
.v6-bento-item:nth-child(4):hover { border-color: rgba(108,237,64,0.55); box-shadow: 0 0 28px rgba(108,237,64,0.28), 0 18px 40px rgba(0,0,0,0.35); }
.v6-bento-item .corner-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; }
.v6-bento-item .row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.bento-icon { width: 56px; height: 56px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.v6-bento-item h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff; margin: 0; }
.v6-bento-item .tagline { font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-top: 3px; }
.v6-bento-item .body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #d6e2f0; margin: 0; max-width: 520px; }
.v6-bento-item .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.v6-bento-item .chip { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.04em; color: #8aa3c2; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; padding: 5px 12px; }

/* keep cards/rows grid classnames for responsive parity */
.v6-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.v6-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process-head h2 { font-size: clamp(32px,4vw,52px); line-height: 1.1; letter-spacing: -0.015em; margin: 18px 0 14px; }
.process-head p { font-size: 18px; }
.process-head { max-width: 760px; margin: 0 auto 64px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.v6-process-line { position: absolute; top: 72px; left: 14%; right: 14%; height: 1px; background: linear-gradient(90deg, transparent, rgba(64,222,243,0.4) 30%, rgba(108,237,64,0.4) 70%, transparent); }
.process-card { position: relative; background: rgba(15,33,56,0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 32px 26px; }
.process-card .num { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,#0a1729,#14304f); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 40px; margin: 0 auto 22px; position: relative; z-index: 2; }
.process-card .step { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; }
.process-card h3 { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; margin: 6px 0 14px; letter-spacing: -0.01em; }
.process-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #d6e2f0; margin: 0; text-align: center; }

/* =====================================================================
   SERVICE DEEP-DIVES
   ===================================================================== */
.deepdive-head { max-width: 760px; margin: 0 auto 56px; }
.deepdive-head h2 { font-size: clamp(28px,3.6vw,46px); line-height: 1.08; letter-spacing: -0.015em; margin: 18px 0 0; }
.deepdive-list { display: flex; flex-direction: column; gap: 24px; }
.v6-deepdive { scroll-margin-top: 80px; background: rgba(255,255,255,0.035); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 26px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.3); overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; }
.v6-dd-text { padding: clamp(28px,3.4vw,52px); }
.v6-deepdive.flip .v6-dd-text { order: 2; }
.v6-deepdive.flip .v6-dd-media { order: 1; }
.v6-dd-text .kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.v6-dd-text h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,2.6vw,34px); line-height: 1.12; letter-spacing: -0.015em; color: #fff; margin: 0 0 18px; }
.v6-dd-text p { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: #d6e2f0; margin: 0 0 14px; }
.v6-dd-text .btn { margin-top: 6px; }
.v6-dd-media { position: relative; overflow: hidden; background: linear-gradient(150deg, rgba(20,48,79,0.6), rgba(10,23,41,0.4)); display: flex; align-items: center; justify-content: center; min-height: 300px; }
.v6-dd-media .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(6px); }
.v6-dd-media .panel { position: relative; text-align: center; padding: 24px; }
.v6-dd-media .circle { width: 118px; height: 118px; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #11243c, #0a1729); display: flex; align-items: center; justify-content: center; }
.v6-dd-media .circle img { width: 70px; height: 70px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45)); }
.v6-dd-media .stat0 { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: #fff; letter-spacing: -0.01em; }
.v6-dd-media .stat1 { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 6px; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.v6-about { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 64px; align-items: center; }
.about-photo-wrap { position: relative; justify-self: center; }
.v6-about-photo { width: 360px; height: 360px; border-radius: 50%; background: linear-gradient(135deg,#14304f,#0a1729); border: 2px solid rgba(64,222,243,0.45); box-shadow: 0 0 70px rgba(64,222,243,0.3), inset 0 0 40px rgba(64,222,243,0.08); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 84px; color: #40def3; }
.about-badge { position: absolute; bottom: 18px; right: -6px; background: linear-gradient(135deg,#40def3,#6ced40); padding: 10px 18px; border-radius: 999px; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #06121c; box-shadow: 0 0 20px rgba(64,222,243,0.5); }
.about-note { margin-top: 16px; font-size: 11px; color: #9aa9bc; font-style: italic; text-align: center; font-family: var(--font-body); }
.about-body h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,3.8vw,50px); line-height: 1.05; letter-spacing: -0.015em; color: #fff; margin: 18px 0 22px; }
.about-body blockquote { margin: 0; padding-left: 22px; border-left: 3px solid #40def3; font-family: var(--font-body); font-style: italic; font-size: clamp(19px,2.1vw,26px); line-height: 1.5; color: #fff; max-width: 640px; }
.about-body .para { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: #d6e2f0; margin: 24px 0 0; max-width: 620px; }
.about-body .cta-row { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.test-head { max-width: 780px; margin: 0 auto 56px; }
.test-head h2 { font-size: clamp(28px,3.8vw,48px); line-height: 1.06; letter-spacing: -0.015em; margin: 18px 0 16px; }
.test-head p { font-size: 17px; }
.test-card { background: rgba(255,255,255,0.035); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 22px; padding: 30px; border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 18px; }
.test-card .stars { color: #ffc83d; letter-spacing: 3px; font-size: 16px; }
.test-card .quote { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: #eaf1f8; margin: 0; flex: 1; }
.test-card .who { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 15px; color: #06121c; }
.test-card .who .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.test-card .who .biz { font-family: var(--font-body); font-size: 13px; color: #8aa3c2; }

/* more reviews CTA */
.more-reviews { text-align: center; margin-top: clamp(40px, 5vw, 64px); }
.more-reviews .star-run { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; color: #ffc83d; font-size: 18px; }
.more-reviews .star-run span { animation: twinkle 1.4s ease-in-out infinite alternate; filter: drop-shadow(0 0 6px rgba(255,200,61,0.7)); }
.more-reviews h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.015em; color: #fff; margin: 0 0 10px; }
.more-reviews p { font-family: var(--font-body); font-size: clamp(15px, 1.8vw, 17px); line-height: 1.6; color: #9fb4cc; margin: 0 auto 26px; max-width: 540px; }
.more-reviews a { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; padding: 15px 26px; border-radius: 999px; cursor: pointer; background: #fff; color: #0a1729; border: 1px solid rgba(64,222,243,0.4); transition: box-shadow 220ms ease, transform 220ms ease; }
.more-reviews a:hover { box-shadow: 0 0 28px rgba(64,222,243,0.55); transform: translateY(-2px); }

/* =====================================================================
   SERVICES MARQUEE STRIP
   ===================================================================== */
.svc-marquee { background: linear-gradient(90deg,#40def3,#6ced40); overflow: hidden; white-space: nowrap; padding: 16px 0; }
.svc-marquee .track { display: inline-block; animation: marqL 26s linear infinite; }
.svc-marquee .track span { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; color: #06121c; }

/* =====================================================================
   FAQ
   ===================================================================== */
.v6-faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-start; }
.faq-intro h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.4vw,44px); line-height: 1.05; color: #fff; margin: 18px 0 16px; letter-spacing: -0.015em; }
.faq-intro p { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: #d6e2f0; margin: 0 0 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.035); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); transition: border-color 200ms ease, background 200ms ease; }
.faq-item.open { background: rgba(64,222,243,0.06); border-color: rgba(64,222,243,0.4); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.08); color: #8aa3c2; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; transition: all 200ms ease; }
.faq-item.open .faq-toggle { background: linear-gradient(135deg,#40def3,#6ced40); color: #06121c; }
.faq-a { padding: 0 24px 22px; font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: #d6e2f0; display: none; }
.faq-item.open .faq-a { display: block; }

/* =====================================================================
   FOOTER
   ===================================================================== */

/* =====================================================================
   BOOKING MODAL
   ===================================================================== */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(5,13,28,0.75); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal { background: linear-gradient(165deg, #0e2236, #0a1729); border-radius: 24px; padding: 40px; max-width: 500px; width: 100%; border: 1px solid rgba(64,222,243,0.25); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 50px rgba(64,222,243,0.15); }
.modal .eb { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #40def3; }
.modal h3 { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1.1; color: #fff; margin: 12px 0 10px; letter-spacing: -0.01em; }
.modal p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #d6e2f0; margin: 0 0 24px; }
.modal .pick { width: 100%; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 15px; border-radius: 999px; border: none; cursor: pointer; background: linear-gradient(135deg, #40def3, #6ced40); color: #0a1729; box-shadow: 0 0 24px rgba(64,222,243,0.4); }
.modal .cancel { width: 100%; margin-top: 10px; font-family: var(--font-body); font-size: 13px; padding: 10px; border: none; background: transparent; color: #6c7d92; cursor: pointer; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .section { padding: 80px 24px; }
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header, .site-header.scrolled { padding-left: 24px; padding-right: 24px; }

  .v6-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .v6-bento-item { grid-column: span 12 !important; }

  .v6-deepdive { grid-template-columns: 1fr; }
  .v6-deepdive .v6-dd-text { order: 2 !important; }
  .v6-deepdive .v6-dd-media { order: 1 !important; min-height: 230px; }

  .v6-about { grid-template-columns: 1fr; gap: 36px; }
  .v6-faq { grid-template-columns: 1fr; gap: 32px; }

  .v6-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .v6-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* HERO: stack content over a shrunken map */
  .hero { flex-direction: column; align-items: stretch; min-height: auto; padding: 116px 24px 56px; }
  .v6-hero-iso-content { order: 1; }
  .v6-hero-iso-content .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(44px, 9vw, 72px); }
  .v6-hero-iso-map { position: relative; order: 2; top: auto; right: auto; width: 340px; height: 340px; margin: 52px auto 0; overflow: visible; }
  .hero-hint { display: none; }
}

@media (max-width: 600px) {
  .v6-grid-4 { grid-template-columns: 1fr; }
  .v6-grid-3 { grid-template-columns: 1fr; }
  .v6-process-line { display: none; }

  .hero { padding: 104px 18px 48px; }
  .v6-hero-iso-map { width: 300px; height: 300px; margin-top: 44px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .section { padding: 72px 18px; }

  /* HERO CTAs: keep both buttons inline on one row, center the rating beneath */
  .hero .cta-row { flex-wrap: nowrap; gap: 10px; }
  .hero .cta-row .btn.lg { flex: 1 1 0; min-width: 0; padding: 14px 10px; font-size: 11px; letter-spacing: 0.03em; }
  .hero .trust-line { justify-content: center; }

  /* PROCESS: the 3 step cards overflow a 3-col grid on phones, so make them a
     free-scrolling horizontal swipe row (edge-to-edge, hidden scrollbar). */
  .process-grid {
    display: flex; gap: 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: -18px; padding: 4px 18px 10px;
  }
  .process-grid::-webkit-scrollbar { display: none; }
  .process-card { flex: 0 0 80%; }
}

/* =====================================================================
   HOST-THEME GUARD
   When this design is embedded in WordPress/Elementor, the host theme can
   restyle bare <button>/<input> elements on :hover/:focus/:active (commonly
   an accent-colored fill). These rules keep the design's interactive parts
   looking as intended no matter what the surrounding theme injects.
   ===================================================================== */
.faq-q,
.faq-q:hover,
.faq-q:focus,
.faq-q:active,
.faq-q:focus-visible {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.faq-item.open .faq-q { background: transparent !important; }
/* Long questions must wrap (themes often force button text to nowrap, which
   pushed the +/- toggle off-screen on the longest items). */
.faq-q { white-space: normal !important; }
.faq-q > span:first-child { min-width: 0; white-space: normal !important; }
/* Keep the +/- glyph upright + cleanly centered regardless of theme font
   styling (italic/transform were slanting the minus when expanded). */
.faq-toggle {
  font-style: normal !important;
  font-family: var(--font-body) !important;
  transform: none !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-indent: 0 !important;
}
/* Don't let theme focus/hover repaint the design's own buttons + inputs */

.iso-hit .target:focus { outline: none !important; }

/* Host-theme guard: lock the design's button colors so the host theme (Elementor)
   can't recolor them on rest/hover/focus/active. */
.btn-primary, .btn-fill-hover, .btn-outline { -webkit-appearance: none !important; appearance: none !important; }
.btn-primary { background: linear-gradient(135deg, #40def3, #6ced40) !important; color: #0a1729 !important; }

.btn-fill-hover { background: transparent !important; }
.btn-fill-hover.cyan  { color: #40def3 !important; border-color: #40def3 !important; }
.btn-fill-hover.cyan:hover  { background: #40def3 !important; color: #06121c !important; }
.btn-fill-hover.green { color: #6ced40 !important; border-color: #6ced40 !important; }
.btn-fill-hover.green:hover { background: #6ced40 !important; color: #06121c !important; }
.btn-outline.cyan  { color: #40def3 !important; border-color: rgba(64,222,243,0.7) !important; }
.btn-outline.green { color: #6ced40 !important; border-color: rgba(108,237,64,0.7) !important; }
.btn-outline.white { color: #ffffff !important; border-color: rgba(255,255,255,0.7) !important; }

/* Footer link animated gradient underline (Home v6 update) */

/* Desktop nav-link animated underline (Home v6 update) */
