html, body { background: #0B1120 !important; margin: 0; overflow-x: hidden !important; max-width: 100vw !important; }

#sec-content {
  --sec-dark: #0B1120;
  --sec-surface: #131B2E;
  --sec-border: #1E293B;
  --sec-orange: #EC5A22;
  --sec-blue: #00A9EA;
  --sec-green: #16A34A;
  --sec-gold: #F5A11A;
  --sec-purple: #8C278A;
  --sec-light: #F8FAFC;
  --sec-light-surface: #FFFFFF;
  --sec-light-border: #E2E8F0;
  --sec-text-on-light: #1E293B;
  --sec-text-muted-light: #64748B;
  --sec-muted: #94A3B8;
  background: var(--sec-dark);
  color: #E2E8F0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
#sec-content .sec-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABEL ===== */
#sec-content .sec-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sec-orange);
  margin-bottom: 12px;
  text-align: center;
}

/* ===== SECTION TITLE ===== */
#sec-content .sec-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--sec-text-on-light);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
#sec-content .sec-section-title-dark {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
#sec-content .sec-section-desc {
  font-size: 17px;
  color: var(--sec-text-muted-light);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}
#sec-content .sec-section-desc-dark {
  font-size: 17px;
  color: var(--sec-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}

/* ===== HERO (dark) ===== */
#sec-content .sec-hero {
  padding: 108px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(327deg,rgba(33,0,75,0.20) 3%,rgba(60,0,136,0) 40%),linear-gradient(246deg,rgba(236,90,34,0.08) 0%,rgba(209,25,80,0) 36%),linear-gradient(148deg,rgba(0,169,234,0.04) 0%,transparent 60%),var(--sec-dark);
}

#sec-content .sec-hero h1 {
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 800 !important;
  letter-spacing: -1.5px !important;
  line-height: 1.1 !important;
  margin: 0 0 16px !important;
  color: #fff !important;
  position: relative;
}
#sec-content .sec-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(226,232,240,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ===== COMPLIANCE CARDS (light) ===== */
#sec-content .sec-compliance {
  padding: 80px 0;
  background: var(--sec-light);
}
#sec-content .sec-compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
#sec-content .sec-cert-card {
  background: var(--sec-light-surface);
  border: 1px solid var(--sec-light-border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sec-content .sec-cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#sec-content .sec-cert-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#sec-content .sec-cert-card:hover::after { transform: scaleX(1); }
#sec-content .sec-cert-card:nth-child(1)::after { background: var(--sec-orange); }
#sec-content .sec-cert-card:nth-child(2)::after { background: var(--sec-blue); }
#sec-content .sec-cert-card:nth-child(3)::after { background: var(--sec-green); }
#sec-content .sec-cert-card:nth-child(4)::after { background: var(--sec-purple); }

#sec-content .sec-cert-logo {
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}
#sec-content .sec-cert-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sec-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#sec-content .sec-cert-card p {
  font-size: 14px;
  color: var(--sec-text-muted-light);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
#sec-content .sec-cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
#sec-content .sec-cert-card:nth-child(1) .sec-cert-btn { color: var(--sec-orange); background: rgba(236,90,34,0.08); }
#sec-content .sec-cert-card:nth-child(2) .sec-cert-btn { color: var(--sec-blue); background: rgba(0,169,234,0.08); }
#sec-content .sec-cert-card:nth-child(3) .sec-cert-btn { color: var(--sec-green); background: rgba(22,163,74,0.08); }
#sec-content .sec-cert-card:nth-child(4) .sec-cert-btn { color: var(--sec-purple); background: rgba(140,39,138,0.08); }
#sec-content .sec-cert-btn:hover { transform: translateY(-1px); }

