:root {
  color-scheme: dark;
  --ink: #07111f;
  --midnight: #0b1729;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d7aa4b;
  --blue: #2f80ed;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --smooth: 0.32s var(--ease);
  --slow: 0.6s var(--ease);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: white;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--smooth), background-color var(--smooth), border-color var(--smooth), opacity var(--smooth);
}

button,
input,
select,
textarea {
  font: inherit;
  transition: color var(--smooth), background-color var(--smooth), border-color var(--smooth), box-shadow var(--smooth),
    transform var(--smooth), opacity var(--smooth);
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

svg,
img,
iframe {
  transition: transform var(--slow), opacity var(--slow), filter var(--slow), box-shadow var(--slow);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 10%, rgba(47, 128, 237, 0.2), transparent 32rem),
    radial-gradient(circle at 15% 25%, rgba(215, 170, 75, 0.16), transparent 26rem),
    linear-gradient(145deg, #07111f 0%, #0b1729 48%, #050914 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  transition: background-color var(--smooth), border-color var(--smooth), box-shadow var(--smooth);
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 76px 0 0;
  z-index: 40;
  background: rgba(7, 17, 31, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.container {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--smooth), opacity var(--smooth);
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand-logo {
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  line-height: 1.05;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transition: transform var(--smooth);
}

.nav-menu a:hover {
  color: white;
}

.nav-menu a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu.open {
  position: absolute;
  top: 76px;
  right: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: menuDrop 0.32s var(--ease) both;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 170, 75, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border-radius: 999px;
  background: rgba(215, 170, 75, 0.16);
  color: #ffe7ad;
  padding: 0.7rem 1rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(215, 170, 75, 0.18);
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.section-pad {
  padding: 3.5rem 0;
}

.light-section {
  background: white;
  color: #020617;
}

.split-grid,
.two-column-grid,
.testimonial-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
}

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

  .two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    padding-top: 3rem;
  }
}

.eyebrow {
  color: #f5cf7c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9a6d16;
}

h1,
h2 {
  max-width: 780px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.55rem, 7vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.hero-copy {
  margin-top: 1.5rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--smooth),
    background-color var(--smooth), color var(--smooth);
}

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

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #eac466, var(--gold));
  color: #08101d;
  box-shadow: 0 18px 46px rgba(215, 170, 75, 0.25);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.btn-dark {
  width: 100%;
  background: #07111f;
  color: white;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  transition: transform var(--smooth), border-color var(--smooth), background-color var(--smooth), color var(--smooth);
}

.hero-highlights span:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 170, 75, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-highlights svg,
.service-card svg,
.why-card svg {
  color: var(--gold);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  animation: heroImageAppear 1s var(--ease) 0.2s both;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.hero-visual:hover img {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.5);
}

@keyframes heroImageAppear {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.68);
  padding: 1rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition: transform var(--slow), border-color var(--smooth), background-color var(--smooth);
}

.hero-visual:hover .metric-card-a {
  transform: translate3d(0, -8px, 0);
}

.hero-visual:hover .metric-card-b {
  transform: translate3d(0, 8px, 0);
}

.metric-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.metric-card strong {
  color: white;
  font-size: 1.7rem;
}

.metric-card-a {
  top: 10%;
  left: -1rem;
}

.metric-card-b {
  right: -0.5rem;
  bottom: 10%;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.focus-list span {
  border-radius: 999px;
  background: #eef4ff;
  padding: 0.75rem 1rem;
  color: #1e293b;
  font-weight: 700;
  transition: transform var(--smooth), background-color var(--smooth), color var(--smooth);
}

.focus-list span:hover {
  transform: translateY(-3px);
  background: #dfeaff;
  color: #07111f;
}

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

.stats-grid div,
.tool-panel {
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: linear-gradient(180deg, white, #f7faff);
  padding: 1.3rem;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--smooth);
}

.stats-grid div:hover,
.tool-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 128, 237, 0.24);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

