:root {
  /* Brand / UI */
  --accent: #0a5bff;
  /* deep blue (trust) */
  --accent-2: #1f86ff;
  /* hover */
  --navy: #0b1b33;
  /* headings */
  --text: #0f1724;
  /* body text */
  --muted: #5b677a;

  --bg: #f6f8ff;
  --card: #ffffff;

  --radius: 14px;
  --radius-sm: 12px;

  /* Wider, but not too wide */
  --max-width: 1120px;
  --container-padding: 20px;

  --shadow: 0 12px 30px rgba(11, 27, 51, 0.1);
  --shadow-soft: 0 8px 20px rgba(11, 27, 51, 0.08);
  --border: 1px solid rgba(11, 27, 51, 0.08);

  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      900px 420px at 20% 0%,
      rgba(10, 91, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      800px 380px at 90% 10%,
      rgba(31, 134, 255, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg), #ffffff 55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  padding: 32px 12px;
  display: flex;
  justify-content: center;
  font-size: 16px;
}

.wrap {
  width: 100%;
  max-width: var(--max-width);
}

/* header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand .logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.brand h1 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.25;
  color: var(--navy);
}

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

/* Right header actions */
.row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.1);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid rgba(10, 91, 255, 0.14);
}

/* phone link - make it look like a CTA, not plain text */
.phone-link {
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.1);
  box-shadow: 0 6px 16px rgba(11, 27, 51, 0.08);
}

a.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

a.link:hover,
a.link:focus-visible {
  color: var(--accent-2);
}

/* layout */
main {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 22px;
  align-items: start;
}

@media (max-width: 1020px) {
  main {
    grid-template-columns: 1fr;
  }

  .aside {
    order: -1;
  }
}

/* cards */
.content-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: var(--border);
}

.hero {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background:
    radial-gradient(
      500px 200px at 10% 0%,
      rgba(10, 91, 255, 0.1),
      transparent 65%
    ),
    linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(10, 91, 255, 0.1);
}

.hero-text h2 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: var(--navy);
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-illustr {
  width: 140px;
  height: 92px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #f6fbff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 -10px 22px rgba(10, 91, 255, 0.08);
  border: 1px solid rgba(10, 91, 255, 0.1);
}

.benefits {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 12px;
  flex: 1 1 210px;
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: 0 6px 16px rgba(11, 27, 51, 0.06);
}

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

.steps {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  flex: 1 1 160px;
  min-width: 160px;
  border: 1px solid rgba(11, 27, 51, 0.08);
}

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

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

.testimonials {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.testimonial {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: 0 6px 16px rgba(11, 27, 51, 0.06);
}

.trust {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.trust .chip {
  background: #ffffff;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: 0 6px 16px rgba(11, 27, 51, 0.06);
  display: flex;
  gap: 8px;
  align-items: center;
}

/* form card */
.calc-card {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 91, 255, 0.12);
}

/* Optional: sticky on large screens only (fast + useful) */
@media (min-width: 1021px) {
  .aside {
    position: sticky;
    top: 24px;
  }
}

.calc-card h3 {
  margin: 0 0 6px 0;
  color: var(--navy);
}

label {
  display: block;
  font-size: 0.9em;
  font-weight: 800;
  margin: 10px 0 6px 0;
  color: var(--navy);
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 51, 0.12);
  font-size: 15px;
  outline: none;
  background: #ffffff;
}

input::placeholder {
  color: #97a3b6;
}

input:focus,
select:focus {
  border-color: rgba(10, 91, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(10, 91, 255, 0.14);
}

.small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 10px 22px rgba(10, 91, 255, 0.2);
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.02);
  box-shadow: 0 12px 26px rgba(10, 91, 255, 0.22);
  transform: translateY(-1px);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid rgba(10, 91, 255, 0.18);
  box-shadow: 0 8px 18px rgba(11, 27, 51, 0.08);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: rgba(10, 91, 255, 0.3);
}

/* price box */
.price-box {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(10, 91, 255, 0.08);
  border: 1px solid rgba(10, 91, 255, 0.14);
}

.hidden {
  display: none;
}

.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* FAQ */
.faq {
  margin-top: 16px;
}

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

.faq-item {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(11, 27, 51, 0.08);
}

/* footer */
/* Footer */
.site-footer {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(
      500px 220px at 10% 0%,
      rgba(10, 91, 255, 0.08),
      transparent 65%
    ),
    linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.footer-tagline {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
}

.footer-copy {
  display: grid;
  gap: 10px;
  line-height: 1.7;
}

.footer-copy p {
  margin: 0;
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--accent-2);
}

.footer-license {
  color: #66758a;
}

.footer-copyright {
  color: #7b8798;
  font-size: 13px;
}

.footer-nav {
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.08);
  box-shadow: 0 6px 16px rgba(11, 27, 51, 0.05);
}

.footer-nav-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  transform: translateX(2px);
}

/* mobile polish */
@media (max-width: 680px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-link {
    font-size: 1rem;
    font-weight: 800;
  }

  .hero-illustr {
    display: none;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-nav {
    padding: 14px;
  }
}

/* accessibility */
:focus-visible {
  outline: 3px solid rgba(10, 91, 255, 0.35);
  outline-offset: 2px;
}

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

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
