/* =============================================
   Advanced eClinical Training - Brand CSS
   Credentials & Accreditation Page
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables / Brand Colors --- */
:root {
  --navy: #0B1A36;
  --navy-mid: #1a2d50;
  --navy-light: #1e3560;
  --teal: #66C6BE;
  --teal-bright: #00C4A7;
  --teal-dark: #009A85;
  --teal-sky: #4EC3E0;
  --ruby: #E0003C;
  --charcoal: #2D3748;
  --mid-gray: #6B7280;
  --light-stone: #F8F9FA;
  --white: #FFFFFF;
  --border-light: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(11, 26, 54, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 26, 54, 0.12);
  --shadow-lg: 0 16px 48px rgba(11, 26, 54, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid-gray);
}

a {
  color: var(--teal-bright);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--teal-dark); }

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

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 12px;
  display: block;
}

.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal-bright) !important; }
.text-navy { color: var(--navy) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-bright);
  color: var(--white);
  border-color: var(--teal-bright);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 196, 167, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal-bright);
  border-color: var(--teal-bright);
}

.btn-outline:hover {
  background: var(--teal-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11, 26, 54, 0.08);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-bright);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .logo-top {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.logo-text .logo-bottom {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--teal-bright);
  background: rgba(102, 198, 190, 0.08);
}

.navbar-nav a.active {
  color: var(--teal-bright);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actions .btn-contact {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
}

.navbar-actions .btn-contact:hover {
  color: var(--teal-bright);
}

.navbar-actions .btn-getstarted {
  font-size: 0.8rem;
  padding: 10px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 198, 190, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 195, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 198, 190, 0.15);
  border: 1px solid rgba(102, 198, 190, 0.3);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--teal);
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item .trust-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.hero-trust-item .trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.credential-badge-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  animation: slideInRight 0.6s ease forwards;
  opacity: 0;
}

.credential-badge-card:nth-child(1) { animation-delay: 0.2s; }
.credential-badge-card:nth-child(2) { animation-delay: 0.4s; }
.credential-badge-card:nth-child(3) { animation-delay: 0.6s; }

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

.credential-badge-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(102, 198, 190, 0.4);
  transform: translateX(-4px);
}

.cred-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.cred-info h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cred-info p {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  margin: 0;
}

.cred-check {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: var(--teal-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--white);
}

/* =============================================
   SECTION STYLES
   ============================================= */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-light {
  background: var(--light-stone);
}

.section-navy {
  background: var(--navy);
}

.section-teal {
  background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-sky) 100%);
}

/* =============================================
   CREDENTIALS TABLE
   ============================================= */
.creds-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

table.creds-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.creds-table thead {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.creds-table thead th {
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 24px;
  text-align: left;
}

.creds-table thead th:first-child {
  border-radius: 0;
  color: var(--teal);
}

.creds-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.creds-table tbody tr:last-child {
  border-bottom: none;
}

.creds-table tbody tr:hover {
  background: rgba(102, 198, 190, 0.04);
}

.creds-table tbody td {
  padding: 20px 24px;
  vertical-align: top;
}

.creds-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
  width: 30%;
}

.creds-table tbody td:nth-child(2) {
  width: 35%;
  color: var(--charcoal);
}

.creds-table tbody td:last-child {
  width: 35%;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 196, 167, 0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(0, 196, 167, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

.cred-pill::before {
  content: '✓';
  font-weight: 900;
  color: var(--teal-bright);
}

/* =============================================
   INFO CARDS
   ============================================= */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 198, 190, 0.3);
}

.info-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(102, 198, 190, 0.15), rgba(78, 195, 224, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.info-card p {
  font-size: 0.93rem;
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =============================================
   STATE APPROVAL SECTION
   ============================================= */
.approval-section {
  background: var(--white);
}

.approval-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approval-content h2 {
  margin-bottom: 20px;
}

.approval-content > p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.what-this-means {
  background: var(--light-stone);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
  border-left: 4px solid var(--teal-bright);
}

.what-this-means h4 {
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--charcoal);
}

.check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--teal-bright);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.verification-box {
  background: rgba(0, 196, 167, 0.06);
  border: 1px solid rgba(0, 196, 167, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.verification-box .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.verification-box p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.approval-visual {
  position: sticky;
  top: 90px;
}

.approval-badge-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.approval-badge-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 198, 190, 0.15), transparent);
  pointer-events: none;
}

.approval-badge-card .org-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.approval-badge-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.approval-badge-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.approval-badge-card .badge-seal {
  width: 80px;
  height: 80px;
  background: rgba(102, 198, 190, 0.15);
  border: 2px solid rgba(102, 198, 190, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* =============================================
   CERTIFICATION BODIES
   ============================================= */
.cert-bodies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cert-body-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-body-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-sky));
}

.cert-body-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 198, 190, 0.3);
}