.stats-grid strong {
  display: block;
  color: #07111f;
  font-size: clamp(2rem, 5vw, 3rem);
}

.stats-grid span {
  color: #64748b;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head p:last-child {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.light-section .section-head p:last-child {
  color: #64748b;
}

.section-copy {
  margin-top: 1.25rem;
  color: #475569;
  font-size: 1.125rem;
  line-height: 2;
}

.service-grid,
.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

.service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  padding: 1.3rem;
  transition: transform var(--smooth), background var(--smooth), border-color var(--smooth),
    box-shadow var(--smooth);
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 170, 75, 0.45);
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-card:hover svg,
.why-card:hover svg {
  transform: translateY(-2px) scale(1.08);
}

.service-card h3,
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p,
.why-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.service-card a {
  margin-top: auto;
  color: #ffe0a0;
  font-weight: 800;
}

.service-card a:hover {
  color: white;
}

.why-card {
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: white;
  padding: 1.35rem;
  transition: transform var(--smooth), border-color var(--smooth), box-shadow var(--smooth),
    background-color var(--smooth);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
}

.why-card:hover {
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.why-card p {
  color: #64748b;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-progress {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 2px;
  height: calc(100% - 56px);
  transform-origin: top;
  background: linear-gradient(var(--gold), var(--blue));
}

.step {
  position: relative;
  display: grid;
  gap: 0.35rem;
  margin-left: 4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 1rem;
  transition: transform var(--smooth), border-color var(--smooth), background-color var(--smooth);
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(215, 170, 75, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.step span {
  position: absolute;
  left: -4rem;
  top: 0.9rem;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: white;
  font-weight: 900;
}

.step h3 {
  font-weight: 800;
}

.step p {
  color: rgba(255, 255, 255, 0.64);
}

.tool-panel label {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
  color: #334155;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: white;
  padding: 0.9rem 1rem;
  color: #07111f;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
  transform: translateY(-1px);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
}

.calc-output {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.calc-output > span:not(#totalInterestText):not(#totalPaymentText) {
  grid-column: span 2;
}

.calc-output span,
.calc-output strong,
.calc-output small {
  border-radius: 8px;
  background: #eef4ff;
  padding: 0.85rem;
  color: #0f172a;
  font-weight: 800;
}

.calc-output strong {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #07111f, #17355d);
  color: white;
  font-size: 2rem;
}

.calc-output #totalInterestText {
  grid-column: span 3;
}

.calc-output #totalPaymentText {
  grid-column: span 3;
}

.calc-output small {
  grid-column: 1 / -1;
  color: #64748b;
}

.calc-output .calc-note {
  background: #fff7ed;
  color: #9a3412;
  line-height: 1.5;
}

.eligibility-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.eligibility-result {
  margin-top: 1rem;
  border-radius: 8px;
  background: #f8fafc;
  padding: 1rem;
  color: #475569;
  font-weight: 700;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, 34rem);
  justify-self: end;
  border: 1px solid rgba(215, 170, 75, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at top right, rgba(215, 170, 75, 0.18), transparent 16rem);
  padding: 0.9rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform var(--slow);
}

.testimonial-set {
  display: flex;
  width: 100%;
  gap: 0;
  padding-inline: 0;
}

blockquote {
  display: grid;
  align-content: start;
  flex: 0 0 100%;
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.62);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-icon {
  width: 34px;
  height: 34px;
  color: rgba(215, 170, 75, 0.85);
  transform: rotate(180deg);
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 1.3rem;
  color: #f5cf7c;
}

.rating svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 1.8;
}

blockquote p {
  margin: 1.2rem 0 0;
  color: white;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.28;
}

blockquote cite {
  display: block;
  margin-top: auto;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
}

.testimonial-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.testimonial-arrow:hover {
  border-color: rgba(215, 170, 75, 0.52);
  background: rgba(215, 170, 75, 0.18);
  transform: translateY(-2px);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.2rem 0;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: width var(--smooth), background-color var(--smooth);
}

