@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");

:root {
  --color-ink: #102033;
  --color-ink-soft: #20344d;
  --color-accent: #0f5e9c;
  --color-accent-strong: #0a7bb8;
  --color-accent-soft: #e8f3fb;
  --color-warm: #d59a3a;
  --color-warm-soft: #fbf4e7;
  --color-bg: #f7f3eb;
  --color-panel: #ffffff;
  --color-panel-soft: #f4f7fa;
  --color-line: #d8e3ec;
  --color-line-strong: #c4d0db;
  --color-muted: #5d6d7e;
  --color-slate: #7c8b9b;
  --primary-color: #102033;
  --accent: #0f5e9c;
  --accent-strong: #0a7bb8;
  --orange: #d59a3a;
  --ylw: #d59a3a;
  --green: #0f5e9c;
  --red: #c78a3e;
  --text-primary-color: #5d6d7e;
  --font-primary: "Manrope", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
}

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

a:focus {
  outline: none;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body.ddeff-theme {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 94, 156, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(213, 154, 58, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #faf7f0 0%, #f3f6f8 48%, #faf5eb 100%);
  overflow-x: hidden;
}

body.ddeff-theme,
body.ddeff-theme .panel,
body.ddeff-theme .modal-content,
body.ddeff-theme .btn,
body.ddeff-theme .form-control,
body.ddeff-theme .close {
  box-shadow: none !important;
}

body.ddeff-theme a,
body.ddeff-theme a:hover,
body.ddeff-theme a:focus {
  text-decoration: none;
}

body.ddeff-theme .container {
  position: relative;
  z-index: 1;
}

.section-space {
  padding: 90px 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 40px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(232, 243, 251, 0.55) 100%
  );
  border-top: 1px solid rgba(216, 227, 236, 0.65);
  border-bottom: 1px solid rgba(216, 227, 236, 0.65);
  pointer-events: none;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-kicker,
.card-kicker,
.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 94, 156, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 20px 0 14px;
  font-family: var(--font-secondary);
  font-size: clamp(32px, 4.3vw, 48px);
  line-height: 1.05;
  color: var(--color-ink);
}

.section-title .accent,
.accent {
  color: var(--color-accent);
}

.section-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 227, 236, 0.78);
  backdrop-filter: blur(14px);
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
}

.brand-link:hover,
.brand-link:focus {
  color: var(--color-ink);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-warm) 100%
  );
}

.brand-name {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(232, 243, 251, 0.86);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.btn-punchy,
.btn-punchy.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    var(--color-accent) 0%,
    var(--color-accent-strong) 50%,
    var(--color-accent) 100%
  );
  background-size: 200% 100%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background-position 0.4s ease,
    opacity 0.3s ease;
}

.btn-punchy:hover,
.btn-punchy:focus {
  color: #ffffff;
  background-position: 100% 0;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  padding: 72px 0 96px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(15, 94, 156, 0.08);
  pointer-events: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy,
.hero-form {
  position: relative;
}

.promo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 28px;
  padding: 18px 22px;
  border: 1px solid rgba(15, 94, 156, 0.2);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(232, 243, 251, 0.92) 100%
  );
  overflow: hidden;
  animation: promoFloat 5.2s ease-in-out infinite;
}

.promo-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.promo-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -32%;
  width: 32%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: badgeSweep 4.8s linear infinite;
  pointer-events: none;
}

.promo-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(213, 154, 58, 0.16) 0%,
    rgba(213, 154, 58, 0.28) 100%
  );
  color: var(--color-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.promo-copy {
  position: relative;
  z-index: 1;
}

.promo-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 23px;
  font-weight: 800;
}

.promo-copy span {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 0.98;
  color: var(--color-ink);
}

.hero-title em {
  display: block;
  color: var(--color-accent);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.proof-card {
  padding: 22px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 94, 156, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.proof-label {
  display: block;
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-value {
  display: block;
  margin: 10px 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-ink);
}

.proof-text {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

body.ddeff-theme .hero-form .form-container {
  position: relative;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(216, 227, 236, 0.96);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

body.ddeff-theme .hero-form .form-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(213, 154, 58, 0.16) 0%,
    rgba(213, 154, 58, 0) 70%
  );
  pointer-events: none;
}

body.ddeff-theme .hero-form .form-holder {
  padding: 34px 34px 26px;
  border: none;
  background-color: transparent;
  border-radius: 32px;
  color: var(--color-ink);
}

body.ddeff-theme .hero-form .form-body {
  padding: 0;
}

body.ddeff-theme .hero-form .row {
  margin-left: 0;
  margin-right: 0;
}

body.ddeff-theme .hero-form #progressBar {
  width: 100%;
  height: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(15, 94, 156, 0.12);
}

body.ddeff-theme .hero-form #progress {
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-accent-strong) 100%
  );
}