.cert-body-card .cert-abbr {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cert-body-card .cert-full-name {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cert-body-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* =============================================
   ACE ACADEMIC REVIEW
   ============================================= */
.ace-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ace-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.ace-visual::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(102, 198, 190, 0.12), transparent);
  pointer-events: none;
}

.ace-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ace-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.ace-stat .stat-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.ace-stat .stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.3;
}

/* =============================================
   DOL APPRENTICESHIP
   ============================================= */
.dol-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.dol-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.dol-feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(102, 198, 190, 0.3);
}

.dol-feature .feat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}

.dol-feature h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}

.dol-feature p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* =============================================
   ETPL / WIOA SECTION
   ============================================= */
.etpl-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.etpl-why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.etpl-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light-stone);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}

.etpl-why-card:hover {
  transform: translateX(4px);
  background: rgba(0, 196, 167, 0.06);
  border-left: 4px solid var(--teal-bright);
}

.etpl-why-card .why-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 196, 167, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.etpl-why-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.etpl-why-card p {
  font-size: 0.85rem;
  margin: 0;
}

.etpl-highlight-box {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-sky));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.etpl-highlight-box h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.etpl-highlight-box p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.etpl-highlight-box .highlight-quote {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--white);
  border-left: 3px solid rgba(255,255,255,0.5);
}

/* =============================================
   EMPLOYER PARTNERSHIPS
   ============================================= */
.partner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.partner-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.partner-feature .pf-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 196, 167, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.partner-feature h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.partner-feature p {
  font-size: 0.85rem;
  margin: 0;
}

.case-study-card {
  background: linear-gradient(135deg, var(--navy), #1e3a70);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 198, 190, 0.15), transparent);
  pointer-events: none;
}

.case-study-card .cs-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.case-study-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.cs-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cs-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cs-step .step-num {
  width: 32px;
  height: 32px;
  background: var(--teal-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.cs-step div h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cs-step div p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0;
}

/* =============================================
   CREDIBILITY STACK
   ============================================= */
.credibility-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.stack-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  transition: var(--transition);
}

.stack-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(102, 198, 190, 0.4);
  transform: translateX(4px);
}

.stack-item .stack-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stack-item .stack-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.stack-item .stack-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin: 0;
}

.stack-arrow {
  text-align: center;
  color: var(--teal);
  font-size: 1.25rem;
  margin: 4px 0;
}

.credibility-conclusion {
  text-align: center;
  background: rgba(0, 196, 167, 0.12);
  border: 1px solid rgba(102, 198, 190, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-top: 8px;
}

.credibility-conclusion p {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: var(--light-stone);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(102, 198, 190, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 0.93rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: rgba(0, 196, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal-bright);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--teal-bright);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.faq-answer-inner p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--charcoal);
}

/* =============================================
   SOURCE CONSOLIDATION / LINKS
   ============================================= */
.source-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.source-link-card {
  background: var(--light-stone);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-decoration: none;
}

.source-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(102, 198, 190, 0.3);
}

.source-link-card .sl-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.source-link-card h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.source-link-card p {
  font-size: 0.78rem;
  margin: 0;
}

/* =============================================
   SEO KEYWORDS SECTION
   ============================================= */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.keyword-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.keyword-tag:hover {
  background: rgba(102, 198, 190, 0.15);
  border-color: rgba(102, 198, 190, 0.4);
  color: var(--teal);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-sky) 100%);
  padding: 80px 0;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb-inner a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.breadcrumb-inner a:hover {
  color: var(--teal);
}

.breadcrumb-inner .separator {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-inner .current {
  color: var(--teal);
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* =============================================
   DIVIDERS & DECORATORS
   ============================================= */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-sky), transparent);
  border: none;
  margin: 0;
}

.anchor-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 72px;
  z-index: 900;
  padding: 0;
  box-shadow: 0 2px 8px rgba(11,26,54,0.06);
}

.anchor-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav-inner::-webkit-scrollbar { display: none; }

.anchor-nav-inner a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 14px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.anchor-nav-inner a:hover,
.anchor-nav-inner a.active {
  color: var(--teal-bright);
  border-bottom-color: var(--teal-bright);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .cert-bodies-grid { grid-template-columns: repeat(2, 1fr); }
  .source-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .approval-layout, .ace-layout, .etpl-layout { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .faq-grid { grid-template-columns: 1fr; }
  .cert-bodies-grid { grid-template-columns: 1fr; }
  .source-links { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .navbar-nav, .navbar-actions .btn-getstarted { display: none; }
  .hamburger { display: flex; }
  .partner-features { grid-template-columns: 1fr; }
  .dol-features { grid-template-columns: 1fr; }
  .approval-visual { position: static; }
  .etpl-highlight-box { position: static; }
  .hero-trust { gap: 20px; }
  .creds-table thead th, .creds-table tbody td { padding: 14px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .source-links { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 16px; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
