/* ══════════════════════════════════════════════════════════════════════════
   SecureWay Financial — Landing Page
   Official brand: Navy #013D6F · Blue #0A8BD1 · Diodrum + Montserrat
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Brand Fonts ───────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Diodrum';
  src: url('assets/fonts/Diodrum-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Diodrum';
  src: url('assets/fonts/Diodrum-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Diodrum';
  src: url('assets/fonts/Diodrum-Semibold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Diodrum';
  src: url('assets/fonts/Diodrum-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  /* Official SecureWay brand colours */
  --navy:        #013D6F;   /* dark navy  R1 G61 B111  */
  --navy-mid:    #0A4A8A;   /* mid navy   */
  --blue:        #0A8BD1;   /* brand blue R10 G139 B209 */
  --cyan:        #0A8BD1;   /* same blue accent */
  --blue-dark:   #0074B5;   /* darker blue for hover */
  --blue-light:  #E6F4FB;   /* very light blue tint */
  --blue-mid:    #BFDFEF;   /* border/mid blue */
  /* Neutral palette */
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --light-bg:    #F1F6FA;
  --border:      #E2E8F0;
  --text:        #0D1B2A;
  --muted:       #64748B;
  --light-text:  #94A3B8;
  /* Spacing / radius */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.15);
  --trans:       .18s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-size: .97rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--trans), transform var(--trans), box-shadow var(--trans);
  line-height: 1.2;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .01em;
}
.btn-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,139,209,.35);
}
.btn-cta:active { transform: none; }
.btn-cta:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-cta.btn-full { width: 100%; }
.btn-cta.btn-xl { font-size: 1.08rem; padding: 17px 36px; border-radius: var(--radius-lg); }
.btn-cta.btn-submit { background: linear-gradient(135deg, var(--blue), var(--navy)); }
.btn-arrow { transition: transform var(--trans); }
.btn-cta:hover .btn-arrow { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: .97rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color var(--trans), background var(--trans), color var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline.btn-full { width: 100%; }
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.btn-back {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
  font-family: inherit;
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }

.btn-nav {
  background: var(--blue);
  color: #fff !important;
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.btn-nav:hover { background: var(--blue-dark); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
  transition: color var(--trans);
}
.btn-phone:hover { color: #fff; }

.step-btns { display: flex; gap: 10px; margin-top: 18px; }
.step-btns .btn-cta { flex: 1; }

/* ── Top Bar ───────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar span { font-size: .78rem; color: rgba(255,255,255,.75); }
.top-bar-phone {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.top-bar-phone:hover { color: var(--cyan); }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
/* Transparent state — over hero video */
.site-header.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
/* Solid ribbon on scroll */
.site-header.scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 24px;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* Logo inverts to white when header is transparent */
.logo-img { height: 60px; width: auto; transition: filter var(--trans); }
.logo-img-dark { display: none !important; }
.site-header.header-transparent .logo-img { filter: brightness(0) invert(1); }
/* Show dark logo once header scrolls to solid white */
.site-header.scrolled .logo-img-light { display: none !important; }
.site-header.scrolled .logo-img-dark  { display: block !important; }
.logo-fallback { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); line-height: 1.1; }
.logo-tag  { font-size: .58rem; font-weight: 700; letter-spacing: .1em; color: var(--cyan); text-transform: uppercase; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--trans);
}
.header-nav a:hover { color: var(--navy); }
/* Nav links go white when header is transparent */
.site-header.header-transparent .header-nav a { color: rgba(255,255,255,.85); }
.site-header.header-transparent .header-nav a:hover { color: #fff; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,61,111,.72) 0%, rgba(10,139,209,.42) 100%);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* Hero copy */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(4px);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  font-family: 'Diodrum', 'Montserrat', system-ui, sans-serif;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-accent { color: #fff; opacity: .85; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-chip {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
}
.stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}
.stat-item span { font-size: .76rem; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

.hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatars { display: flex; }
.av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--navy-mid);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av1 { background: #0A8BD1; }
.av2 { background: #0A8BD1; }
.av3 { background: #013D6F; }
.av4 { background: #0A8BD1; }
.hero-avatars span { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ── Form Card ─────────────────────────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.form-card-head {
  background: var(--navy);
  padding: 24px 28px 20px;
  text-align: center;
}
.form-card-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.form-card-head h2 { color: #fff; font-size: 1.18rem; font-weight: 800; margin-bottom: 4px; }
.form-card-head p  { color: rgba(255,255,255,.65); font-size: .82rem; }

.form-progress {
  height: 3px;
  background: var(--border);
  transition: opacity var(--trans);
}
.form-progress-fill {
  height: 100%;
  background: var(--blue);
  transition: width .4s ease;
}

.form-step-label {
  text-align: right;
  font-size: .7rem;
  font-weight: 600;
  color: var(--light-text);
  padding: 8px 26px 0;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity var(--trans);
}

.step {
  display: none;
  padding: 22px 26px 26px;
  animation: stepIn .22s ease;
}
.step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.field-hint {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Radio stack */
.radio-stack { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  font-size: .9rem;
  font-weight: 500;
}
.radio-row input { display: none; }
.radio-row::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color var(--trans), background var(--trans);
}
.radio-row:hover { border-color: var(--blue); background: var(--blue-light); }
.radio-row:hover::before { border-color: var(--blue); }
.radio-row:has(input:checked) { border-color: var(--blue); background: var(--blue-light); font-weight: 700; color: var(--blue-dark); }
.radio-row:has(input:checked)::before { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 3px #fff; }

/* State select */
.select-field {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--trans);
  margin-bottom: 4px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.select-field:focus { border-color: var(--blue); }

/* Checkbox grid */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .83rem;
  font-weight: 500;
  transition: border-color var(--trans), background var(--trans);
}
.check-row input { display: none; }
.check-row:hover { border-color: var(--blue); background: var(--blue-light); }
.check-row:has(input:checked) { border-color: var(--blue); background: var(--blue-light); color: var(--blue-dark); font-weight: 600; }

/* Text inputs */
.input-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.text-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.text-input::placeholder { color: #C4CBDA; }
.text-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.field-error {
  font-size: .8rem;
  color: #DC2626;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #FEF2F2;
  border-radius: var(--radius-sm);
  border: 1px solid #FECACA;
}

.legal-note {
  font-size: .7rem;
  color: var(--light-text);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}
.legal-note a { color: var(--blue); }
.ssl-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* Success */
.success-wrap { text-align: center; padding: 8px 0; }
.success-check {
  width: 60px; height: 60px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
}
.success-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-wrap p  { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.success-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.success-cta-label { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.success-hours { font-size: .75rem; color: var(--light-text); margin-top: 10px; }

.tb-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── Trust Bar ─────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
  border-top: 3px solid var(--blue);
  border-bottom: 2px solid var(--navy-mid);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tb-item { font-size: .82rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 5px; }
.tb-item strong { color: #fff; }
.tb-sep { width: 1px; height: 18px; background: rgba(255,255,255,.15); }

/* ── Section base ──────────────────────────────────────────────────────── */
.section { padding: 80px 0; }

.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 10px;
}
.section-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1.18;
  text-align: center;
  margin-bottom: 10px;
}
.section-h2.left { text-align: left; }
.section-sub {
  font-size: .97rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── How It Works ──────────────────────────────────────────────────────── */
.how-section { background: var(--navy); }
.how-section .section-eyebrow { color: var(--blue); }
.how-section .section-h2 { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,.65); }

.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step-block {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: background var(--trans), transform var(--trans);
}
.step-block:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.step-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,139,209,.5);
}
.step-icon { font-size: 1.6rem; }
.step-block h3 { font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: 10px; text-align: center; }
.step-block p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; text-align: center; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  padding-top: 42px;
}
.connector-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(10,139,209,.2), var(--blue), rgba(10,139,209,.2));
  border-radius: 2px;
}
.how-cta { text-align: center; margin-top: 48px; }

/* ── Solutions ─────────────────────────────────────────────────────────── */
.solutions-section { background: #fff; }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.solution-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solution-card.sol-primary {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--blue-light), #fff);
  box-shadow: 0 4px 24px rgba(22,163,74,.12);
}
.solution-card.sol-secondary {
  background: var(--off-white);
}
.sol-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}
.sol-tagline {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}
.sol-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.sol-list li {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.4;
  padding-left: 4px;
  text-align: center;
}
.sol-note {
  font-size: .7rem;
  color: var(--light-text);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.solutions-note {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
  grid-column: 1 / -1;
}

/* ── Why SecureWay ─────────────────────────────────────────────────────── */
.why-section { background: var(--light-bg); }

.why-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}
.why-copy .section-eyebrow { text-align: left; }
.why-sub { font-size: .97rem; color: var(--muted); line-height: 1.7; margin: 16px 0 28px; }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-svg {
  width: 25px;
  height: 25px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testimonials-section {
  background: url('assets/testimonials-bg.jpg') center center / cover no-repeat;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 30, 55, 0.45);
  z-index: 0;
}
.testimonials-section .container {
  position: relative;
  z-index: 1;
}
.testimonials-section .section-eyebrow { color: var(--blue-light); }
.testimonials-section .section-h2 { color: #fff; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.75); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}
.t-card.t-featured {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.t-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.t-stars { display: flex; gap: 3px; align-items: center; margin-bottom: 12px; }
.t-quote {
  font-size: .88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 12px;
}
.t-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: .88rem; color: #fff; }
.t-author span   { font-size: .76rem; color: rgba(255,255,255,0.6); }
.t-result {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
}

/* ── Partners ──────────────────────────────────────────────────────────── */
.partners-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.partners-lbl {
  text-align: center;
  font-size: .75rem;
  color: var(--light-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.final-cta-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.final-cta-copy p {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 18px;
}
.final-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.final-trust span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.final-hours { font-size: .73rem; color: rgba(255,255,255,.45); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: #011E3A; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-fallback { display: flex; align-items: center; gap: 12px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 40px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .95rem;
}
.footer-logo strong { display: block; font-size: .9rem; color: #fff; }
.footer-logo span   { font-size: .72rem; color: rgba(255,255,255,.4); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  transition: background var(--trans), color var(--trans);
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col strong { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.footer-links-col a, .footer-links-col span { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--trans); line-height: 1; }
.footer-links-col a:hover { color: #fff; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0 32px;
}
.footer-disclaimer p { font-size: .7rem; color: rgba(255,255,255,.3); line-height: 1.75; }
.footer-disclaimer a { color: rgba(255,255,255,.45); text-decoration: underline; }

/* ── Scroll Reveal ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.1), transform 0.7s cubic-bezier(.22,.68,0,1.1);
}
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="right"] {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view,
[data-reveal="left"].in-view,
[data-reveal="right"].in-view {
  opacity: 1;
  transform: translate(0, 0);
}
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }
[data-delay="6"] { transition-delay: 0.60s; }

/* On narrow screens collapse left/right into a simple fade-up */
@media (max-width: 860px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(40px);
  }
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .why-grid  { grid-template-columns: 1fr; gap: 40px; }
  .why-copy .section-h2 { text-align: center; }
  .why-copy .section-eyebrow { text-align: center; }
  .why-sub { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
  .why-copy { text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 90px 0 52px; }
  .hero-sub { max-width: 100%; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 28px 20px 24px; }
  .steps-wrap { flex-direction: column; }
  .step-connector { width: 100%; height: 30px; padding: 0; }
  .connector-line { height: 100%; width: 2px; margin: 0 auto; background: linear-gradient(180deg, var(--border), var(--blue), var(--border)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .final-trust { justify-content: center; }
  .final-cta-actions { width: 100%; }
  .final-cta-actions .btn-cta { width: 100%; }
  .header-nav a:not(.btn-nav) { display: none; }
}

@media (max-width: 600px) {
  /* Always show solid sticky header on mobile — no transparent phase */
  .site-header,
  .site-header.header-transparent {
    background: #fff !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,.08) !important;
  }
  .site-header.header-transparent .logo-img {
    filter: none !important;
  }
  .logo-img-light { display: none !important; }
  .logo-img-dark  { display: block !important; }
  .site-header.header-transparent .header-nav a {
    color: var(--muted) !important;
  }
  .site-header.header-transparent .btn-nav {
    background: var(--navy) !important;
    color: #fff !important;
  }

  .top-bar { display: none; }
  .top-bar-inner { justify-content: center; }
  .top-bar span  { text-align: center; font-size: .72rem; }
  .top-bar-phone { display: none; }
  .logo-img { height: 34px; max-width: 180px; object-fit: contain; object-position: left; }
  .header-inner { height: 54px; gap: 10px; }
  .btn-nav {
    font-size: .72rem;
    padding: 7px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero { padding: 80px 0 44px; }
  .hero-stats    { flex-direction: column; gap: 12px; align-items: flex-start; }
  .stat-sep      { display: none; }
  .check-grid    { grid-template-columns: 1fr; }
  .why-features  { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 8px; }
  .tb-sep        { display: none; }
}
