/* ============================================================
   OnlineCyberSecurity – Modern Dark Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --dark:        #060d1f;
  --dark-2:      #0b1730;
  --dark-card:   #0f2040;
  --dark-border: rgba(59,130,246,.18);
  --primary:     #2563eb;
  --primary-h:   #1d4ed8;
  --accent:      #06b6d4;
  --text:        #cbd5e1;
  --text-light:  #e2e8f0;
  --muted:       #64748b;
  --white:       #ffffff;
  --light-bg:    #f1f5f9;
  --light-card:  #ffffff;
  --light-border:#e2e8f0;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(6,13,31,.55);
  --shadow-sm:   0 2px 12px rgba(6,13,31,.35);
  --transition:  .25s ease;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  color: #1e293b;
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; }
a  { text-decoration: none; transition: color var(--transition); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================================
   SPINNER
   ============================================================ */
#spinner {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s, visibility .4s;
}
#spinner.hide { opacity: 0; visibility: hidden; }

.spinner-ring {
  width: 48px; height: 48px;
  border: 4px solid rgba(37,99,235,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.navbar-wrapper.scrolled {
  background: rgba(6,13,31,.96);
  box-shadow: 0 1px 24px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: rgba(6,13,31,.85);
  border-bottom: 1px solid var(--dark-border);
  padding: 6px 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--text);
}
.top-bar a { color: var(--text); }
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); margin-right: 6px; }
@media (max-width: 991px) { .top-bar { display: none !important; } }

.main-nav {
  background: rgba(6,13,31,.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700; font-size: 17px;
  letter-spacing: -.3px;
}
.nav-brand .brand-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white);
  flex-shrink: 0;
}
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links li a {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 7px;
  transition: background var(--transition), color var(--transition);
  display: block;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(37,99,235,.2);
}

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 180px;
  background: rgba(6,13,31,.97);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; color: var(--text) !important;
  font-size: 13.5px; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover { background: rgba(37,99,235,.2); color: var(--white) !important; }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--primary-h) !important; transform: translateY(-1px) !important; }

/* mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all .3s;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 20px;
  background: rgba(6,13,31,.97); border-top: 1px solid var(--dark-border);
  backdrop-filter: blur(14px);
}
.mobile-menu a {
  padding: 10px 0; color: var(--text); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--dark-border);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .m-cta {
  margin-top: 14px; padding: 11px 20px;
  background: var(--primary); color: var(--white) !important;
  border-radius: 8px; text-align: center; font-weight: 600; border-bottom: none;
}

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
  .main-nav { padding: 0 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(6,182,212,.1) 0%, transparent 60%);
}

/* grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--accent); font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  letter-spacing: .4px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before { content: '●'; font-size: 8px; color: #22c55e; }

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  font-size: 17px; color: var(--text); max-width: 560px;
  margin-bottom: 34px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: var(--white); border-radius: 9px; font-weight: 600; font-size: 14.5px;
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
  color: var(--white);
}

.btn-outline {
  padding: 13px 28px;
  background: transparent;
  color: var(--text-light); border-radius: 9px; font-weight: 600; font-size: 14.5px;
  border: 1.5px solid rgba(255,255,255,.22); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.07); color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 14px;
  flex-shrink: 0;
}
.trust-item span {
  color: var(--text); font-size: 13px; font-weight: 500; line-height: 1.35;
}

/* hero right visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-shield {
  width: 320px; height: 320px; position: relative;
}
.shield-outer {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, rgba(6,182,212,.05) 60%, transparent 100%);
  border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  animation: pulse-ring 3s ease-in-out infinite;
}
.shield-inner {
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.3);
  display: flex; align-items: center; justify-content: center;
}
.shield-core {
  font-size: 80px; color: var(--primary);
  filter: drop-shadow(0 0 24px rgba(37,99,235,.6));
  animation: float 4s ease-in-out infinite;
}

.hero-stat-chip {
  position: absolute; background: rgba(11,23,48,.9);
  border: 1px solid var(--dark-border); border-radius: 12px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(10px);
}
.hero-stat-chip .chip-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 14px;
}
.hero-stat-chip .chip-num {
  font-size: 18px; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat-chip .chip-lbl {
  font-size: 11.5px; color: var(--muted); margin-top: 2px;
}
.chip-1 { top: 12%; right: -10%; }
.chip-2 { bottom: 18%; left: -8%; }
.chip-3 { top: 55%; right: -12%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.2); }
  50% { box-shadow: 0 0 0 18px rgba(37,99,235,.0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 32px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--dark-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 34px; font-weight: 800; color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1;
}
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--dark-border); padding: 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--dark-border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--primary);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 18px; height: 2px; background: var(--primary); border-radius: 2px;
}
.section-tag.light { color: var(--accent); }
.section-tag.light::before { background: var(--accent); }

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; line-height: 1.2; letter-spacing: -.3px;
}
.section-title.dark-text { color: #0f172a; }
.section-title.light-text { color: var(--white); }

.section-sub {
  font-size: 15.5px; line-height: 1.7; margin-top: 14px;
  max-width: 580px;
}
.section-sub.muted { color: var(--muted); }
.section-sub.dark { color: #475569; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light-bg); }

.service-card {
  background: var(--light-card);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .3s; height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 8px 32px rgba(37,99,235,.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(6,182,212,.1) 100%);
  border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px;
  margin-bottom: 18px; flex-shrink: 0;
}
.service-card h4 {
  font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: #475569; line-height: 1.65; flex: 1;
  margin-bottom: 16px;
}
.service-bullets { list-style: none; padding: 0; margin: 0 0 20px; }
.service-bullets li {
  font-size: 13.5px; color: #475569; padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.service-bullets li::before {
  content: '✓'; color: var(--primary); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.service-link {
  font-size: 13.5px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: auto;
  transition: gap var(--transition);
}
.service-link:hover { gap: 9px; color: var(--primary-h); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--dark); }

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.step-card:hover {
  border-color: rgba(37,99,235,.45);
  transform: translateY(-3px);
}
.step-num {
  font-size: 72px; font-weight: 900; line-height: 1;
  position: absolute; top: -10px; right: 16px;
  color: rgba(37,99,235,.06);
  user-select: none;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; margin-bottom: 16px;
}
.step-card h4 { font-size: 15.5px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* connector line */
.steps-row { position: relative; }
.steps-row::before {
  content: '';
  position: absolute; top: 40px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: .2;
  z-index: 0;
}
@media (max-width: 991px) { .steps-row::before { display: none; } }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about-section { background: var(--light-bg); }

