/*
Theme Name: Signature Shield Insurance
Theme URI: https://signatureshieldins.com
Author: Signature Shield Insurance Agency
Author URI: https://signatureshieldins.com
Description: A professional Medicare and Health Insurance agency theme for Signature Shield Insurance, featuring a clean white design with teal and navy brand colors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: signature-shield
Tags: insurance, medicare, health, business, professional, white, teal, navy
*/

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --teal-dark: #1a6b5a;
  --teal-mid: #2ab893;
  --teal-light: #4ddbb8;
  --teal-bright: #6ef5d4;
  --navy: #1a2e4a;
  --navy-mid: #1e3a5f;
  --navy-light: #234672;
  --white: #ffffff;
  --off-white: #f7faf9;
  --gray-light: #eef3f1;
  --gray-mid: #8fa8a0;
  --text-dark: #152231;
  --text-body: #3a5068;
  --gradient-main: linear-gradient(135deg, #2ab893 0%, #4ddbb8 50%, #6ef5d4 100%);
  --gradient-navy: linear-gradient(135deg, #1a2e4a 0%, #1e3a5f 100%);
  --shadow-soft: 0 4px 24px rgba(42,184,147,0.12);
  --shadow-card: 0 8px 40px rgba(26,46,74,0.10);
  --shadow-hero: 0 20px 80px rgba(42,184,147,0.2);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── TOPBAR ── */
.ss-topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.ss-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ss-topbar a { color: var(--teal-light); }
.ss-topbar a:hover { color: var(--teal-bright); }

/* ── HEADER / NAV ── */
.ss-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(42,184,147,0.15);
  box-shadow: 0 2px 20px rgba(26,46,74,0.07);
}
.ss-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.ss-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.ss-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.ss-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.ss-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ss-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--teal-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Primary Navigation */
.ss-nav-wrap { display: flex; align-items: center; gap: 4px; }
.ss-nav-wrap .nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ss-nav-wrap .nav-menu li a,
.ss-nav-wrap .nav-menu li > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: 8px;
  display: block;
  transition: all 0.2s;
}
.ss-nav-wrap .nav-menu li a:hover,
.ss-nav-wrap .nav-menu li.current-menu-item > a {
  color: var(--teal-dark);
  background: rgba(42,184,147,0.08);
}
.ss-nav-wrap .nav-menu li.current-menu-item > a {
  position: relative;
}
.ss-nav-wrap .nav-menu li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--teal-mid);
  border-radius: 2px;
}
.ss-nav-cta a {
  background: var(--gradient-main) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.ss-nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(42,184,147,0.3) !important;
}

/* Mobile menu toggle */
.ss-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.ss-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── GLOBAL BUTTONS ── */
.btn-primary {
  background: var(--gradient-main);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-hero);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(42,184,147,0.4);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
.btn-dark {
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(26,46,74,0.4); color: white; }

/* ── SECTION BASE ── */
.ss-section { padding: 90px 32px; }
.ss-section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  line-height: 1.7;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* ── HERO ── */
.ss-hero {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 32px 110px;
  text-align: center;
}
.ss-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,184,147,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ss-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,219,184,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,184,147,0.15);
  border: 1px solid rgba(42,184,147,0.3);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.ss-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.ss-hero h1 span { color: var(--teal-light); }
.ss-hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 42px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── TRUST BAR ── */
.ss-trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 32px;
}
.ss-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}
.trust-icon { color: var(--teal-mid); font-size: 1.1rem; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.ss-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.ss-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.25s;
}
.ss-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 60px rgba(26,46,74,0.13);
  border-color: rgba(42,184,147,0.25);
}
.ss-card:hover::before { opacity: 1; }
.card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(42,184,147,0.12), rgba(77,219,184,0.18));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  border: 1px solid rgba(42,184,147,0.2);
}
.ss-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ss-card p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; color: var(--teal-dark); }

