/* ============================================================
   swiftcredixa - PREMIUM DESIGN SYSTEM v2.0
   Pure CSS + Bootstrap 5 | Brand Colors Preserved
   ============================================================ */

/* - 1. CSS VARIABLES ------------- */
:root {
  /* Brand Palette */
  --primary: #000f22;
  --primary-rgb: 0, 15, 34;
  --primary-mid: #0a1f3c;
  --primary-container: #0a2540;
  --secondary: #f5a623;
  --secondary-rgb: 245, 166, 35;
  --secondary-dark: #c98b10;
  --on-primary: #ffffff;

  /* Surface / Background */
  --surface: #f4f6f9;
  --background: #ffffff;
  --surface-dark: #050d1a;
  --card-bg: #ffffff;

  /* Semantic */
  --outline: rgba(0, 15, 34, 0.12);
  --outline-variant: #e1e3e8;
  --on-surface-variant: #5a6372;
  --text-muted: rgba(255, 255, 255, 0.55);

  /* Radius tokens */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Spacing */
  --container-max: 1320px;
  --section-py: 96px;
  --gutter: 16px;

  /* Shadows */
  --shadow-sm:
    0 1px 4px rgba(0, 15, 34, 0.06), 0 4px 12px rgba(0, 15, 34, 0.04);
  --shadow-md:
    0 4px 16px rgba(0, 15, 34, 0.08), 0 12px 32px rgba(0, 15, 34, 0.06);
  --shadow-lg:
    0 12px 40px rgba(0, 15, 34, 0.12), 0 4px 16px rgba(0, 15, 34, 0.08);
  --shadow-xl: 0 24px 64px rgba(0, 15, 34, 0.16);
  --shadow-gold: 0 8px 24px rgba(245, 166, 35, 0.25);
  --shadow-gold-lg: 0 16px 40px rgba(245, 166, 35, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* - 2. FONTS ---------------- */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* - 3. BASE RESET --------------─ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: var(--background);
  color: var(--primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  transition: var(--transition);
}

/* - 4. LAYOUT UTILITIES ------------─ */
.max-w-container-max {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.px-gutter {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-3xl {
  max-width: 52rem;
}

/* - 5. COLOR UTILITIES ------------── */
.bg-brand-primary {
  background-color: var(--primary) !important;
}
.bg-brand-primary-container {
  background-color: var(--primary-container) !important;
}
.bg-brand-secondary {
  background-color: var(--secondary) !important;
}
.bg-brand-surface {
  background-color: var(--surface) !important;
}
.bg-surface-dark {
  background-color: var(--surface-dark) !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.bg-secondary-20 {
  background-color: rgba(245, 166, 35, 0.18) !important;
}

.text-brand-primary {
  color: var(--primary) !important;
}
.text-brand-secondary {
  color: var(--secondary) !important;
}
.text-brand-on-surface-variant {
  color: var(--on-surface-variant) !important;
}
.text-on-surface-variant {
  color: var(--on-surface-variant) !important;
}
.border-secondary-30 {
  border-color: rgba(245, 166, 35, 0.3) !important;
}
.border-outline-variant {
  border-color: var(--outline-variant) !important;
}
.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.link-hover-white:hover {
  color: #ffffff !important;
}

/* - 6. TYPOGRAPHY --------------─ */
.text-display-lg {
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.text-headline-lg {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.text-headline-md {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}
.text-body-md {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.text-label-md {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.fw-black {
  font-weight: 900 !important;
}
.tracking-tighter {
  letter-spacing: -0.05em !important;
}

/* - 7. RADIUS UTILITIES ------------─ */
.rounded-default {
  border-radius: var(--r-sm) !important;
}
.rounded-lg {
  border-radius: var(--r-md) !important;
}
.rounded-xl {
  border-radius: var(--r-lg) !important;
}
.rounded-card {
  border-radius: var(--r-xl) !important;
}
.rounded-full {
  border-radius: var(--r-full) !important;
}

/* - 8. CUSTOM SHADOWS ------------- */
.shadow-btn-gold {
  box-shadow: var(--shadow-gold) !important;
}
.shadow-btn-primary {
  box-shadow: 0 8px 24px rgba(0, 15, 34, 0.2) !important;
}
.custom-card-shadow {
  box-shadow: var(--shadow-md) !important;
}

/* - 9. GRADIENT UTILITIES -----------── */
.gold-gradient {
  background: linear-gradient(135deg, #f5c842 0%, #f5a623 45%, #d48c10 100%);
  border: none;
  position: relative;
  overflow: hidden;
}
.gold-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
}

/* - 10. MATERIAL DESIGN ICONS ----------─ */
.mdi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}
.mdi::before {
  line-height: 1;
}

/* - 11. HOVER INTERACTIONS -----------─ */
.hover-scale {
  transition: var(--transition);
}
.hover-scale:hover {
  transform: translateY(-2px) scale(1.02);
}
.hover-scale:active {
  transform: scale(0.96);
}
.hover-scale-98:active {
  transform: scale(0.98);
}
.shadow-card-hover {
  transition: var(--transition);
}
.shadow-card-hover:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-4px);
}

/* - 12. ANIMATIONS -------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* - 13. NAV / HEADER -------------─ */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(0, 10, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  transition: var(--transition);
}
.nav-link-custom {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: #ffffff;
}
.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link-custom:hover::after {
  width: 100%;
}
.nav-brand-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.nav-brand-logo span {
  color: var(--secondary);
}

/* - Hamburger Button -------------── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  flex-shrink: 0;
}
.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    width 0.2s ease;
}
/* Animated X when open */
.hamburger-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* - Mobile Drawer Menu ------------- */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 10, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(245, 166, 35, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    visibility 0s linear 0.32s;
  z-index: 1049;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    visibility 0s linear 0s;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* - Mobile Nav Links -------------── */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.mobile-nav-link .mdi {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}
.mobile-nav-link.active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary);
  border-color: rgba(245, 166, 35, 0.2);
}
.mobile-nav-link.active .mdi {
  color: var(--secondary);
}

/* - Mobile Menu CTA -------------- */
.mobile-menu-cta {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* - Mobile Overlay --------------─ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1048;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0s;
}

/* - Body scroll lock -------------── */
body.menu-open {
  overflow: hidden;
}

/* - 14. HERO SECTION -------------─ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-image-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 15, 34, 0.97) 0%,
    rgba(0, 15, 34, 0.82) 50%,
    rgba(0, 15, 34, 0.5) 100%
  );
}
.hero-image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(245, 166, 35, 0.08) 0%,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-copy {
  max-width: 800px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hero-title {
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #f5c842, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 660px;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin-top: 8px;
}
.hero-proof-grid > div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}
.hero-proof-grid strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}
.hero-proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  margin-top: 3px;
}
/* Hero decorative glow */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof-grid > div {
    padding: 12px 16px;
  }
}

/* - 15. SECTION COMMONS ------------─ */
.section-block {
  padding: var(--section-py) 0;
}
.section-heading {
  max-width: 860px;
}
.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.section-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-surface-variant);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-list li .mdi {
  font-size: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* - 16. SIMULATOR SECTION -----------── */
.simulator-section-bg {
  background: linear-gradient(160deg, #f4f6f9 0%, #eef1f6 100%);
}
.advisor-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 15, 34, 0.08);
  border-left: 4px solid var(--secondary);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.advisor-note .mdi {
  color: var(--secondary);
  font-size: 24px;
  flex-shrink: 0;
}
.advisor-note p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.65;
}
.simulator-card {
  border-radius: var(--r-xl) !important;
  background: #ffffff;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--outline-variant) !important;
  position: relative;
  overflow: hidden;
}
.simulator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--primary) 100%
  );
}