.testimonial-dots span.active {
  width: 24px;
  background: var(--gold);
}

.testimonial-copy {
  max-width: 28rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.faq-container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .faq-container {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }
}

.faq-intro {
  position: sticky;
  top: 6rem;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-intro > p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  background: linear-gradient(180deg, white, #f8fbff);
  padding: 0;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055);
  transition: border-color var(--smooth), box-shadow var(--smooth), transform var(--smooth),
    background-color var(--smooth);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(47, 128, 237, 0.26);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.faq-list details[open] {
  transform: translateY(-2px);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  color: #0f172a;
  font-weight: 800;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef4ff;
  padding: 4px;
  color: var(--blue);
  transition: transform var(--smooth), background-color var(--smooth), color var(--smooth);
}

.faq-list details[open] summary svg {
  background: #07111f;
  color: white;
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  border-top: 1px solid #e8edf5;
  padding: 0 1.2rem 1.15rem;
  color: #64748b;
  line-height: 1.75;
  animation: fadeSlide 0.28s var(--ease) both;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.contact-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  transition: transform var(--smooth), border-color var(--smooth), box-shadow var(--smooth);
}

.contact-card:hover,
.lead-form:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 170, 75, 0.32);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.contact-card p {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-card iframe {
  width: 100%;
  height: 260px;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.15) contrast(1.03);
}

.contact-card:hover iframe {
  filter: grayscale(0) contrast(1.04);
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form input:user-invalid,
.lead-form select:user-invalid,
.lead-form textarea:user-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

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

.form-status {
  display: none;
  margin: 0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.info,
.form-status.success,
.form-status.error {
  display: block;
}

.form-status.info {
  border: 1px solid rgba(47, 128, 237, 0.28);
  background: rgba(47, 128, 237, 0.12);
  color: #dbeafe;
}

.form-status.success {
  border: 1px solid rgba(34, 197, 94, 0.34);
  background: rgba(34, 197, 94, 0.14);
  color: #dcfce7;
}

.form-status.error {
  border: 1px solid rgba(239, 68, 68, 0.34);
  background: rgba(239, 68, 68, 0.14);
  color: #fee2e2;
}

.lead-form .btn.is-loading i {
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 9, 20, 0.72);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer h3 {
  margin-bottom: 1rem;
  color: white;
  font-weight: 800;
}

.footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}

.footer a,
.footer p {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.64);
}

.footer a:hover {
  color: white;
  transform: translateX(3px);
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 5.2rem;
  z-index: 30;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #25d366;
  color: white;
  padding: 0 17px;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
  transition: width var(--smooth), border-radius var(--smooth), transform var(--smooth), box-shadow var(--smooth);
}

.whatsapp-float .bi-whatsapp {
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
}

.whatsapp-float span {
  order: -1;
  max-width: 0;
  opacity: 0;
  transform: translateX(0.75rem);
  font-weight: 800;
  transition: max-width var(--smooth), opacity var(--smooth), transform var(--smooth);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 158px;
  gap: 0.55rem;
  border-radius: 999px;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  max-width: 86px;
  opacity: 1;
  transform: translateX(0);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 29;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(14px);
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.floating-cta a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.floating-cta a:first-child {
  background: rgba(47, 128, 237, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

@media (max-width: 640px) {
  .section-pad {
    padding: 3rem 0;
  }

  .faq-intro {
    position: static;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 1rem;
  }

  .faq-list details p {
    padding: 0 1rem 1rem;
  }

  .testimonial-shell {
    width: 100%;
    padding: 0.65rem;
  }

  blockquote {
    min-height: 210px;
    padding: 1.15rem;
  }

  blockquote p {
    font-size: 1.08rem;
  }

  blockquote cite {
    font-size: 0.88rem;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-visual img {
    min-height: 300px;
    border-radius: 8px;
  }

  .metric-card {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin-top: 0.75rem;
  }

  .stats-grid,
  .calc-output {
    grid-template-columns: 1fr;
  }
}
