/* Base Reset & Typography */
@font-face {
  font-family: 'TBJ-Rusthic';
  src: url('font/TBJRusthic-Light.woff2') format('woff2'),
       url('font/TBJRusthic-Light.woff') format('woff'),
       url('font/TBJRusthic-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TBJ-Rusthic';
  src: url('font/TBJRusthic-Regular.woff2') format('woff2'),
       url('font/TBJRusthic-Regular.woff') format('woff'),
       url('font/TBJRusthic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TBJ-Rusthic';
  src: url('font/TBJRusthic-Bold.woff2') format('woff2'),
       url('font/TBJRusthic-Bold.woff') format('woff'),
       url('font/TBJRusthic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* v3.0 Color Palette */
  --rose-gold: #B8835A;
  --charcoal: #4A4A4A;
  --teal: #2C5F5D;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  
  /* Semantic Mappings */
  --bg-color: var(--white);
  --bg-light: var(--light-gray);
  --bg-dark: var(--charcoal);
  
  --text-color: var(--charcoal);
  --text-muted: #64748b; /* Keep for compatibility or update to charcoal tint */
  --text-light: var(--white);
  
  --primary-color: var(--teal);
  --primary-dark: #1F4241; /* Darker version of teal */
  --accent-color: var(--rose-gold);
  
  --card-bg: rgba(255, 255, 255, 0.9);
  
  --glass-border: rgba(44, 95, 93, 0.1); /* Teal tinted border */
  
  --error-color: #f87171;
  --success-color: #4ade80;
  
  --font-main: "TBJ-Rusthic", sans-serif;
  --font-heading: "TBJ-Rusthic", sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

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

.section {
    padding: 100px 0;
    animation: fadeInUp 1s ease-out;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  box-shadow: 0 4px 15px rgba(45, 138, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 138, 138, 0.5);
}

.btn-block {
    display: block;
    width: 100%;
}

.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.section-lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(45, 138, 138, 0.1); }
  50% { box-shadow: 0 0 40px rgba(45, 138, 138, 0.2); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid var(--glass-border);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    /* color: var(--accent-color); */
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links.active a {
        color: #ffffff !important;
    }
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 138, 138, 0.2);
    transform: translateY(-2px);
}

/* Hero Button Visibility Overrides */
.hero .btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), #d4a373);
    border: none;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(184, 131, 90, 0.3);
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #d4a373, var(--rose-gold));
    box-shadow: 0 15px 30px rgba(184, 131, 90, 0.4);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
  box-sizing: border-box;
  background-color: var(--charcoal);
  z-index: 1;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 700;
  line-height: 1.1;
  background: none;
}

.subheadline {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 900px;
  line-height: 1.3;
  display: block;
}

.hero-description {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.hero-taglines {
  margin-bottom: 30px;
}

.tagline-primary {
  font-style: italic;
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.tagline-secondary {
  font-style: italic;
  color: #d3d3d3;
  font-size: 1rem;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
    .hero-cta-wrapper {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-cta-wrapper .btn {
        width: 100%;
    }
}

/* Sub-Hero Stats Section */
.stats-section {
  background-color: var(--white);
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero-stats {
  margin-top: -80px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-stats .stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-stats .stat-icon {
  color: var(--white);
  font-size: 2.3rem;
  display: block;
  margin-bottom: 20px;
}

.hero-stats .stat-number {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-stats .stat-item:nth-child(3) .stat-number {
  font-size: 1.6rem;
}

.hero-stats .stat-label {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Intro Section */
.intro {
    position: relative;
    padding-bottom: 100px;
}

.intro-card {
    padding: 50px;
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
    text-align: left;
    border: 1px solid var(--glass-border);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.intro p {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.intro p:last-child { margin-bottom: 0; }
.highlight { 
    color: var(--primary-color); 
    font-weight: 600; 
    background: linear-gradient(to top, rgba(44, 95, 93, 0.15) 0%, rgba(44, 95, 93, 0.15) 35%, transparent 35%);
    padding: 0 4px;
    border-radius: 2px;
}
.emphasis { font-weight: 600; color: var(--text-color); border-left: 4px solid var(--accent-color); padding-left: 20px; }

/* Product Section - Light Gray Background */
.product-section {
    background-color: var(--bg-light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Feature Card Hover Effects */
.feature-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(45, 138, 138, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Hover Image Container */
.hover-reveal {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 138, 138, 0.1), rgba(45, 138, 138, 0.05));
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .hover-reveal {
    opacity: 1;
    transform: scale(1);
}

/* Abstract Illustrations for each card */
.reveal-1 { /* Value Chain */
    background: radial-gradient(circle at center, rgba(45, 138, 138, 0.2) 0%, transparent 70%);
    border: 1px dashed rgba(45, 138, 138, 0.3);
}
.reveal-1::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 20px 20px 0 rgba(45,138,138,0.5), -20px -20px 0 rgba(45,138,138,0.5);
    transform: translate(-50%, -50%);
}

.reveal-2 { /* Risks */
    background: linear-gradient(45deg, transparent 45%, rgba(45, 138, 138, 0.1) 50%, transparent 55%);
}
.reveal-2::before {
    content: '!';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(45, 138, 138, 0.1);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.reveal-3 { /* Severity */
    background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(45, 138, 138, 0.1) 10px, rgba(45, 138, 138, 0.1) 20px);
}
.reveal-3::after {
    content: '';
    position: absolute;
    bottom: 40px; right: 40px;
    width: 20px; height: 60px;
    background: rgba(45, 138, 138, 0.3);
    box-shadow: -25px 20px 0 rgba(45, 138, 138, 0.2), -50px 40px 0 rgba(45, 138, 138, 0.1);
}

.reveal-4 { /* Due Diligence */
    border: 4px solid rgba(45, 138, 138, 0.1);
}
.reveal-4::before {
    content: '?';
    font-size: 4rem;
    color: rgba(45, 138, 138, 0.2);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.reveal-5 { /* Govern */
    background: conic-gradient(from 0deg, rgba(45, 138, 138, 0.1), transparent);
    border-radius: 50%;
}

.reveal-6 { /* Documentation */
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
}
.reveal-6::after {
    content: '';
    position: absolute;
    top: 30%; left: 30%;
    width: 40%; height: 50%;
    border-top: 2px solid rgba(45, 138, 138, 0.2);
    border-bottom: 2px solid rgba(45, 138, 138, 0.2);
}

.core-modules {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark), #151b26);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: white;
}

.core-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 138, 138, 0.5), transparent);
}

.modules-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.core-modules h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 2rem;
}

.core-modules p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.module-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.module-item:hover::after {
    opacity: 1;
}

.module-item.w-full {
    grid-column: 1 / -1;
    justify-content: center;
    background: rgba(45, 138, 138, 0.1);
    border-color: rgba(45, 138, 138, 0.2);
}

.module-item.w-full .module-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.module-item.w-full:hover {
    background: rgba(45, 138, 138, 0.2);
}

.module-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 138, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.module-text {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
}

.module-text small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 400;
}

/* Differentiation Section - White Background (default) */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        gap: 20px;
    }
}

.comparison-card {
    flex: 1;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 600;
}

.status-icon {
    font-size: 1.5rem;
}

.comparison-card ul {
    flex-grow: 1;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 500;
}

.comparison-card ul li i {
    font-size: 1.25rem;
}

/* Other Tools Card (Left) */
.other-tools {
    background: #f8fafc;
    border: 1px solid var(--glass-border);
    opacity: 0.8;
    transform: scale(0.95);
}

.other-tools:hover {
    opacity: 1;
    transform: scale(0.98);
}

.other-tools .card-header h3 { color: var(--text-muted); }
.other-tools .status-icon { color: var(--text-muted); opacity: 0.5; }
.other-tools ul li { color: var(--text-muted); }
.other-tools ul li i { color: #cbd5e1; }

/* EmpathyIQ Card (Right - Premium) */
.our-tool {
    background: white;
    border: 1px solid rgba(45, 138, 138, 0.2);
    box-shadow: 0 25px 50px -12px rgba(45, 138, 138, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    z-index: 10;
}

.our-tool .card-header { border-bottom-color: rgba(45, 138, 138, 0.1); }
.our-tool .card-header h3 { color: var(--primary-color); }
.our-tool .status-icon { 
    color: var(--primary-color); 
    background: rgba(45, 138, 138, 0.1);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.our-tool ul li { color: var(--text-color); }
.our-tool ul li i { color: var(--primary-color); }

/* VS Divider */
.comparison-divider {
    position: relative;
    z-index: 20;
    flex-shrink: 0;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8), 0 10px 20px rgba(45, 138, 138, 0.3);
    border: 2px solid white;
}

/* Animations & Accents */
.corner-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.top-right {
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(45, 138, 138, 0.2), transparent 70%);
}

.bottom-left {
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(46, 63, 81, 0.1), transparent 70%);
}

.our-tool:hover {
    transform: scale(1.07);
    box-shadow: 0 30px 60px -12px rgba(45, 138, 138, 0.25);
}

.our-tool ul li {
    position: relative;
    z-index: 2;
}

/* Safeguards Section - Dark Navy Background */
/* Safeguards Section - Dark Navy Background */
.safeguards-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

/* Cyber/Tech background effect */
.safeguards-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 35, 50, 0.9), rgba(26, 35, 50, 0.95)),
        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' fill-rule='evenodd'%3E%3Cg fill='%232d8a8a' fill-opacity='0.05'%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");
    z-index: 0;
}

