/*
Theme Name: PASSMI Membership
Theme URI: https://members.passminc.com
Author: Philippine Alliance for Safety & Security Management, Inc.
Author URI: https://passminc.com
Description: Official membership portal theme for PASSMI. Provides the public landing page, navigation, footer, and brand styles. Requires the PASSMI Membership Plugin for all membership logic.
Version: 1.0.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: passmi-membership
Tags: membership, professional, woocommerce

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;
  --bg:         #f0f2f8;
  --border:     #e0e4ef;
  --muted:      #6b7280;
  --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%);
  --grad-navy:  linear-gradient(90deg,  #0033A0 55%, #00A651 100%);
  --shadow-sm:  0 2px 12px rgba(0,51,160,.08);
  --shadow-md:  0 8px 32px rgba(0,51,160,.12);
  --shadow-lg:  0 20px 60px rgba(0,51,160,.16);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

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

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.section-label::before { content:''; display:block; width:28px; height:2px; background:var(--grad-green); flex-shrink:0; }
.section-label.center { justify-content:center; }
.section-label.center::before { display:none; }
.section-label.center::after  { content:''; display:block; width:28px; height:2px; background:var(--grad-green); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700;
  font-family: 'Poppins', sans-serif; text-decoration: none;
  border: none; cursor: pointer; transition: all .28s; letter-spacing: .3px;
}
.btn-primary        { background: var(--grad-green);  color: #fff; box-shadow: 0 4px 20px rgba(0,200,83,.35); }
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,200,83,.5);  color: #fff; }
.btn-navy           { background: var(--grad-main);   color: #fff; box-shadow: 0 4px 16px rgba(0,51,160,.3); }
.btn-navy:hover     { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,51,160,.45); color: #fff; }
.btn-white          { background: #fff; color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover    { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.25); color: var(--navy); }
.btn-outline-white  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-outline-navy   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ─── TOPBAR ─── */
.site-topbar { background: var(--navy); color: rgba(255,255,255,.7); font-size: 12px; padding: 7px 0; }
.site-topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.site-topbar a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.site-topbar a:hover { color: var(--green); }

