/* Google Fonts loaded via <link> in HTML head */

:root {
  --blue: #B91C1C;
  --blue-dark: #991B1B;
  --blue-soft: #FEF2F2;
  --ink: #0F172A;
  --slate: #475569;
  --muted: #94A3B8;
  --line: #E2E8F0;
  --soft: #F8FAFC;
  --ok: #16A34A;
  --warn: #D97706;
  --danger: #DC2626;
  --hero-bg: linear-gradient(135deg, #1F0A0A 0%, #3B0A0A 100%);
  --header-bg: rgba(31,10,10,.96);
  --shadow-1: 0 1px 3px rgba(0,0,0,.06);
  --shadow-2: 0 4px 16px rgba(0,0,0,.08);
  --shadow-3: 0 12px 40px rgba(0,0,0,.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* SKIP LINK */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--blue); color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* LAYOUT */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.block { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* EYEBROW */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* SECTION HEAD */
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; margin-top: 10px; }
.section-head .right { font-size: 15px; color: var(--slate); max-width: 400px; line-height: 1.6; padding-top: 16px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
}
.btn.primary { background: var(--blue); color: #fff; }
.btn.primary:hover { background: var(--blue-dark); text-decoration: none; }
.btn.secondary { background: var(--soft); color: var(--ink); border: 1.5px solid var(--line); }
.btn.secondary:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn.ghost:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* CARDS */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-1); }
.card-soft { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 160px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 150px; width: auto; filter: brightness(0) invert(1); }
.brand-icon { width: 34px; height: 34px; background: var(--blue); border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0; }
.brand-name { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
header nav { display: flex; gap: 4px; flex: 1; }
header nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 6px; transition: all .15s; }
header nav a:hover, header nav a.active { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.header-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .2s; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 4px; background: var(--header-bg); border-top: 1px solid rgba(255,255,255,.06); }
.mobile-nav a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.8); padding: 10px 12px; border-radius: 8px; }
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.mobile-nav .btn { margin-top: 8px; justify-content: center; }
.mobile-nav.open { display: flex; }

/* HERO — text LEFT, image RIGHT */
.hero-section {
  background: var(--hero-bg);
  padding: 80px 0 72px;
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(31,10,10,.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
}
.hero-form label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.hero-form select, .hero-form input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.hero-form select option { color: var(--ink); background: #fff; }
.hero-form .full-col { grid-column: 1 / -1; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--hero-bg);
  padding: 56px 0 48px;
  color: #fff;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-top: 12px; max-width: 640px; line-height: 1.1; }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,.7); font-size: 16px; max-width: 580px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }

/* BYLINE */
.byline { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 10px; line-height: 1.6; }
.byline a { color: rgba(255,255,255,.7); }
.byline a:hover { color: #fff; }

/* TRUST BAR */
.trust-bar { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; }
.trust-identity { display: flex; align-items: center; gap: 14px; }
.trust-photo { display: block; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--line); }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; }

/* FACTS TABLE */
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table tr { border-bottom: 1px solid var(--line); }
.facts-table tr:last-child { border-bottom: none; }
.facts-table td { padding: 12px 16px; font-size: 15px; }
.facts-table td:first-child { font-weight: 700; color: var(--slate); width: 40%; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.compare-table th { background: var(--ink); color: #fff; padding: 14px 16px; font-size: 13px; font-weight: 700; text-align: left; }
.compare-table th:first-child { background: #3B0A0A; }
.compare-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--soft); }
.compare-table .ok { color: var(--ok); font-weight: 700; }
.compare-table .no { color: var(--muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-btn .chevron { font-size: 20px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-btn .chevron { transform: rotate(180deg); color: var(--blue); }
.faq-body { display: none; padding-bottom: 20px; color: var(--slate); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-body { display: block; }

/* EMAIL CARDS */
.email-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.email-card { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; border-radius: var(--radius-sm); text-decoration: none; transition: opacity .15s; }
.email-card:hover { opacity: .85; text-decoration: none; }
.email-card.primary { background: var(--blue); color: #fff; }
.email-card.secondary { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.email-card .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.email-card.primary .label { opacity: .75; }
.email-card .address { font-size: 13px; font-weight: 600; }

/* CTA BANNER */
.cta-banner { background: var(--hero-bg); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; max-width: 520px; margin: 0 auto 16px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }

/* WARNING CARDS */
.warn-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.warn-icon { width: 36px; height: 36px; border-radius: 50%; background: #FEF3C7; color: #D97706; display: grid; place-items: center; flex-shrink: 0; font-weight: 800; font-size: 16px; }

/* STATUS BADGES */
.status-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: none; }
.status-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.status-badge.required { background: #DCFCE7; color: #166534; }
.status-badge.not-required { background: #F1F5F9; color: var(--slate); }

/* TIMING ROWS */
.timing-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--soft); border-radius: 12px; border: 1px solid var(--line); }
.timing-label { width: 68px; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.timing-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; flex-shrink: 0; }

/* STEPS */
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 24px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px; flex-shrink: 0; }
.step-text { flex: 1; min-width: 0; }
.step-screenshot { flex-shrink: 0; width: 260px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.step-screenshot img { display: block; width: 100%; height: auto; object-fit: contain; }

/* CREDENTIALS CARD */
.credential-card { background: var(--blue-soft); border: 1px solid #FECACA; border-radius: var(--radius); padding: 24px 28px; }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
footer .brand-logo { height: 80px; width: auto; filter: brightness(0) invert(1); opacity: .85; }

/* ANIMATIONS */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; gap: 12px; }
  .section-head .right { max-width: 100%; padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap img { height: 320px; }
  .email-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  header nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .block { padding: 56px 0; }
  .facts-table td:first-child { width: 45%; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-form { grid-template-columns: 1fr; }
  .hero-form .full-col { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; }
  .step-screenshot { width: 100%; }
}