.safeguards-section .container {
    position: relative;
    z-index: 1;
}

.safeguards-section h2, 
.safeguards-section p {
    color: var(--text-light);
}

.safeguards-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

/* Shield Visual */
.shield-visual {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.shield-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    animation: pulse-red 2s infinite;
}

.shield-icon {
    font-size: 1.8rem;
    color: var(--bg-color);
}

@keyframes pulse-red {
    0% { width: 100%; height: 100%; opacity: 0.8; }
    100% { width: 200%; height: 200%; opacity: 0; }
}

/* Grid Layout */
.safeguards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .safeguards-grid {
        grid-template-columns: 1fr;
    }
}

.safeguard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.safeguard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; 
    width: 4px; height: 100%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.safeguard-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.safeguard-card:hover::before {
    opacity: 1;
    width: 6px;
}

.sg-icon {
    font-size: 2rem;
    color: var(--bg-color);
    opacity: 0.8;
    background: var(--accent-color);
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.sg-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.sg-content strong {
    color: var(--primary-color);
}

/* Note Section */
.safeguards-note {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(45, 138, 138, 0.1);
    border: 1px solid rgba(45, 138, 138, 0.3);
    padding: 20px 30px;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safeguards-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.safeguards-note p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.safeguards-note strong {
    color: var(--accent-color);
}

/* Who It's For */
.who-section {
    background-color: var(--bg-light-gray);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45, 138, 138, 0.05), transparent 70%);
    z-index: 0;
}

.who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .who-container {
        grid-template-columns: 1fr;
    }
}

.who-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.context-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: rgba(45, 138, 138, 0.2);
}

.card-badge {
    position: absolute;
    top: 15px; right: 20px;
    background: var(--bg-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.alt {
    background: var(--primary-color);
}

.who-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.card-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Role List (Left) */
.role-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.role-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.role-list li:hover {
    background: #ffffff;
    border-color: var(--glass-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateX(5px);
}

.role-icon {
    width: 40px; height: 40px;
    background: rgba(45, 138, 138, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.role-list span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Context List (Right) */
.context-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.context-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.context-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.context-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.context-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Form Section Layout */
.form-section {
    background: linear-gradient(to bottom, #ffffff, #f0f9ff);
    padding: 80px 0;
}

.form-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sidebar | Form */
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sidebar Styling */
.form-sidebar {
    position: sticky;
    top: 100px; /* Sticky scroll */
}

.sidebar-content {
    padding-right: 20px;
}

.sidebar-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.sidebar-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.sidebar-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sidebar-benefits h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sidebar-benefits ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-benefits li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sidebar-benefits i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(45, 138, 138, 0.1);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.sidebar-benefits strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 4px;
}

.sidebar-benefits span {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.sidebar-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-style: italic;
}

/* Right Side Form Container */
.form-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid var(--glass-border);
}

.form-header-mobile {
    display: none; /* Hidden on desktop */
}

.form-section-group {
    margin-bottom: 30px;
}

.group-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

@media (max-width: 900px) {
    .form-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-sidebar {
        position: static;
        text-align: center;
    }
    
    .sidebar-benefits ul {
        align-items: center;
        text-align: left;
    }

    .form-header-mobile {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .sidebar-content h2 {
        font-size: 2rem;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
}

.required { color: var(--error-color); }

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 138, 138, 0.15);
    background: #ffffff;
}

.inline-text-input {
    display: inline-block;
    width: auto !important;
    padding: 5px 10px !important;
    margin-left: 10px;
}

/* Radio & Checkbox Styling */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option, .checkbox-option, .checkbox-group label {
    display: flex;
    align-items: flex-start; /* Align top for multiline text */
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.radio-horizontal {
    display: flex;
    gap: 20px;
}

.radio-horizontal label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

input[type="radio"], input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.acknowledgment {
    background: rgba(45, 138, 138, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(45, 138, 138, 0.2);
}

/* Footer - Modern Dark Design */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient bar at top */
.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--rose-gold), var(--teal));
    background-size: 200% 100%;
    animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtle background pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 70px 0 50px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-tagline {
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 25px !important;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.3);
}

/* Column Headings */
.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rose-gold);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links li a:hover::after {
    width: 100%;
}

/* Contact List with Icons */
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li i {
    color: var(--teal);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Media Kit Button */
.footer-media-kit {
    margin-top: 22px;
}

.btn-footer-media {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(184, 131, 90, 0.4);
    border-radius: 8px;
    color: var(--rose-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(184, 131, 90, 0.05);
}

.btn-footer-media:hover {
    background: rgba(184, 131, 90, 0.15);
    border-color: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 131, 90, 0.15);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-bottom-center {
    text-align: center;
}

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

.footer-bottom-center a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contracting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}

.contracting-badge i {
    color: var(--teal);
    font-size: 1rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .contracting-badge {
        font-size: 0.78rem;
    }
}

/* Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 138, 138, 0.15);
  top: -150px;
  left: -150px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(46, 63, 81, 0.1);
  bottom: 0px;
  right: -100px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .headline, .subheadline { font-size: 1.4rem; }
  
  .intro-card {
      margin-top: -50px;
      padding: 30px;
  }
  
  .comparison-container {
      flex-direction: column;
  }
  
  .comparison-card {
      border-radius: 20px;
      text-align: left;
  }
  
  .other-tools {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
  }
  
  .our-tool {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
  }
  
  .comparison-divider {
      transform: rotate(90deg);
      margin: -10px auto;
  }
  
  .safeguards-list, .who-grid, .form-row {
      grid-template-columns: 1fr;
  }
  
  .nav-links {
      display: none; /* Hide standard nav on mobile */
  }
  
  .mobile-toggle {
      display: flex;
  }
}

/* Intro Section Redesign */

.intro.section {
    padding: 100px 0;
    overflow: hidden; /* Contain floating elements */
    position: relative;
}

/* Feature Layout */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

/* Typography Enhancements */
.feature-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-color); /* Updated to variable from styles.css */
    margin-bottom: 20px;
    line-height: 1.6;
}

.emphasis-box {
    background: rgba(45, 138, 138, 0.05); /* Teal hint */
    border-left: 4px solid #2d8a8a; /* Primary Color */
    padding: 25px;
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #1a2332; /* Deep Navy text */
}

.emphasis-box i {
    font-size: 2rem;
    color: #2d8a8a;
}

/* Abstract UI Visuals */
.ui-card {
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ui-card:hover {
    transform: scale(1.02) perspective(1000px) rotateY(0) rotateX(0);
}

/* Dashboard Mockup (Left Visual) */
.dashboard-main {
    width: 380px;
    height: 260px;
    background: linear-gradient(145deg, #0f172a, #1e293b); /* Dark Navy / Slate */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    overflow: hidden;
}

.ui-header {
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.ui-body {
    padding: 20px;
    position: relative;
    height: calc(100% - 36px);
}

/* Abstract Data Viz */
.grid-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2dd4bf; /* Teal-400 */
    border-radius: 50%;
    box-shadow: 0 0 15px #2dd4bf;
    z-index: 2;
}

.p1 { top: 40%; left: 30%; }
.p2 { top: 60%; left: 70%; animation: pulse-point 2s infinite; }
.p3 { top: 30%; left: 60%; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.5), transparent);
    transform-origin: left center;
}