/* ─── STICKY NAV ─── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,51,160,.14); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.nav-logo  { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 48px; object-fit: contain; display: block; }
.nav-logo-divider { width: 1px; height: 38px; background: var(--border); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.nav-logo-text .org { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--navy); text-transform: uppercase; }
.nav-logo-text .sub { font-size: 10px; color: #889; letter-spacing: .3px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { font-size: 13px; font-weight: 500; color: #445; text-decoration: none; padding: 8px 13px; border-radius: 8px; transition: all .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--navy); background: rgba(0,51,160,.06); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login {
  font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none;
  padding: 8px 16px; border-radius: 8px; transition: all .2s; border: 1.5px solid var(--border);
}
.nav-login:hover { border-color: var(--navy); background: rgba(0,51,160,.04); }
.nav-join {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad-main); color: white; padding: 10px 20px;
  border-radius: 50px; font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,51,160,.28); transition: all .3s;
}
.nav-join:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,51,160,.4); color: white; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.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 DRAWER ─── */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 199; opacity: 0; transition: opacity .3s; }
.mobile-nav.open { opacity: 1; }
.mobile-nav-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--white); padding: 80px 28px 40px;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav a { font-size: 15px; font-weight: 500; color: #334; text-decoration: none; padding: 12px 16px; border-radius: 10px; transition: all .2s; display: block; }
.mobile-nav a:hover { background: rgba(0,51,160,.06); color: var(--navy); font-weight: 700; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 12px 0; }
.mobile-nav .btn { width: 100%; margin-top: 6px; }

/* ─── HERO ─── */
.hero { background: var(--grad-hero); position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-shapes  { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape   { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,83,.14), transparent 70%); }
.hero-shape.s1 { width: 800px; height: 800px; top: -280px; right: -200px; }
.hero-shape.s2 { width: 500px; height: 500px; bottom: -120px; left: -80px; background: radial-gradient(circle, rgba(0,119,182,.18), transparent 70%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 56px 56px;
}
.hero-diagonal { position: absolute; bottom: -2px; left: 0; right: 0; height: 110px; background: #fff; clip-path: polygon(0 100%,100% 0,100% 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 110px 0 170px; }
.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,.18);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 8px 18px; font-size: 11px; font-weight: 700;
  color: var(--green); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px; animation: fadeUp .8s ease both;
}
.badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); 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,4.5vw,62px); font-weight: 900; line-height: 1.08;
  margin-bottom: 22px; animation: fadeUp .8s .15s ease both;
}
.hero-title .accent { background: var(--grad-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub   { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 38px; max-width: 480px; animation: fadeUp .8s .3s ease both; }
.hero-ctas  { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }
.hero-stats {
  display: flex; margin-top: 52px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); overflow: hidden; animation: fadeUp .8s .6s ease both;
}
.hero-stat  { flex: 1; padding: 20px 24px; text-align: center; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat-num   { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,.45); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 5px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ─── ID CARD PREVIEW (hero right) ─── */
.hero-right  { display: flex; justify-content: center; align-items: center; animation: fadeUp .8s .25s ease both; }
.id-card-scene { position: relative; width: 340px; }
.id-card-preview {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(24px); border-radius: 22px; padding: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.45); position: relative; overflow: hidden;
}
.id-card-preview::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad-green); }
.id-card-glow { position:absolute; top:-60px; right:-60px; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle,rgba(0,200,83,.2),transparent 70%); pointer-events:none; }
.id-header      { display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }
.id-org-label   { font-size:9px; font-weight:800; letter-spacing:2px; color:rgba(255,255,255,.45); text-transform:uppercase; line-height:1.5; }
.id-tier-pill   { background:var(--grad-green); color:#fff; font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; padding:5px 13px; border-radius:50px; }
.id-profile     { display:flex; gap:16px; align-items:center; margin-bottom:22px; }
.id-avatar      { width:62px; height:62px; border-radius:14px; background:rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; font-size:30px; border:2px solid rgba(255,255,255,.2); flex-shrink:0; overflow:hidden; }
.id-avatar img  { width:100%; height:100%; object-fit:cover; }
.id-name-block  { color:#fff; }
.id-name        { font-size:16px; font-weight:800; line-height:1.2; margin-bottom:3px; }
.id-postnominal { font-size:11px; color:var(--green); font-weight:700; margin-bottom:5px; }
.id-org-sub     { font-size:10px; color:rgba(255,255,255,.38); line-height:1.4; }
.id-fields      { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:20px; }
.id-field label { font-size:9px; color:rgba(255,255,255,.38); text-transform:uppercase; letter-spacing:1px; display:block; margin-bottom:3px; }
.id-field span  { font-size:12px; color:rgba(255,255,255,.85); font-weight:600; }
.id-field .s-active { color:var(--green); }
.id-footer      { display:flex; justify-content:space-between; align-items:flex-end; border-top:1px solid rgba(255,255,255,.1); padding-top:16px; }
.id-qr-wrap     { width:54px; height:54px; background:#fff; border-radius:8px; display:grid; grid-template-columns:repeat(5,1fr); gap:1.5px; padding:7px; }
.id-qr-cell     { border-radius:1px; }
.id-foot-text   { text-align:right; }
.id-motto       { font-size:9px; font-weight:700; color:rgba(255,255,255,.5); display:block; margin-bottom:3px; font-style:italic; }
.id-verify-url  { font-size:9px; color:rgba(255,255,255,.28); }
.id-float-1, .id-float-2 {
  position:absolute; background:#fff; border-radius:14px; padding:10px 16px;
  box-shadow:0 12px 40px rgba(0,0,0,.28); display:flex; align-items:center; gap:10px;
}
.id-float-1 { top:-18px; right:-24px; animation:float1 3s ease-in-out infinite; }
.id-float-2 { bottom:-16px; left:-24px; animation:float2 3.5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.float-icon { font-size:22px; }
.float-label span:first-child { font-size:13px; font-weight:900; color:var(--navy); display:block; line-height:1.2; }
.float-label span:last-child  { font-size:9px; color:#99a; text-transform:uppercase; letter-spacing:1px; }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--light); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display:flex; align-items:stretch; }
.trust-item { flex:1; display:flex; align-items:center; gap:12px; padding:18px 20px; border-right:1px solid var(--border); transition:background .2s; }
.trust-item:last-child { border-right:none; }
.trust-item:hover { background:rgba(0,51,160,.04); }
.trust-icon { font-size:22px; flex-shrink:0; }
.trust-text strong { font-size:13px; font-weight:700; color:var(--navy); display:block; }
.trust-text span   { font-size:11px; color:#889; }

/* ─── TIERS ─── */
.tiers { padding: 96px 0 80px; }
.tiers-header { text-align:center; margin-bottom:20px; }
.tiers-title  { font-size:40px; font-weight:900; color:var(--navy); margin-bottom:12px; line-height:1.2; }
.tiers-sub    { font-size:15px; color:var(--muted); max-width:540px; margin:0 auto; }
.tiers-tabs   { display:flex; justify-content:center; gap:8px; margin:36px 0 48px; flex-wrap:wrap; padding:0 8px; }
.tier-tab     { padding:10px 22px; border-radius:50px; font-size:13px; font-weight:600; cursor:pointer; border:2px solid var(--border); background:#fff; color:#667; transition:all .22s; font-family:'Poppins',sans-serif; }
.tier-tab:hover  { border-color:var(--navy); color:var(--navy); }
.tier-tab.active { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 4px 16px rgba(0,51,160,.28); }
.tier-panel  { display:none; animation:fadeUp .4s ease both; }
.tier-panel.active { display:block; }
.tiers-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.tier-card   { background:#fff; border-radius:var(--r-lg); padding:34px; border:2px solid var(--border); transition:all .28s; position:relative; overflow:hidden; }
.tier-card::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-main); opacity:0; transition:opacity .28s; }
.tier-card:hover { border-color:#b8c4de; box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.tier-card:hover::after { opacity:1; }
.tier-card.featured { border-color:var(--navy); background:linear-gradient(160deg,#f0f5ff 0%,#fff 60%); box-shadow:var(--shadow-md); }
.tier-card.featured::after { opacity:1; }
.tier-featured-badge { position:absolute; top:18px; right:18px; background:var(--grad-green); color:#fff; font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; padding:5px 12px; border-radius:50px; }
.tier-emoji       { font-size:34px; margin-bottom:14px; line-height:1; }
.tier-name        { font-size:20px; font-weight:800; color:var(--navy); margin-bottom:3px; }
.tier-postnominal { font-size:12px; color:var(--teal); font-weight:700; letter-spacing:1px; margin-bottom:16px; }
.tier-price       { margin-bottom:6px; }
.tier-price-amount { font-size:34px; font-weight:900; color:var(--navy); line-height:1; }
.tier-price-unit   { font-size:12px; color:#99a; margin-left:4px; }
.tier-renewal { font-size:12px; color:#889; margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid var(--border); }
.tier-desc    { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:20px; }
.tier-section-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:#99a; margin-bottom:10px; }
.tier-list    { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.tier-list li { display:flex; gap:9px; font-size:12.5px; color:#445; line-height:1.45; }
.tier-list.req li::before { content:'✓'; color:var(--teal); font-weight:700; font-size:12px; flex-shrink:0; }
.tier-list.ben li::before { content:'→'; color:var(--blue); font-weight:700; font-size:12px; flex-shrink:0; }
.tier-cta { display:block; text-align:center; width:100%; background:var(--grad-green); color:#fff; padding:13px 24px; border-radius:50px; font-size:13px; font-weight:700; text-decoration:none; border:none; cursor:pointer; font-family:'Poppins',sans-serif; transition:all .28s; margin-top:8px; box-shadow:0 4px 16px rgba(0,200,83,.28); }
.tier-cta:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,200,83,.45); color:#fff; }
.tier-cta.outline { background:transparent; color:var(--navy); border:2px solid var(--navy); box-shadow:none; }
.tier-cta.outline:hover { background:var(--navy); color:#fff; }
.inst-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.inst-card { background:#fff; border-radius:var(--r-md); padding:28px; border:2px solid var(--border); transition:all .28s; }
.inst-card:hover { border-color:var(--navy); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.inst-tag  { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--blue); margin-bottom:6px; }
.inst-name { font-size:18px; font-weight:800; color:var(--navy); margin-bottom:16px; }
.inst-fees { display:flex; gap:24px; margin-bottom:14px; }
.inst-fee-box label { font-size:9px; color:#99a; text-transform:uppercase; letter-spacing:1px; display:block; margin-bottom:4px; }
.inst-fee-box .amount { font-size:22px; font-weight:900; color:var(--navy); }
.inst-desc { font-size:12.5px; color:var(--muted); line-height:1.6; margin-bottom:18px; }
.single-tier { max-width:600px; margin:0 auto; }

/* ─── BENEFITS ─── */
.benefits { padding:96px 0; background:var(--dark); position:relative; overflow:hidden; }
.benefits-glow1 { position:absolute; top:-100px; right:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(0,51,160,.25),transparent 70%); pointer-events:none; }
.benefits-glow2 { position:absolute; bottom:-80px; left:-80px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(0,166,81,.2),transparent 70%); pointer-events:none; }
.benefits-grid-bg { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.benefits-inner { position:relative; z-index:2; }
.benefits-header { text-align:center; margin-bottom:60px; }
.benefits-title  { font-size:40px; font-weight:900; color:#fff; margin-bottom:12px; }
.benefits-title span { color:var(--green); }
.benefits-sub    { font-size:15px; color:rgba(255,255,255,.55); max-width:500px; margin:0 auto; }
.benefits-grid   { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.benefit-card    { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--r-md); padding:28px; transition:all .28s; }
.benefit-card:hover { background:rgba(255,255,255,.07); border-color:rgba(0,200,83,.22); transform:translateY(-4px); }
.benefit-icon-wrap { width:52px; height:52px; border-radius:14px; background:rgba(0,200,83,.1); border:1px solid rgba(0,200,83,.18); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:16px; }
.benefit-card h3 { font-size:15px; font-weight:700; color:#fff; margin-bottom:7px; }
.benefit-card p  { font-size:12.5px; color:rgba(255,255,255,.48); line-height:1.7; }

/* ─── CPD ─── */
.cpd { padding:96px 0; background:var(--light); }
.cpd-grid  { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.cpd-title { font-size:36px; font-weight:800; color:var(--navy); margin-bottom:16px; line-height:1.2; }
.cpd-body  { font-size:14px; color:var(--muted); line-height:1.8; margin-bottom:28px; }
.cpd-items { display:flex; flex-direction:column; gap:14px; }
.cpd-item  { display:flex; gap:16px; background:#fff; border-radius:var(--r-md); padding:18px; border-left:4px solid var(--navy); box-shadow:var(--shadow-sm); }
.cpd-item-icon { font-size:22px; flex-shrink:0; }
.cpd-item h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.cpd-item p  { font-size:12px; color:#778; line-height:1.55; }
.cpd-visual  { background:var(--grad-hero); border-radius:var(--r-lg); padding:40px; color:#fff; position:relative; overflow:hidden; box-shadow:var(--shadow-lg); }
.cpd-visual-grid { 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:28px 28px; pointer-events:none; }
.cpd-visual-inner { position:relative; z-index:2; }
.cpd-big   { font-size:88px; font-weight:900; line-height:1; color:var(--green); }
.cpd-big-label { font-size:14px; color:rgba(255,255,255,.55); margin-bottom:32px; }
.cpd-bars  { display:flex; flex-direction:column; gap:18px; }
.cpd-bar-row label { font-size:11px; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:1px; display:block; margin-bottom:7px; }
.cpd-bar-track { background:rgba(255,255,255,.1); border-radius:50px; height:7px; overflow:hidden; }
.cpd-bar-fill  { height:100%; background:var(--grad-green); border-radius:50px; }
.cpd-note  { font-size:11px; color:rgba(255,255,255,.3); margin-top:24px; line-height:1.6; font-style:italic; }

/* ─── HOW IT WORKS ─── */
.how { padding:96px 0; }
.how-header { text-align:center; margin-bottom:60px; }
.how-title  { font-size:40px; font-weight:800; color:var(--navy); margin-bottom:12px; }
.how-sub    { font-size:15px; color:var(--muted); max-width:480px; margin:0 auto; }
.how-steps  { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; position:relative; }
.how-connector { position:absolute; top:36px; left:calc(10% + 8px); right:calc(10% + 8px); height:2px; background:linear-gradient(90deg,var(--navy),var(--teal)); z-index:0; }
.how-step  { text-align:center; position:relative; z-index:1; padding:0 8px; }
.how-num   { width:72px; height:72px; border-radius:50%; background:#fff; border:3px solid var(--navy); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:900; color:var(--navy); margin:0 auto 16px; box-shadow:0 4px 20px rgba(0,51,160,.12); transition:all .28s; }
.how-step:hover .how-num { background:var(--navy); color:#fff; transform:scale(1.08); }
.how-step h4 { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:6px; line-height:1.3; }
.how-step p  { font-size:12px; color:#667; line-height:1.55; }
.how-note    { margin-top:48px; background:rgba(0,51,160,.05); border:1px solid rgba(0,51,160,.12); border-radius:var(--r-md); padding:22px 28px; display:flex; gap:16px; align-items:flex-start; }
.how-note-icon { font-size:22px; flex-shrink:0; }
.how-note h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:5px; }
.how-note p  { font-size:13px; color:var(--muted); line-height:1.6; }
.how-note a  { color:var(--navy); font-weight:700; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding:96px 0; background:var(--light); }
.test-header  { text-align:center; margin-bottom:56px; }
.test-title   { font-size:40px; font-weight:800; color:var(--navy); }
.test-grid    { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.test-card    { background:#fff; border-radius:var(--r-md); padding:30px; border:1px solid var(--border); box-shadow:var(--shadow-sm); transition:all .28s; }
.test-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.test-stars   { color:#f5a623; font-size:15px; letter-spacing:3px; margin-bottom:14px; }
.test-quote   { font-size:13.5px; color:#445; line-height:1.75; margin-bottom:22px; font-style:italic; }
.test-author  { display:flex; align-items:center; gap:12px; }
.test-avatar  { width:42px; height:42px; border-radius:50%; background:var(--grad-main); display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:800; color:#fff; flex-shrink:0; }
.test-name    { font-size:13px; font-weight:700; color:var(--navy); }
.test-role    { font-size:11px; color:#889; }

/* ─── CSSMP BRIDGE ─── */
.cssmp-bridge { padding:80px 0; background:#fff; }
.bridge-card  { background:var(--grad-hero); border-radius:var(--r-lg); padding:56px 64px; display:grid; grid-template-columns:1fr auto; gap:48px; align-items:center; position:relative; overflow:hidden; }
.bridge-bg    { 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:40px 40px; pointer-events:none; }
.bridge-glow  { position:absolute; top:-80px; right:100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(0,200,83,.15),transparent 70%); pointer-events:none; }
.bridge-left  { position:relative; z-index:2; color:#fff; }
.bridge-pill  { display:inline-flex; align-items:center; gap:8px; background:rgba(0,200,83,.2); border:1px solid rgba(0,200,83,.35); border-radius:50px; padding:6px 16px; font-size:11px; font-weight:700; color:var(--green); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; }
.bridge-title { font-size:28px; font-weight:900; margin-bottom:12px; line-height:1.25; }
.bridge-text  { font-size:14px; color:rgba(255,255,255,.65); line-height:1.7; max-width:480px; }
.bridge-right { position:relative; z-index:2; display:flex; flex-direction:column; gap:12px; flex-shrink:0; }

/* ─── CTA BANNER ─── */
.cta-banner { background:var(--grad-hero); padding:96px 0; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 700px 500px at 50% 60%,rgba(0,200,83,.14),transparent); }
.cta-inner  { position:relative; z-index:2; }
.cta-title  { font-size:44px; font-weight:900; color:#fff; margin-bottom:16px; }
.cta-title span { color:var(--green); }
.cta-sub    { font-size:16px; color:rgba(255,255,255,.65); margin-bottom:40px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ─── FOOTER ─── */
.site-footer { background:#060d22; color:rgba(255,255,255,.65); padding:80px 0 0; }
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:56px; margin-bottom:56px; }
.footer-brand img { height:46px; margin-bottom:16px; filter:brightness(0) invert(1); opacity:.85; display:block; }
.footer-brand p   { font-size:12.5px; line-height:1.75; color:rgba(255,255,255,.42); margin-bottom:22px; }
.footer-social    { display:flex; gap:10px; }
.footer-social a  { width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.6); display:flex; align-items:center; justify-content:center; font-size:14px; text-decoration:none; transition:all .2s; border:1px solid rgba(255,255,255,.1); }
.footer-social a:hover { background:var(--green); color:#fff; border-color:var(--green); }
.footer-col h4 { font-size:11px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:2px; margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { font-size:12.5px; color:rgba(255,255,255,.42); text-decoration:none; transition:color .2s; display:block; }
.footer-col ul a:hover { color:var(--green); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:22px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; font-size:11.5px; color:rgba(255,255,255,.28); flex-wrap:wrap; }
.footer-bottom-left { display:flex; align-items:center; gap:10px; }
.footer-bottom-left img { height:26px; filter:brightness(0) invert(1); opacity:.45; }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) { .tiers-grid{grid-template-columns:repeat(2,1fr)} .footer-grid{grid-template-columns:1fr 1fr;gap:40px} .bridge-card{padding:40px} }
@media (max-width:860px)  {
  .site-topbar{display:none} .nav-menu{display:none} .nav-toggle{display:flex} .mobile-nav{display:block}
  .hero-inner{grid-template-columns:1fr;gap:0;padding:80px 0 150px} .hero-right{display:none}
  .tiers-grid{grid-template-columns:1fr} .inst-grid{grid-template-columns:1fr}
  .benefits-grid{grid-template-columns:repeat(2,1fr)} .cpd-grid{grid-template-columns:1fr;gap:40px}
  .how-steps{grid-template-columns:repeat(2,1fr);gap:24px} .how-connector{display:none}
  .test-grid{grid-template-columns:1fr} .bridge-card{grid-template-columns:1fr;padding:36px;gap:24px}
  .bridge-right{flex-direction:row;flex-wrap:wrap}
  .trust-bar-inner{flex-wrap:wrap} .trust-item{flex:1 1 45%;border-right:none;border-bottom:1px solid var(--border)}
  .trust-item:nth-child(odd){border-right:1px solid var(--border)}
  .cta-title{font-size:34px}
}
@media (max-width:560px) {
  .hero-title{font-size:32px} .hero-ctas,.bridge-right{flex-direction:column} .hero-ctas .btn,.bridge-right .btn{width:100%;justify-content:center}
  .hero-stats{flex-direction:column} .hero-stat{border-right:none!important;border-bottom:1px solid rgba(255,255,255,.1)} .hero-stat:last-child{border-bottom:none}
  .tiers-tabs{gap:6px} .tier-tab{padding:8px 16px;font-size:12px}
  .benefits-grid,.how-steps{grid-template-columns:1fr}
  .tiers-title,.benefits-title,.how-title,.test-title,.cta-title{font-size:28px} .cpd-title{font-size:26px} .cpd-big{font-size:64px}
  .footer-grid{grid-template-columns:1fr;gap:32px} .footer-bottom{flex-direction:column;text-align:center}
  .trust-item{flex:1 1 100%;border-right:none} .nav-logo-text .sub{display:none}
  .tiers-grid{gap:16px} .tier-card{padding:24px}
}
