/* 
  Oonagh AI - Global Stylesheet
  Visual Theme: Minimalist Light Glassmorphism
  Brand Color Match: Logo Purple (#2E0F7B)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand System */
  --navy: #2E0F7B;
  --navy-dark: #1A0947;
  --navy-light: #4A1EAD;
  --navy-soft: rgba(46, 15, 123, 0.06);
  --gold: #D4A843;
  --gold-light: #FDF6E2;
  --gold-dark: #A1761E;
  
  /* Modern Neutral Grays */
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  
  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(46, 15, 123, 0.06);
  --glass-shadow: 0 10px 40px rgba(46, 15, 123, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
  --glass-shadow-hover: 0 20px 60px rgba(46, 15, 123, 0.08), 0 4px 16px rgba(0, 0, 0, 0.03);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-900);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition-smooth);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.font-display { font-family: 'Outfit', sans-serif; }
.font-sans { font-family: 'Plus Jakarta Sans', sans-serif; }

/* DYNAMIC VIDEO PLACEHOLDER CONTAINER */
.video-card-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.video-card-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(46, 15, 123, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-900);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 15, 123, 0.9) 0%, rgba(26, 9, 71, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: var(--transition-smooth);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
  transition: var(--transition-smooth);
}

.video-card-container:hover .video-play-btn {
  transform: scale(1.1);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.video-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.video-card-subtitle {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* NAVIGATION HEADER */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 30px rgba(46, 15, 123, 0.03);
  padding: 4px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 500 !important;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-600);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy-dark);
  box-shadow: 0 4px 14px rgba(46, 15, 123, 0.15);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(46, 15, 123, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-soft);
  transform: translateY(-1.5px);
}

.btn-dark {
  background: var(--slate-900);
  color: #fff;
  border: 1px solid var(--slate-800);
}

.btn-dark:hover {
  background: var(--slate-800);
  transform: translateY(-1.5px);
}

.nav-login {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-600);
  padding: 10px 20px;
  border-radius: var(--radius-full);
}

.nav-login:hover {
  color: var(--navy);
  background: var(--slate-100);
}

/* HAMBURGER */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
}

/* MOBILE NAV MENU */
#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  z-index: 9999;
  background: #fff;
  padding: 32px 24px;
  box-shadow: -10px 0 40px rgba(46, 15, 123, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-menu-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}

.mobile-menu-links a:hover {
  color: var(--navy);
  padding-left: 6px;
}

/* HERO SECTION */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(46, 15, 123, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
              #fff;
  position: relative;
  overflow: hidden;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.05);
  color: #2563EB;
  border-color: rgba(37, 99, 235, 0.1);
}

.badge-green {
  background: rgba(16, 185, 129, 0.05);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.1);
}

.badge-gold {
  background: var(--gold-light);
  color: var(--gold-dark);
  border-color: rgba(212, 168, 67, 0.15);
}

.badge-purple {
  background: var(--navy-soft);
  color: var(--navy);
  border-color: rgba(46, 15, 123, 0.1);
}

.hero-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero-h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-h1 span {
  color: var(--navy);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--slate-600);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-specialty {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-500);
  margin-top: 16px;
  margin-bottom: 24px;
}

.hero-compliance-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-compliance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  max-width: 760px;
  margin: 48px auto 0;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  background: #fff;
  padding: 24px 16px;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* GLASS CARD LAYOUTS */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(46, 15, 123, 0.15);
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--slate-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 16px;
  color: var(--slate-600);
}

/* HOW IT WORKS */
.how-it-works {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(46, 15, 123, 0.2);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

.step-time {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: var(--navy-soft);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PRICING */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plans-grid.row-3 { grid-template-columns: repeat(3, 1fr); }
  .plans-grid.row-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Interactive filter tabs for pricing */
.pricing-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.pricing-filter-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
}

.pricing-filter-btn:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: var(--navy-soft);
}

.pricing-filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(46, 15, 123, 0.15);
}

.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  background: #fff;
}

.plan-card.featured {
  border-color: var(--navy);
  box-shadow: 0 8px 30px rgba(46, 15, 123, 0.06);
}

.plan-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.plan-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-500);
}

.plan-tagline {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: var(--slate-100);
  margin: 8px 0 24px;
}

.plan-features-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin-bottom: 12px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-700);
}

