/*
Theme Name: CSSMP PASSMI
Theme URI: https://cssmp.passminc.com
Author: Philippine Alliance for Safety & Security Management, Inc.
Author URI: https://passminc.com
Description: Official website theme for the CSSMP (Certified Security & Safety Management Professional) program by PASSMI. Fully compatible with PageLayer, Elementor, and the WordPress Block Editor (Gutenberg). Uses the official PASSMI brand colors and Poppins typography.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cssmp-passmi
Tags: one-page, custom-colors, custom-logo, full-width-template, education, professional, page-builder, elementor, pagelayer

Securitas et Salutem — Safety and Security for All.
*/

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── BRAND TOKENS ─── */
:root {
  --navy:       #0033A0;
  --green:      #00C853;
  --blue:       #0077B6;
  --teal:       #00A651;
  --light:      #F2F2F2;
  --white:      #ffffff;
  --dark:       #0a0f1e;
  --grad-main:  linear-gradient(135deg, #0033A0 0%, #0077B6 60%, #00A651 100%);
  --grad-green: linear-gradient(135deg, #00A651 0%, #00C853 100%);
  --grad-hero:  linear-gradient(160deg, #00133a 0%, #00277a 45%, #00461a 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #0a0f1e;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0f1e; }
::-webkit-scrollbar-thumb { background: #00C853; border-radius: 3px; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Full-width page builder canvas */
.page-builder-page .site-content,
.elementor-page .site-content,
.pagelayer-page .site-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* ─── UTILITY CLASSES (usable inside PageLayer / Elementor HTML widgets) ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #00C853; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(135deg, #00A651, #00C853);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #00A651, #00C853);
  color: #fff; padding: 14px 32px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,200,83,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,83,.5); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 13px 32px; border-radius: 50px; font-size: 14px;
  font-weight: 600; text-decoration: none;
  border: 2px solid rgba(255,255,255,.4); cursor: pointer; transition: all .3s;
}
.btn-outline:hover { border-color: #00C853; color: #00C853; transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #0033A0;
  padding: 14px 32px; border-radius: 50px; font-size: 14px;
  font-weight: 700; text-decoration: none;
  transition: all .3s; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); color: #0033A0; }

/* ─── TOPBAR ─── */
.site-topbar {
  background: #0033A0; color: rgba(255,255,255,.7);
  font-size: 12px; padding: 8px 0; position: relative; z-index: 200;
}
.site-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.site-topbar a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.site-topbar a:hover { color: #00C853; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* ─── STICKY NAV ─── */
.site-header {
  position: sticky; top: 0; z-index: 150;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,51,160,.1);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 52px; object-fit: contain; display: block; }
.nav-logo-divider { width: 1px; height: 40px; background: #dde; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .org-name {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: #0033A0; text-transform: uppercase;
}
.nav-logo-text .org-subtitle { font-size: 10px; color: #667; letter-spacing: .3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: #334;
  text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links a.active {
  color: #0033A0; background: rgba(0,51,160,.06); font-weight: 700;
}
/* Remove default WP menu list styles */
.nav-links ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav-links li { list-style: none; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0033A0, #0077B6, #00A651);
  color: #fff; padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 700; text-decoration: none; margin-left: 8px;
  transition: all .3s; box-shadow: 0 3px 12px rgba(0,51,160,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,51,160,.4); color: #fff; }

/* Mobile hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #0033A0; border-radius: 2px; transition: all .3s;
}

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(160deg, #00133a 0%, #00277a 45%, #00461a 100%);
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shapes .shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,.15), transparent 70%);
}
.hero-bg-shapes .s1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-bg-shapes .s2 {
  width: 500px; height: 500px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,119,182,.2), transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-diagonal {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 120px;
  background: #fff; clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 120px 0 180px;
}
.hero-left { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: 50px;
  padding: 8px 18px; font-size: 12px; font-weight: 600;
  color: #00C853; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px; animation: fadeInUp .8s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00C853;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,200,83,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(0,200,83,0); }
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  line-height: 1.1; margin-bottom: 24px;
  animation: fadeInUp .8s .2s ease both;
}
.hero-title .accent {
  background: linear-gradient(135deg, #00A651, #00C853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.75);
  margin-bottom: 40px; max-width: 480px;
  animation: fadeInUp .8s .4s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .8s .6s ease both; }
.hero-stats { display: flex; gap: 32px; margin-top: 56px; animation: fadeInUp .8s .8s ease both; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-num span { color: #00C853; }
.hero-stat-label {
  font-size: 11px; color: rgba(255,255,255,.5);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); }

/* Hero card stack */
.hero-right { display: flex; justify-content: center; align-items: center; animation: fadeInUp .8s .3s ease both; }
.hero-card-stack { position: relative; width: 360px; height: 480px; }
.hero-card { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hero-card.card-main {
  width: 320px; top: 20px; left: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px); padding: 32px; color: #fff;
}
.hero-card.card-back  { width: 300px; top: 0; left: 40px; height: 420px; background: rgba(0,200,83,.12); border: 1px solid rgba(0,200,83,.2); z-index: -1; }
.hero-card.card-back2 { width: 280px; top: -20px; left: 60px; height: 400px; background: rgba(0,119,182,.12); border: 1px solid rgba(0,119,182,.2); z-index: -2; }
.card-main-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.card-main-logo img { height: 44px; }
.card-program-badge {
  background: linear-gradient(135deg, #00A651, #00C853); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; display: inline-block; margin-bottom: 20px;
}
.card-main h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.card-main p  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 24px; }
.card-features { display: flex; flex-direction: column; gap: 10px; }
.card-feature { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,.8); }
.card-feature-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(0,200,83,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.hero-float-badge {
  position: absolute; bottom: 30px; right: -20px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-float-badge .fbi { font-size: 24px; }
.hero-float-badge-text span:first-child { font-size: 18px; font-weight: 900; color: #0033A0; display: block; }
.hero-float-badge-text span:last-child  { font-size: 10px; color: #667; text-transform: uppercase; letter-spacing: 1px; }

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

/* ─── TRUST BAR ─── */
.trust-bar { background: #F2F2F2; border-bottom: 1px solid #e0e4ef; padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: #0033A0; padding: 0 24px; }
.trust-item:not(:last-child) { border-right: 1px solid #d0d4e0; }
.trust-icon { font-size: 20px; }
.trust-item span { color: #667; font-weight: 400; font-size: 12px; }

/* ─── ABOUT ─── */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 500px; }
.about-visual-main {
  position: absolute; top: 0; left: 0; right: 40px; bottom: 40px;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #0033A0, #0077B6, #00A651);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-main img { width: 200px; }
.about-visual-accent {
  position: absolute; bottom: 0; right: 0; width: 200px; height: 180px;
  border-radius: 20px; background: linear-gradient(135deg, #00A651, #00C853);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 12px 40px rgba(0,166,81,.4);
}
.about-visual-accent-num   { font-size: 48px; font-weight: 900; line-height: 1; }
.about-visual-accent-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: .85; text-align: center; padding: 0 12px; }
.about-visual-dots {
  position: absolute; top: -20px; left: -20px; width: 100px; height: 100px;
  background-image: radial-gradient(#0033A0 1px, transparent 1px);
  background-size: 14px 14px; opacity: .2;
}
.about-title { font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #0033A0; }
.about-body  { font-size: 15px; line-height: 1.8; color: #445; margin-bottom: 32px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.about-pillar { background: #F2F2F2; border-radius: 16px; padding: 20px; border-left: 4px solid #0033A0; }
.about-pillar h4 { font-size: 14px; font-weight: 700; color: #0033A0; margin-bottom: 6px; }
.about-pillar p  { font-size: 12px; color: #667; line-height: 1.5; }

/* ─── PROGRAM ─── */
.program-section { background: #0a0f1e; padding: 100px 0; position: relative; overflow: hidden; }
.program-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(0,51,160,.3), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(0,166,81,.2), transparent);
}
.program-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.program-inner   { position: relative; z-index: 2; }
.program-header  { text-align: center; margin-bottom: 64px; }
.program-header .section-label { justify-content: center; }
.program-title   { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.program-title .accent { color: #00C853; }
.program-sub     { font-size: 16px; color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }
.program-cards   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.program-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px; padding: 40px; backdrop-filter: blur(10px);
  transition: all .3s; position: relative; overflow: hidden;
}
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg,#00A651,#00C853); opacity: 0; transition: opacity .3s; }
.program-card:hover { border-color: rgba(0,200,83,.25); background: rgba(255,255,255,.07); transform: translateY(-4px); }
.program-card:hover::before { opacity: 1; }
.program-icon { width: 60px; height: 60px; border-radius: 18px; background: rgba(0,200,83,.12); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; border: 1px solid rgba(0,200,83,.2); }
.program-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.program-card p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.program-tags    { display: flex; flex-wrap: wrap; gap: 8px; }
.program-tag     { font-size: 11px; font-weight: 600; background: rgba(0,119,182,.2); color: #7bb8ff; border: 1px solid rgba(0,119,182,.3); padding: 4px 12px; border-radius: 50px; }
.program-cta-bar { display: flex; align-items: center; justify-content: space-between; background: rgba(0,200,83,.08); border: 1px solid rgba(0,200,83,.2); border-radius: 20px; padding: 28px 36px; }
.program-cta-bar-text h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.program-cta-bar-text p  { font-size: 14px; color: rgba(255,255,255,.55); }

/* ─── HOW IT WORKS ─── */
.how-section  { padding: 100px 0; background: #F2F2F2; }
.how-header   { text-align: center; margin-bottom: 64px; }
.how-title    { font-size: 40px; font-weight: 800; color: #0033A0; margin-bottom: 16px; }
.how-steps    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-line     { position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #0033A0, #00A651); z-index: 0; }
.how-step     { text-align: center; position: relative; z-index: 1; }
.how-step-num { width: 80px; height: 80px; border-radius: 50%; background: #fff; border: 3px solid #0033A0; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: #0033A0; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(0,51,160,.15); position: relative; }
.how-step-num::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: rgba(0,51,160,.05); }
.how-step h4  { font-size: 16px; font-weight: 700; color: #0033A0; margin-bottom: 8px; }
.how-step p   { font-size: 13px; color: #557; line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 100px 0; }
.test-header  { text-align: center; margin-bottom: 60px; }
.test-title   { font-size: 40px; font-weight: 800; color: #0033A0; }
.test-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card    { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid #e8ecf4; box-shadow: 0 4px 20px rgba(0,51,160,.05); transition: all .3s; }
.test-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,51,160,.12); }
.test-stars   { color: #f5a623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.test-text    { font-size: 14px; color: #445; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-author  { display: flex; align-items: center; gap: 12px; }
.test-avatar  { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,#0033A0,#0077B6,#00A651); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.test-author-name { font-size: 14px; font-weight: 700; color: #0033A0; }
.test-author-role { font-size: 12px; color: #778; }

/* ─── CTA ─── */
.cta-section { background: linear-gradient(160deg,#00133a,#00277a 45%,#00461a); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(0,200,83,.15), transparent); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: 48px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-section h2 span { color: #00C853; }
.cta-section > .container > p { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.site-footer { background: #060d22; color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { height: 50px; margin-bottom: 16px; display: block; }
.footer-brand p   { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.footer-social    { display: flex; gap: 12px; }
.footer-social a  { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all .2s; border: 1px solid rgba(255,255,255,.1); }
.footer-social a:hover { background: #00C853; color: #fff; border-color: #00C853; }
.footer-col h4    { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul    { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: #00C853; }
.footer-bottom    { border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-logo { display: flex; align-items: center; gap: 10px; }
.footer-bottom-logo img { height: 28px;  }

/* ─── PAGE BUILDER COMPATIBILITY ─── */
/* PageLayer full width */
.pagelayer-cont { max-width: 100% !important; }
/* Elementor full width */
.elementor-section-stretched { width: 100% !important; left: 0 !important; }
/* Remove default padding on builder pages */
.elementor-page #page,
.pagelayer-page #page { padding: 0; }

/* ─── WORDPRESS CORE ─── */
img { max-width: 100%; height: auto; }
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.alignleft  { float: left;  margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left:  24px; margin-bottom: 16px; }
.screen-reader-text { border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px; }

/* ─── RESPONSIVE ─── */
/* ── NEW HOMEPAGE SECTIONS ── */
.nav-login {
    display: inline-flex; align-items: center;
    background: transparent; color: var(--navy);
    padding: 10px 20px; border-radius: 50px; font-size: 13px;
    font-weight: 600; text-decoration: none;
    border: 2px solid rgba(0,51,160,.25); transition: all .3s;
  }

.nav-login:hover { border-color: var(--navy); background: rgba(0,51,160,.06); }

.card-program-badge {
    background: var(--grad-green); color: white;
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
    display: inline-block; margin-bottom: 20px;
  }

.about-visual-main {
    position: absolute; top: 0; left: 0; right: 40px; bottom: 40px;
    border-radius: 24px; overflow: hidden;
    background: var(--grad-main);
    display: flex; align-items: center; justify-content: center;
  }

.about-visual-main img { width: 200px; }

.about-visual-dots {
    position: absolute; top: -20px; left: -20px; width: 100px; height: 100px;
    background-image: radial-gradient(var(--navy) 1px, transparent 1px);
    background-size: 14px 14px; opacity: .2;
  }

.program-bg {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 600px 400px at 80% 50%, rgba(0,51,160,.3), transparent),
      radial-gradient(ellipse 400px 400px at 10% 80%, rgba(0,166,81,.2), transparent);
  }

.program-grid-overlay {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
  }

.program-inner { position: relative; z-index: 2; }

.program-header { text-align: center; margin-bottom: 64px; }

.program-header .section-label { justify-content: center; }

.program-title { font-size: 44px; font-weight: 900; color: var(--white); margin-bottom: 16px; }

.program-title .accent { color: var(--green); }

.program-sub { font-size: 16px; color: rgba(255,255,255,.6); max-width: 620px; margin: 0 auto; }

/* Program Overview Stats */
.program-overview {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08); border-radius: 20px; overflow: hidden;
  margin-bottom: 64px; border: 1px solid rgba(255,255,255,.08);
}

.program-overview-stat {
    background: rgba(255,255,255,.03); padding: 28px 24px; text-align: center;
    transition: background .3s;
  }

.program-overview-stat:hover { background: rgba(255,255,255,.06); }

.program-overview-num {
    font-size: 36px; font-weight: 900; color: var(--green); line-height: 1;
    margin-bottom: 6px;
  }

.program-overview-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

/* Module Cards */
  .modules-label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 20px; display: block;
  }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.modules-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Who Should Attend - global (desktop) */
.program-audience {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px;
}

.program-audience-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; padding: 28px;
  }

.program-audience-card h4 {
    font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }

.audience-list { display: flex; flex-direction: column; gap: 8px; }

.audience-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,.6);
  }

.audience-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); flex-shrink: 0;
  }

/* Admission */
.program-admission {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px;
}

.admission-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; padding: 28px;
  }

.admission-card h4 {
    font-size: 14px; font-weight: 700; color: var(--green);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
  }

.admission-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5;
    margin-bottom: 10px;
  }

.admission-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* CTA bar */
  .program-cta-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(0,200,83,.08); border: 1px solid rgba(0,200,83,.2);
    border-radius: 20px; padding: 28px 36px;
  }

.program-cta-bar-text h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }

.program-cta-bar-text p { font-size: 14px; color: rgba(255,255,255,.55); }


@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  /* Layout */
  .hero-content  { grid-template-columns: 1fr; gap: 60px; padding: 100px 0 160px; }
  .hero-right    { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { height: 300px; }
  .program-cards { grid-template-columns: 1fr; }
  .how-steps     { grid-template-columns: 1fr 1fr; }
  .how-line      { display: none; }
  .test-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  /* ── NAV ── */
  .nav-links  { display: none; }
  .nav-links.nav-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 24px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    z-index: 200;
  }
  .nav-links.nav-open ul { flex-direction: column; }
  .nav-toggle  { display: flex; }
  .site-topbar { display: none; }
  /* Hide desktop buttons */
  .nav-login-btn,
  .nav-cta { display: none !important; }
  /* Mobile menu action buttons */
  .nav-mobile-btns { display: none; flex-direction: column; gap: 10px;
    margin-top: 14px; padding-top: 14px; border-top: 1px solid #edf0f8; }
  .nav-mob-login {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px 20px; border-radius: 50px; font-size: 14px;
    font-weight: 700; text-decoration: none;
    background: transparent; color: #0033A0; border: 2px solid #0033A0;
  }
  .nav-mob-enroll {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px 20px; border-radius: 50px; font-size: 14px;
    font-weight: 700; text-decoration: none;
    background: linear-gradient(135deg,#00A651,#00C853); color: #fff;
  }

  /* ── TRUST / MISC ── */
  .trust-bar-inner { flex-wrap: wrap; gap: 16px; }
  .trust-item      { border-right: none; }
  .program-cta-bar { flex-direction: column; gap: 20px; text-align: center; }
  .cta-section h2  { font-size: 34px; }

  /* ── PROGRAM OVERVIEW STATS ── */
  /* 2×2 grid so all 4 stats fit on screen */
  .program-overview {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px;
  }
  .program-overview-stat {
    padding: 20px 16px !important;
  }
  .program-overview-num  { font-size: 32px !important; }
  .program-overview-label{ font-size: 10px !important; }

  /* ── MODULES (1 column — no clipping) ── */
  .modules-grid,
  .modules-grid-bottom { grid-template-columns: 1fr !important; }
  .program-card        { width: 100%; box-sizing: border-box; }
  .program-card p,
  .program-card h3     { word-break: break-word; overflow-wrap: break-word; }
  .program-tags        { flex-wrap: wrap; }

  /* ── WHO SHOULD ATTEND: 1 column ── */
  .program-audience {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .program-audience-card { width: 100%; }

  /* ── ADMISSION REQUIREMENTS: 1 column ── */
  .program-admission {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .admission-card { width: 100%; }
}

@media (max-width: 600px) {
  .footer-grid       { grid-template-columns: 1fr; }
  .about-pillars     { grid-template-columns: 1fr; }
  .hero-stats        { flex-direction: column; gap: 20px; }
  .hero-stat-divider { display: none; }
  .footer-bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .modules-grid,
  .modules-grid-bottom { grid-template-columns: 1fr !important; }
  .program-overview    { grid-template-columns: repeat(2, 1fr) !important; }
  .program-audience    { grid-template-columns: 1fr !important; }
  .program-admission   { grid-template-columns: 1fr !important; }
  .hero-right          { display: none; }
}

/* Nav Login Button */
.nav-login-btn { display:inline-flex; align-items:center; gap:7px; background:transparent; color:#0033A0; padding:9px 20px; border-radius:50px; font-size:13px; font-weight:700; text-decoration:none; margin-left:4px; border:2px solid #0033A0; transition:all .25s; }
.nav-login-btn:hover { background:#0033A0; color:#fff; transform:translateY(-1px); box-shadow:0 4px 14px rgba(0,51,160,.25); }