/* ========================================================================
   מימון כל — Centered Brand LP
   Brand colors: navy #202E61 + cyan #26B7DE on clean white/cream
   Font: fbtrampolina (matches mimoon-call.co.il main site)
   ======================================================================== */

@font-face {
  font-family: 'fbtrampolina';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/trampolina-light.woff') format('woff');
}
@font-face {
  font-family: 'fbtrampolina';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/trampolina-regular.woff') format('woff');
}
@font-face {
  font-family: 'fbtrampolina';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/trampolina-bold.woff') format('woff');
}
@font-face {
  font-family: 'fbtrampolina';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/trampolina-black.woff') format('woff');
}

:root {
  --navy:        #202E61;
  --navy-dark:   #161F44;
  --navy-2:      #2A5182;
  --cyan:        #26B7DE;
  --cyan-light:  #5DCBE8;
  --cyan-dark:   #1E94B5;
  --cyan-soft:   rgba(38, 183, 222, 0.10);

  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-soft-2:   #ECF1F8;
  --surface:     #FFFFFF;

  --line:        rgba(32, 46, 97, 0.10);
  --line-strong: rgba(32, 46, 97, 0.18);

  --ink:         #1A1F2E;
  --ink-soft:    #4A5468;
  --ink-mute:    #8590A6;
  --on-navy:     #FFFFFF;
  --on-navy-soft: rgba(255, 255, 255, 0.82);

  --success:     #16A085;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow:      0 4px 16px rgba(32, 46, 97, 0.08);
  --shadow-md:   0 10px 30px rgba(32, 46, 97, 0.12);
  --shadow-lg:   0 18px 50px rgba(32, 46, 97, 0.18);
  --shadow-cta:  0 10px 28px rgba(38, 183, 222, 0.38);

  --font:        'fbtrampolina', 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --easing:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--easing); }
a:hover { color: var(--cyan-dark); }

::selection { background: var(--cyan); color: #fff; }

/* ====================== Header — centered logo only (NOT sticky) ====================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand img {
  height: 110px;
  width: auto;
  display: block;
  transition: transform .2s var(--easing);
}
.brand:hover img { transform: scale(1.03); }

/* ====================== Hero — fully centered ====================== */
.hero {
  background: linear-gradient(180deg, #F5F8FC 0%, #FFFFFF 65%);
  padding: 56px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(38, 183, 222, 0.10), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(32, 46, 97, 0.06), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 160, 133, 0.18);
  animation: pulse 2.2s var(--easing) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 160, 133, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(22, 160, 133, 0); }
}

.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 auto 22px;
  letter-spacing: -0.02em;
  max-width: 720px;
}
.hero h1 .accent { color: var(--cyan); }

.hero p.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-soft);
  margin: 0 auto 36px;
  line-height: 1.6;
  max-width: 620px;
}
.hero p.lead strong { color: var(--navy); font-weight: 700; }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 720px;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero-bullets .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-bullets .check svg { width: 11px; height: 11px; }

/* ====================== Hero Form — centered, below text ====================== */
.hero-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto;
  text-align: right;
  position: relative;
}
.hero-form::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.hero-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}
.hero-form .sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 22px;
  text-align: center;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(38, 183, 222, 0.20);
}
.field input::placeholder { color: var(--ink-mute); }
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23202E61' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 18px;
}
.consent-row input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
  flex-shrink: 0;
}
.consent-row label {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 400;
}
.consent-row a { color: var(--navy); text-decoration: underline; }

.btn-cta {
  width: 100%;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-cta);
  transition: transform .15s var(--easing), box-shadow .2s var(--easing);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(38, 183, 222, 0.50);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-cta svg { width: 18px; height: 18px; }

.form-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin: 12px 0 0;
}
.field-error {
  color: #C0392B;
  font-size: 12px;
  margin-top: 4px;
}

/* ====================== Guarantee badge (inside form) ====================== */
.guarantee {
  background: linear-gradient(135deg, rgba(38, 183, 222, 0.08) 0%, rgba(38, 183, 222, 0.14) 100%);
  border: 1px solid rgba(38, 183, 222, 0.30);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 18px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.guarantee-item .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(38, 183, 222, 0.40);
}
.guarantee-item .check svg { width: 12px; height: 12px; }