/* Custom Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(to right, var(--secondary), var(--surface));
  border-radius: 4px;
}
input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid #fff;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -8px;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.25);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.5);
}

/* - 17. STATS SECTION ------------- */
.stats-section {
  padding: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #041428 60%,
    #0a1f3c 100%
  );
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner {
  padding: 52px 0;
  position: relative;
  z-index: 2;
}
.stat-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateY(-3px);
}
.stat-card p {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.stat-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* - 18. PARTNER SECTION ------------─ */
.partner-section {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--outline-variant);
}
.partner-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.partner-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--primary);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.partner-item:hover {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.partner-item .mdi {
  font-size: 24px;
  color: var(--secondary);
}

/* - 19. SOLUTION CARDS ------------── */
.solutions-section {
  background: #fff;
}
.solution-card {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--outline-variant) !important;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Shimmer diagonal beam */
.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: skewX(-18deg);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

/* Radial glow overlay */
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(245, 166, 35, 0.1) 0%,
    rgba(15, 143, 70, 0.07) 55%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.solution-card:hover::before {
  left: 130%;
}
.solution-card:hover::after {
  opacity: 1;
}
.solution-card:hover {
  box-shadow:
    0 16px 48px rgba(15, 143, 70, 0.13),
    0 4px 16px rgba(245, 166, 35, 0.08) !important;
  transform: translateY(-6px);
  border-color: rgba(15, 143, 70, 0.22) !important;
}

/* Icon pulse on hover */
.solution-card:hover .solution-icon {
  transform: scale(1.12) rotate(-4deg);
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.25),
    rgba(15, 143, 70, 0.12)
  );
  border-color: rgba(245, 166, 35, 0.45);
}
.solution-icon {
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}
.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(245, 166, 35, 0.05)
  );
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--r-md);
  color: var(--secondary);
}
.solution-icon .mdi {
  font-size: 28px;
}
.solution-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary-dark);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.solution-text,
.value-text {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.7;
}
.solution-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-points li {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.solution-points li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.solution-rate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}
.solution-rate .mdi {
  color: var(--secondary);
}

/* - 20. PROCESS / STEPS SECTION ---------─ */
.process-section {
  background: linear-gradient(160deg, #f4f6f9 0%, #edf0f7 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.step-card {
  border-radius: var(--r-lg);
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.25);
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--primary);
  border: 4px solid rgba(245, 166, 35, 0.4);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 15, 34, 0.2);
  position: relative;
}
.step-number::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 166, 35, 0.3);
}
.step-number span {
  font-size: 24px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.step-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.75;
}
.process-line {
  top: 54px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0, 15, 34, 0.06),
    rgba(245, 166, 35, 0.4),
    rgba(0, 15, 34, 0.06)
  );
  z-index: 1;
}

/* - 21. VALUES SECTION ------------── */
.values-section {
  background: #fff;
}
.value-card {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--outline-variant) !important;
  padding: 36px 32px !important;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: #fff;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.value-card:hover::after {
  transform: scaleX(1);
}
.value-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-5px);
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  background: var(--primary);
  border-radius: var(--r-md);
  color: var(--secondary);
}
.value-icon .mdi {
  font-size: 28px;
}