.c1 { top: 41%; left: 31%; width: 140px; transform: rotate(15deg); }
.c2 { top: 33%; left: 60%; width: 60px; transform: rotate(105deg); }

/* Document Mockup (Right Visual) */
.doc-main {
    width: 300px;
    height: 380px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(10deg) rotateX(2deg);
    position: relative;
}

.doc-lines {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 4px;
}

.l1 { width: 40%; margin-bottom: 20px; height: 16px; background: #cbd5e1; } /* Heading */
.l2 { width: 100%; }
.l3 { width: 92%; }
.l4 { width: 96%; }
.l5 { width: 80%; }

.stamp-seal {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 100px;
    height: 100px;
    border: 4px solid #2d8a8a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2d8a8a;
    transform: rotate(-15deg);
    opacity: 0.9;
    background: rgba(45, 138, 138, 0.05);
}

.stamp-seal i { font-size: 2rem; margin-bottom: 5px; }
.stamp-seal span { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; }

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 1);
    min-width: 180px;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.icon-teal { background: linear-gradient(135deg, #2dd4bf, #0f766e); box-shadow: 0 8px 16px -4px rgba(15, 118, 110, 0.3); }
.icon-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); box-shadow: 0 8px 16px -4px rgba(124, 58, 237, 0.3); }
.icon-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.3); }

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-point {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(45, 212, 191, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.float-animation-1 { animation: float 6s ease-in-out infinite; }
.float-animation-2 { animation: float 7s ease-in-out infinite 0.5s; }
.float-animation-3 { animation: float 8s ease-in-out infinite 1s; }

/* Positioning */
.stat-1 { top: 0px; right: 20px; }
.stat-2 { bottom: 20px; left: -20px; }
.stat-3 { top: 60px; left: -40px; }

/* Mobile */
@media (max-width: 900px) {
    .feature-row {
        flex-direction: column !important;
        gap: 60px;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .feature-visual { height: 320px; width: 100%; }
    
    .dashboard-main { width: 100%; max-width: 320px; }
    .doc-main { width: 90%; max-width: 280px; }
    
    .stat-1 { top: -20px; right: 0; left: auto; }
    .stat-2 { bottom: -20px; left: 0; }
    .stat-3 { left: 50%; transform: translateX(-50%); top: auto; bottom: -30px; }
    
    .emphasis-box {
        text-align: left;
    }
}

/* canvas particle styling */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind everything else */
    pointer-events: none; /* Allow clicks to pass through to buttons */
}

/* Disclaimer Section */
.disclaimer-container {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer-container h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.disclaimer-container p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.disclaimer-col ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.disclaimer-col ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.disclaimer-col ul li::before {
    content: "?";
    color: var(--text-muted);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Post-Submit Success Message Styling */
#post-submit-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensure it takes up vertical space similar to the form to avoid jarring layout shift */
    min-height: 400px; 
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
}

.success-image {
    width: 265px;
    max-width: 60%;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    object-fit: cover;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s backwards;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s backwards;
}

.success-content h3 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.success-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.success-content .btn-outline {
    margin-top: 30px;
    padding: 12px 30px;
    border-width: 2px;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
/* Services Section */
.services-section {
    background-color: var(--bg-light-gray);
    position: relative;
    padding-bottom: 50px; /* Separate visually */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 138, 138, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.service-card .btn-outline {
    width: 100%;
    margin-top: auto;
}
/* LANDING CSS - Merged Styles for Landing and Services Pages */

/* =========================================
   1. Shared / Common Styles
   ========================================= */

/* Hero Base Overrides if needed, otherwise relying on styles.css .hero */
.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--rose-gold);
    text-transform: uppercase;
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
}

.subheadline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
}

/* Integration Section Shared Styles */
.integration-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.integration-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.integration-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Common Venn Diagram Components */
.venn-circle, .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

/* =========================================
   2. Landing Page Specific Styles
   ========================================= */

/* Landing Hero */
.landing-hero {
    background: radial-gradient(circle at top right, rgba(44, 95, 93, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(184, 131, 90, 0.05), transparent 50%);
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.landing-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

/* Modern Glassmorphism Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 220px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(44, 95, 93, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), #1F4241);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Top-center colored circle for the icons */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px auto;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(44, 95, 93, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05);
}

/* Hero Stats Mobile Fix */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 40px;
    }

    .stat-item {
        min-width: unset;
        width: 100%;
        max-width: 360px;
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .stat-item {
        max-width: 100%;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
        gap: 4px;
    }

    .stat-icon {
        font-size: 1.25rem;
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }
}

/* Modern Text Button Styles */
.secondary-ctas {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-text::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 16px; 
    right: 16px;
    height: 1.5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.btn-text:hover {
    color: var(--primary-color);
    background: rgba(44, 95, 93, 0.04);
}

.btn-text:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn-text:hover i.down-arrow {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .secondary-ctas {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .btn-text {
        font-size: 0.88rem;
        padding: 10px 16px;
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .btn-text {
        font-size: 0.82rem;
        max-width: 100%;
    }
}

/* The Gap Section */
/* The Gap Section */
.gap-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gap-container-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.gap-text-content {
    order: 1;
}

.gap-text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.gap-text-content .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 30px;
}

.gap-visual-content {
    order: 2;
    position: relative;
}

/* Modern Quote Card */
.pull-quote-card {
    background: linear-gradient(145deg, #2C5F5D, #1F4241);
    padding: 50px 40px;
    border-radius: 24px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 20px 50px rgba(44, 95, 93, 0.25);
}

.pull-quote-card::before {
    content: '?';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 15rem;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-decoration {
    margin-top: 30px;
    width: 60px;
    height: 3px;
    background: var(--rose-gold);
}

@media (max-width: 900px) {
    .gap-container-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gap-text-content {
        order: 1;
    }
    
    .gap-visual-content {
        order: 2;
    }
}

/* Framework Section */
.framework-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(44, 95, 93, 0.05) 100%);
    padding: 100px 0;
    position: relative;
}

.framework-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.framework-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.framework-intro p:first-of-type {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
}

.framework-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.framework-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(44, 95, 93, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--rose-gold));
    opacity: 0.8;
    transition: height 0.3s ease;
    z-index: 0;
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 95, 93, 0.15);
    /* border-color: var(--primary-color); */
}

.framework-card:hover::before {
    height: 6px;
    opacity: 1;
}

.framework-card h3 {
    color: var(--teal);
    margin: 15px 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.framework-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.regulatory-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.reg-item {
    background: #fff;
    color: var(--teal);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(44, 95, 93, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: default;
}

.reg-item:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 93, 0.2);
    border-color: var(--teal);
}

/* Landing Pathways Block */
.pathways-section .section-header { margin-bottom: 60px; }

.pathway-block {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.pathway-block.reverse {
    flex-direction: row-reverse;
}

.pathway-content {
    flex: 1;
}

.pathway-content h3 {
    color: var(--rose-gold);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pathway-content h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--teal);
}

.pathway-visual {
    flex: 1;
    background: var(--light-gray);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    position: sticky;
    top: 120px;
    transition: top 0.3s ease;
}

/* Consulting pathway block (accordion section) */
.consulting-pathway-block {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.consulting-pathway-block.reverse {
    flex-direction: row-reverse;
}

/* Consulting tiers accordion */
.consulting-tiers-accordion {
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.consulting-tiers-accordion .tier-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.consulting-tiers-accordion .tier-item:last-child {
    margin-bottom: 0;
}

.consulting-tiers-accordion .tier-item:hover {
    border-color: rgba(44, 95, 93, 0.2);
    box-shadow: var(--shadow-lg);
}

.consulting-tiers-accordion .tier-item.active {
    border-color: var(--teal);
    box-shadow: 0 4px 14px rgba(44, 95, 93, 0.12);
}

.consulting-tiers-accordion .tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 18px;
    transition: background 0.2s ease;
}

.consulting-tiers-accordion .tier-header:hover {
    background: rgba(44, 95, 93, 0.04);
}

.consulting-tiers-accordion .tier-item.active .tier-header {
    background: rgba(44, 95, 93, 0.06);
}

.consulting-tiers-accordion .tier-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.consulting-tiers-accordion .tier-name {
    font-size: 1.1rem;
    color: var(--teal);
    display: block;
}

.consulting-tiers-accordion .tier-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.consulting-tiers-accordion .tier-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 95, 93, 0.1);
    color: var(--teal);
    transition: transform 0.3s ease, background 0.2s ease;
}

