:root {
  --navy: #1f2559;
  --navy-deep: #12163a;
  --sky: #428bc4;
  --sky-soft: #78b7e8;
  --gold: #f5c451;
  --sand: #e8eef6;
  --ink: #14182b;
  --muted: #5b647a;
  --line: rgba(31, 37, 89, 0.12);
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 18px 50px rgba(18, 22, 58, 0.14);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(120, 183, 232, 0.28), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(245, 196, 81, 0.16), transparent 55%),
    #f4f7fb;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 251, 0.86);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand__mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, var(--sky-soft), var(--navy));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.brand__text {
  font-size: 1.125rem;
}

.topbar__nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.topbar__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.topbar__nav a:hover {
  color: var(--navy);
}

.topbar .btn--sm {
  margin-left: auto;
}

@media (min-width: 860px) {
  .topbar__nav {
    display: flex;
  }

  .topbar .btn--sm {
    margin-left: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.9rem 1.35rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3380 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 37, 89, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18, 22, 58, 0.92) 18%, rgba(31, 37, 89, 0.72) 55%, rgba(66, 139, 196, 0.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3Ccircle cx='80' cy='80' r='48'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, #12163a, #428bc4);
  background-size: cover, 120px 120px, cover;
  animation: heroShift 18s ease-in-out infinite alternate;
}

@keyframes heroShift {
  from {
    filter: saturate(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08);
    transform: scale(1.04);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.25rem 3.5rem;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  animation: rise 0.7s ease both;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
  animation: rise 0.8s 0.05s ease both;
}

.hero__lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  animation: rise 0.85s 0.12s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: rise 0.9s 0.18s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__visual {
  position: absolute;
  right: 4%;
  bottom: 12%;
  z-index: 2;
  width: min(340px, 38vw);
  display: none;
}

@media (min-width: 960px) {
  .hero__visual {
    display: block;
    animation: floatCard 5.5s ease-in-out infinite;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-mock {
  position: relative;
  height: 280px;
  border-radius: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-mock__bar {
  height: 10px;
  width: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.hero-mock__card {
  height: 88px;
  border-radius: 0.85rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
}

.hero-mock__card--b {
  width: 78%;
  height: 72px;
}

.hero-mock__chip {
  position: absolute;
  top: 1.15rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.strip__inner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.strip__inner strong {
  color: var(--navy);
}

@media (min-width: 800px) {
  .strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.section {
  padding: 4.5rem 1.25rem;
}

.section--tint {
  background: linear-gradient(180deg, rgba(232, 238, 246, 0.85), rgba(244, 247, 251, 0.4));
}

.section--dark {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(120, 183, 232, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.section--contact {
  padding-bottom: 5rem;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 760px;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section__head p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head--light h2 {
  color: #fff;
}

.section__head--light p {
  color: rgba(255, 255, 255, 0.78);
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(18, 22, 58, 0.05);
}

.benefit h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.benefit ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.benefit li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.benefit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sky);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.feature__num {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--sky);
  line-height: 1;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.35rem;
  min-height: 100%;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--sky);
}

.steps strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

.plans {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .plans {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan {
  position: relative;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.plan--hot {
  background: linear-gradient(160deg, rgba(245, 196, 81, 0.22), rgba(255, 255, 255, 0.08));
  border-color: rgba(245, 196, 81, 0.55);
}

.plan__tag {
  margin: 0 0 0.55rem;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.plan h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.plan p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--sky);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.faq a {
  color: var(--sky);
}

.contact {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.contact__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
}

.contact__copy > p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact__bullets {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact__bullets li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink);
  font-weight: 600;
}

.contact__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
    padding: 1.6rem;
  }
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6e4;
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(66, 139, 196, 0.2);
}

.contact-form--tried input:invalid,
.contact-form--tried textarea:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.contact-form__note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form__note a {
  color: var(--sky);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 1.25rem 2rem;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer__brand {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  color: #fff;
}

.footer__tag {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__meta a {
  color: var(--sky-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer__meta a:hover {
  text-decoration: underline;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg,
  .hero__visual,
  .hero__eyebrow,
  .hero__title,
  .hero__lead,
  .hero__actions {
    animation: none !important;
  }
}