.plan-feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--navy);
  stroke-width: 3;
  fill: none;
}

.plan-footnote {
  text-align: center;
  font-size: 11px;
  color: var(--slate-400);
  margin-top: 12px;
}

/* TRUST & SECURITY GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.trust-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 80px 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

/* Center-align cards if there is only 1 or 2 cards */
.testimonials-grid.cols-1 {
  grid-template-columns: minmax(320px, 500px);
}

.testimonials-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 480px));
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(46, 15, 123, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  border: 1.5px solid rgba(46, 15, 123, 0.1);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 14px;
}

.testimonial-title {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 500;
}

/* COMPARISON GRID SECTION */
.comparison-section {
  padding: 80px 0;
  background: #fff;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  box-shadow: var(--glass-shadow);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 850px; /* Ensures table doesn't squish on mobile, triggers scroll */
  font-size: 15px;
}

.comparison-table th, 
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: middle;
}

.comparison-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--slate-900);
  background: var(--slate-100);
  font-size: 16px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Highlight Oonagh AI Column */
.comparison-table th.col-oonagh,
.comparison-table td.col-oonagh {
  background: rgba(46, 15, 123, 0.03);
  border-left: 2px solid rgba(46, 15, 123, 0.15);
  border-right: 2px solid rgba(46, 15, 123, 0.15);
}

.comparison-table th.col-oonagh {
  background: rgba(46, 15, 123, 0.06);
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  position: relative;
}

.comparison-table th.col-oonagh::after {
  content: '★ RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(212, 168, 67, 0.2);
}

.comparison-table tr:hover td {
  background: rgba(15, 23, 42, 0.01);
}

.comparison-table tr:hover td.col-oonagh {
  background: rgba(46, 15, 123, 0.05);
}

.comparison-feature-name {
  font-weight: 600;
  color: var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comparison-feature-desc {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 400;
  line-height: 1.4;
}

/* Icon Indicators */
.comp-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.comp-icon.yes {
  color: #059669; /* emerald 600 */
}

.comp-icon.no {
  color: #e11d48; /* rose 600 */
}

.comp-icon.partial {
  color: #d97706; /* amber 600 */
}

.comp-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* FAQ SECTION */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(46, 15, 123, 0.2);
  box-shadow: 0 4px 20px rgba(46, 15, 123, 0.02);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  text-align: left;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--navy);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
}

.final-cta-h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.final-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.final-cta-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.final-cta-contact a {
  color: var(--gold);
  font-weight: 700;
}

.final-cta-contact a:hover {
  text-decoration: underline;
}

/* DISCLAIMER */
.disclaimer {
  padding: 24px 0;
  background: var(--slate-100);
  border-top: 1px solid var(--slate-200);
}

.disclaimer p {
  font-size: 11px;
  color: var(--slate-500);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-wrap {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 500 !important;
  font-size: 22px;
  color: #fff;
}

.footer-brand-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate-400);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--slate-400);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer-col li a, .footer-col li span {
  font-size: 13px;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 12px;
  color: var(--slate-500);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--slate-500);
}

.footer-legal-links a:hover {
  color: #fff;
}

/* GEOGRAPHIC LOCALE DIALOG MODAL */
#country-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.country-modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 30px 90px rgba(46, 15, 123, 0.15);
  border: 1px solid var(--glass-border);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

#country-modal.open .country-modal-box {
  transform: scale(1);
  opacity: 1;
}

.country-modal-header {
  background: var(--navy);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.country-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.country-modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.country-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.country-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.country-modal-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-800);
  text-align: left;
  transition: var(--transition-smooth);
}

.country-btn:hover {
  border-color: var(--navy);
  background: var(--navy-soft);
  color: var(--navy);
  transform: translateX(4px);
}

.country-btn .cflag {
  font-size: 26px;
}

.country-btn .cname {
  flex-grow: 1;
}

.country-btn .carrow {
  color: var(--slate-400);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.country-btn:hover .carrow {
  color: var(--navy);
  transform: translateX(2px);
}

/* INTERACTIVE TRANSCRIPT DEMO COMPONENT (Home) */
.transcript-demo-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}

@media (min-width: 768px) {
  .transcript-demo-container {
    grid-template-columns: 1fr 1fr;
  }
}

.transcript-panel {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 380px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  text-align: left;
}

.transcript-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-100);
  margin-bottom: 16px;
}