/* - 22. TESTIMONIALS SECTION ----------── */
.testimonial-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.testimonial-card {
  border-radius: var(--r-lg) !important;
  transition: var(--transition);
}
.testimonial-card:not(.featured) {
  background: #fff;
  border: 1px solid var(--outline-variant) !important;
}
.testimonial-card:not(.featured):hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-4px);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, #041628 100%);
  border: none !important;
  box-shadow: var(--shadow-xl) !important;
}
.testimonial-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 15, 34, 0.22) !important;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--on-surface-variant);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card.featured .testimonial-quote {
  color: rgba(255, 255, 255, 0.7);
}

/* - 23. FAQ SECTION -------------── */
.faq-section {
  background: var(--surface);
}
.faq-item {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--outline-variant) !important;
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.3) !important;
  box-shadow: var(--shadow-sm);
}
.faq-item.active {
  border-color: rgba(245, 166, 35, 0.4) !important;
  box-shadow: var(--shadow-md);
}
.faq-toggle-btn {
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-toggle-btn h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  line-height: 1.45;
}
.faq-icon {
  color: var(--secondary);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.faq-item.active .faq-content {
  max-height: 300px;
}
.faq-content-inner {
  padding: 0 24px 22px;
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.7;
}

/* - 24. TRUST BANNER -------------─ */
.trust-banner-scroll {
  animation: trust-scroll 36s linear infinite;
}
@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* - 25. FOOTER ---------------─ */
footer {
  background: linear-gradient(160deg, #000f22 0%, #040e1d 60%, #050c18 100%);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 37, 64, 0.6) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.footer-logo span {
  color: var(--secondary);
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--secondary);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.footer-link:hover {
  color: #fff;
}
.footer-newsletter-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
}
.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter-input:focus {
  border-bottom-color: var(--secondary);
}
.footer-newsletter-btn {
  background: none;
  border: none;
  padding: 10px 0 10px 12px;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-newsletter-btn:hover {
  color: #f5c842;
  transform: translateX(3px);
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 32px 0;
}

/* - 26. RESPONSIVE -------------- */
@media (max-width: 991.98px) {
  :root {
    --section-py: 72px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-py: 56px;
  }
  .stats-inner {
    padding: 40px 0;
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stat-card p {
    font-size: 34px;
  }
  .partner-item {
    width: 100%;
    justify-content: center;
  }
  .solution-card,
  .value-card,
  .testimonial-card,
  .step-card {
    border-radius: var(--r-md) !important;
  }
  .step-number {
    width: 58px;
    height: 58px;
  }
}

/* Why Choose Us Section Styles */
.feature-card-v2 {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.feature-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0, 15, 34, 0.08);
}
.feature-icon-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  font-size: 24px;
}
.bg-success-light {
  background-color: rgba(40, 167, 69, 0.1) !important;
}
.text-success {
  color: #28a745 !important;
}

.bg-warning-light {
  background-color: rgba(245, 166, 35, 0.1) !important;
}
.text-warning {
  color: #f5a623 !important;
}

.bg-primary-light {
  background-color: rgba(0, 123, 255, 0.1) !important;
}
.text-primary-color {
  color: #007bff !important;
}

.bg-info-light {
  background-color: rgba(23, 162, 184, 0.1) !important;
}
.text-info {
  color: #17a2b8 !important;
}

.bg-purple-light {
  background-color: rgba(111, 66, 193, 0.1) !important;
}
.text-purple {
  color: #6f42c1 !important;
}

.bg-danger-light {
  background-color: rgba(220, 53, 69, 0.1) !important;
}
.text-danger {
  color: #dc3545 !important;
}

.btn-custom-green {
  background-color: #0f8f46;
  border: none;
  color: #ffffff;
  transition: var(--transition);
}
.btn-custom-green:hover {
  background-color: #0c7a3b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 143, 70, 0.3);
}
.btn-custom-green:active {
  transform: scale(0.96);
}

/* Custom Compare Table Styles */
.custom-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: 12px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.custom-compare-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.custom-compare-table th {
  padding: 24px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  vertical-align: middle;
}
.custom-compare-table td {
  padding: 20px 16px;
  font-size: 14px;
  border-top: 1px solid var(--outline-variant);
  vertical-align: middle;
}
.col-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}
.custom-compare-table .highlight-col {
  background-color: rgba(245, 166, 35, 0.03) !important;
}
.custom-compare-table th.highlight-col {
  background-color: rgba(245, 166, 35, 0.05) !important;
  color: var(--secondary-dark) !important;
}
.custom-compare-table td.highlight-col {
  background-color: rgba(245, 166, 35, 0.04) !important;
}
.w-30 {
  width: 30%;
}
.w-35 {
  width: 35%;
}
.italic {
  font-style: italic;
}

/* Custom Process Section Styles (4-step) */
.process-card-v2 {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 36px 24px 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.process-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(15, 143, 70, 0.25);
}
.step-badge-v2 {
  position: absolute;
  top: -16px;
  left: 24px;
  background-color: #0f8f46;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(15, 143, 70, 0.3);
  z-index: 2;
}
.process-icon-v2 {
  font-size: 38px;
  color: #0f8f46;
}
.process-duration-v2 {
  font-size: 13px;
  font-weight: 700;
  color: #0f8f46;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 992px) {
  .process-col-v2:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    color: #0f8f46;
    font-size: 28px;
    font-weight: 300;
    z-index: 5;
    opacity: 0.4;
  }
}

