:root {
  --ink: #1c2228;
  --muted: #687078;
  --line: #d9dfdf;
  --paper: #f7f9f8;
  --panel: #ffffff;
  --blue: #004f8f;
  --blue-dark: #003a6a;
  --orange: #f8a000;
  --red: #ed1238;
  --shadow: 0 24px 70px rgba(28, 34, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(248, 160, 0, 0.12), transparent 34rem),
    linear-gradient(105deg, rgba(0, 79, 143, 0.04) 0 22%, transparent 22%),
    var(--paper);
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 0.75rem;
  box-shadow: 0 8px 22px rgba(0, 79, 143, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

nav a {
  color: inherit;
  text-decoration: none;
}

.nav-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-button,
.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.primary-action {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 79, 143, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.58fr);
  gap: 3rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 8vw, 5.9rem);
  line-height: 0.96;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.phone-frame {
  justify-self: center;
  width: min(100%, 340px);
  overflow: hidden;
  border: 10px solid #11161b;
  border-radius: 2.5rem;
  background: #11161b;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.75rem;
}

.support-strip,
.content-section,
.contact-panel,
.policy-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 4.5rem;
}

.support-strip article,
.faq-list article,
.contact-panel,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(28, 34, 40, 0.06);
}

.support-strip article {
  padding: 1.35rem;
}

.support-strip h2,
.faq-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.support-strip p,
.faq-list p,
.contact-panel p,
.policy-card p {
  color: var(--muted);
  line-height: 1.56;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.contact-panel h2,
.policy-card h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list article {
  padding: 1.35rem;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
  padding: 2rem;
}

.contact-panel p:last-child,
.support-strip p:last-child,
.faq-list p:last-child,
.policy-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.policy-page {
  padding: 3rem 0 4.5rem;
}

.policy-card {
  max-width: 860px;
  padding: 2rem;
}

.policy-card h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.28rem;
}

.updated {
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header,
  nav,
  .contact-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

  .nav-button {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .phone-frame {
    width: min(100%, 300px);
  }

  .support-strip,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero {
    gap: 2rem;
    padding-bottom: 3.5rem;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .support-strip {
    padding-bottom: 3.5rem;
  }
}