.transcript-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulse 1.5s infinite;
}

.transcript-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-900);
}

.transcript-content {
  flex-grow: 1;
  overflow-y: auto;
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.6;
}

.note-panel {
  background: var(--navy-soft);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 380px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  text-align: left;
}

.note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(46, 15, 123, 0.08);
  margin-bottom: 16px;
}

.note-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.note-content {
  flex-grow: 1;
  overflow-y: auto;
  font-size: 13px;
  color: var(--slate-800);
}

.note-btn-export {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  box-shadow: 0 2px 6px rgba(46, 15, 123, 0.2);
}

.note-btn-export:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* KEYFRAMES PULSE */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* OUR STORY NARRATIVE DESIGN */
.story-section {
  padding: 80px 0;
}

.story-container {
  max-width: 780px;
  margin: 0 auto;
}

.story-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--navy-soft);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.story-h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--slate-900);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.story-p {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-p strong {
  color: var(--slate-900);
  font-weight: 600;
}

.pull-quote {
  margin: 40px 0;
  padding: 30px;
  border-left: 4px solid var(--navy);
  background: var(--navy-soft);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.pull-quote p {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--navy);
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--glass-shadow);
}

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

.stat-text {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}

.stat-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}

/* DEMO BOOKING FORM */
#demo-form {
  background: var(--slate-50);
}

.demo-form-box {
  max-width: 680px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-grid.grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--slate-900);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-soft);
}

.form-success-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1.5px solid #10B981;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #047857;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  margin-bottom: 20px;
}

/* CHAT WIDGET STYLINGS (ConvertaAI Override) */
#lgp-chat-fab {
  background: var(--navy) !important;
}

#lgp-chat-fab:hover {
  background: var(--navy-light) !important;
}

#lgp-chat-box .lgp-header {
  background: var(--navy) !important;
}

#lgp-chat-box .lgp-msg.visitor {
  background: var(--navy) !important;
}

#lgp-chat-box .lgp-input-bar button {
  background: var(--navy) !important;
}

#lgp-chat-box .lgp-form button {
  background: var(--navy) !important;
}

#lgp-chat-box .lgp-form h3 {
  color: var(--navy) !important;
}

/* Premium Clinical Background Classes */
.hero-bg-clinical {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%),
              url('/assets/office_clinical.png') no-repeat center center;
  background-size: cover;
}
.hero-bg-acupuncture {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%),
              url('/assets/acupuncture_clinic.png') no-repeat center center;
  background-size: cover;
}
.hero-bg-osteopath {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%),
              url('/assets/osteopath_clinic.png') no-repeat center center;
  background-size: cover;
}
.glass-overlay-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(46, 15, 123, 0.08) !important;
  box-shadow: var(--glass-shadow-hover) !important;
}


/* ==========================================
   LEGAL & DATA SECURITY PAGES STYLING
   ========================================== */
.content-section {
  padding: 80px 0;
  background: var(--slate-50);
}
.content-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
@media (max-width: 768px) {
  .content-inner {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .content-inner {
    padding: 30px 20px;
  }
}

.content-inner h1 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content-inner h2 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--slate-900);
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.content-inner h3 {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--slate-800);
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}
.content-inner h4 {
  font-size: 15px;
  color: var(--slate-700);
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.content-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 20px;
}
.content-inner ul, .content-inner ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--slate-600);
}
.content-inner li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
}
.content-inner strong {
  color: var(--slate-900);
}

/* HIPAA Safeguards Grid & Cards */
.hipaa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .hipaa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hipaa-card.full {
    grid-column: span 2;
  }
}
.hipaa-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.hipaa-icon {
  width: 48px;
  height: 48px;
  background: rgba(43, 40, 107, 0.06);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hipaa-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hipaa-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--slate-900);
}
.hipaa-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.hipaa-audit-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .hipaa-audit-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* Data Residency Regions Grid */
.region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.region-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.region-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.region-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--slate-900);
}
.region-card p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Privacy & Security Safeguards */
.safeguard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .safeguard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.safeguard-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.safeguard-card svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  margin-bottom: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.safeguard-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--slate-900);
}
.safeguard-card p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Compliance Badges/Tags */
.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.compliance-tags .tag {
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Contact Blocks */
.contact-row, .contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}
.contact-item span {
  color: var(--slate-600);
  font-weight: 500;
}