/* Custom Testimonial Card v2 Styles */
.testimonial-card-v2 {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.testimonial-card-v2:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(15, 143, 70, 0.25);
}
.testimonial-avatar-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0f8f46;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-quote-icon {
  font-size: 32px;
  color: rgba(15, 143, 70, 0.15);
  line-height: 1;
}
.btn-outline-green {
  border: 2px solid #0f8f46;
  background-color: transparent;
  color: #0f8f46;
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline-green:hover {
  background-color: #0f8f46;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 143, 70, 0.2);
}
.btn-outline-green:active {
  transform: scale(0.96);
}

/* Green CTA Banner Styles */
.green-cta-banner {
  background-color: #0f8f46;
  border-radius: var(--r-xl);
  box-shadow: 0 16px 40px rgba(15, 143, 70, 0.2);
}
.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.12) !important;
}
.text-success-color {
  color: #0f8f46 !important;
}
.btn-outline-white {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: #0f8f46 !important;
  transform: translateY(-2px);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}
.text-white-90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Security Strip Styles */
.security-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  font-size: 22px;
}
.bg-white-5 {
  background-color: rgba(255, 255, 255, 0.06) !important;
}

/* Footer Adjustments */
.footer-newsletter-box {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-newsletter-input-v2 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter-input-v2::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter-input-v2:focus {
  border-color: #0f8f46;
  background-color: rgba(255, 255, 255, 0.08);
}
.footer-newsletter-btn-v2 {
  background-color: #0f8f46;
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-newsletter-btn-v2:hover {
  background-color: #0c7a3b;
  transform: scale(1.05);
}
.footer-social-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn-v2:hover {
  background-color: #0f8f46;
  color: #ffffff;
  transform: translateY(-2px);
}
.payment-badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* - CTA SPLIT BANNER ---------─ */
.cta-split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
}

/* Left panel – dark green gradient */
.cta-split-left {
  background: linear-gradient(135deg, #0a7a3c 0%, #0f8f46 50%, #12a050 100%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-split-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-split-left::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.cta-split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.cta-split-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-split-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 440px;
}

.cta-btn-primary {
  background: #ffffff;
  color: #0f8f46 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  transition: var(--transition);
}
.cta-btn-primary:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-ghost {
  background: transparent;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cta-reassurance {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Right panel – light warm background with 2×2 stat grid */
.cta-split-right {
  background: #f0fdf6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #d1fae5;
}

.cta-stat-card {
  background: #ffffff;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.cta-stat-card:hover {
  background: #f0fdf4;
}

.cta-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(15, 143, 70, 0.1);
  color: #0f8f46;
  font-size: 22px;
  flex-shrink: 0;
}

.cta-stat-number {
  font-size: 25px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin: 0 0 2px;
  line-height: 1.1;
}
.cta-stat-label {
  font-size: 15px;
  color: var(--on-surface-variant);
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cta-split-banner {
    grid-template-columns: 1fr;
  }
  .cta-split-right {
    grid-template-columns: 1fr 1fr;
  }
  .cta-split-left {
    padding: 40px 28px;
  }
}
@media (max-width: 575.98px) {
  .cta-split-right {
    grid-template-columns: 1fr;
  }
  .cta-stat-card {
    padding: 24px 20px;
  }
}

/* ════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ════════════════════════════════════════════════ */

/* - Contact Hero ----------── */
.contact-hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a2540 55%,
    #0f3d1a 100%
  );
  padding: 96px 16px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact-hero-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 143, 70, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
}
.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 20px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.contact-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.contact-hero-badge .mdi {
  color: var(--secondary);
  font-size: 16px;
}

/* - Contact Main Grid --------- */
.contact-main-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

/* - Info Cards Column --------- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 143, 70, 0.2);
}
.contact-info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  font-size: 22px;
}
.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 2px;
}
.contact-info-hours {
  font-size: 12px;
  color: var(--on-surface-variant);
  margin: 0;
}
.contact-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.contact-btn-primary {
  background: var(--primary);
  color: #ffffff !important;
}
.contact-btn-primary:hover {
  background: #0a2540;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 15, 34, 0.2);
}
.contact-btn-secondary {
  background: rgba(245, 166, 35, 0.1);
  color: #8a5e00 !important;
  border: 1.5px solid rgba(245, 166, 35, 0.3);
  word-break: break-all;
  font-size: 14px;
}
.contact-btn-secondary:hover {
  background: rgba(245, 166, 35, 0.18);
  border-color: rgba(245, 166, 35, 0.5);
}
.contact-btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
}
.contact-btn-whatsapp:hover {
  background: #1ebd59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.contact-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(15, 143, 70, 0.06);
  border: 1px solid rgba(15, 143, 70, 0.15);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #0a5e2a;
  line-height: 1.5;
}
.contact-trust-badge .mdi {
  color: #0f8f46;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* - Contact Form Card --------- */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card-header {
  margin-bottom: 32px;
}
.contact-form-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.contact-form-subtitle {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin: 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field-full {
  grid-column: 1 / -1;
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--outline-variant);
  border-radius: var(--r-md);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--primary);
  background: #fafafa;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.contact-input:focus {
  border-color: #0f8f46;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 143, 70, 0.1);
}
.contact-input:invalid:not(:placeholder-shown) {
  border-color: #ba1a1a;
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.08);
}
.contact-textarea {
  resize: vertical;
  min-height: 130px;
}
select.contact-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6372' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #0a7a3c 0%, #0f8f46 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.contact-submit-btn:hover {
  background: linear-gradient(135deg, #095e30 0%, #0a7a3c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 143, 70, 0.3);
}
.contact-submit-btn:active {
  transform: scale(0.98);
}
.contact-legal-note {
  font-size: 11px;
  color: var(--on-surface-variant);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}
