:root {
  --navy: #0b1f3a;
  --navy2: #122848;
  --accent: #f4620a;
  --accent2: #ff8c38;
  --light: #f5f8ff;
  --muted: #6b7a99;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(11, 31, 58, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--light);
  color: var(--navy);
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-sora {
  font-family: "Sora", sans-serif;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.logo {
  display: flex;
  height: 60px;
}

.header-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
  font-style: italic;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy2) 60%,
    #1a3a6e 100%
  );
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(244, 98, 10, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 20%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 98, 10, 0.18);
  border: 1px solid rgba(244, 98, 10, 0.4);
  color: var(--accent2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent2);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero-copy {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.hero-copy .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
}
.hero-copy .hero-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
}
.hero-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
  margin-bottom: 11px;
}
.hero-copy .hero-perks li {
  flex: 1 1 220px;
  max-width: 320px;
  margin-bottom: 0;
  text-align: left;
}
.hero-perks li .perk-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
}

/* ─── FORM CARD ──────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.form-card-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  padding: 20px 24px 18px;
}
.form-card-header h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.form-card-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 4px 0 0;
}
.form-card-body {
  padding: 0;
}
.iframe-wrapper {
  width: 100%;
  min-height: 620px;
  position: relative;
}
.iframe-wrapper iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  display: block;
}

/* ─── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #e8ecf5;
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 98, 10, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── SECTIONS COMMON ────────────────────────────── */
section {
  padding: 72px 0;
}
.section-tag {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(244, 98, 10, 0.08);
  border: 1px solid rgba(244, 98, 10, 0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag-law {
  border-color: rgba(244, 98, 10, 0.4);
  color: var(--accent2);
}
.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-title-white {
  color: #fff;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 580px;
}

/* ─── WHY BLOCK ──────────────────────────────────── */
.why-section {
  background: var(--white);
}
.why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid #e4eaf5;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-section {
  background: var(--light);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  border: 1px solid #e4eaf5;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(244, 98, 10, 0.35);
}
.step-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* connector line */
.steps-row {
  position: relative;
}
.step-connector {
  display: none;
}
@media (min-width: 992px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 56px;
    left: calc(33.33% + 28px);
    width: calc(33.33% - 56px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    z-index: 0;
  }
  .step-connector.second {
    left: calc(66.66% + 28px);
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(244, 98, 10, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(244, 98, 10, 0.55);
  filter: brightness(1.05);
  color: #fff;
}
.cta-btn:active {
  transform: translateY(0);
}

/* ─── LAW BLOCK ──────────────────────────────────── */
.law-section {
  background: var(--navy);
  color: #fff;
}
.law-section .section-title {
  color: #fff;
}
.law-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.law-section .law-highlight {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.law-section .law-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 0.97rem;
}
.law-section .law-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  background: rgba(244, 98, 10, 0.15);
  border: 1px solid rgba(244, 98, 10, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--accent2);
  font-size: 0.95rem;
  font-weight: 500;
}
.law-section .law-tip i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.law-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.law-visual {
  width: min(100%, 360px);
  display: block;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.reviews-section {
  background: var(--white);
}
.swiper {
  padding-bottom: 48px !important;
}
.swiper-slide {
  height: auto;
}
.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid #e4eaf5;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.97rem;
  color: #334;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e4eaf5;
  flex-shrink: 0;
  background: #e4eaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.author-sub {
  font-size: 0.78rem;
  color: var(--muted);
}
.rating-summary {
  background: #fff8f2;
  border: 1px solid #fde8d3;
}
.rating-summary-stars {
  font-size: 1.1rem;
  color: #f59e0b;
}
.rating-summary-score {
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: var(--navy);
}
.rating-summary-count {
  color: var(--muted);
  font-size: 0.87rem;
}

.swiper-pagination-bullet {
  background: var(--navy);
  opacity: 0.25;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq-section {
  background: var(--light);
}
.accordion-item {
  border: 1px solid #e4eaf5 !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.accordion-button {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy) !important;
  background: var(--white) !important;
  padding: 20px 24px;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: none;
}
.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  border-bottom: 1px solid #e4eaf5;
}
.accordion-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 18px 24px 20px;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  background: var(--navy2);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 28px 0;
  font-size: 0.83rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mb-20 {
  margin-bottom: 20px;
}

.site-footer font {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--accent2);
}
.text-white-force {
  color: #fff;
}
.text-accent2-force {
  color: var(--accent2);
}
.final-cta-copy {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  .hero {
    padding: 48px 0 52px;
  }
  .hero-copy {
    max-width: none;
    margin-bottom: 32px;
    text-align: left;
  }
  .hero-copy .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-copy .hero-perks {
    justify-content: flex-start;
    gap: 12px 0;
  }
  .hero-copy .hero-perks li {
    flex: 1 1 100%;
    max-width: none;
  }
  .iframe-wrapper,
  .iframe-wrapper iframe {
    min-height: 540px;
  }
  .trust-item {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .header-tagline {
    display: none;
  }
  .trust-strip .col-6 {
    margin-bottom: 16px;
  }
  .iframe-wrapper,
  .iframe-wrapper iframe {
    min-height: 500px;
  }
  .site-footer font {
    font-size: 0.82rem;
  }
}

/* Pulse anim on CTA */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 98, 10, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(244, 98, 10, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 98, 10, 0);
  }
}
.cta-btn.pulse {
  animation: pulse-ring 2.2s infinite;
}
