@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --surface-alt: #f7f9fd;
  --text: #0d1b2e;
  --muted: #51617a;
  --line: #d9e1ef;
  --primary: #1f4db8;
  --primary-dark: #163a8d;
  --accent: #86c70d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 27, 46, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand-logo {
  width: 162px;
}

.brand-sub {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: -35px;
  margin-bottom: 4px;
  white-space: nowrap;
  font-size: 1.25rem;
}

.brand-sub p {
	display: inline-block;	
}

.nav-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0.4rem 0.72rem;
  font-size: 1.2rem;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.93rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  padding: 0.7rem 1.2rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #152102;
}

.hero {
  padding: 5.5rem 0 4rem;
  background: radial-gradient(circle at 80% 0%, rgba(31, 77, 184, 0.2), transparent 50%),
    linear-gradient(180deg, #f6f9ff 0%, #eef3fb 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.lead {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.phone-stage {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: min(300px, 70vw);
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(160deg, #151515, #2c2c2c);
  box-shadow: 0 25px 50px rgba(9, 20, 40, 0.3);
}

.phone-frame video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.caption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

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

.check-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.card-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.04rem;
}

.timeline {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.step {
  border: 1px solid var(--line);
  border-left: 4px solid #aebad1;
  background: #fff;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  display: grid;
}

.step.active {
  border-left-color: var(--accent);
}

.step strong {
  margin-bottom: 0.2rem;
}

.note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.cta-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.cta-box {
  background: linear-gradient(140deg, #11284f, #1f4db8);
  color: #fff;
  border-radius: 20px;
  padding: 2.3rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0.9rem 0 1.1rem;
}

.cta-box .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}



.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.95);
}

.privacy-check input {
  margin-top: 0.2rem;
}

.privacy-check a {
  text-decoration: underline;
}

.form-status {
  min-height: 1.2em;
  margin-top: 0.2rem;
  color: #fff;
  opacity: 0.92;
}

.form-status.is-error {
  color: #ffd3d3;
}

.form-status.is-success {
  color: #d8ffd4;
}

.site-footer {
  background: #0f2445;
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 920px) {
  .hero-grid,
  .card-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .header-content {
    padding: 0.8rem 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-actions {
    width: 100%;
    font-size: 0.88rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding-top: 0.4rem;
  }

  .nav-actions.open {
    display: grid;
  }

  .nav-actions a {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
  }

  .nav-actions .btn-accent {
    grid-column: 1 / -1;
    border: none;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1120px, 94%);
  }

  .brand-logo {
    width: 146px;
  }

  .brand-sub {
    font-size: 0.95rem;
    margin-left: -32px;
    margin-bottom: 1px;
  }

  .phone-frame {
    width: min(280px, 82vw);
    margin-inline: auto;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .card,
  .check-list li,
  .step {
    padding: 0.85rem;
  }
}


@media (max-width: 380px) {
  .brand {
    flex-wrap: wrap;
    row-gap: 0.12rem;
    max-width: calc(100% - 72px);
  }

  .brand-sub {
    white-space: normal;
    margin-left: 0;
    margin-top: 0px;
    font-size: 0.72rem;
    line-height: 1.1;
	display: inline-block;
  }
}