.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-badge-chip {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(6,13,31,.92); border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 12px 18px;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-chip .chip-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.about-badge-chip .chip-text strong { color: var(--white); font-size: 15px; display: block; }
.about-badge-chip .chip-text span { color: var(--muted); font-size: 12px; }

.about-tabs { border: 1.5px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden; }
.tab-nav {
  display: flex; background: var(--light-bg);
  border-bottom: 1.5px solid var(--light-border);
}
.tab-btn {
  flex: 1; padding: 13px 16px;
  background: none; border: none; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  transition: all .2s; border-bottom: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: var(--white); }
.tab-btn:hover:not(.active) { color: #334155; }
.tab-content-area { padding: 24px; background: var(--white); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane p { font-size: 14.5px; color: #475569; line-height: 1.7; margin-bottom: 10px; }
.tab-pane p:last-child { margin-bottom: 0; }

.pillar-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.pillar-card {
  background: var(--white); border: 1.5px solid var(--light-border);
  border-radius: var(--radius); padding: 20px 16px;
  text-align: center;
}
.pillar-card .p-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.15);
  color: var(--primary); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.pillar-card h5 { font-size: 13.5px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.pillar-card p { font-size: 12.5px; color: #64748b; margin: 0; }
@media (max-width: 575px) { .pillar-row { grid-template-columns: 1fr; } }

/* ============================================================
   TRUST / FEATURES
   ============================================================ */
.features-section { background: var(--dark-2); }

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; gap: 16px;
  transition: border-color .3s;
}
.feature-card:hover { border-color: rgba(37,99,235,.4); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 17px; flex-shrink: 0;
}
.feature-card h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-bg); }

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 26px;
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow .3s, border-color .3s;
}
.testi-card:hover {
  box-shadow: 0 8px 28px rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.3);
}
.testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: #334155; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.testi-quote::before { content: '"'; color: var(--primary); font-size: 28px; line-height: .8; }
.testi-quote::after  { content: '"'; color: var(--primary); font-size: 28px; line-height: .8; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid rgba(37,99,235,.2);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 700; color: #0f172a; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }

.faq-item {
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 12px;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(37,99,235,.35); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 15px; font-weight: 600; color: #0f172a;
  text-align: left; font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.faq-btn:hover { background: var(--light-bg); }
.faq-btn .faq-arrow {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--light-bg); border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 13px; flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-btn .faq-arrow { transform: rotate(180deg); background: var(--primary); color: var(--white); border-color: var(--primary); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-body-inner {
  padding: 0 22px 18px;
  font-size: 14.5px; color: #475569; line-height: 1.7;
}

/* ============================================================
   CTA / CONTACT FORM
   ============================================================ */
.cta-section { background: var(--dark); }

.cta-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 40px;
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--text-light);
}
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--dark-border);
  border-radius: 8px; color: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(37,99,235,.06);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