.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.contact-alert-success {
  background: #f0fdf4;
  color: #0a5e2a;
  border: 1px solid #bbf7d0;
}
.contact-alert-error {
  background: #fff5f5;
  color: #9b1c1c;
  border: 1px solid #fecaca;
}

/* - Contact Responsive --------── */
@media (max-width: 1100px) {
  .contact-main-grid {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-trust-badge {
    grid-column: 1 / -1;
  }
  .contact-form-card {
    padding: 32px 24px;
  }
}
@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    grid-template-columns: 1fr;
  }
  .contact-hero-section {
    padding: 72px 16px 56px;
  }
}

/* ════════════════════════════════════════════════
   QUI SOMMES-NOUS PAGE STYLES
   ════════════════════════════════════════════════ */

/* - Hero Section ----------─ */
.about-hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a2540 55%,
    #0f3d1a 100%
  );
  padding: 120px 16px 100px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.about-hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 20px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.about-hero-title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.about-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* Italy Flag Accent Line */
.italy-accent {
  background: linear-gradient(
    90deg,
    #008c45 33%,
    #f4f5f0 33%,
    #f4f5f0 66%,
    #cd212a 66%
  );
  height: 3px;
  width: 50px;
  border-radius: 99px;
}

/* - Story Image Asymmetric -------─ */
.about-image-wrapper {
  position: relative;
  padding-bottom: 12px;
  padding-right: 12px;
}
.about-image-glow-decor {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  background: var(--secondary-container);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.about-image-card {
  border-radius: var(--r-xl);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about-story-p {
  color: var(--on-surface-variant);
  font-size: 15.5px;
  line-height: 1.75;
}

/* - Bento Values ----------─ */
.about-value-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  transition: var(--transition);
}
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 143, 70, 0.2);
}
.about-value-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  font-size: 24px;
}
.about-value-text {
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.65;
}

/* - Key Figures ----------── */
.about-figures-container {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2540 100%);
  border-radius: var(--r-2xl);
  padding: 56px 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}
.about-figure-num {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-figure-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.about-figure-item {
  transition: var(--transition);
}
.about-figure-item:hover {
  transform: translateY(-3px);
}

/* - Team Cards ----------- */
.about-team-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--transition);
}
.about-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 143, 70, 0.18);
}
.about-team-img-box {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #f1f2f5;
}
.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-team-card:hover .about-team-img {
  transform: scale(1.05);
}
.about-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 15, 34, 0.72) 0%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-team-card:hover .about-team-overlay {
  opacity: 1;
}
.about-team-overlay span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* - Milan Map -----------─ */
.about-map-card {
  border-radius: var(--r-2xl);
  border: 1px solid var(--outline-variant);
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e7e8eb;
}
.about-map-pin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 34, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.about-map-pin {
  width: 60px;
  height: 60px;
  position: relative;
  animation: mapPulse 2s infinite ease-in-out;
}
.about-map-pin .italy-accent {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(15, 143, 70, 0.25);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 991.98px) {
  .about-map-card,
  .about-image-card {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 767.98px) {
  .about-hero-section {
    padding: 96px 16px 72px;
    text-align: center;
  }
  .about-hero-eyebrow {
    margin: 0 auto 16px;
  }
  .italy-accent {
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════════════
   NOS OFFRES PAGE STYLES
   ════════════════════════════════════════════════ */

/* - Offers Hero ----------── */
.offers-hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a2540 55%,
    #050d1a 100%
  );
  padding: 110px 16px 90px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.offers-hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.offers-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 20px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}
.offers-hero-title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 16px 0 20px;
}
.offers-hero-title span {
  color: var(--secondary);
}
.offers-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* - Offer Cards ----------── */
.offer-premium-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.25);
}

.offer-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  font-size: 22px;
}

.offer-rate-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
}
.offer-rate-value {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.offer-desc-text {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

/* Highlighted (Prêt Confort) */
.card-highlighted {
  background: linear-gradient(135deg, #0a1f3c 0%, #000f22 100%) !important;
  border: 1px solid rgba(245, 166, 35, 0.35) !important;
  box-shadow:
    0 16px 40px rgba(0, 15, 34, 0.25),
    0 8px 24px rgba(245, 166, 35, 0.12) !important;
}
.card-highlighted:hover {
  box-shadow:
    0 24px 56px rgba(0, 15, 34, 0.35),
    0 12px 32px rgba(245, 166, 35, 0.22) !important;
  border-color: rgba(245, 166, 35, 0.6) !important;
}
.card-highlighted .offer-rate-value {
  color: #ffffff !important;
}
.card-highlighted .offer-icon-box {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

/* Popular Badge */
.offer-badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary) !important;
  color: var(--primary) !important;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Custom Gold Button */
.btn-custom-gold {
  background: linear-gradient(135deg, #f5a623 0%, #d0890f 100%);
  border: none;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}
.btn-custom-gold:hover {
  background: linear-gradient(135deg, #f7b23b 0%, #e09414 100%);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.5);
  transform: translateY(-1px);
}
.btn-custom-gold:active {
  transform: translateY(1px);
}

/* Custom Primary (Dark Navy) Button - matches homepage CTA */
.btn-custom-green,
.btn-custom-navy {
  background: var(--primary);
  border: none;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 15, 34, 0.3);
  transition: var(--transition);
}
.btn-custom-green:hover,
.btn-custom-navy:hover {
  background: #0a2540;
  box-shadow: 0 8px 24px rgba(0, 15, 34, 0.4);
  transform: translateY(-1px);
  color: #ffffff !important;
}
.btn-custom-green:active,
.btn-custom-navy:active {
  transform: translateY(1px);
}

@media (min-width: 992px) {
  .premium-card-active {
    transform: translateY(-16px) !important;
  }
}

/* ════════════════════════════════════════════════
   SIMULATOR PAGE STYLES
   ════════════════════════════════════════════════ */

.simulator-card-premium {
  background: #ffffff;
  box-shadow: 0 10px 40px -10px rgba(0, 15, 34, 0.1);
  border-radius: 32px;
  border: 1px solid #f0f2f5;
}

.simulator-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simulator-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Range sliders */
.simulator-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  height: 24px;
}
.simulator-range:focus {
  outline: none;
}
.simulator-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #e0e6ed;
  border-radius: 2px;
}
.simulator-range::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #feae2c;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}
.simulator-range:active::-webkit-slider-thumb {
  transform: scale(1.1);
}

/* Result box */
.simulator-result-box {
  background: #0a2540;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.simulator-result-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.simulator-result-val {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.simulator-result-val-small {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.simulator-bg-icon {
  position: absolute;
  right: -15px;
  bottom: -20px;
  font-size: 110px;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  pointer-events: none;
}

/* Responsive separator lines inside result box */
@media (min-width: 768px) {
  .border-md-left {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
  }
}

/* Modal overlay & card */
.simulator-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 34, 0.62);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.simulator-modal-card {
  background: #ffffff;
  border-radius: var(--r-2xl);
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalAnim 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.simulator-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--primary);
  opacity: 0.6;
  transition: var(--transition);
  cursor: pointer;
}
.simulator-modal-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