.consulting-tiers-accordion .tier-icon i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.consulting-tiers-accordion .tier-item.active .tier-icon {
    background: rgba(44, 95, 93, 0.15);
}

.consulting-tiers-accordion .tier-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.consulting-tiers-accordion .tier-item.active .tier-body {
    max-height: 1400px;
    opacity: 1;
}

.consulting-tiers-accordion .tier-item.active .tier-icon i {
    transform: rotate(45deg);
}

.consulting-tiers-accordion .tier-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 20px 20px 20px;
}

.consulting-tiers-accordion .tier-visual-col {
    flex-shrink: 0;
}

.consulting-tiers-accordion .tier-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.consulting-tiers-accordion .tier-badge i {
    font-size: 1.5rem;
}

.consulting-tiers-accordion .tier-badge.readiness-badge {
    background: linear-gradient(135deg, var(--teal), var(--primary-dark));
}

.consulting-tiers-accordion .tier-badge.build-badge {
    background: linear-gradient(135deg, var(--rose-gold), #9a6b45);
}

.consulting-tiers-accordion .tier-badge.advisory-badge {
    background: linear-gradient(135deg, #6D8B8A, var(--teal));
}

.consulting-tiers-accordion .tier-content-col {
    flex: 1;
    min-width: 0;
}

.consulting-tiers-accordion .tier-desc {
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-color);
}

.consulting-tiers-accordion .tier-details-box {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.consulting-tiers-accordion .tier-detail-row {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.consulting-tiers-accordion .tier-detail-row:last-child {
    margin-bottom: 0;
}

.consulting-tiers-accordion .tier-detail-row strong {
    color: var(--teal);
    margin-right: 6px;
}

.consulting-footer-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.consulting-footer-text p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .consulting-pathway-block,
    .consulting-pathway-block.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .consulting-tiers-accordion .tier-inner {
        flex-direction: column;
        gap: 16px;
    }

    .consulting-tiers-accordion .tier-header {
        padding: 14px 16px;
    }

    .consulting-tiers-accordion .tier-inner {
        padding: 0 16px 16px 16px;
    }
}

/* Training accordion (pathway 3) */
.training-accordion {
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.training-accordion .training-accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.training-accordion .training-accordion-item:last-child {
    margin-bottom: 0;
}

.training-accordion .training-accordion-item:hover {
    border-color: rgba(44, 95, 93, 0.2);
    box-shadow: var(--shadow-lg);
}

.training-accordion .training-accordion-item.active {
    border-color: var(--teal);
    box-shadow: 0 4px 14px rgba(44, 95, 93, 0.12);
}

.training-accordion .training-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    background: transparent;
    border: none;
    transition: background 0.2s ease;
}

.training-accordion .training-accordion-header:hover {
    background: rgba(44, 95, 93, 0.04);
}

.training-accordion .training-accordion-item.active .training-accordion-header {
    background: rgba(44, 95, 93, 0.06);
}

.training-accordion .training-accordion-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--teal);
}

.training-accordion .training-accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 95, 93, 0.1);
    color: var(--teal);
    transition: transform 0.3s ease, background 0.2s ease;
}

.training-accordion .training-accordion-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.training-accordion .training-accordion-item.active .training-accordion-icon {
    background: rgba(44, 95, 93, 0.15);
}

.training-accordion .training-accordion-item.active .training-accordion-icon i {
    transform: rotate(45deg);
}

.training-accordion .training-accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.training-accordion .training-accordion-item.active .training-accordion-body {
    max-height: 1200px;
    opacity: 1;
    padding: 0 20px 20px 20px;
}



.training-accordion .training-accordion-body p {
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-color);
}

.training-accordion .training-accordion-body p:first-child {
    margin-top: 4px;
}

.training-accordion .training-accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .training-accordion .training-accordion-header {
        padding: 14px 16px;
    }

    .training-accordion .training-accordion-body {
        padding: 0 16px 16px 16px;
    }

    .training-accordion .training-accordion-body p {
        margin-bottom: 10px;
    }
}

/* Feature List (Landing) */
.feature-list {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    list-style: disc;
}

.consulting-tiers-mini {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px;
}

.tier-mini {
    flex: 1;
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.tier-mini strong {
    display: block;
    color: var(--teal);
    margin-bottom: 5px;
}

/* =========================================
   Integration Section (Redesigned)
   ========================================= */
.integration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); /* Subtle gradient */
    position: relative;
    overflow: hidden;
    text-align: left; /* Alignment specific to this layout */
}

/* Decorative background element */
.integration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 95, 93, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.integration-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.integration-text-col h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--charcoal);
}

.integration-body p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.integration-body p:last-child {
    margin-bottom: 0;
}

.integration-body p strong {
    color: var(--teal);
    font-weight: 600;
}

.integration-graphic {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-graphic img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.integration-graphic:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .integration-section {
        padding: 60px 0;
    }

    .integration-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .integration-text-col {
        align-items: center;
    }

    .integration-text-col h2 {
        font-size: 2rem;
        word-break: break-word;
    }

    .integration-body p {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .integration-graphic {
        margin: 0 auto;
        max-width: 100%;
    }

    .integration-graphic img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .integration-section {
        padding: 50px 0;
    }

    .integration-text-col h2 {
        font-size: 1.7rem;
    }

    .integration-body p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .integration-graphic {
        max-width: 100%;
    }
}

/* Pricing/Tiers Section (Landing Table) */
.tiers-section {
    background-color: var(--teal);
    padding: 80px 0;
}

.tier-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 20px;
}

.tier-table {
    width: 100%;
    border-collapse: collapse;
}

.tier-table th, .tier-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tier-table th:first-child, .tier-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--charcoal);
}

/* Pricing Disclaimer Note */
.pricing-disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 16px 30px;
    background: #ffffff;
    border: 1px solid rgba(44, 95, 93, 0.15);
    border-radius: 50px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pricing-disclaimer i {
    color: var(--teal);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pricing-disclaimer small {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-disclaimer {
        flex-direction: column;
        border-radius: 16px;
        padding: 20px;
        gap: 10px;
        text-align: center;
    }
}

.tier-table th {
    font-size: 1.1rem;
    color: var(--teal);
    padding-bottom: 20px;
}

.tier-table td {
    color: #666;
}

.tier-table .action-row td {
    border-bottom: none;
    padding-top: 30px;
}

.tier-table .action-row .btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px 18px;
}

/* Mobile: Convert action row to stacked buttons below the table */
@media (max-width: 768px) {
    .tier-table-wrapper {
        padding: 10px;
    }

    .tier-table th, .tier-table td {
        padding: 10px 8px;
        font-size: 0.82rem;
    }

    .tier-table th {
        font-size: 0.9rem;
    }

    .tier-table .action-row td {
        padding-top: 15px;
    }

    .tier-table .action-row .btn {
        font-size: 0.75rem;
        padding: 8px 10px;
        display: inline-block;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }
}

/* Differentiation Section */
.diff-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, var(--light-gray) 100%);
    position: relative;
}

.diff-content {
    max-width: 1100px;
    margin: 0 auto;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diff-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--rose-gold));
    opacity: 0.8;
    transition: background 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.diff-card:hover::before {
    background: var(--rose-gold);
}

.diff-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 95, 93, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.diff-card:hover .card-icon {
    background: var(--teal);
    color: #fff;
    transform: rotate(5deg);
}

