/* ─────────────────────────────────────────────────────────────
   ASEC WordPress Theme — Production-Ready CSS
   Preserves visual styling, premium typography, soft shadows, 
   large whitespace, and transitions.
───────────────────────────────────────────────────────────── */

:root {
  --navy:        #18356D;
  --navy-dark:   #0F234A;
  --navy-light:  #1e3f7a;
  --gold:        #D4AF37;
  --gold-dark:   #B89730;
  --gold-tint:   #FBF5DC;
  --white:       #FFFFFF;

  --grey-50:  #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-400: #9CA3AF;
  --grey-600: #4B5563;
  --grey-800: #1F2937;
  --grey-900: #111827;

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  20px;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 4px 12px rgba(24,53,109,0.06);
  --shadow-md:  0 8px 24px rgba(24,53,109,0.09);
  --shadow-lg:  0 16px 40px rgba(24,53,109,0.12);
  --shadow-card-hover: 0 12px 32px rgba(24,53,109,0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 400ms;
}

/* ── LAYOUT UTILITIES ── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(64px, 9vw, 112px);
}
.section--tight {
  padding-block: clamp(48px, 6vw, 72px);
}
.section--sm {
  padding-block: 36px;
}
.section--grey  { background: var(--grey-50); }
.section--navy  { background: var(--navy-dark); }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); font-weight: 800; }
.h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800; }
.h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
.h4 { font-size: 1rem; font-weight: 700; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--grey-600);
  line-height: 1.7;
}
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--grey-600); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(180, 151, 48, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.arr {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arr { transform: translateX(3px); }

/* ── SCROLL REVEALS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1.visible { transition-delay: 80ms; }
.reveal-d2.visible { transition-delay: 160ms; }
.reveal-d3.visible { transition-delay: 240ms; }
.reveal-d4.visible { transition-delay: 320ms; }

/* ── TOP CONTACT STRIP ── */
.topstrip {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  padding: 9px 0;
}
.topstrip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topstrip-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topstrip-contacts a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.topstrip-contacts a:hover { color: var(--gold); }
.topstrip-contacts svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
  fill: var(--gold);
  opacity: 0.8;
}

/* ── STICKY NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--t-base);
}
.site-nav.stuck { box-shadow: var(--shadow-sm); }
.nav-inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-600);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav-links li a:hover,
.nav-links li.current-menu-item a {
  color: var(--navy);
}
.nav-links li a:hover::after,
.nav-links li.current-menu-item a::after {
  transform: scaleX(1);
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Panel */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 16px var(--gutter) 24px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav li a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-800);
  padding: 11px 0;
  border-bottom: 1px solid var(--grey-100);
}

/* ── HERO SECTION ── */
.hero {
  padding-block: clamp(72px, 10vw, 120px);
  background: var(--white);
}
.hero-cols {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
.hero-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.hero-image:hover img { transform: scale(1.03); }
.hero-divider {
  height: 1px;
  background: var(--grey-200);
  margin-block: 24px;
}
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-600);
}
.hero-trust-item svg {
  width: 14px; height: 14px;
  fill: var(--gold-dark);
  flex-shrink: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.hero-stat {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-num em { color: var(--gold-dark); font-style: normal; }
.hero-stat-label { font-size: 0.775rem; color: var(--grey-400); }

/* ── TRUST BAR ── */
.trustbar {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding-block: 36px;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.trustbar-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trustbar-item:last-child { border-right: none; }
.trustbar-accent {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 12px;
  border-radius: 2px;
}
.trustbar-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.trustbar-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ── QUALIFICATION CARDS ── */
.sec-header { max-width: 580px; margin-bottom: 56px; }
.sec-header--center { text-align: center; margin-inline: auto; }
.sec-header .h2 { margin-bottom: 14px; }
.quals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.qual-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-fast);
}
.qual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transition: background var(--t-fast);
}
.qual-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(24,53,109,0.15);
}
.qual-card:hover::before { background: var(--gold); }
.qual-code {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-tint);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 14px;
  align-self: flex-start;
}
.qual-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.qual-title a { color: inherit; }
.qual-desc {
  font-size: 0.855rem;
  color: var(--grey-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 22px;
}
.qual-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t-fast), gap var(--t-fast);
}
.qual-link:hover { color: var(--gold-dark); gap: 9px; }