/* ===== SECURITY FEATURES (dark) ===== */
#sec-content .sec-features {
  padding: 80px 0;
  background: #FFFFFF;
}
#sec-content .sec-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#sec-content .sec-feat-card {
  background: var(--sec-light);
  border: 1px solid var(--sec-light-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#sec-content .sec-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#sec-content .sec-feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#sec-content .sec-feat-card:hover::after { transform: scaleX(1); }
#sec-content .sec-feat-card:nth-child(1)::after { background: var(--sec-orange); }
#sec-content .sec-feat-card:nth-child(2)::after { background: var(--sec-blue); }
#sec-content .sec-feat-card:nth-child(3)::after { background: var(--sec-green); }
#sec-content .sec-feat-card:nth-child(4)::after { background: var(--sec-gold); }
#sec-content .sec-feat-card:nth-child(5)::after { background: var(--sec-purple); }
#sec-content .sec-feat-card:nth-child(6)::after { background: var(--sec-blue); }

#sec-content .sec-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#sec-content .sec-feat-card:nth-child(1) .sec-feat-icon { background: rgba(236,90,34,0.08); }
#sec-content .sec-feat-card:nth-child(1) .sec-feat-icon svg { stroke: var(--sec-orange); }
#sec-content .sec-feat-card:nth-child(2) .sec-feat-icon { background: rgba(0,169,234,0.08); }
#sec-content .sec-feat-card:nth-child(2) .sec-feat-icon svg { stroke: var(--sec-blue); }
#sec-content .sec-feat-card:nth-child(3) .sec-feat-icon { background: rgba(22,163,74,0.08); }
#sec-content .sec-feat-card:nth-child(3) .sec-feat-icon svg { stroke: var(--sec-green); }
#sec-content .sec-feat-card:nth-child(4) .sec-feat-icon { background: rgba(245,161,26,0.08); }
#sec-content .sec-feat-card:nth-child(4) .sec-feat-icon svg { stroke: var(--sec-gold); }
#sec-content .sec-feat-card:nth-child(5) .sec-feat-icon { background: rgba(140,39,138,0.08); }
#sec-content .sec-feat-card:nth-child(5) .sec-feat-icon svg { stroke: var(--sec-purple); }
#sec-content .sec-feat-card:nth-child(6) .sec-feat-icon { background: rgba(0,169,234,0.08); }
#sec-content .sec-feat-card:nth-child(6) .sec-feat-icon svg { stroke: var(--sec-blue); }

#sec-content .sec-feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sec-text-on-light);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
#sec-content .sec-feat-card p {
  font-size: 14px;
  color: var(--sec-text-muted-light);
  line-height: 1.6;
  margin: 0;
}
/* Bento-stat pills */
#sec-content .sec-feat-stat {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
#sec-content .sec-feat-card:nth-child(1) .sec-feat-stat { color: var(--sec-orange); background: rgba(236,90,34,0.08); }
#sec-content .sec-feat-card:nth-child(2) .sec-feat-stat { color: var(--sec-blue); background: rgba(0,169,234,0.08); }
#sec-content .sec-feat-card:nth-child(3) .sec-feat-stat { color: var(--sec-green); background: rgba(22,163,74,0.08); }
#sec-content .sec-feat-card:nth-child(4) .sec-feat-stat { color: var(--sec-gold); background: rgba(245,161,26,0.08); }
#sec-content .sec-feat-card:nth-child(5) .sec-feat-stat { color: var(--sec-purple); background: rgba(140,39,138,0.08); }
#sec-content .sec-feat-card:nth-child(6) .sec-feat-stat { color: var(--sec-blue); background: rgba(0,169,234,0.08); }

/* ===== CTA (light) ===== */
#sec-content .sec-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#sec-content .sec-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--sec-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
#sec-content .sec-cta-btn:hover {
  background: #D4501E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #sec-content .sec-compliance-grid { grid-template-columns: repeat(2, 1fr); }
  #sec-content .sec-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #sec-content .sec-hero { padding: 80px 0 40px; }
  #sec-content .sec-compliance-grid { grid-template-columns: 1fr; }
  #sec-content .sec-features-grid { grid-template-columns: 1fr; }
}