.diff-card h4 {
    color: var(--charcoal);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.diff-details {
    font-size: 0.9rem;
    color: var(--rose-gold);
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.diff-card .separator {
    width: 40px;
    height: 2px;
    background: #eee;
    margin: 0 auto 15px;
}

.diff-card p:last-child {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Solution Box Highlight */
.solution-box {
    background: linear-gradient(135deg, var(--teal), #1F4241);
    border-radius: 16px;
    padding: 40px;
    color: white;
    text-align: center;
    position: relative;
    /* margin-top: 60px handled by mt-5 utility if present, but adding margin-top here ensures spacing */
    margin-top: 60px; 
    box-shadow: 0 15px 40px rgba(44, 95, 93, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.solution-box strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    /* text-transform: uppercase; letter-spacing: 1px; optional style choice */
}

/* Pull Quote Redesign */
.pull-quote {
    margin: 80px auto 20px;
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--rose-gold);
    position: relative;
    max-width: 900px;
    line-height: 1.4;
    padding: 0 20px;
}

.pull-quote::before {
    content: '"';
    color: rgba(184, 131, 90, 0.15);
    font-size: 8rem;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

/* Founder Section */
.founder-section {
    background: #fdfaf8; /* Very subtle warm tint */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

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

.founder-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 5px solid white;
    z-index: 2;
}

.founder-portrait {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-image-frame:hover .founder-portrait {
    transform: scale(1.03);
}

.photo-placeholder.headshot {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.frame-decoration {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rose-gold);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
}

.founder-content-col {
    position: relative;
    z-index: 5;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.founder-bio .bio-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.bio-highlight-box {
    margin-top: 30px;
    padding: 25px;
    background: rgba(44, 95, 93, 0.04);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
}

.bio-highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--teal);
    font-weight: 500;
}

.founder-signature-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.sig-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 2px;
}

.sig-role {
    font-size: 0.95rem;
    color: var(--teal);
    font-weight: 600;
}

.sig-company {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .founder-visual-col {
        margin-bottom: 10px;
    }
    
    .bio-highlight-box {
        text-align: left;
    }
    
    .founder-signature-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Trust Section */
/* ── Trust & Credibility Section ── */
.trust-section {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--teal) 40%, #1a4a48 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Floating Background Orbs */
.trust-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.trust-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.trust-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--rose-gold);
    top: -100px;
    right: -80px;
    animation: trustFloat 12s ease-in-out infinite;
}
.trust-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -60px;
    left: -60px;
    animation: trustFloat 15s ease-in-out infinite reverse;
}
.trust-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: trustFloat 10s ease-in-out infinite 2s;
}
@keyframes trustFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.05); }
}

/* Section Header */
.trust-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.trust-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    background: rgba(184, 131, 90, 0.12);
    border: 1px solid rgba(184, 131, 90, 0.25);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}
.trust-section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.trust-highlight {
    color: var(--rose-gold);
    background: linear-gradient(to top, rgba(184, 131, 90, 0.15) 0%, rgba(184, 131, 90, 0.15) 35%, transparent 35%);
    padding: 0 4px;
    border-radius: 2px;
}
.trust-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Card Grid */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.trust-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.trust-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.trust-col:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(184, 131, 90, 0.2);
}
.trust-col:hover::before {
    opacity: 1;
}

/* Card Number */
.trust-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}
.trust-col:hover .trust-card-number {
    color: rgba(184, 131, 90, 0.12);
}

/* Trust Header with Icon Wrap */
.trust-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-icon-wrap {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(184, 131, 90, 0.15), rgba(184, 131, 90, 0.05));
    border: 1px solid rgba(184, 131, 90, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.trust-col:hover .trust-icon-wrap {
    background: linear-gradient(135deg, rgba(184, 131, 90, 0.25), rgba(184, 131, 90, 0.1));
    box-shadow: 0 0 20px rgba(184, 131, 90, 0.15);
}
.trust-icon {
    font-size: 1.3rem;
    color: var(--rose-gold);
}
.trust-col h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Federal Credentials */
.cred-box {
    margin-top: 8px;
}
.cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}
.cred-row:hover {
    background: rgba(255, 255, 255, 0.06);
}
.cred-key {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 500;
}
.cred-val {
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 10px;
    border-radius: 5px;
}
.sam-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.08);
    color: #4ade80;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
    width: 100%;
    border: 1px solid rgba(74, 222, 128, 0.15);
    transition: all 0.3s ease;
}
.sam-tag:hover {
    background: rgba(74, 222, 128, 0.12);
}

/* Regulatory Standards Tags */
.standards-tags {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.standards-tags li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.standards-tags li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 131, 90, 0.2);
    transform: translateX(4px);
}
.standards-tags li i {
    color: var(--rose-gold);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Social Proof Placeholder */
.proof-placeholder-box {
    text-align: center;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 80px);
}
.proof-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 131, 90, 0.08);
    border: 1px solid rgba(184, 131, 90, 0.15);
    margin-bottom: 20px;
}
.proof-icon-large i {
    font-size: 1.8rem;
    color: var(--rose-gold);
    opacity: 0.6;
}
.proof-placeholder-box p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 220px;
}
.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--rose-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(184, 131, 90, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}
.proof-badge:hover {
    background: rgba(184, 131, 90, 0.1);
}

@media (max-width: 900px) {
    .trust-section-header h2 {
        font-size: 2.2rem;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-header {
        justify-content: center;
    }
    .trust-col {
        text-align: center;
    }
    .trust-card-number {
        display: none;
    }
    .sam-tag {
        justify-content: center;
    }
    .standards-tags {
        align-items: center;
    }
    .standards-tags li {
        text-align: left;
        width: 100%;
    }
    .cred-row {
        justify-content: center;
        gap: 12px;
    }
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    border: 1px solid rgba(31,66,65,0.5);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fcfcfc;
    transition: background 0.2s ease;
}

.faq-header:hover {
    background: #fcfcfc;
}

.faq-header h4 {
    margin: 0;
    padding-right: 20px;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.faq-item.active .faq-header h4 {
    color: var(--teal);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(44, 95, 93, 0.05);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--teal);
    color: white;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: var(--white);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-content-inner {
    padding: 30px;
}

.faq-content-inner p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 20px;
    }
    
    .faq-content-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-header h4 {
        font-size: 1rem;
    }
}

/* Application Form Section */
.application-section {
    padding: 100px 0;
    background: #1e1e1e; /* Dark theme for contrast */
    color: white;
    position: relative;
    overflow: hidden;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0; /* Ensure this is behind content */
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1; /* Ensure content is above the background pseudo-element */
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Column Styles */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(226, 177, 137, 0.15); /* rose gold tint */
    color: var(--rose-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(226, 177, 137, 0.3);
}

.application-content-col {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.application-content-col .section-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.application-content-col .section-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
}

.benefits-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.benefits-title {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-size: 1.1rem;
    margin: 0;
    padding: 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--rose-gold);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 95, 93, 0.3);
    border: 1px solid rgba(44, 95, 93, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .application-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    
    .application-content-col {
        text-align: center;
    }
    
    .section-badge {
        margin: 0 auto 20px auto;
    }
    
    .benefits-title {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        align-items: center;
        text-align: center;
    }
}

/* Right Column (Form) Styles */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--charcoal);
    position: relative; /* Establish stacking context */
    z-index: 2; /* Ensure form is well above background effects */
}

