:root {
  --navy: #0B1F3A;
  --blue: #2563EB;
  --light-blue: #EFF6FF;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --red: #DC2626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.hero {
  min-height: 700px;
  padding: 28px 8%;
  color: white;
  background: linear-gradient(135deg, #0B1F3A 0%, #123B6D 55%, #2563EB 100%);
}

.navbar {
  max-width: 1280px;
  margin: auto;
  padding: 18px 24px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: white;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
}

.nav-dropdown-trigger::after {
  content: " v";
  font-size: 11px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 200;
  display: none;
  width: min(330px, 90vw);
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: #07111F;
  box-shadow: 0 18px 44px rgba(7,17,31,0.28);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #E5E7EB;
  line-height: 1.3;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(255,255,255,0.10);
}

.accessibility-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.accessibility-tools button,
.accessibility-tools select {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 7px 10px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  font-size: 13px;
}

.accessibility-tools button:hover,
.accessibility-tools select:hover {
  background: rgba(255,255,255,0.22);
}

.accessibility-tools select option {
  color: #111827;
  background: white;
}

.hero-content {
  max-width: 920px;
  margin: 80px auto 0;
  text-align: center;
}

.hero-profile {
  width: min(340px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 55px rgba(7,17,31,0.26);
}

.hero-profile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
}

.hero-profile figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  color: white;
}

.hero-profile strong {
  font-size: 22px;
  line-height: 1.1;
}

.hero-profile span {
  color: #DDE7F5;
  font-size: 14px;
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.reg {
  margin-top: 14px;
  color: #DDE7F5;
  font-weight: 600;
}

.hero h1 {
  margin: 26px 0;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-text {
  max-width: 760px;
  margin: auto;
  color: #DDE7F5;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(37,99,235,0.35);
}

.btn-outline {
  background: white;
  color: var(--navy);
}

.btn-white {
  background: white;
  color: var(--blue);
}

.trust-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 700;
  color: white;
}

.section {
  padding: 90px 8%;
  background: white;
  text-align: center;
}

.section.light {
  background: var(--bg);
}

.section.warning {
  background: #FEF2F2;
}

.policy-hero {
  min-height: auto;
  padding-bottom: 72px;
}

.policy-hero .hero-content {
  margin-top: 70px;
}

.policy-page {
  background: white;
}

.policy-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.policy-content h2 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: 0;
}

.policy-content h3 {
  margin: 24px 0 10px;
  color: var(--navy);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul,
.policy-content ol {
  padding-left: 22px;
  margin: 12px 0 20px;
}

.policy-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.policy-info-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.policy-info-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.label.red {
  color: var(--red);
}

.label.white {
  color: white;
}

.section h2,
.trial-box h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 42px;
  letter-spacing: -0.8px;
}

.grid {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.card h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.red-card {
  border-left: 5px solid var(--red);
}

.pricing {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: white;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid var(--border);
  text-align: left;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.price-card.featured {
  border: 2px solid var(--blue);
  transform: translateY(-10px);
}

.price-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 10px;
}

.price-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.price-card ul,
.trial-box ul {
  list-style: none;
}

.price-card li {
  padding: 9px 0;
  color: var(--text);
}

.price-card li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: bold;
}

.steps {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: var(--bg);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid var(--border);
}

.step span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.step h3 {
  margin: 12px 0;
  color: var(--navy);
}

.step p {
  color: var(--muted);
}

.trial-section {
  padding: 90px 8%;
  background: var(--bg);
}

.trial-box {
  max-width: 760px;
  margin: auto;
  text-align: center;
  color: white;
  padding: 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.25);
}

.trial-box h2 {
  color: white;
  margin-bottom: 14px;
}

.trial-box p {
  color: #E5E7EB;
  margin-bottom: 26px;
}

.trial-box ul {
  max-width: 420px;
  margin: 0 auto 30px;
  text-align: left;
}

.trial-box li {
  padding: 10px 0;
  font-size: 17px;
}