@keyframes modalAnim {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ════════════════════════════════════════════════
   MENTIONS LÉGALES PAGE STYLES
   ════════════════════════════════════════════════ */

/* Hero */
.legal-hero-section {
  background: #ffffff;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--outline-variant);
}
.legal-hero-inner {
  max-width: 720px;
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: 96px;
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.legal-toc {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--outline-variant);
  margin-bottom: 20px;
}
.legal-toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.legal-toc-link .mdi {
  font-size: 15px;
  flex-shrink: 0;
}
.legal-toc-link:hover,
.legal-toc-link.active {
  color: var(--secondary);
  border-left-color: var(--secondary);
}
.legal-sidebar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--brand-surface, #f3f4f6);
  border-radius: var(--r-lg);
}

/* Legal Cards */
.legal-card {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.08);
}
.legal-card-highlight {
  border-top: 4px solid var(--primary);
}

/* Icon boxes */
.legal-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--r-lg);
  background: var(--brand-surface, #f3f4f6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

/* DPO Banner */
.legal-dpo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2540 100%);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .legal-dpo-banner {
    flex-direction: column;
    text-align: center;
  }
  .legal-card {
    padding: 20px;
  }
}

/* ════════════════════════════════════════════════
   CREDIT APPLICATION FORM STYLES
   ════════════════════════════════════════════════ */

.app-hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #041428 60%,
    #0a1f3c 100%
  );
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-full);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}
.app-trust-chip .mdi {
  color: #feae2c;
  font-size: 15px;
}

/* Stepper */
.app-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.app-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  cursor: default;
}
.app-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--outline-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--on-surface-variant);
  transition: var(--transition);
}
.app-step-num {
  display: block;
}
.app-step-done {
  display: none;
  font-size: 18px;
  color: #ffffff;
}
.app-step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.app-step-line {
  flex-grow: 1;
  height: 2px;
  background: var(--outline-variant);
  margin: 0 12px;
  margin-bottom: 24px;
  transition: var(--transition);
}

/* Stepper States */
.app-step.active .app-step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}
.app-step.active .app-step-label {
  color: var(--primary);
}
.app-step.done .app-step-circle {
  background: #28a745;
  border-color: #28a745;
}
.app-step.done .app-step-num {
  display: none;
}
.app-step.done .app-step-done {
  display: block;
}
.app-step.done .app-step-label {
  color: #28a745;
}
.app-step.done + .app-step-line {
  background: #28a745;
}

/* Form Card */
.app-form-card {
  background: #ffffff;
  border-radius: var(--r-2xl);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  overflow: hidden;
}

/* Panels */
.app-step-panel {
  display: none;
}
.app-step-panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

.app-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--outline-variant);
  padding-bottom: 20px;
}
.app-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.app-panel-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}
.app-panel-subtitle {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin: 0;
}

/* Form Fields */
.app-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.app-input {
  width: 100%;
  height: 48px;
  border-radius: var(--r-md);
  border: 1px solid var(--outline-variant);
  padding: 0 16px;
  font-size: 15px;
  color: var(--primary);
  background: #ffffff;
  transition: var(--transition);
}
.app-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 15, 34, 0.06);
}
.app-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000f22'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 40px;
}
.app-input-icon-wrap {
  position: relative;
  width: 100%;
}
.app-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--on-surface-variant);
  pointer-events: none;
}
.app-input-with-icon {
  padding-left: 48px;
}

/* Loan & Status Cards Selector */
.app-loan-type-card,
.app-status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  cursor: pointer;
  background: #ffffff;
  transition: var(--transition);
  height: 100%;
}
.app-loan-type-card span,
.app-status-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.app-loan-type-icon,
.app-status-icon {
  font-size: 28px !important;
  color: var(--on-surface-variant) !important;
  transition: var(--transition);
}
.app-loan-type-card:hover,
.app-status-card:hover {
  border-color: var(--primary);
  background: rgba(0, 15, 34, 0.02);
}
.app-loan-type-card.active,
.app-status-card.active {
  border-color: var(--primary);
  background: rgba(0, 15, 34, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 15, 34, 0.08);
}
.app-loan-type-card.active .app-loan-type-icon,
.app-status-card.active .app-status-icon {
  color: var(--secondary) !important;
  transform: scale(1.08);
}

