/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Palette - Navy Blue */
    --primary-50: #e6f0ff;
    --primary-100: #b3d1ff;
    --primary-200: #80b2ff;
    --primary-300: #4d93ff;
    --primary-400: #1a74ff;
    --primary-500: #0055e6;
    --primary-600: #0044b8;
    --primary-700: #00338a;
    --primary-800: #00225c;
    --primary-900: #00112e;
    
    /* Accent - Emerald/Teal */
    --accent-50: #e6faf5;
    --accent-100: #b3f0e0;
    --accent-200: #80e6cb;
    --accent-300: #4ddcb6;
    --accent-400: #1ad2a1;
    --accent-500: #00c88c;
    --accent-600: #00a070;
    --accent-700: #007854;
    --accent-800: #005038;
    --accent-900: #00281c;
    
    /* Graphite Gray */
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #1a1d21;
    
    /* Deep Slate */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--gray-100);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
    padding: 0;
    margin: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: fit-content;
    flex-shrink: 0;
}

.logo-img {
    height: 4rem;
    max-height: 4rem;
    max-width: 10rem;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(to right, var(--primary-700), var(--accent-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0.75rem;
}

.nav-menu a:hover {
    color: var(--primary-700);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        gap: 0.5rem;
        border-top: 1px solid var(--gray-200);
    }
}

/* New Hero Section */
.hero-new {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--slate-900) 100%);
    color: white;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Sub-page hero (20% smaller) */
.hero-new.hero-sub-page {
    min-height: 72vh;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
}

.hero-grid-background {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content-new {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 140, 0.15);
    border: 1px solid rgba(0, 200, 140, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-300);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-highlight {
    display: block;
    background: linear-gradient(to right, var(--accent-400), var(--accent-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary-new {
    background: var(--accent-500);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(0, 200, 140, 0.3);
}

.btn-primary-new:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 200, 140, 0.4);
}

.btn-secondary-new {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .hero-title-new {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-new {
        font-size: 5rem;
    }
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, white, transparent);
    z-index: 5;
}

/* Coverage Map Section */
.coverage-section {
    padding: 6rem 0;
    background: var(--slate-50);
}

.section-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle-new {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.coverage-map {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.coverage-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-hq {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 85, 230, 0.4);
    border: 4px solid white;
}

.hq-icon {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hq-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-300);
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.coverage-domains {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.domain-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid var(--gray-100);
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.domain-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.domain-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-700);
}

.domain-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.domain-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.domain-connector {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-300), transparent);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.domain-tech {
    grid-column: 1;
    grid-row: 1;
}

.domain-gtm {
    grid-column: 2;
    grid-row: 1;
}

.domain-marketing {
    grid-column: 3;
    grid-row: 1;
}

.domain-revenue {
    grid-column: 1;
    grid-row: 2;
}

.domain-people {
    grid-column: 2;
    grid-row: 2;
}

.domain-ops {
    grid-column: 3;
    grid-row: 2;
}

@media (max-width: 968px) {
    .coverage-domains {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .domain-marketing {
        grid-column: 1;
        grid-row: 2;
    }
    
    .domain-revenue {
        grid-column: 2;
        grid-row: 2;
    }
    
    .domain-people {
        grid-column: 1;
        grid-row: 3;
    }
    
    .domain-ops {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 640px) {
    .coverage-domains {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .domain-card {
        grid-column: 1 !important;
    }
    
    .coverage-map {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .center-hq {
        position: relative;
        margin: 0 auto 2rem;
        transform: none;
        top: auto;
        left: auto;
    }
}

/* Problem Solution Section */
.problem-solution {
    padding: 6rem 0;
    background: white;
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ps-card {
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
}

.ps-problem {
    border-left: 4px solid #ef4444;
}

.ps-solution {
    border-left: 4px solid var(--accent-500);
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ps-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-icon {
    background: rgba(0, 200, 140, 0.1);
    color: var(--accent-600);
}

.ps-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ps-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ps-content ul {
    list-style: none;
    padding: 0;
}

.ps-content li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.ps-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: 600;
}

@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, var(--slate-50));
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-700), var(--accent-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

/* Value Pillars Section */
.value-pillars {
    padding: 6rem 0;
    background: var(--primary-900);
    color: white;
}

.value-pillars .section-title-new {
    color: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--accent-400);
}

.pillar-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
}

.pillar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.pillar-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--slate-50), white);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
}

.contact-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-card h2 {
        font-size: 2rem;
    }
}

/* Footer */
.footer-new {
    background: var(--slate-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 3rem;
    max-height: 3rem;
    max-width: 10rem;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    background: linear-gradient(to right, var(--primary-400), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links-new h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links-new ul {
    list-style: none;
}

.footer-links-new li {
    margin-bottom: 0.75rem;
}

.footer-links-new a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links-new a:hover {
    color: var(--accent-400);
}

.footer-bottom-new {
    border-top: 1px solid var(--slate-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-new p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.footer-bottom-new a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-bottom-new a:hover {
    color: var(--accent-400);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-new {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .team-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.team-member-role {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-700);
    letter-spacing: 0.05em;
}

.team-member-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.team-domain-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: var(--slate-100);
    color: var(--slate-700);
    white-space: nowrap;
    display: inline-block;
    transition: all 0.2s;
}

.team-domain-tag:hover {
    background: var(--slate-200);
    transform: translateY(-1px);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.team-member-pedigree,
.team-member-accomplishments {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.team-member-pedigree strong,
.team-member-accomplishments strong {
    color: var(--gray-900);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.team-member-pedigree p {
    color: var(--gray-700);
    margin: 0;
}

.team-member-accomplishments ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.team-member-accomplishments li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.team-member-accomplishments li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-600);
    font-weight: 600;
}

/* Domain-specific accent colors */
.domain-tech {
    border-left: 4px solid var(--primary-600);
}

.domain-marketing {
    border-left: 4px solid var(--accent-600);
}

.domain-sales {
    border-left: 4px solid var(--primary-500);
}

.domain-people {
    border-left: 4px solid var(--accent-500);
}

.domain-revenue {
    border-left: 4px solid var(--primary-700);
}

.domain-ops {
    border-left: 4px solid var(--accent-700);
}

.domain-product {
    border-left: 4px solid var(--primary-400);
}

.domain-growth {
    border-left: 4px solid var(--accent-400);
}

.domain-customer {
    border-left: 4px solid var(--primary-600);
}

.domain-advisory {
    border-left: 4px solid var(--accent-600);
}

/* Engagement Section */
.engagement-section {
    padding: 6rem 0;
    background: white;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .engagement-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.engagement-card {
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.engagement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.engagement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.engagement-card p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.credit-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.credit-table thead,
.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
    color: white;
}

.credit-table th,
.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
}

.credit-table td,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.credit-table tbody tr:hover,
.comparison-table tbody tr:hover {
    background: var(--slate-50);
}

.credit-table tbody tr:last-child td,
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-notes {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--gray-100);
}

.pricing-notes h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
}

.pricing-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Outcome Section */
.outcome-section {
    padding: 6rem 0;
    background: white;
}

.outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outcome-card {
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-100);
    border-left: 4px solid var(--accent-500);
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.outcome-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Guardrails Section */
.guardrails-section {
    padding: 6rem 0;
}

.guardrails-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .guardrails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guardrail-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-100);
    border-left: 4px solid var(--primary-600);
}

.guardrail-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.guardrail-item p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
}

/* Terms Section */
.terms-section {
    padding: 6rem 0;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.term-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-100);
    border-left: 4px solid var(--accent-600);
}

.term-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.term-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

