/* Landing Page Components - Global Styles */

/* CSS Variables */
:root {
  --blue: #014760;
  --blue-dark: #012f40;
  --blue-mid: #02607f;
  --orange: #F39501;
  --orange-light: #f5a82a;
  --white: #fff;
  --off-white: #f5f8fa;
  --light-blue: #e6f0f5;
  --text-dark: #1a1f2e;
  --text-mid: #2e4a58;
  --text-muted: #667788;
  --border: #d0dde5;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow .3s;
}

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

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 22px;
  height: 22px;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue);
  letter-spacing: -.02em;
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(243,149,1,.42);
}

/* Hero Section */
.hero {
  padding-top: 72px;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(1,47,64,.92) 0%, rgba(1,71,96,.76) 42%, rgba(1,71,96,.2) 70%, rgba(1,47,64,.04) 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,149,1,.16);
  border: 1px solid rgba(243,149,1,.42);
  color: #ffc46e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.09;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

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

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(243,149,1,.42);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243,149,1,.52);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.88);
  padding: 15px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.28);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.trust-item svg {
  color: #4ade80;
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.22);
}

.hero-card {
  background: rgba(1,47,64,.62);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 32px;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 18px;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
  line-height: 1.4;
}

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 18px 0;
}

.hero-tags-label {
  font-size: .7rem;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 10px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-tag {
  background: rgba(243,149,1,.16);
  border: 1px solid rgba(243,149,1,.34);
  color: #ffc46e;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Scorecard */
.scorecard {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(1,71,96,.06);
}

.scorecard-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.score-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.score-item:last-child {
  border-right: none;
}

.score-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.score-num .accent {
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 800;
  display: inline-block;
}

.score-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Sections */
section {
  padding: 96px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 14px;
}

/* Services Grid */
.checks-bg {
  background: var(--off-white);
}

.checks-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.check-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.check-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.check-card:hover {
  box-shadow: 0 12px 36px rgba(1,71,96,.1);
  transform: translateY(-3px);
  border-color: rgba(1,71,96,.2);
}

.check-card:hover::after {
  transform: scaleX(1);
}

.check-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.check-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.check-tag {
  display: inline-block;
  background: rgba(243,149,1,.1);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.check-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.check-card p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pills Grid */
.pills-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .2s;
}

.pill:hover {
  border-color: var(--blue);
  background: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,71,96,.08);
}

.pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.pill-text h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 3px;
}

.pill-text p {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Industries - Dark Section */
.dark-section {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,149,1,.07) 0%, transparent 70%);
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-desc {
  color: rgba(255,255,255,.6);
}

.dark-section .section-label {
  color: #ffc46e;
}

.industries-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px;
  transition: all .25s;
}

.ind-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-3px);
}

.ind-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.ind-card h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ind-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* Steps Section */
.steps-bg {
  background: var(--off-white);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(243,149,1,.38);
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.step p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Why Choose Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.why-point-text h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-visual {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(243,149,1,.12);
}

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

.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 22px;
}

.stat-box .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-box .num span {
  color: var(--orange);
}

.stat-box .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
}

.why-badge {
  margin-top: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.why-badge svg {
  color: #4ade80;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.why-badge p {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.why-badge strong {
  color: var(--white);
}

/* Partners Section */
.partners-wrap {
  background: var(--off-white);
  padding: 72px 0;
}

.partners-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.partner-logo {
  flex: 1;
  min-width: 160px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.partner-logo:last-child {
  border-right: none;
}

.partner-logo:hover {
  background: var(--light-blue);
}

.partner-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -.02em;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.benefits-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.benefit {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background .2s;
}

.benefit:last-child {
  border-right: none;
}

.benefit:hover {
  background: var(--light-blue);
}

.benefit:nth-child(n+4) {
  border-top: 1px solid var(--border);
}

.benefit-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-wrap {
  background: var(--off-white);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  gap: 16px;
}

.faq-arr {
  font-size: 22px;
  color: var(--orange);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arr {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a p {
  padding-bottom: 22px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Blog/Resources Grid */
.blog-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s;
}

.blog-card:hover {
  box-shadow: 0 16px 40px rgba(1,71,96,.1);
  transform: translateY(-4px);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(243,149,1,.22) 0%, transparent 60%);
}

.blog-thumb svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,.28);
  position: relative;
  z-index: 1;
}

.blog-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-body {
  padding: 22px;
}

.blog-body h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Certifications Strip */
.cert-strip {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.cert-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cert-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  transition: border-color .2s, box-shadow .2s;
}

.cert-badge:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(1,71,96,.08);
}

.cert-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.cert-name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
}

.cert-sub {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(243,149,1,.1) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,.88);
  padding: 15px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.28);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Responsive Design */
@media(max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .scorecard-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-item:nth-child(2) {
    border-right: none;
  }

  .score-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .pills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 60px 20px;
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 64px 0;
  }

  .checks-grid,
  .industries-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pills-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-row::before {
    display: none;
  }

  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .benefit:last-child {
    border-bottom: none;
  }

  .cert-badges {
    gap: 10px;
  }
}