/* Success Message Styles */
.success-message-container {
    display: none; /* Initially hidden */
    text-align: center;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.success-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.success-message-container h3 {
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message-container p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-pill {
    background: #f0f2f5;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-pill:hover {
    background: #e9ecef;
}

.checkbox-pill input {
    accent-color: var(--teal);
}

.checkbox-pill:has(input:checked) {
    background: rgba(44, 95, 93, 0.1);
    border-color: var(--teal);
    color: var(--teal);
    font-weight: 500;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.custom-checkbox input {
    margin-top: 3px;
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
}

.form-footer-disclaimer {
    margin-top: 25px;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .application-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .application-content-col {
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================
   3. Services Page Specific Styles
   =========================================*/
/* Services Hero - Standardized with main theme */
.services-hero {
    background: radial-gradient(circle at top right, rgba(44, 95, 93, 0.2), transparent 50%), 
                radial-gradient(circle at bottom left, rgba(184, 131, 90, 0.1), transparent 50%),
                var(--charcoal);
    padding: 160px 0 100px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
}

.services-hero .subheadline {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 30px;
    display: block;
    line-height: 1.6;
}

.services-hero .tagline {
    display: block;
    color: var(--rose-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* Scroll Indicator */
.services-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 10;
}

.services-hero .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.services-hero .scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.services-hero .scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Service Pathways Section */
.pathways-section.services-page-layout {
    padding: 80px 0;
}

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

.pathway-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--rose-gold);
}

.pathway-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--teal);
    font-weight: 700;
}

.pathway-card .pathway-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pathway-card .btn-link {
    font-weight: 600;
    color: var(--rose-gold);
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: auto;
    display: inline-block;
}

.pathway-card .btn-link:hover {
    text-decoration: underline;
}

/* Platform Section (Services Page) */
.platform-detail-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.platform-body {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.platform-body .lead-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.platform-body .strong-text {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.capability-item h4 {
    color: var(--teal);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.regulatory-alignment {
    margin-top: 60px;
    background: var(--teal);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.regulatory-alignment h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.regulatory-alignment ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.regulatory-alignment li {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
}

/* Consulting Section (Services Page) */
.consulting-section {
    padding: 80px 0;
    background: var(--white);
}

.consulting-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.2rem;
}

.consulting-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tier-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tier-card.highlight-tier {
    border: 2px solid var(--teal);
    box-shadow: 0 10px 30px rgba(44, 95, 93, 0.15);
    background: #f9fdfd;
}

.tier-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.tier-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tier-header .timeline {
    font-family: inherit;
    font-weight: 300;
    font-size: 1rem;
    color: var(--rose-gold);
}

.deliverables-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
}

.deliverables-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.for-statement {
    font-style: italic;
    color: #666;
    margin-top: auto;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 20px;
}



/* Training Section (Services Page) */
.training-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.training-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.training-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.training-card h3 {
    margin-bottom: 15px;
    color: var(--teal);
}

.training-card ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
}

.training-card li {
    margin-bottom: 10px;
}

.small-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.media-download {
    margin-top: 60px;
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Integration Visual (Services Version) */
.integration-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.integration-visual .circle {
    width: 180px;
    height: 180px;
    font-size: 1rem;
}

.integration-visual .circle-measure {
    background: var(--teal);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.integration-visual .circle-build {
    background: var(--rose-gold);
    bottom: 0;
    left: 0;
}

.integration-visual .circle-equip {
    background: #6D8B8A;
    bottom: 0;
    right: 0;
}

.integration-visual .circle-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    width: 80px;
    text-align: center;
}

/* CTA Section (Services) */
.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer Overrides for Services Page Style */
.footer-overrides {
    background: var(--light-gray);
    color: var(--charcoal);
    padding: 60px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-overrides .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-overrides .footer-brand h4, 
.footer-overrides .footer-contact h4 {
    color: var(--teal);
    margin-bottom: 15px;
}

.footer-overrides .footer-grid a {
    color: var(--charcoal);
    text-decoration: none;
}

.footer-overrides .footer-grid a:hover {
    color: var(--rose-gold);
}

.footer-overrides .footer-bottom {
    text-align: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   4. Responsive Styles
   ========================================= */

@media (max-width: 900px) {
    .framework-visual-grid,
    .pathway-block,
    .pathway-block.reverse,
    .diff-grid,
    .trust-grid,
    .founder-grid,
    .faq-grid,
    .pathways-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .pathway-visual {
        width: 100%;
        height: 250px;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .integration-visual {
        transform: scale(0.8);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
}
/* Media Kit Link Styling */
.media-kit-link {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(44, 95, 93, 0.1);
}

.media-kit-link .link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
    width: fit-content;
}

.media-kit-link .link-secondary:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.media-kit-link a:not(.link-secondary) {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}

.media-kit-link a:not(.link-secondary):hover {
    color: var(--teal);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .media-kit-link {
        align-items: center;
        text-align: center;
    }
}

/* =========================================
   Final CTA Section
   ========================================= */

.final-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: white;
}

.highlight-light {
    color: var(--rose-gold);
    background: linear-gradient(to top, rgba(226, 177, 137, 0.2) 0%, rgba(226, 177, 137, 0.2) 35%, transparent 35%);
    padding: 0 4px;
    border-radius: 2px;
}

.cta-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Custom Buttons for CTA */
.btn-lg {
    padding: 18px 36px;
    font-size: 1.15rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.btn-white-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Specific to primary button in this context */
.final-cta .btn-primary {
    background: white;
    color: var(--teal);
    border: 2px solid white;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.final-cta .btn-primary:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .cta-lead {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
    }
    
    .cta-group .btn-lg {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-group {
        padding: 0 15px;
    }

    .cta-group .btn-lg {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 13px 16px;
        white-space: normal;
    }
}


/* =========================================
   Redesigned Pathways Section (Step 241)
   ========================================= */

.pathways-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.pathways-content-col {
    display: flex;
    flex-direction: column;
    gap: 100px; /* Space between the 3 main sections */
}

.pathway-content-block {
    scroll-margin-top: 120px; /* For anchor navigation */
}

/* Typography mirroring previous styles */
.pathway-content-block h3 {
    color: var(--rose-gold);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.pathway-content-block h4 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--teal);
    line-height: 1.2;
}

.pathway-content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--charcoal);
}

/* Sticky Visual Column */
.pathways-visual-col {
    position: sticky;
    top: 120px; /* Adjust based on header height */
    height: fit-content;
    display: flex;
    justify-content: center;
}

.sticky-visual-container {
    width: 100%;
    height: 600px; /* Tall vertical visual */
    background: var(--bg-light-gray);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-visual-container .abstract-ui {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .pathways-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .pathways-visual-col {
        position: static;
        display: none; /* Hide visual on mobile to save scroll space */
    }
}


/* =========================================================
   SECTION 11: Early Adopter Application
   Clean, Light Gray Layout
   ========================================================= */

.ea-section {
    background: #F5F5F5;
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.ea-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.ea-badge {
    display: inline-block;
    background: rgba(44, 95, 93, 0.08);
    color: var(--teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ea-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 18px;
    line-height: 1.15;
}

.ea-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Required asterisk */
.required {
    color: #e53e3e;
}

/* Form Wrapper & Card */
.ea-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.ea-form-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Form Rows */
.ea-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ea-form-group {
    margin-bottom: 22px;
}

.ea-form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.ea-form-group input[type="text"],
.ea-form-group input[type="email"],
.ea-form-group select,
.ea-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--charcoal);
    background: #f9fafb;
    transition: all 0.25s ease;
    outline: none;
}

.ea-form-group input:focus,
.ea-form-group select:focus,
.ea-form-group textarea:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

.ea-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Checkbox Chips */
.ea-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ea-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.88rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    background: #f9fafb;
    line-height: 1;
    user-select: none;
}

.ea-chip:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(44, 95, 93, 0.04);
}

.ea-chip input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--teal);
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    vertical-align: middle;
    cursor: pointer;
}

/* Disclaimer */
.ea-disclaimer {
    background: rgba(44, 95, 93, 0.03);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(44, 95, 93, 0.08);
}

.ea-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.ea-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Submit Button */
.ea-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 10px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.ea-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 95, 93, 0.2);
}