body.ddeff-theme .hero-form .f-label {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: var(--font-secondary);
  color: var(--color-ink);
  font-size: 30px;
  line-height: 1.14;
  font-weight: 700;
}

body.ddeff-theme .hero-form .crd-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.ddeff-theme .hero-form .crd-wrapper .card {
  width: 100%;
  margin-bottom: 0;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

body.ddeff-theme .hero-form .crd-wrapper .card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 94, 156, 0.24);
  background: rgba(244, 247, 251, 0.9);
  box-shadow: none;
}

body.ddeff-theme .hero-form .card label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 88px;
  padding: 16px 18px;
  margin: 0;
  text-align: left;
}

body.ddeff-theme .hero-form .card label img {
  flex: 0 0 52px;
  width: 52px;
  max-height: 52px;
}

body.ddeff-theme .hero-form .card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

body.ddeff-theme .hero-form .card input[type="radio"]:checked + label {
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent) !important;
  border-radius: 22px;
}

body.ddeff-theme .hero-form .form-group {
  margin-bottom: 16px;
}

body.ddeff-theme .hero-form .form-group input,
body.ddeff-theme .hero-form .form-group select,
body.ddeff-theme .hero-form .form-control {
  height: 56px;
  padding: 16px 18px;
  border: 1px solid var(--color-line-strong);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-ink);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

body.ddeff-theme .hero-form .form-group input:hover,
body.ddeff-theme .hero-form .form-group input:focus,
body.ddeff-theme .hero-form .form-group select:hover,
body.ddeff-theme .hero-form .form-group select:focus {
  border-color: rgba(15, 94, 156, 0.48);
  background: #fcfeff;
}

body.ddeff-theme .hero-form .form-group label {
  top: 18px;
  left: 18px;
  padding: 0 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #ffffff;
}

body.ddeff-theme .hero-form .form-group input:valid + label,
body.ddeff-theme .hero-form .form-group input:focus + label,
body.ddeff-theme .hero-form .form-group select:valid + label,
body.ddeff-theme .hero-form .form-group select:focus + label {
  top: -10px;
  color: var(--color-ink-soft);
  font-weight: 800;
}

body.ddeff-theme .hero-form .prev-nxt-wrp {
  padding-top: 14px;
  align-items: center;
}

body.ddeff-theme .hero-form .prev-nxt-wrp a {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 700;
}

body.ddeff-theme .hero-form .next,
body.ddeff-theme .hero-form .sub {
  border-radius: 999px;
  font-family: var(--font-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.ddeff-theme .hero-form .next {
  min-height: 46px;
  padding: 10px 20px;
  background: var(--color-accent);
}

body.ddeff-theme .hero-form .next:hover,
body.ddeff-theme .hero-form .next:focus {
  background: var(--color-ink);
}

body.ddeff-theme .hero-form .cta-holder .sub,
body.ddeff-theme .hero-form .sub {
  min-height: 54px;
  padding: 14px 20px;
  background: linear-gradient(
    120deg,
    var(--color-accent) 0%,
    var(--color-accent-strong) 100%
  );
  color: #ffffff;
}

body.ddeff-theme .hero-form .cta-holder .sub:hover,
body.ddeff-theme .hero-form .sub:hover {
  background: linear-gradient(120deg, var(--color-ink) 0%, #17304a 100%);
  color: #ffffff;
}

body.ddeff-theme .hero-form .terms {
  margin-top: 6px;
}

body.ddeff-theme .hero-form .lu-txt {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}

body.ddeff-theme .hero-form .success-form .alert {
  margin-top: 18px;
  border-radius: 18px;
  border: 0;
}

.sim-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.sim-panel {
  padding: 40px;
}

.sim-title {
  margin: 16px 0 0;
  font-family: var(--font-secondary);
  font-size: 30px;
  line-height: 1.1;
}

.slider-card {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 24px;
  background: #ffffff;
}

.display-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.display-row label {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.range-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
}

.slider-hint {
  margin: 16px 0 0;
  color: var(--color-slate);
  font-size: 13px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 94, 156, 0.12);
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border: 6px solid var(--color-accent);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-accent-strong) 100%
  );
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 6px solid var(--color-accent);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.info-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--color-panel-soft);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.info-strip i {
  margin-top: 2px;
  color: var(--color-accent);
}