/* ====================== Featured Video (16:9 inline) ====================== */
.featured-video {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  padding: 64px 20px 72px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.featured-video-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.featured-video-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.featured-video-sub {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 32px;
}
.featured-video-wrap {
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 177.78%; /* 9:16 vertical (source is portrait) */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  border: 1px solid var(--line);
}
.featured-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ====================== SHORTS — Centered 6-tile grid + Modal ====================== */
.shorts-section {
  background: var(--bg);
  padding: 64px 20px 72px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.shorts-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.shorts-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.shorts-sub {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 36px;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.short-tile {
  position: relative;
  padding: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  border: 2px solid transparent;
  display: block;
  width: 100%;
  transition: transform .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
  box-shadow: var(--shadow);
}
.short-tile:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
}
.short-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--easing);
}
.short-tile:hover img { transform: scale(1.06); }
.short-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  transition: background .25s var(--easing);
}
.short-tile:hover .short-tile-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.65) 100%);
}
.short-tile-play {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.40);
  transition: transform .25s var(--easing), background .25s var(--easing);
}
.short-tile:hover .short-tile-play {
  background: var(--cyan);
  color: #fff;
  transform: scale(1.10);
}
.short-tile-play svg { width: 22px; height: 22px; margin-right: -2px; }

/* ====================== Video Modal ====================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn .25s var(--easing);
}
.video-modal[hidden] { display: none; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  animation: modalScaleIn .35s var(--easing);
}
@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.video-modal-frame {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(38, 183, 222, 0.30);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  left: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--easing), transform .2s var(--easing);
}
.video-modal-close:hover {
  background: var(--cyan);
  transform: scale(1.08);
}

/* ====================== Radio pills (form) ====================== */
.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radio-pill {
  position: relative;
  cursor: pointer;
}
.radio-pill input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.radio-pill span {
  display: block;
  text-align: center;
  padding: 13px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  transition: all .2s var(--easing);
}
.radio-pill input[type="radio"]:checked + span {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 4px 12px rgba(38, 183, 222, 0.30);
}
.radio-pill:hover input[type="radio"]:not(:checked) + span {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

/* ====================== Sections ====================== */
section { padding: 72px 20px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.section-head h2 .accent { color: var(--cyan); }
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ====================== Trust strip ====================== */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 32px 20px;
}
.trust-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-stat .num {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--cyan-light);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat .label {
  font-size: 13px;
  color: var(--on-navy-soft);
  font-weight: 500;
}

/* ====================== Solutions ====================== */
.solutions { background: var(--bg-soft); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing), border-color .2s var(--easing);
}
.solution-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.solution-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.solution-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ====================== Benefits ====================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.benefit {
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--cyan-light);
  font-weight: 800;
  font-size: 17px;
  border-radius: 10px;
  margin: 0 auto 16px;
}
.benefit h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
}
.benefit p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

/* ====================== How it works ====================== */
.how { background: var(--bg-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 20px 18px;
}
.step-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: #fff;
  border: 2.5px solid var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(38, 183, 222, 0.18);
}
.step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
}
.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

/* ====================== CTA Band ====================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(38, 183, 222, 0.20), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(38, 183, 222, 0.14), transparent 45%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.2;
}
.cta-band p {
  color: var(--on-navy-soft);
  font-size: 17px;
  margin: 0 0 28px;
}
.cta-band .btn-cta {
  width: auto;
  padding: 16px 36px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.cta-band .btn-cta:hover {
  background: var(--cyan);
  color: #fff;
}

/* ====================== Compliance ====================== */
.compliance-block {
  background: #fff;
  border-top: 1px solid var(--line);
}
.compliance-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
  text-align: right;
}
.compliance-head {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  margin: 0 0 14px;
  text-align: center;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin-bottom: 18px;
}
.compliance-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.compliance-item strong { color: var(--navy); }
.compliance-example {
  background: var(--bg-soft);
  border-right: 3px solid var(--cyan);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.compliance-example strong { color: var(--navy); }
.compliance-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 12px;
  line-height: 1.55;
}

/* ====================== Footer ====================== */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.70);
  padding: 36px 20px 24px;
  font-size: 14px;
  text-align: center;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-inner img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a { color: rgba(255, 255, 255, 0.70); }
.footer-links a:hover { color: var(--cyan-light); }
.footer-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
}

/* ====================== Thank-you state ====================== */
.thank-you {
  text-align: center;
  padding: 20px 12px;
}
.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--success) 0%, #1ABC9C 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 160, 133, 0.30);
}
.thank-you-icon svg { width: 36px; height: 36px; }
.thank-you h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.thank-you p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

/* ====================== Mobile ====================== */
@media (max-width: 880px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .compliance-grid { grid-template-columns: 1fr; }
  section { padding: 56px 18px; }
  .hero { padding: 40px 18px 60px; }
  .shorts-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; }
  .brand img { height: 84px; }
  .header-inner { padding: 8px 18px; }
  .footer-inner img { height: 54px; }
}

@media (max-width: 480px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero p.lead { font-size: 16px; }
  .hero-form { padding: 26px 20px; }
  .hero-bullets li { font-size: 13px; padding: 7px 12px; }
  .shorts-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 380px; }
  .brand img { height: 70px; }
  .header-inner { padding: 6px 16px; }
  .footer-inner img { height: 48px; }
  .video-modal-content { max-width: 320px; }
}