/* Footnote */
.ea-form-footnote {
    text-align: center;
    font-size: 0.82rem;
    color: #999;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Success Message */
.ea-form-card .success-message-container {
    display: none;
    text-align: center;
    padding: 60px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.ea-form-card .success-message-container h3 {
    color: var(--teal);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ea-form-card .success-message-container p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
}

.ea-form-card .success-image {
    width: 160px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Benefits Strip */
.ea-benefits-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ea-benefit {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.ea-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.ea-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(44, 95, 93, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    transition: all 0.3s ease;
}

.ea-benefit:hover .ea-benefit-icon {
    background: var(--teal);
    color: #fff;
}

.ea-benefit h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.ea-benefit p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ea-section {
        padding: 70px 0;
    }

    .ea-header h2 {
        font-size: 2.2rem;
    }
    
    .ea-form-card {
        padding: 30px 24px;
    }
    
    .ea-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .ea-benefits-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ea-benefit {
        padding: 20px;
    }
}


/* =========================================================
   SERVICES PAGE (service.html) — Styles
   ========================================================= */


/* ── Three Pathways Cards ── */
.svc-pathways-section {
    background: var(--light-gray);
}
.svc-pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.svc-pathway-card {
    background: #ffffff;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.svc-pathway-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--rose-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.svc-pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44,95,93,0.12);
    border-color: var(--teal);
}
.svc-pathway-card:hover::before {
    opacity: 1;
}
.svc-pathway-card .card-icon {
    width: 52px;
    height: 52px;
    background: rgba(44,95,93,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 20px;
}
.svc-pathway-card h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 6px;
}
.svc-pathway-card .card-type {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rose-gold);
    font-weight: 600;
    margin-bottom: 16px;
}
.svc-pathway-card p {
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}
.svc-pathway-card .btn-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.svc-pathway-card .btn-link:hover {
    color: var(--rose-gold);
    transform: translateX(4px);
    display: inline-block;
}

/* ── Services Platform Section ── */
.svc-platform-section {
    background: #fff;
}
.platform-intro-block {
    max-width: 860px;
    text-align: center;
    margin: 0 auto 50px;
}
.platform-intro-block .lead-text {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}
.platform-intro-block .strong-text {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.3rem;
}

.svc-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.svc-capability-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.svc-capability-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--teal);
    opacity: 0;
    transition: opacity 0.3s;
}
.svc-capability-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.svc-capability-card:hover::after {
    opacity: 1;
}
.svc-capability-card h4 {
    color: var(--teal);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.svc-capability-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.svc-regulatory-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.svc-regulatory-bar .reg-tag {
    background: rgba(44,95,93,0.06);
    border: 1px solid rgba(44,95,93,0.12);
    color: var(--teal);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
}
.svc-regulatory-bar .reg-tag:hover {
    background: var(--teal);
    color: #fff;
}

/* ── Services Consulting Section ── */
.svc-consulting-section {
    background: var(--light-gray);
}
.consulting-intro-block {
    max-width: 860px;
    margin: 0 auto 50px;
    text-align: center;
}
.consulting-intro-block p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.7;
}

.svc-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.svc-tier-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.svc-tier-card.featured {
    border-color: var(--teal);
    box-shadow: 0 12px 35px rgba(44,95,93,0.12);
}
.svc-tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 40px;
    right: -37px;
    background: var(--teal);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 40px;
    transform: rotate(45deg);
}
.svc-tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.svc-tier-card .tier-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rose-gold);
    font-weight: 600;
    margin-bottom: 6px;
}
.svc-tier-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.svc-tier-card .tier-timeline {
    color: var(--teal);
    font-weight: 300;
    font-size: 0.92rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.svc-tier-card .tier-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.svc-tier-card .deliverables-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 10px;
}
.svc-tier-card .deliverables {
    list-style: none;
    margin-bottom: 20px;
}
.svc-tier-card .deliverables li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
}
.svc-tier-card .deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.5;
}
.svc-tier-card .for-statement {
    font-style: italic;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(44,95,93,0.04);
    border-radius: 8px;
}
.svc-tier-card .tier-cta {
    margin-top: auto;
}

.consulting-note {
    max-width: 860px;
    margin: 50px auto 0;
    position: relative;
}
.consulting-note-inner {
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.04) 0%, rgba(184, 131, 90, 0.03) 100%);
    border: 1px solid rgba(44, 95, 93, 0.12);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 32px 36px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consulting-note-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 95, 93, 0.08);
}
.note-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.note-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(44, 95, 93, 0.08);
    color: var(--teal);
    font-size: 1.15rem;
    margin-top: 2px;
}
.note-item p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.note-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 93, 0.12), transparent);
    margin: 18px 0 18px 52px;
}
@media (max-width: 768px) {
    .consulting-note-inner {
        padding: 24px 20px;
    }
    .note-item {
        gap: 12px;
    }
    .note-divider {
        margin-left: 0;
    }
}

/* ── Services Training & Speaking ── */
.svc-training-section {
    background: #ffffff;
}
.training-intro-block {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}
.training-intro-block p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
}

.svc-training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.svc-training-card {
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.3s ease;
}
.svc-training-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.svc-training-card .card-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.svc-training-card .card-header-row .t-icon {
    width: 44px;
    height: 44px;
    background: rgba(44,95,93,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--teal);
    flex-shrink: 0;
}
.svc-training-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
}
.svc-training-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.svc-training-card p strong {
    color: var(--charcoal);
}
.svc-training-card .format-tag {
    display: inline-block;
    background: rgba(184,131,90,0.1);
    color: var(--rose-gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-top: 8px;
    margin-bottom: 14px;
}
.svc-training-card ul {
    list-style: none;
    margin-bottom: 16px;
}
.svc-training-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
}
.svc-training-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-gold);
}
.svc-training-card ul li strong {
    color: var(--charcoal);
}

/* Portrait + Media Kit Row */
.media-kit-row {
    display: flex;
    align-items: center;
    gap: 40px;
    background:#1a1f2e;
    padding: 48px 48px;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.media-kit-row .mk-text {
    flex: 1;
}
.media-kit-row h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.media-kit-row p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.media-kit-row .mk-portrait {
    width: 180px;
    height: 240px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    text-align: center;
    padding: 16px;
    flex-shrink: 0;
}
.training-disclaimer {
    max-width: 860px;
    margin: 50px auto 0;
    position: relative;
}
.training-disclaimer-inner {
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.04) 0%, rgba(184, 131, 90, 0.03) 100%);
    border: 1px solid rgba(44, 95, 93, 0.12);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 28px 36px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.training-disclaimer-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 95, 93, 0.08);
}
.training-disclaimer-inner .note-item p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .training-disclaimer-inner {
        padding: 24px 20px;
    }
}

/* ── Services Integration Section ── */
.svc-integration-section {
    background: var(--light-gray);
}
.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.integration-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.integration-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 1.05rem;
}
.svc-venn-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.venn-container {
    position: relative;
    width: 320px;
    height: 280px;
}
.venn-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    line-height: 1.3;
}
.venn-c1 { background: rgba(44,95,93,0.7); top: 0; left: 50%; transform: translateX(-50%); }
.venn-c2 { background: rgba(184,131,90,0.7); bottom: 0; left: 0; }
.venn-c3 { background: rgba(109,139,138,0.7); bottom: 0; right: 0; }
.venn-center-label {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    z-index: 10;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    text-align: center;
    line-height: 1.3;
}

/* ── Services Final CTA ── */
.svc-cta-section {
    background: #243447;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.svc-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.svc-cta-section .cta-lead {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
}
.svc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    align-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ── Services Page Responsive ── */
@media (max-width: 1024px) {
    .svc-tiers-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
    .integration-layout { grid-template-columns: 1fr; text-align: center; }
    .svc-venn-visual { margin-top: 20px; }
}
@media (max-width: 768px) {
    .services-hero { padding-top: 120px; min-height: 60vh; }
    .services-hero h1 { font-size: 2.5rem; }
    .svc-pathways-grid { grid-template-columns: 1fr; }
    .svc-training-grid { grid-template-columns: 1fr; }
    .svc-capabilities-grid { grid-template-columns: 1fr; }
    .media-kit-row { flex-direction: column; text-align: center; padding: 32px 24px; }
    .media-kit-row .mk-portrait { width: 140px; height: 180px; }
    .svc-cta-section h2 { font-size: 2rem; }
    .svc-cta-buttons { flex-direction: column; align-items: center; }
    .section-header h2 { font-size: 1.6rem; line-height: 1.3; }
    .svc-consulting-section .section-header h2 { font-size: 1.4rem; }
}

/* SECTION 4 - WHAT IT IS */
.what-it-is-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.what-it-is-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.6;
}

.what-it-is-intro p {
    margin-bottom: 20px;
}