/* ── PAGE HERO (inner pages) ── */
.ss-page-hero {
  background: var(--gradient-navy);
  padding: 80px 32px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ss-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%232ab893' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ss-page-hero .page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,184,147,0.15); border: 1px solid rgba(42,184,147,0.3);
  color: var(--teal-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 22px;
}
.ss-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.ss-page-hero h1 span { color: var(--teal-light); }
.ss-page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── INSURANCE TYPE CARDS ── */
.type-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.type-card {
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.type-card:hover { transform: translateY(-4px); }
.type-card.medicare { background: var(--gradient-navy); color: white; }
.type-card.health { background: var(--gradient-main); color: var(--navy); }
.type-card.life { background: var(--gradient-navy); color: white; }
.type-card .tc-icon { font-size: 2.8rem; margin-bottom: 20px; }
.type-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.type-card p { font-size: 0.95rem; line-height: 1.7; opacity: 0.8; margin-bottom: 28px; }
.type-card .tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}
.medicare .tc-btn { background: var(--teal-mid); color: var(--navy); }
.health .tc-btn { background: var(--navy); color: white; }
.life .tc-btn { background: var(--teal-mid); color: var(--navy); }
.type-card .tc-bg {
  position: absolute; bottom: -40px; right: -40px;
  font-size: 9rem; opacity: 0.06; pointer-events: none;
}

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-mid));
  opacity: 0.3;
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 68px; height: 68px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(42,184,147,0.3);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.ss-testimonials { background: var(--navy); }
.ss-testimonials .section-title { color: var(--white); }
.ss-testimonials .section-subtitle { color: rgba(255,255,255,0.55); }
.ss-testimonials .section-label { color: var(--teal-light); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
}
.testi-stars { color: var(--teal-light); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: white; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── CTA BANNER ── */
.ss-cta-banner {
  background: var(--gradient-main);
  padding: 80px 32px;
  text-align: center;
}
.ss-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.ss-cta-banner p {
  font-size: 1.05rem;
  color: rgba(26,46,74,0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── MEDICARE PARTS ── */
.parts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.part-card {
  border-radius: 20px;
  padding: 36px 30px;
  border: 2px solid transparent;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
}
.part-card:hover { border-color: var(--teal-light); transform: translateY(-4px); }
.part-label {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.part-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.part-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 16px; }
.part-covers li {
  font-size: 0.84rem; color: var(--text-body);
  padding: 5px 0; display: flex; align-items: center; gap: 8px;
}
.part-covers li::before { content: '✓'; color: var(--teal-mid); font-weight: 700; }

/* ── ELIGIBILITY BOX ── */
.eligibility-box {
  background: var(--off-white);
  border-radius: 24px;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid var(--gray-light);
}
.elig-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 18px;
}
.elig-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
}
.elig-list li:last-child { border-bottom: none; }
.elig-icon { color: var(--teal-mid); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.elig-right { text-align: center; }
.elig-graphic {
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--gradient-main);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(42,184,147,0.3);
  animation: ssPulse 3s ease-in-out infinite;
}
@keyframes ssPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
.elig-fact { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.elig-fact-label { font-size: 0.85rem; color: var(--gray-mid); margin-top: 4px; }

/* ── HEALTH PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.plan-card {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-light);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 70px rgba(26,46,74,0.14); }
.plan-card.featured { border-color: var(--teal-mid); border-width: 2px; }
.plan-header { padding: 28px 28px 24px; border-bottom: 1px solid var(--gray-light); position: relative; }
.plan-card.featured .plan-header { background: var(--gradient-main); }
.featured-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--navy); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 0 0 8px 8px; letter-spacing: 0.06em;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: var(--navy); }
.plan-tagline { font-size: 0.83rem; color: var(--gray-mid); }
.plan-card.featured .plan-tagline { color: rgba(26,46,74,0.7); }
.plan-body { padding: 28px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-body);
  padding: 7px 0; border-bottom: 1px solid var(--gray-light);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li span { color: var(--teal-mid); font-weight: 700; }
.plan-cta {
  display: block; text-align: center; margin-top: 24px;
  padding: 13px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--teal-mid); color: var(--teal-dark);
  transition: all 0.2s;
}
.plan-cta:hover { background: var(--teal-mid); color: var(--navy); }
.plan-card.featured .plan-cta { background: var(--navy); border-color: var(--navy); color: white; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); }
.compare-table th { background: var(--navy); color: white; padding: 18px 24px; text-align: left; font-size: 0.88rem; font-weight: 600; }
.compare-table td { padding: 16px 24px; font-size: 0.88rem; color: var(--text-body); border-bottom: 1px solid var(--gray-light); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--off-white); }
.compare-table .check { color: var(--teal-mid); font-weight: 700; }
.compare-table .cross { color: #ccc; }

/* ── ABOUT PAGE ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box {
  border-radius: 24px; background: var(--gradient-navy);
  aspect-ratio: 4/3; display: flex; align-items: center;
  justify-content: center; font-size: 8rem;
  position: relative; overflow: hidden;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 20px; line-height: 1.25;
}
.about-body h2 span { color: var(--teal-dark); }
.about-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 18px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.val-item { display: flex; align-items: flex-start; gap: 12px; }
.val-icon { color: var(--teal-mid); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.val-item strong { font-size: 0.92rem; color: var(--text-dark); display: block; margin-bottom: 3px; }
.val-item span { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.5; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gradient-main);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 8px 30px rgba(42,184,147,0.25);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--teal-dark); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact-info > p { font-size: 0.93rem; color: var(--text-body); line-height: 1.75; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.cm-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(42,184,147,0.12), rgba(77,219,184,0.18));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
  border: 1px solid rgba(42,184,147,0.2);
}
.cm-label { font-size: 0.78rem; color: var(--gray-mid); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.cm-value { font-size: 0.96rem; color: var(--text-dark); font-weight: 500; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 24px; padding: 44px 40px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 28px;
}
.ss-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.ss-form .form-group { margin-bottom: 18px; }
.ss-form .form-group label {
  display: block; font-size: 0.83rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.02em;
}
.ss-form .form-group input,
.ss-form .form-group select,
.ss-form .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  color: var(--text-dark); background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.ss-form .form-group input:focus,
.ss-form .form-group select:focus,
.ss-form .form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(42,184,147,0.12);
  background: white;
}
.ss-form .form-group textarea { resize: vertical; min-height: 110px; }
.ss-form .form-submit {
  width: 100%; padding: 15px; border-radius: 50px;
  background: var(--gradient-main); color: var(--navy);
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ss-form .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(42,184,147,0.35); }

/* WP forms override */
.wpcf7 .wpcf7-form-control { width: 100%; }
.wpcf7 input[type="submit"] {
  background: var(--gradient-main); color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  padding: 15px 36px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(42,184,147,0.35); }

/* ── FOOTER ── */
.ss-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 32px 32px; }
.ss-footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: white; }
.footer-brand .tagline { color: var(--teal-light); }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: white; margin-bottom: 18px;
}
.footer-col .footer-nav { list-style: none; }
.footer-col .footer-nav li { margin-bottom: 10px; }
.footer-col .footer-nav li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col .footer-nav li a:hover { color: var(--teal-light); }
.ss-footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.ss-footer-bottom a { color: var(--teal-light); }