/* Radio pills */
.app-radio-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  cursor: pointer;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.app-radio-pill:hover {
  border-color: var(--primary);
}
.app-radio-pill.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

/* Sliders Display values */
.app-slider-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

/* Estimate Box */
.app-estimate-box {
  background: var(--primary);
  border-radius: var(--r-xl);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}
.app-estimate-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.app-estimate-value {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

/* Summary Cards (Step 4) */
.app-summary-card {
  background: #f8f9fa;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 24px;
  height: 100%;
}
.app-summary-card-header {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--outline-variant);
  padding-bottom: 12px;
}
.app-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 13px;
}
.app-summary-row span {
  color: var(--on-surface-variant);
}
.app-summary-row strong {
  color: var(--primary);
}

/* Checkbox Row */
.app-checkbox-row {
  display: flex;
  align-items: start;
  gap: 12px;
}
.app-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--outline-variant);
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.app-checkbox-label {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

/* Disclaimer text block */
.app-disclaimer {
  display: flex;
  gap: 12px;
  background: #fff9e6;
  border: 1px solid #ffe8cc;
  border-radius: var(--r-lg);
  padding: 16px;
  margin-top: 24px;
}
.app-disclaimer .mdi {
  color: #f7a623;
  font-size: 20px;
}
.app-disclaimer p {
  font-size: 12px;
  color: #b27200;
  line-height: 1.4;
  margin: 0;
}

/* Navigation Buttons block */
.app-nav-buttons {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--outline-variant);
  padding-top: 32px;
  margin-top: 32px;
}
.app-btn-prev {
  background: #ffffff;
  border: 1px solid var(--outline-variant);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.app-btn-prev:hover {
  background: #f8f9fa;
  border-color: var(--primary);
}
.app-btn-next,
.app-btn-submit {
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 12px rgba(0, 15, 34, 0.15);
  transition: var(--transition);
}
.app-btn-next:hover,
.app-btn-submit:hover {
  background: #041428;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 15, 34, 0.25);
}
.app-step-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface-variant);
  margin-right: 8px;
}

/* Success Screen animation */
.app-success-screen {
  text-align: center;
  padding: 40px 20px;
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.app-success-icon {
  font-size: 72px;
  color: #28a745;
  margin-bottom: 24px;
  line-height: 1;
}
.app-success-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}
.app-success-text {
  font-size: 15px;
  color: var(--on-surface-variant);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .app-form-card {
    padding: 24px 16px;
  }
  .app-estimate-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .app-estimate-box .vr {
    display: none;
  }
  .app-nav-buttons {
    flex-direction: column-reverse;
    gap: 16px;
    align-items: stretch;
  }
  .app-nav-buttons div {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }
  .app-btn-prev,
  .app-btn-next,
  .app-btn-submit {
    width: 100%;
    text-align: center;
  }
  .app-step-counter {
    text-align: center;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* ════════════════════════════════════════════════
   OFFERS - CREDIT CATEGORIES TABS SECTION
   ════════════════════════════════════════════════ */

/* - Tab Navigation Bar -------- */
.credit-tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--outline-variant);
  margin-bottom: 48px;
}

.credit-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.credit-tab-btn .mdi {
  font-size: 16px;
}
.credit-tab-btn:hover {
  background: var(--surface);
  color: var(--primary);
}

/* Active states per theme */
.credit-tab-btn.active[data-theme="personnel"] {
  background: rgba(30, 107, 209, 0.08);
  border-color: #1e6bd1;
  color: #1e6bd1;
}
.credit-tab-btn.active[data-theme="professionnel"] {
  background: rgba(22, 163, 74, 0.08);
  border-color: #16a34a;
  color: #16a34a;
}
.credit-tab-btn.active[data-theme="auto"] {
  background: rgba(202, 138, 4, 0.1);
  border-color: #ca8a04;
  color: #ca8a04;
}
.credit-tab-btn.active[data-theme="immobilier"] {
  background: rgba(126, 34, 206, 0.08);
  border-color: #7e22ce;
  color: #7e22ce;
}
.credit-tab-btn.active[data-theme="etudes"] {
  background: rgba(219, 39, 119, 0.08);
  border-color: #db2777;
  color: #db2777;
}
.credit-tab-btn.active[data-theme="sante"] {
  background: rgba(8, 145, 178, 0.08);
  border-color: #0891b2;
  color: #0891b2;
}

