﻿:root {
  --brand-ink: #0f172a;
  --brand-muted: #475569;
  --brand-muted-light: #64748b;
  --brand-primary: #2563eb;
  --brand-secondary: #14b8a6;
  --brand-gradient: linear-gradient(120deg, #2563eb 0%, #14b8a6 100%);
  --surface-1: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2ff;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius-lg: 20px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--brand-ink);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 40%, #f6f8fc 100%);
  line-height: 1.6;
  min-height: 100vh;
}

main {
  overflow: hidden;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  color: var(--brand-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-ink);
  font-weight: 600;
  line-height: 1.2;
}

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

.btn-brand,
.btn-outline-brand {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-brand {
  background: var(--brand-gradient);
  border: none;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.btn-outline-brand {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--brand-primary);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-primary);
}

.btn-brand.btn-lg {
  padding: 0.8rem 2.4rem;
  font-size: 1.05rem;
}

.bg-brand-soft {
  background: rgba(37, 99, 235, 0.12);
}

.text-brand {
  color: var(--brand-primary) !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 1.1rem;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--brand-muted);
  padding: 0.6rem 0.8rem;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--brand-primary);
}

.navbar-toggler {
  border: none;
  padding: 0.35rem 0.4rem;
  border-radius: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brand-ink);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.navbar-toggler.is-active .toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.is-active .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.is-active .toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
}

.section-top {
  padding-top: clamp(5.5rem, 7vw, 7rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(140% 120% at 100% 0%, rgba(20, 184, 166, 0.08), transparent 50%);
}

.hero .lead {
  max-width: 540px;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-chip i {
  font-size: 1rem;
}

.hero-apr .card-body {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08));
  border-radius: 1rem;
}

.hero-apr .badge {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.step-form-card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.sf-rating {
  text-align: right;
}

.sf-progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  overflow: hidden;
}

.sf-progress-track {
  display: none;
}

.sf-progress-bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--brand-gradient);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.sf-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
}

.sf-steps li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
}

.sf-steps li .step-index {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.sf-steps li.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-primary);
}

.sf-steps li.active .step-index {
  background: rgba(37, 99, 235, 0.2);
  color: var(--brand-primary);
}

.sf-steps li.current {
  background: var(--brand-gradient);
  color: #ffffff;
}

.sf-steps li.current .step-index {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.sf-step {
  display: none;
  animation: fadeIn 0.35s ease;
}

.sf-step.active {
  display: block;
}

.sf-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sf-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-ink);
}

.sf-field input,
.sf-field select {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group-text {
  border-radius: 0.85rem 0 0 0.85rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--brand-primary);
  font-weight: 600;
}

.input-group .form-control,
.input-group input {
  border-radius: 0 0.85rem 0.85rem 0;
  border-left: none;
}

.sf-field input:focus,
.sf-field select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.sf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%232563eb' d='M7 9a1.2 1.2 0 0 1-.9-.41L.27 2.12a1.3 1.3 0 0 1 0-1.78A1.18 1.18 0 0 1 1.54.07l5.46 5.83L12.46.07a1.18 1.18 0 0 1 1.27-.27 1.3 1.3 0 0 1 0 1.78L7.9 8.59A1.2 1.2 0 0 1 7 9Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.sf-field small {
  font-size: 0.8rem;
  color: var(--brand-muted-light);
}

.sf-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.sf-btn {
  border: none;
  border-radius: 0.85rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--brand-gradient);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sf-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.sf-btn.sf-ghost {
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.sf-message {
  margin-top: 0.5rem;
  font-weight: 600;
  color: crimson;
  display: none;
}

.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}

.shaky {
  animation: shaky 0.4s ease;
}

@keyframes shaky {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
}

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

.stat-card {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-muted-light);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
  color: var(--brand-muted);
  font-weight: 500;
}

.process-step {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-card {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-card {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card .stars {
  color: #fbbf24;
  letter-spacing: 0.12rem;
  font-size: 1rem;
}

.testimonial-card p {
  color: var(--brand-muted);
  margin: 0;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--brand-ink);
}

.contact-card,
.compliance-card {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

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

.contact-list li {
  font-weight: 500;
  color: var(--brand-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-list i {
  color: var(--brand-primary);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.site-footer {
  padding: 2rem 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-soft);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--brand-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-gradient);
  padding: 0.75rem 0;
  box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.2);
  z-index: 1040;
  color: #ffffff;
}

.sticky-cta strong {
  color: #ffffff;
}

.sticky-cta span {
  color: rgba(255, 255, 255, 0.75);
}

.sticky-cta .btn {
  border-radius: 999px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
  color: var(--brand-muted-light);
}

.consent input {
  margin-top: 0.25rem;
}

.consent a {
  color: var(--brand-primary);
  font-weight: 600;
}
.page-hero {
  padding: clamp(4.5rem, 6vw, 6rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.1));
}

.page-hero h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero .lead {
  max-width: 640px;
  color: var(--brand-muted);
}

.page-section {
  padding: clamp(3.5rem, 5vw, 4.5rem) 0;
}

.page-card {
  background: var(--surface-1);
  border-radius: 1.3rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.page-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-card p {
  margin-bottom: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.offers-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.offer-card {
  background: var(--surface-1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.offer-card img {
  max-height: 48px;
  object-fit: contain;
}

.offer-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.offer-card p {
  margin: 0;
  color: var(--brand-muted);
}

.thankyou-hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.14));
}

.thankyou-card {
  background: var(--surface-1);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.thankyou-card p {
  color: var(--brand-muted);
}

.thankyou-meta {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(37, 99, 235, 0.08);
}

.thankyou-meta .stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brand-muted-light);
}

.thankyou-meta .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.page-note {
  font-size: 0.9rem;
  color: var(--brand-muted-light);
}

@media (max-width: 991.98px) {
  .sf-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .sf-steps {
    flex-direction: column;
  }

  .sf-steps li {
    width: 100%;
  }

  .hero-chip {
    width: 100%;
  }

  .cta-banner {
    padding: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .step-form-card {
    padding: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .sticky-cta {
    padding: 0.65rem 0;
  }
}

@media (min-width: 1400px) {
  .hero .display-5 {
    font-size: 3.25rem;
  }
}
