/* ==========================================================================
   iSync365 — Design System
   Palette sampled from logo: Primary Blue #0270FD, Teal #02C2B3, Mint #90E0D8
   Signature motif: the "stacked cards" from the mark — one source distributed
   into progressively fainter, separated cards. Used throughout as the visual
   language for "one directory, many separated lists."
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --blue: #026FFE;
  --blue-dark: #0154C4;
  --teal: #09C7B7;
  --teal-dark: #078F83;
  --mint: #90E0D8;
  --mint-soft: #E3F7F4;

  /* Neutrals */
  --ink: #0F1B2D;
  --ink-soft: #4A5A72;
  --ink-faint: #7C8AA0;
  --bg: #FFFFFF;
  --bg-soft: #E4ECF4;
  --bg-card: #FBFDFE;
  --navy: #081A33;
  --navy-soft: #12294B;
  --line: #E4EBF2;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-w: 1160px;

  /* Shadows — layered to echo the stacked-card mark */
  --shadow-card:
    0 1px 2px rgba(15, 27, 45, 0.04),
    0 8px 24px rgba(15, 27, 45, 0.06);
  --shadow-stack:
    0 30px 0 -22px var(--mint-soft),
    0 44px 0 -34px rgba(144, 224, 216, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--mint-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #17DBC9);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(9, 199, 183, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(9, 199, 183, 0.6); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-on-dark {
  background: #fff;
  color: var(--navy);
}
.btn-on-dark:hover { transform: translateY(-2px); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 51px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .header-actions .btn-secondary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(2, 194, 179, 0.22), transparent 45%),
    radial-gradient(circle at 6% 95%, rgba(2, 112, 253, 0.16), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { margin-bottom: 20px; }
.hero .lede { font-size: 1.15rem; max-width: 46ch; }
.hero-cta-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* Signature: directory -> lists -> Outlook/mobile flow visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 100%; height: auto; max-width: 480px; }
.hero-visual text { font-family: var(--font-body); }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Value prop / feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}
.card .icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint-soft);
  color: var(--teal-dark);
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 800;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* ---------- How it works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 0; }
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: var(--teal);
  width: 30px; height: 30px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step:nth-child(2) .num { background: #2DADDA; }
.step:nth-child(3) .num { background: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(2, 194, 179, 0.35), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(2, 112, 253, 0.45), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand img { height: 42px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 32ch; font-size: 0.92rem; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Tables (Compare page) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
table.compare th, table.compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
table.compare thead th {
  font-family: var(--font-display);
  background: var(--bg-soft);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
table.compare thead th:first-child { border-top-left-radius: var(--radius-md); }
table.compare thead th:last-child { border-top-right-radius: var(--radius-md); }
table.compare td:first-child { font-weight: 600; color: var(--ink); }
table.compare th.us, table.compare td.us { background: var(--mint-soft); font-weight: 600; }
table.compare tr:last-child td { border-bottom: none; }

/* ---------- Landscape overview list (Compare) ---------- */
.landscape { display: grid; gap: 14px; margin-bottom: 44px; }
.landscape .row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  align-items: baseline;
}
.landscape .row.us { border-color: var(--teal); background: var(--mint-soft); }
.landscape .row strong { font-family: var(--font-display); }
@media (max-width: 700px) {
  .landscape .row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Callout box ---------- */
.callout {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin: 8px 0 44px;
}
.callout h3 { margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Pointer pill (inline callout to another page) ---------- */
.pointer-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
  margin: 0 auto;
  padding: 14px 26px;
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 0.96rem;
  color: var(--ink);
}
.pointer-pill svg { flex-shrink: 0; color: var(--teal-dark); }
.pointer-pill a { font-weight: 700; color: var(--teal-dark); }
.pointer-pill a:hover { color: var(--teal); }
@media (max-width: 560px) {
  .pointer-pill { max-width: 92%; text-align: center; }
}

/* ---------- Pricing ---------- */
.price-card {
  background: linear-gradient(160deg, #fff, var(--mint-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  max-width: 100%;
}
@media (max-width: 760px) {
  .price-card { grid-template-columns: 1fr; text-align: center; }
}
.price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--ink);
}
.price-num span { font-size: 1.1rem; font-weight: 600; color: var(--ink-soft); }
.price-list { list-style: none; padding: 0; margin: 20px 0 0; text-align: left; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.price-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.faq-item-video h3 { min-height: 40px; }
.faq-item p { margin: 0; }
.faq-columns-explicit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
@media (max-width: 760px) {
  .faq-columns-explicit { grid-template-columns: 1fr; }
  .faq-col { display: contents; }
  .faq-order-1  { order: 1; }
  .faq-order-2  { order: 2; }
  .faq-order-3  { order: 3; }
  .faq-order-4  { order: 4; }
  .faq-order-5  { order: 5; }
  .faq-order-6  { order: 6; }
  .faq-order-7  { order: 7; }
  .faq-order-8  { order: 8; }
  .faq-order-9  { order: 9; }
  .faq-order-10 { order: 10; }
  .faq-order-11 { order: 11; }
  .faq-order-12 { order: 12; }
  .faq-order-13 { order: 13; }
  .faq-order-14 { order: 14; }
  .faq-order-15 { order: 15; }
  .faq-order-16 { order: 16; }
  .faq-order-17 { order: 17; }
  .faq-order-18 { order: 18; }
  .faq-order-19 { order: 19; }
}

/* ---------- Form (Contact) ---------- */
/* ---------- Product screenshots ---------- */
.product-shot {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow:
    0 2px 4px rgba(15, 27, 45, 0.06),
    0 24px 56px -16px rgba(2, 112, 253, 0.2),
    0 10px 24px -8px rgba(15, 27, 45, 0.12);
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.product-shot.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-shot img { display: block; width: 100%; height: auto; }
.product-shot::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.35) 52%,
    transparent 70%
  );
  transform: translateX(-160%) skewX(-12deg);
  pointer-events: none;
}
.product-shot.is-visible::after {
  animation: shot-shine 1.3s ease-out 0.5s 1 forwards;
}
@keyframes shot-shine {
  to { transform: translateX(220%) skewX(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .product-shot { opacity: 1; transform: none; transition: none; }
  .product-shot.is-visible::after { animation: none; }
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow:
    0 2px 4px rgba(15, 27, 45, 0.06),
    0 20px 48px -12px rgba(2, 112, 253, 0.18),
    0 8px 20px -6px rgba(15, 27, 45, 0.1);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
}
.field .optional { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #C6D0DD;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 18px; text-align: center; }
#form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#form-success .icon-badge {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(2, 194, 179, 0.22), transparent 45%),
    radial-gradient(circle at 6% 95%, rgba(2, 112, 253, 0.16), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero p.lede { font-size: 1.08rem; max-width: 60ch; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-icon { display: none; }
}
.page-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-icon svg { width: 100%; height: auto; max-width: 220px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.text-soft { color: var(--ink-soft); }
.small { font-size: 0.88rem; }

/* ---------- FAQ video component (privacy-enhanced, click-to-load) ---------- */
.faq-item-video .faq-video-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  margin: 10px 0 14px;
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(15, 27, 45, 0.08),
    0 14px 28px -10px rgba(2, 112, 253, 0.22),
    0 6px 14px -4px rgba(15, 27, 45, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.faq-item-video .faq-video-wrap:hover {
  box-shadow:
    0 4px 8px rgba(15, 27, 45, 0.1),
    0 18px 36px -10px rgba(2, 112, 253, 0.28),
    0 8px 18px -4px rgba(15, 27, 45, 0.15);
  transform: translateY(-2px);
}
.faq-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.faq-video-thumb {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-video-thumb.is-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}
.faq-video-placeholder-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 999px;
}
.faq-video-play {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.15s ease;
}
.faq-video-wrap:hover .faq-video-play { transform: scale(1.08); }
.faq-video-play svg { margin-left: 3px; }

.faq-toggle-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-dark);
  cursor: pointer;
  margin-bottom: 8px;
}
.faq-toggle-text .chev { transition: transform 0.2s ease; }
.faq-toggle-text[aria-expanded="true"] .chev { transform: rotate(180deg); }

.faq-text-collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-text-collapsed.is-open { max-height: 600px; }
.faq-text-collapsed p { padding-top: 4px; }

/* ---------- Mobile-only video collapse ---------- */
.faq-video-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-dark);
  cursor: pointer;
  margin: 10px 0 4px;
}
.faq-video-toggle .chev { transition: transform 0.2s ease; }
.faq-video-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
@media (max-width: 760px) {
  .faq-video-toggle { display: inline-flex; }
  .faq-video-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-video-collapsed.is-open { max-height: 400px; }
  .faq-video-collapsed .faq-video-wrap { margin-top: 8px; }
}

/* ---------- Pricing page video (troubleshooting build, distinct from FAQ video component) ---------- */
.pricing-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(15, 27, 45, 0.08),
    0 14px 28px -10px rgba(2, 112, 253, 0.22),
    0 6px 14px -4px rgba(15, 27, 45, 0.12);
}
.pricing-video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pricing-video-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.pricing-video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