.btn-full {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: var(--white); border: none; border-radius: 9px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
}
.btn-full:hover { opacity: .9; transform: translateY(-1px); }

.contact-info-row { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 16px;
}
.ci-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 16px; flex-shrink: 0;
}
.ci-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.ci-value { font-size: 14.5px; font-weight: 600; color: var(--white); }
.ci-value a { color: var(--white); }
.ci-value a:hover { color: var(--accent); }

/* light form variant */
.light-form .form-label { color: #334155; }
.light-form .form-input,
.light-form .form-textarea {
  background: var(--white);
  border-color: var(--light-border);
  color: #0f172a;
}
.light-form .form-input:focus,
.light-form .form-textarea:focus { border-color: var(--primary); }
.light-form .form-input::placeholder,
.light-form .form-textarea::placeholder { color: #94a3b8; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--dark);
  padding: 130px 0 60px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(37,99,235,.15) 0%, transparent 70%);
}
.page-header h1 {
  font-size: clamp(30px, 5vw, 48px); font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.breadcrumb-nav a { color: var(--muted); transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .sep { color: var(--muted); }
.breadcrumb-nav .current { color: var(--accent); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark); padding: 64px 0 0;
  border-top: 1px solid var(--dark-border);
}
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-name { font-size: 18px; font-weight: 700; color: var(--white); }
.footer-brand .brand-name span { color: var(--accent); }
.footer-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  font-size: 13.5px; color: var(--muted); margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 9px;
}
.footer-contact-list i { color: var(--accent); margin-top: 2px; }
.footer-contact-list a { color: var(--muted); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-heading { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .4px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-safety {
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--radius); padding: 18px 20px;
  font-size: 13.5px; color: var(--text); line-height: 1.6; margin-bottom: 20px;
}
.footer-safety strong { color: var(--accent); }

.footer-cta-btn {
  display: block; padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: var(--white); text-align: center; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  transition: opacity .2s, transform .2s;
}
.footer-cta-btn:hover { opacity: .9; transform: translateY(-1px); color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0; margin-top: 48px;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: var(--muted); margin: 0; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary);
  color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; visibility: hidden;
  transition: all .3s; z-index: 999;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); background: var(--primary-h); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { flex: 1; padding: 0 12px; }
.col-2 { width: 50%; padding: 0 12px; }
.col-3 { width: 33.333%; padding: 0 12px; }
.col-4 { width: 25%; padding: 0 12px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2x2 { grid-template-columns: repeat(2, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.gap-5 { gap: 48px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .chip-1, .chip-2, .chip-3 { display: none; }
}
@media (max-width: 991px) {
  .hero { padding: 120px 0 70px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 48px; }
  .hero-shield { width: 240px; height: 240px; }
  .shield-inner { width: 160px; height: 160px; }
  .shield-core { font-size: 60px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: repeat(3, 1fr); }
  .about-img-wrap img { height: 350px; }
}
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 260px; }
  .cta-card { padding: 28px 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 479px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: center; }
}

/* ============================================================
   HAPPY CLIENTS – Animated Marquee Reviews
   ============================================================ */

@keyframes marquee-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-left {
  animation: marquee-scroll-left 40s linear infinite;
}
.marquee-right {
  animation: marquee-scroll-right 44s linear infinite;
}

.marquee-outer:hover .marquee-left,
.marquee-outer:hover .marquee-right {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: rgba(37,99,235,.5);
  transform: translateY(-3px);
}

.review-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--dark-border);
  padding-top: 14px;
}
.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}
.review-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}
.review-author span {
  font-size: 12px;
  color: var(--muted);
}