/* ── UTILITY ── */
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }

/* ── WORDPRESS BLOCKS ── */
.wp-block-image { margin: 0; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ss-footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { gap: 48px; }
}

@media (max-width: 768px) {
  .ss-menu-toggle { display: flex; }
  .ss-nav-wrap { display: none; position: absolute; top: 76px; left: 0; right: 0; background: white; padding: 20px 24px; box-shadow: 0 10px 40px rgba(26,46,74,0.1); flex-direction: column; align-items: stretch; }
  .ss-nav-wrap.open { display: flex; }
  .ss-nav-wrap .nav-menu { flex-direction: column; gap: 4px; }
  .ss-nav-wrap .nav-menu li a { padding: 10px 16px; }
  .ss-nav-cta { margin-top: 12px; }
  .ss-nav-cta a { text-align: center; justify-content: center; display: flex !important; }
  .type-cards, .about-intro, .contact-grid, .eligibility-box { grid-template-columns: 1fr; }
  .ss-footer-grid { grid-template-columns: 1fr 1fr; }
  .ss-form .form-row { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .ss-hero, .ss-section { padding-left: 20px; padding-right: 20px; }
  .eligibility-box { padding: 36px 28px; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-stats { gap: 28px; }
  .about-vals { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ss-footer-grid { grid-template-columns: 1fr; }
  .ss-topbar-inner { flex-direction: column; text-align: center; }
}