.sim-panel-alt {
  position: relative;
  background: linear-gradient(135deg, #102033 0%, #17304a 100%);
  color: #ffffff;
}

.sim-panel-alt::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-label {
  margin: 26px 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-value {
  font-family: var(--font-secondary);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.result-caption {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.result-stat {
  min-height: 114px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-stat strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.btn-result {
  min-width: 100%;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.comparison-card h3 {
  margin: 18px 0 10px;
  font-family: var(--font-secondary);
  font-size: 28px;
  line-height: 1.1;
}

.comparison-note {
  margin: 0 0 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.comparison-featured {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(232, 243, 251, 0.86) 100%
  );
  border-color: rgba(15, 94, 156, 0.24);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216, 227, 236, 0.8);
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.compare-item:last-child {
  border-bottom: 0;
}

.compare-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-panel-soft);
  color: var(--color-slate);
  font-size: 13px;
}

.comparison-featured .compare-icon {
  background: rgba(15, 94, 156, 0.12);
  color: var(--color-accent);
}

.comparison-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-panel-soft);
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-pill-accent {
  background: var(--color-accent);
  color: #ffffff;
}

.testimonial-swiper {
  padding-bottom: 58px;
}

.testimonial-card {
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.testimonial-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    var(--color-warm) 100%
  );
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-head img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
}

.testimonial-name {
  display: block;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
}

.testimonial-role {
  display: block;
  color: var(--color-slate);
  font-size: 13px;
  margin-top: 2px;
}

.testimonial-rating {
  margin-left: auto;
  color: var(--color-warm);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(15, 94, 156, 0.2);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.faq-group {
  margin-bottom: 0;
}

.faq-panel {
  margin-bottom: 16px !important;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faq-panel > .panel-heading {
  padding: 0;
  border: 0;
  background: transparent;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.faq-trigger:hover,
.faq-trigger:focus {
  color: var(--color-ink);
  border-color: rgba(15, 94, 156, 0.24);
}

.faq-trigger[aria-expanded="true"] {
  border-color: rgba(15, 94, 156, 0.24);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #ffffff;
}

.faq-symbol {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  position: relative;
}

.faq-symbol::before,
.faq-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
}

.faq-panel .panel-collapse {
  border: 0;
}

.faq-panel .panel-body {
  padding: 26px 26px 24px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-top: 0;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  background: #ffffff;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.floating-info {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(15, 94, 156, 0.2);
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(232, 243, 251, 0.95) 100%
  );
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  animation: infoOrbit 4.2s ease-in-out infinite;
}

.floating-info::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(15, 94, 156, 0.12);
  border-radius: 50%;
  animation: ringPulse 4.2s ease-in-out infinite;
}

.floating-info:hover,
.floating-info:focus {
  color: var(--color-accent);
  border-color: rgba(15, 94, 156, 0.36);
  transform: translateY(-3px);
}

.modal-dialog {
  margin: 56px auto;
}

.modal-content {
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.modal-header-modern {
  padding: 28px 30px 8px;
  border-bottom: 0;
}

.modal-title {
  margin: 18px 0 8px;
  font-family: var(--font-secondary);
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-ink);
}

.modal-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.close-modern {
  opacity: 0.6;
  color: var(--color-ink);
  font-size: 34px;
}

.close-modern:hover,
.close-modern:focus {
  opacity: 1;
  color: var(--color-ink);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-box {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.guide-box h5 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.guide-box p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

body.ddeff-theme footer {
  padding: 38px 0 44px;
  border-top: 1px solid rgba(216, 227, 236, 0.22);
  background: var(--color-ink);
  color: #ffffff;
}

body.ddeff-theme footer .logo-footer {
  margin-bottom: 16px;
}

body.ddeff-theme footer font {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

body.ddeff-theme footer a {
  color: var(--color-warm);
  font-weight: 700;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal-up[data-delay="2"] {
  transition-delay: 0.16s;
}

@keyframes badgeSweep {
  0% {
    transform: translateX(0) skewX(-18deg);
  }
  100% {
    transform: translateX(430%) skewX(-18deg);
  }
}

@keyframes promoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes infoOrbit {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.15;
  }
}

@media (max-width: 991px) {
  body.ddeff-theme .hero-form .form-container {
    height: auto !important;
  }
  .hero-section {
    padding: 17px 0 17px;
  }
  .section-space {
    padding: 72px 0;
  }

  .hero-shell,
  .sim-shell,
  .comparison-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .sim-panel,
  .comparison-card,
  .testimonial-card,
  body.ddeff-theme .hero-form .form-holder {
    padding: 30px;
  }

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

@media (max-width: 767px) {
  .display-row,
  .promo-badge,
  .testimonial-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 34px;
  }

  .hero-proof-grid,
  .result-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .floating-info {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .modal-header-modern,
  .sim-panel,
  .comparison-card,
  .testimonial-card,
  body.ddeff-theme .hero-form .form-holder {
    padding: 24px;
  }

  body.ddeff-theme .hero-form .card label {
    min-height: 80px;
  }

  body.ddeff-theme .hero-form .card p {
    font-size: 17px;
  }

  .faq-trigger,
  .faq-panel .panel-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