/* - Tab Content Panels -------- */
.credit-tab-panel {
  display: none;
  animation: tabFadeIn 0.35s ease-out forwards;
}
.credit-tab-panel.active {
  display: flex;
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* - Visual Icon Box --------- */
.credit-visual-box {
  border-radius: var(--r-xl);
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credit-visual-box .mdi {
  font-size: 96px;
  line-height: 1;
}

/* Themed visual boxes */
.credit-visual-box.theme-personnel {
  background: rgba(30, 107, 209, 0.08);
}
.credit-visual-box.theme-personnel .mdi {
  color: #1e6bd1;
}

.credit-visual-box.theme-professionnel {
  background: rgba(22, 163, 74, 0.08);
}
.credit-visual-box.theme-professionnel .mdi {
  color: #16a34a;
}

.credit-visual-box.theme-auto {
  background: rgba(202, 138, 4, 0.1);
}
.credit-visual-box.theme-auto .mdi {
  color: #ca8a04;
}

.credit-visual-box.theme-immobilier {
  background: rgba(126, 34, 206, 0.08);
}
.credit-visual-box.theme-immobilier .mdi {
  color: #7e22ce;
}

.credit-visual-box.theme-etudes {
  background: rgba(219, 39, 119, 0.08);
}
.credit-visual-box.theme-etudes .mdi {
  color: #db2777;
}

.credit-visual-box.theme-sante {
  background: rgba(8, 145, 178, 0.08);
}
.credit-visual-box.theme-sante .mdi {
  color: #0891b2;
}

/* - Credit Category Label ------- */
.credit-category-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.credit-category-label.theme-personnel {
  color: #1e6bd1;
}
.credit-category-label.theme-professionnel {
  color: #16a34a;
}
.credit-category-label.theme-auto {
  color: #ca8a04;
}
.credit-category-label.theme-immobilier {
  color: #7e22ce;
}
.credit-category-label.theme-etudes {
  color: #db2777;
}
.credit-category-label.theme-sante {
  color: #0891b2;
}

/* - Credit Info Grid --------── */
.credit-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.credit-info-card {
  background: #f8f9fb;
  border-radius: var(--r-md);
  padding: 14px 16px;
  border: 1px solid var(--outline-variant);
}
.credit-info-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
  margin-bottom: 4px;
}
.credit-info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* Accented response cell */
.credit-info-card.accent-personnel {
  background: rgba(30, 107, 209, 0.06);
  border-color: rgba(30, 107, 209, 0.15);
}
.credit-info-card.accent-personnel .credit-info-value {
  color: #1e6bd1;
}

.credit-info-card.accent-professionnel {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.15);
}
.credit-info-card.accent-professionnel .credit-info-value {
  color: #16a34a;
}

.credit-info-card.accent-auto {
  background: rgba(202, 138, 4, 0.08);
  border-color: rgba(202, 138, 4, 0.18);
}
.credit-info-card.accent-auto .credit-info-value {
  color: #ca8a04;
}

.credit-info-card.accent-immobilier {
  background: rgba(126, 34, 206, 0.06);
  border-color: rgba(126, 34, 206, 0.15);
}
.credit-info-card.accent-immobilier .credit-info-value {
  color: #7e22ce;
}

.credit-info-card.accent-etudes {
  background: rgba(219, 39, 119, 0.06);
  border-color: rgba(219, 39, 119, 0.15);
}
.credit-info-card.accent-etudes .credit-info-value {
  color: #db2777;
}

.credit-info-card.accent-sante {
  background: rgba(8, 145, 178, 0.06);
  border-color: rgba(8, 145, 178, 0.15);
}
.credit-info-card.accent-sante .credit-info-value {
  color: #0891b2;
}

/* - Feature Checklist --------─ */
.credit-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credit-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
}
.credit-features-list li .mdi {
  font-size: 18px;
  flex-shrink: 0;
}

.credit-features-list.theme-personnel li .mdi {
  color: #1e6bd1;
}
.credit-features-list.theme-professionnel li .mdi {
  color: #16a34a;
}
.credit-features-list.theme-auto li .mdi {
  color: #ca8a04;
}
.credit-features-list.theme-immobilier li .mdi {
  color: #7e22ce;
}
.credit-features-list.theme-etudes li .mdi {
  color: #db2777;
}
.credit-features-list.theme-sante li .mdi {
  color: #0891b2;
}

/* - CTA Buttons for Tabs -------─ */
.btn-simulate-credit {
  background: var(--primary);
  color: #ffffff !important;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-simulate-credit:hover {
  background: #0a2540;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 15, 34, 0.25);
  color: #ffffff !important;
}
.btn-request-credit {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-request-credit:hover {
  background: var(--primary);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* - Responsive ----------── */
@media (max-width: 991px) {
  .credit-tabs-nav {
    justify-content: center;
  }
  .credit-tab-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  .credit-visual-box {
    max-width: 200px;
    margin: 0 auto;
  }
  .credit-visual-box .mdi {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .credit-info-grid {
    grid-template-columns: 1fr;
  }
}

/* - 25. FAQ PAGE --------------── */
.faq-hero-section {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, var(--primary) 0%, #0a2540 100%);
  padding: 80px 0 60px;
}
.faq-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.faq-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.faq-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 4px 4px 4px 20px;
  transition: var(--transition);
}
.faq-search-box:focus-within {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}
.faq-search-box .mdi {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  flex-shrink: 0;
}
.faq-search-input {
  background: none;
  border: none;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  width: 100%;
  outline: none;
}
.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 32px 0 8px;
}
.faq-cat-btn {
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.faq-cat-btn:hover {
  border-color: var(--secondary);
  color: var(--primary);
  background: rgba(245, 166, 35, 0.06);
}
.faq-cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.faq-cat-btn .mdi {
  font-size: 16px;
}
.faq-results-info {
  font-size: 13px;
  color: var(--on-surface-variant);
  padding: 8px 0 24px;
  display: none;
}
.faq-category-group {
  margin-bottom: 32px;
}
.faq-category-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-category-title .mdi {
  font-size: 22px;
  color: var(--secondary);
}
.faq-item[style*="display:none"] + .faq-item {
  border-top: none;
}
@media (max-width: 768px) {
  .faq-hero-section {
    min-height: 280px;
    padding: 60px 0 40px;
  }
  .faq-category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
    gap: 6px;
  }
  .faq-cat-btn {
    flex-shrink: 0;
    font-size: 12px;
    padding: 8px 14px;
  }
  .faq-search-box {
    margin-left: 16px;
    margin-right: 16px;
  }
}