.officer-grid {
  max-width: 980px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.officer-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}

.mini-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.officer-card h3,
.escalation h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

.officer-card a,
.escalation a,
.disclosure-list a,
footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.escalation {
  max-width: 980px;
  margin: auto;
  text-align: left;
}

.escalation h3 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.escalation-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.escalation-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.escalation-item div {
  padding: 26px;
}

.escalation-item h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.disclosure-list {
  max-width: 980px;
  margin: auto;
  text-align: left;
}

.disclosure-list details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

.disclosure-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.disclosure-list p {
  color: var(--muted);
  margin-top: 12px;
}

.table-wrap {
  max-width: 980px;
  margin: auto;
  overflow-x: auto;
}

.complaint-data-panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.complaint-data-panel summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  list-style: none;
}

.complaint-data-panel summary::-webkit-details-marker {
  display: none;
}

.complaint-data-panel summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.complaint-data-panel[open] summary {
  border-radius: 14px 14px 0 0;
}

.complaint-data-panel[open] summary::after {
  content: "-";
}

.complaint-data-panel .table-wrap {
  margin-top: 0;
}

.complaint-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
}

.complaint-table th {
  background: var(--navy);
  color: white;
  font-size: 13px;
  text-align: left;
  padding: 14px;
}

.complaint-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  color: var(--text);
}

.small-note {
  max-width: 980px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.faq {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.faq-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

footer {
  background: #07111F;
  color: white;
  padding: 64px 8% 28px;
}

.footer-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 40px;
}

footer h3,
footer h4 {
  margin-bottom: 16px;
}

footer p {
  color: #CBD5E1;
  font-size: 14px;
  margin-bottom: 8px;
}

.disclaimer {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  color: #CBD5E1;
  font-size: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.footer-regulatory {
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 24px 28px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}

.footer-regulatory p {
  max-width: 920px;
  margin: 0 auto 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.footer-regulatory p:last-child {
  margin-bottom: 0;
}

.copyright {
  text-align: center;
  margin-top: 24px;
  color: #94A3B8;
}

.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

.high-contrast .hero,
.high-contrast .trial-box {
  background: #000 !important;
}

.high-contrast section,
.high-contrast .section,
.high-contrast .trial-section,
.high-contrast .card,
.high-contrast .price-card,
.high-contrast .step,
.high-contrast .faq-item,
.high-contrast .officer-card,
.high-contrast .disclosure-list details,
.high-contrast .escalation-item,
.high-contrast .complaint-table,
.high-contrast footer,
.high-contrast .disclaimer {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast h4,
.high-contrast p,
.high-contrast li,
.high-contrast a,
.high-contrast summary,
.high-contrast td,
.high-contrast th,
.high-contrast span {
  color: #fff !important;
}

.high-contrast .escalation-item span,
.high-contrast .complaint-table th {
  background: #222 !important;
}

@media (max-width: 1100px) {
  .navbar {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 40px;
  }

  .nav-links {
    display: flex;
    gap: 14px;
  }

  .nav-dropdown {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }

  .grid,
  .pricing,
  .steps,
  .footer-grid,
  .officer-grid,
  .policy-info,
  .escalation-item {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .escalation-item span {
    min-height: 46px;
  }

  .accessibility-tools {
    justify-content: center;
  }
}
/* WCAG Accessibility Fixes */

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

a:focus,
button:focus,
select:focus,
summary:focus {
  outline: 3px solid #FACC15;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

button,
select,
a,
summary {
  min-height: 36px;
}

.accessibility-tools button,
.accessibility-tools select {
  min-height: 38px;
}

.accessibility-tools select {
  max-width: 120px;
}

/* Better mobile accessibility */
@media (max-width: 900px) {
  .nav-links a,
  .accessibility-tools button,
  .accessibility-tools select {
    font-size: 14px;
  }

  .navbar {
    align-items: center;
  }
}
