:root {
  --bg: #f3f6fc;
  --bg-alt: #e9effa;
  --ink: #011b3f;
  --ink-soft: #234269;
  --line: #c8d4e8;
  --sun: #fdb813;
  --sun-2: #ffd164;
  --sea: #011b3f;
  --white: #ffffff;
  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(1, 27, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

.aurora {
  position: fixed;
  inset: -20vh -10vw auto;
  height: 55vh;
  background: radial-gradient(circle at 15% 35%, rgba(1, 27, 63, 0.18), transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(253, 184, 19, 0.24), transparent 40%);
  z-index: -1;
  filter: blur(6px);
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(243, 246, 252, 0.9);
  border-bottom: 1px solid rgba(200, 212, 232, 0.8);
  z-index: 10;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.35rem;
}

.primary-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--sun), var(--sun-2));
  color: #011b3f;
  text-decoration: none;
  font-weight: 800;
  padding: 0.78rem 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cta .btn-ghost {
  color: #f3f8ff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta .btn-ghost .phone-number {
  color: inherit;
}

.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.hero {
  padding: 3.8rem 0 3rem;
}

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

.eyebrow {
  color: var(--sea);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin: 0.3rem 0 1rem;
}

.lead {
  color: var(--ink-soft);
  font-size: 1.07rem;
  max-width: 52ch;
}

.lead--tight {
  margin: 0.4rem 0 0;
}

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

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

.proof-list li::before {
  content: "\2713\0020";
  color: var(--sun);
  font-weight: 900;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card p {
  color: var(--ink-soft);
}

.calc-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.93rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.76rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fcfdff;
}

.result {
  min-height: 1rem;
  margin-top: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.result strong {
  font-weight: 800;
}

.trusted {
  padding: 0 0 1.2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.trust-grid p {
  margin: 0;
  border: 1px solid var(--line);
  background: #f8fbff;
  border-radius: 999px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.6rem;
}

.section {
  padding: 4rem 0;
  scroll-margin-top: 84px;
}

.section h2 {
  margin-top: 0.2rem;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.section-intro {
  margin: 0.5rem 0 1.3rem;
  color: var(--ink-soft);
  max-width: 72ch;
}

.brand-strip {
  padding-top: 2.2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.brand-carousel {
  margin-top: 0.8rem;
  overflow: hidden;
  position: relative;
}

.brand-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: brand-scroll 52s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-track a {
  text-decoration: none;
}

.brand-track img {
  width: 168px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.4rem;
  filter: grayscale(100%) saturate(0.15) contrast(0.95);
  opacity: 0.82;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.brand-track a:hover img,
.brand-track a:focus-visible img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

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

.card p {
  color: var(--ink-soft);
}

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

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.9rem;
}

.steps .step-call {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, var(--sun), var(--sun-2));
  font-weight: 800;
  color: #011b3f;
  text-decoration: none;
}

.steps h3 {
  margin: 0.2rem 0 0.3rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.cta {
  background: linear-gradient(160deg, #011b3f, #08306f);
  color: #eef5ff;
}

.cta .eyebrow {
  color: #ffd164;
}

.cta p {
  color: #cfddf2;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cta .hero-card {
  color: var(--ink);
}

.cta .hero-card h2 {
  color: var(--ink);
}

.cta .hero-card p {
  color: #1f2e45;
  font-weight: 600;
}

.cta .hero-card .lead,
.cta .hero-card .section-intro,
.cta .hero-card .call-link {
  color: #1f2e45;
}

.cta .hero-card a {
  color: var(--ink);
}

.cta .hero-card .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-form label {
  color: #e8f0fd;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.97);
}

.contact-form input[type="file"] {
  padding: 0.58rem 0.6rem;
}

.form-note {
  font-size: 0.86rem;
  color: #b8cae5;
  margin: 0;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.6rem;
}

.form-actions-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-note-inline {
  min-height: 1.1rem;
}

.status-info {
  color: #cfe1ff;
}

.status-ok {
  color: #9ff0bf;
}

.status-error {
  color: #ffd2d2;
}

.form-note-dark {
  color: var(--ink-soft);
}

.service-section {
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.service-section h2 {
  max-width: 24ch;
}

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

.site-footer {
  background: #071528 !important;
  color: #b3c7e1;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #ffd164 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 1.25rem;
}

.footer-grid p {
  margin: 0.3rem 0;
}

.footer-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #e6f0ff;
}

.footer-desc {
  color: rgba(179, 199, 225, 0.9);
  font-weight: 700;
  margin: 0.35rem 0 0.65rem;
}

.footer-heading {
  margin: 0.9rem 0 0.45rem;
  color: rgba(230, 240, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}

.footer-inline-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 209, 100, 0.12);
  border: 1px solid rgba(255, 209, 100, 0.28);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-inline-links a:hover {
  background: rgba(255, 209, 100, 0.18);
  border-color: rgba(255, 209, 100, 0.42);
  transform: translateY(-1px);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list .k {
  color: rgba(179, 199, 225, 0.9);
  font-weight: 800;
  margin-right: 0.35rem;
}

.footer-address {
  font-style: normal;
  color: rgba(179, 199, 225, 0.9);
  font-weight: 700;
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: rgba(179, 199, 225, 0.72);
  font-weight: 800;
  font-size: 0.9rem;
}

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: linear-gradient(120deg, var(--sun), var(--sun-2));
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 800;
  color: #10233c;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transition: opacity 200ms ease, transform 240ms ease;
  will-change: opacity, transform;
}

.fab.fab--hide {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.call-link,
.phone-number {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.cta .call-link,
.site-footer .call-link {
  color: #ffd164;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 960px) {
  .hero-grid,
  .faq-wrap,
  .cta-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .brand-track img {
    width: 152px;
    height: 70px;
  }
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-heading {
    margin-top: 0.75rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    font-size: 0.96rem;
    letter-spacing: 0.04em;
  }

  .section {
    scroll-margin-top: 12px;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .service-grid {
    gap: 0.85rem;
  }

  .service-section h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.2;
    max-width: 18ch;
  }

  .service-section .section-intro {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .service-form {
    padding: 0.82rem;
    gap: 0.6rem;
  }

  .service-form label {
    font-size: 0.88rem;
    gap: 0.3rem;
  }

  .service-form input,
  .service-form select {
    padding: 0.62rem 0.72rem;
  }

  .service-form .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .brand-track {
    gap: 0.55rem;
    animation-duration: 36s;
  }

  .brand-track img {
    width: 132px;
    height: 64px;
    padding: 0.35rem;
  }

  .fab {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