.what-it-is-intro p:last-child {
    margin-bottom: 0;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.empathy-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.empathy-comparison-table th {
    padding: 20px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: left;
    width: 50%;
}

.empathy-comparison-table th.col-without {
    background-color: var(--teal);
    color: var(--white);
}

.empathy-comparison-table th.col-with {
    background-color: var(--rose-gold);
    color: var(--white);
}

.empathy-comparison-table td {
    padding: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: top;
    color: var(--text-color);
}

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

.empathy-comparison-table td:first-child {
    border-right: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .empathy-comparison-table, 
    .empathy-comparison-table tbody, 
    .empathy-comparison-table tr, 
    .empathy-comparison-table th, 
    .empathy-comparison-table td {
        display: block;
        width: 100%;
    }
    
    .empathy-comparison-table th {
        text-align: center;
    }
    
    .empathy-comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .empathy-comparison-table td {
        border-right: none !important;
    }
}

/* SECTION 6 - WHO WE SERVE */
.who-we-serve-section {
    background-color: var(--white);
    padding: 100px 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.serve-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.serve-header {
    padding: 24px 30px;
    text-align: center;
}

.commercial-header {
    background-color: var(--teal);
}

.commercial-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.federal-header {
    background-color: var(--rose-gold);
}

.federal-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.serve-body {
    padding: 30px;
    flex-grow: 1;
}

.serve-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.serve-list li:last-child {
    margin-bottom: 0;
}

.serve-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.federal-list li::before {
    color: var(--rose-gold);
}

@media (max-width: 768px) {
    .serve-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 7 - WHY TRUST US */
.why-trust-us-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.trust-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 60px;
}

.trust-us-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.founder-overview {
    max-width: 800px;
    margin: 0 auto;
}

.founder-intro, .founder-context {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.founder-pull-quote {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin: 40px 0;
}

.quote-content {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-attribution {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.05rem;
}

.founder-link {
    margin-top: 30px;
}

.read-full-story {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    display: inline-block;
}

.read-full-story:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .trust-us-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 8 - HOW WE'RE DIFFERENT */
.difference-section {
    background-color: var(--white);
    padding: 100px 0;
}

.difference-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.6;
}

.difference-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.difference-table {
    width: 100%;
    border-collapse: collapse;
}

.difference-table th {
    background-color: var(--teal);
    color: var(--white);
    padding: 20px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.difference-table td {
    padding: 24px;
    font-size: 1.05rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-right: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color);
    vertical-align: top;
}

.difference-table td:last-child, .difference-table th:last-child {
    border-right: none;
}

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

.difference-table td strong {
    color: var(--charcoal);
    display: block;
    margin-bottom: 4px;
}

.difference-solution {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: 16px;
    border-left: 5px solid var(--rose-gold);
}

.difference-solution h3 {
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.solution-copy {
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.makes-it-work-title {
    color: var(--rose-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.solution-list li:last-child {
    margin-bottom: 0;
}

.solution-list li::before {
    content: '\eb7a'; /* remixicon check / ri-check-line equivalent if loaded */
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--teal);
    font-size: 1.2rem;
    background: rgba(44, 95, 93, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .difference-table, 
    .difference-table tbody, 
    .difference-table tr, 
    .difference-table th, 
    .difference-table td {
        display: block;
        width: 100%;
    }
    
    .difference-table th {
        text-align: center;
    }
    
    .difference-table tr {
        margin-bottom: 20px;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .difference-table td {
        border-right: none !important;
        padding: 16px;
    }

    .difference-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 8px;
        color: var(--teal);
    }
    
    .difference-solution {
        padding: 30px;
    }
}

/* SECTION 9 - EARLY ADOPTER APPLICATION */
.early-adopter-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.ea-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.early-adopter-section .section-header {
    margin-bottom: 30px;
}

.ea-text {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
}

.ea-text p {
    margin-bottom: 20px;
}

.ea-text p:last-child {
    margin-bottom: 0;
}

.ea-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-ea {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(23, 71, 75, 0.15) !important;
    transition: all 0.3s ease !important;
}

.btn-ea:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(23, 71, 75, 0.2) !important;
}

.ea-footnote {
    font-size: 0.95rem;
    color: var(--text-color);
    font-style: italic;
    margin-top: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ea-content-wrapper {
        padding: 40px 24px;
    }
}

/* SECTION 10 - FAQ ACCORDION */
.faq-section {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-accordion-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item.active {
    border-color: var(--teal);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: rgba(0,0,0,0.01);
}

.faq-accordion-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 600;
    padding-right: 20px;
}

.faq-accordion-item.active .faq-accordion-header h3 {
    color: var(--teal);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(44, 95, 93, 0.1);
    color: var(--teal);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
    background: var(--teal);
    color: var(--white);
    transform: rotate(90deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-accordion-content {
    padding: 0 30px 24px 30px;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-accordion-header h3 {
        font-size: 1.15rem;
    }

    .faq-accordion-header {
        padding: 20px;
    }

    .faq-accordion-content {
        padding: 0 20px 20px 20px;
    }
}

/* SECTION 11 - FOOTER */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
    padding: 100px 0 40px;
}

.footer-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--rose-gold) 100%);
    box-shadow: 0 4px 15px rgba(184, 131, 90, 0.3);
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    width: 180px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
    transition: opacity 0.3s;
}

.footer-brand-logo:hover {
    opacity: 0.9;
}

.footer-text {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-text a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-text a:hover {
    color: var(--rose-gold);
}

.footer-heading-small {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--rose-gold);
    border-radius: 2px;
}

.footer-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-text-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    max-width: 250px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.footer-legal-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.footer-legal-links .divider {
    color: rgba(255,255,255,0.2);
}

.footer-copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-top: 40px;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-heading-small::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-hero {
    background: radial-gradient(circle at top right, rgba(44, 95, 93, 0.2), transparent 50%), var(--charcoal);
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    border-bottom: 4px solid var(--teal);
}

.about-h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-block {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-content-block h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content-block p {
    margin-bottom: 24px;
}

.about-pullquote {
    background-color: var(--light-gray);
    border-left: 5px solid var(--rose-gold);
    padding: 40px;
    margin: 50px 0;
    border-radius: 0 16px 16px 0;
    font-size: 1.3rem;
    color: var(--teal);
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
}

.about-pullquote cite {
    display: block;
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--charcoal);
    font-style: normal;
    font-weight: 700;
}

.about-credentials {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-credentials-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-credentials-box h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--rose-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.credentials-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 16px;
}

.credentials-lists ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.credentials-lists li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.credentials-lists li::before {
    content: '\eb7a'; /* check ri-check-line */
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--teal);
    font-weight: bold;
}

.about-cta {
    padding: 80px 0 100px;
    background: var(--white);
}

.about-cta h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.about-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.about-return-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-return-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.center-text {
    text-align: center;
}

/* =========================================
   EARLY ADOPTER SECTION STYLES
   ========================================= */

.ea-section {
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    padding: 100px 0;
}

.ea-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.ea-badge {
    background: rgba(44, 95, 93, 0.1);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.ea-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ea-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.ea-form-wrapper {
    max-width: 850px;
    margin: 0 auto 80px;
}

.ea-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.ea-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.ea-form-group {
    margin-bottom: 25px;
}

.ea-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.ea-form-group input[type="text"],
.ea-form-group input[type="email"],
.ea-form-group select,
.ea-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.ea-form-group input:focus,
.ea-form-group select:focus,
.ea-form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(44, 95, 93, 0.1);
}

.required {
    color: #e53e3e;
}

.ea-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.ea-chip {
    background: #f1f5f9;
    border: 2px solid #f1f5f9;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ea-chip input {
    display: none;
}

.ea-chip:has(input:checked) {
    background: rgba(44, 95, 93, 0.1);
    border-color: var(--teal);
    color: var(--teal);
}

.ea-disclaimer {
    background: #fff8f1;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--rose-gold);
}

.ea-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    line-height: 1.5;
    cursor: pointer;
}

.ea-checkbox-label input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ea-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.ea-form-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 30px;
    line-height: 1.4;
}

/* Success Message */
.success-message-container {
    display: none;
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 0.5s ease-out;
}

.success-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 24px;
    object-fit: cover;
    border: 4px solid var(--teal);
}

.success-message-container h3 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 16px;
}

/* Benefits Strip */
.ea-benefits-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ea-benefit {
    text-align: center;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.ea-benefit:hover {
    transform: translateY(-5px);
}

.ea-benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 95, 93, 0.1);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.ea-benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.ea-benefit p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ea-form-row {
        grid-template-columns: 1fr;
    }
    .ea-form-card {
        padding: 30px 20px;
    }
    .ea-benefits-strip {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
