:root {
  color-scheme: light;
  --ama-blue: #439cd7;
  --ama-blue-dark: #0b4f87;
  --ama-orange: #fda02c;
  --ama-orange-dark: #d97812;
  --ink: #162033;
  --muted: #5d687a;
  --line: #d8e0eb;
  --soft: #f3f7fb;
  --soft-blue: #dceefe;
  --white: #ffffff;
  --danger: #9d251c;
  --shadow: 0 18px 44px rgba(22, 32, 51, 0.12);
  font-family: Roboto, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 235, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
}

.brand img {
  width: 204px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ama-blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ama-blue-dark);
  border-radius: 6px;
  background: var(--ama-blue-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.button:hover {
  background: #083f6f;
}

.button.secondary {
  background: transparent;
  color: var(--ama-blue-dark);
}

.button.secondary:hover {
  background: rgba(67, 156, 215, 0.1);
}

.button.orange {
  border-color: var(--ama-orange-dark);
  background: var(--ama-orange);
  color: #1c2430;
}

.button.orange:hover {
  background: #f28f19;
}

.hero {
  background:
    linear-gradient(180deg, rgba(220, 238, 254, 0.82), rgba(255, 255, 255, 0.94) 66%),
    var(--soft);
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ama-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.16;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.16rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mail-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ama-orange);
}

.dot.blue {
  background: var(--ama-blue);
}

.dot.navy {
  background: var(--ama-blue-dark);
}

.preview-address {
  padding: 28px;
}

.address-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.address-large {
  margin: 0;
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1.2;
  font-weight: 800;
  word-break: break-word;
}

.message-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.message-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.message-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.message-row span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--ama-blue);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.section.band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px 0;
  background: var(--soft);
}

.section.band > .section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.faq-item,
.price-box,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature,
.step {
  padding: 24px;
}

.feature-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(67, 156, 215, 0.12);
  color: var(--ama-blue-dark);
  font-weight: 800;
}

.feature p,
.step p {
  margin-bottom: 0;
}

.examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.example-address {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  word-break: break-word;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.price-box {
  padding: 26px;
  box-shadow: var(--shadow);
}

.signup-form {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
}

.field input {
  min-width: 0;
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.field input:focus {
  border-color: var(--ama-blue);
  outline: 3px solid rgba(67, 156, 215, 0.16);
}

.input-combo {
  display: flex;
  min-width: 0;
}

.input-combo input {
  border-radius: 6px 0 0 6px;
}

.input-combo .suffix {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  padding: 0 10px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.checkline {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkline input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
}

.signup-form .button {
  width: 100%;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
}

.price strong {
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
}

.included-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.included-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--ama-orange);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-number {
  color: var(--ama-orange-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item p {
  margin-bottom: 0;
}

.legal-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #0d1b2e;
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer a {
  color: var(--white);
}

.simple-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.notice {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--ama-blue);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 880px) {
  .nav {
    min-height: 70px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links .optional {
    display: none;
  }

  .hero-inner,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.2rem;
  }

  .grid,
  .steps,
  .examples {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 164px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-inner,
  .section,
  .section.band > .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    padding-top: 44px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .address-large {
    font-size: 1.32rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