/* ── WHY CHOOSE ASEC ── */
.why-cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
}
.why-item:first-child { border-top: 1px solid var(--grey-200); }
.why-num {
  width: 30px; height: 30px;
  background: var(--gold-tint);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-text h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.why-text p { font-size: 0.855rem; color: var(--grey-600); line-height: 1.6; }

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 42px; height: 42px;
  background: var(--navy-dark);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── ABOUT SECTION ── */
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.about-img:hover img { transform: scale(1.03); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-200);
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  padding: 16px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.stat-num em { color: var(--gold-dark); font-style: normal; }
.stat-label { font-size: 0.775rem; color: var(--grey-400); }

/* ── FAQ ACCORDION ── */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-intro-sticky { position: sticky; top: 82px; }
.faq-list { display: flex; flex-direction: column; }
details.faq-item { border-bottom: 1px solid var(--grey-200); }
details.faq-item:first-of-type { border-top: 1px solid var(--grey-200); }
summary.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-800);
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }
summary.faq-q:hover { color: var(--navy); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400);
  font-size: 1.05rem;
  transition: transform var(--t-base) var(--ease), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease);
}
details.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body-inner p { padding-bottom: 20px; font-size: 0.9rem; color: var(--grey-600); line-height: 1.72; }

/* ── FINAL CTA SECTION ── */
.cta-section {
  background: var(--navy-dark);
  padding-block: clamp(72px, 9vw, 104px);
  text-align: center;
}
.cta-section .label { color: var(--gold); }
.cta-section .label::before { background: rgba(212,175,55,0.5); }
.cta-section .h2 { color: var(--white); margin-bottom: 16px; max-width: 620px; margin-inline: auto; }
.cta-section .lead { color: rgba(255,255,255,0.65); max-width: 480px; margin-inline: auto; margin-bottom: 36px; }

/* ── FOOTER STYLE ── */
.site-footer {
  background: var(--grey-900);
  padding-block: 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-about p { font-size: 0.845rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-top: 14px; }
.footer-head {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-size: 0.845rem; color: rgba(255,255,255,0.42); transition: color var(--t-fast); }
.footer-links li a:hover { color: var(--gold); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.845rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 9px;
}
.footer-contact-row svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row a { transition: color var(--t-fast); }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal li a { font-size: 0.78rem; color: rgba(255,255,255,0.22); transition: color var(--t-fast); }
.footer-legal li a:hover { color: rgba(255,255,255,0.55); }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
  z-index: 300;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.48); animation: none; }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.32); }
  50%       { box-shadow: 0 6px 28px rgba(37,211,102,0.52); }
}

/* ── MODAL OVERLAY & BOX ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 48, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(14px);
  transition: transform var(--t-slow) var(--ease);
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-head { background: var(--navy-dark); padding: 24px 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-head h2 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.modal-head p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.modal-close { width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 1.1rem; flex-shrink: 0; }
.modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-body { padding: 26px 28px 28px; }

/* ── FORM CONTROL CUSTOM STYLES ── */
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.f-group { margin-bottom: 13px; }
.f-label { display: block; font-family: var(--font-head); font-size: 0.77rem; font-weight: 700; color: var(--grey-800); margin-bottom: 5px; }
.f-control {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-900);
  background: var(--grey-50);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.f-control:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(24,53,109,0.08);
}
.f-success {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--r-md);
  color: #065F46;
  font-size: 0.87rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.f-success svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.f-note { text-align: center; font-size: 0.76rem; color: var(--grey-400); margin-top: 10px; }

/* ── BREADCRUMB STYLE ── */
.breadcrumb-wrap {
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  padding-block: 14px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-400);
}
.breadcrumb-item a { color: var(--grey-600); transition: color var(--t-fast); }
.breadcrumb-item a:hover { color: var(--navy); }
.breadcrumb-item::after { content: '/'; margin-left: 8px; }
.breadcrumb-item:last-child::after { display: none; }
.breadcrumb-item.active { color: var(--grey-800); font-weight: 600; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  .quals-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-cols { grid-template-columns: 1fr; }
  .why-cols { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .faq-intro-sticky { position: static; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .trustbar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.09); }
  .trustbar-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .quals-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .topstrip-contacts { display: none; }
  .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .trustbar-grid { grid-template-columns: 1fr; }
  .trustbar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .trustbar-item:last-child { border-bottom: none; }
  .hero-stats { grid-template-columns: 1fr; }
}
