/* 6DSense Website Styles - Modern Design */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1B2A4E;
    --cyan: #00B4D8;
    --cyan-soft: #E8F8FC;
    --cyan-medium: #B3E8F5;
    --purple: #5B4B8A;
    --purple-light: #7B6BA8;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --tan: #F5F1EB;
    --text: #1a1a1a;
    --text-secondary: #444;
    --border: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p {
    color: var(--text);
    margin-bottom: 1.25rem;
}

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

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

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

/* Navigation - Floating pill */
.nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.75rem 1rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-logo img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.2s;
}

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

.nav-cta {
    background: var(--cyan) !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    background: var(--purple) !important;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .nav {
        left: 1rem;
        right: 1rem;
        transform: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        display: none;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--cyan);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 75, 138, 0.25);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-arrow::after {
    content: ' \2192';
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(0, 180, 216, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 60%, rgba(91, 75, 138, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(0, 180, 216, 0.06) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--cyan);
}

.hero-text,
.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyan);
}

.stat-card:nth-child(2) {
    border-left-color: var(--purple);
}

.stat-card:nth-child(3) {
    border-left-color: var(--navy);
}

.stat-card:nth-child(4) {
    border-left-color: var(--cyan);
}

.stat-card:hover {
    border-color: var(--cyan);
    border-left-width: 4px;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
    transform: translateY(-4px);
}

.stat-card h3 {
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        max-width: 500px;
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-tan {
    background: var(--tan);
}

.section-navy {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.section-navy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
}

.section-navy,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy p,
.section-navy li,
.section-navy strong,
.section-navy span,
.section-navy a:not(.btn),
.section-navy ul,
.section-navy ol {
    color: var(--white);
}

.section-navy .text-muted,
.section-navy .lead {
    color: rgba(255, 255, 255, 0.8);
}

.section-navy ul {
    list-style: none;
    margin: 1.5rem 0;
}

.section-navy li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.section-navy li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cyan-soft);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* Page Headers */
.page-header {
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(91, 75, 138, 0.06) 0%, transparent 40%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: 1rem;
    max-width: 800px;
}

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
}

/* Features Grid */
.features-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card,
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover,
.card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before,
.card:hover::before {
    opacity: 1;
}

.feature-marker {
    width: 32px;
    height: 4px;
    background: var(--cyan);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.feature-card:nth-child(2) .feature-marker {
    background: var(--purple);
}

.feature-card:nth-child(3) .feature-marker {
    background: var(--navy);
}

.feature-card h3,
.card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p,
.card p {
    margin-bottom: 1.5rem;
}

.feature-link,
.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-link:hover,
.card-link:hover {
    color: var(--cyan);
    gap: 0.75rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

.benefit {
    text-align: center;
}

.benefit h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.section-navy .benefit p {
    color: rgba(255, 255, 255, 0.85);
}

/* Framework Section */
.framework {
    background: var(--navy);
    border-radius: 32px;
    padding: 5rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.framework::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
}

.framework-content {
    position: relative;
    z-index: 1;
}

.framework-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.framework h2 {
    color: white;
    margin-bottom: 1rem;
}

.framework-header p {
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.framework-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.framework-item:hover {
    background: rgba(0, 180, 216, 0.2);
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.framework-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.framework-item h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.framework-cta {
    text-align: center;
}

.framework .btn-primary {
    background: var(--cyan);
}

.framework .btn-primary:hover {
    background: var(--purple);
}

@media (max-width: 900px) {
    .framework {
        padding: 3rem 2rem;
    }
    .framework-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.section-navy .cta-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.footer {
    background: var(--cyan-soft);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--navy);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--navy);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cyan-medium);
    font-size: 0.85rem;
    color: var(--navy);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--navy);
}

.footer-legal a:hover {
    color: var(--purple);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

/* Content Sections for Inner Pages */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.role-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.role-card h4 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.role-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Dimension Cards (6D Page) */
.dimension-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.dimension-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.dimension-card.alt {
    background: var(--off-white);
}

.dimension-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dimension-card:nth-child(2) .dimension-number { background: var(--purple); }
.dimension-card:nth-child(3) .dimension-number { background: var(--navy); }
.dimension-card:nth-child(4) .dimension-number { background: var(--cyan); }
.dimension-card:nth-child(5) .dimension-number { background: var(--purple); }
.dimension-card:nth-child(6) .dimension-number { background: var(--navy); }

.dimension-subtitle {
    color: var(--cyan);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Highlight Box */
.highlight-box {
    background: var(--cyan-soft);
    border-left: 4px solid var(--cyan);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Diagnostic Box */
.diagnostic-box {
    background: var(--navy);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.diagnostic-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
}

.diagnostic-box,
.diagnostic-box h3,
.diagnostic-box h4 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.diagnostic-box p,
.diagnostic-box strong,
.diagnostic-box span,
.diagnostic-box a:not(.btn) {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.diagnostic-box ul {
    list-style: none;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.diagnostic-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.diagnostic-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

.diagnostic-box .btn {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* How I Apply - Editorial Style */
.apply-section {
    max-width: 1000px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply-header h2 {
    margin-bottom: 1rem;
}

.apply-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.apply-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.apply-item {
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--cyan);
}

.apply-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.apply-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.apply-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .apply-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* What This Prevents - Clean List */
.prevents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prevents-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.prevents-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prevents-x {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.prevents-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.prevents-item span {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Check List - Clean checkmarks */
.check-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Engage Columns - Two column comparison */
.engage-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.engage-column {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--cyan);
}

.engage-column h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.engage-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.engage-column .check-list {
    margin-bottom: 1.5rem;
}

.engage-result {
    background: var(--cyan-soft);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.engage-result strong {
    color: var(--cyan);
}

@media (max-width: 800px) {
    .engage-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Value Props - Homepage */
.value-props {
    max-width: 1000px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 3rem;
}

.value-header h2 {
    margin-bottom: 1rem;
}

.value-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.value-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-item h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .value-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services Grid - Homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: block;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.service-item h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-item:hover .service-link {
    color: var(--purple);
}

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

/* About Section - Homepage */
.about-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.about-title {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.credential-group h4 {
    color: var(--cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.credential-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credential-group li {
    color: var(--text);
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

@media (max-width: 700px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .about-credentials {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Contact Form Page */
.contact-page {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h1 {
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group .required {
    color: #e53e3e;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
}

.checkbox-label:hover {
    border-color: var(--cyan);
    background: var(--cyan-soft);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--cyan);
    border-color: var(--cyan);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-weight: 500;
    color: var(--text);
}

.form-error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.form-note a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Success & Error Messages */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.form-success h2 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.form-success p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.form-error-box {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-error-box h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-error-box p {
    color: #7F1D1D;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* Framework Hero - Combined Section */
.hero-framework {
    min-height: auto;
    padding: 10rem 0 6rem;
}

.framework-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.framework-hero-graphic {
    position: relative;
}

.framework-hero-graphic svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.framework-hero-content {
    max-width: 540px;
}

.framework-hero-content h1 {
    margin-bottom: 1.5rem;
}

.framework-hero-content .hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.framework-hero-content .dimension-list {
    margin: 1.5rem 0;
}

@media (max-width: 1000px) {
    .framework-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .framework-hero-graphic {
        order: -1;
    }

    .framework-hero-graphic svg {
        max-width: 380px;
        margin: 0 auto;
    }

    .framework-hero-content {
        max-width: 100%;
    }

    .framework-hero-content .dimension-list {
        justify-content: center;
    }

    .framework-hero-content .hero-cta {
        justify-content: center;
    }
}

/* Framework Journey - Premium Design */
/* Premium Framework Visualization */
.framework-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.framework-graphic {
    position: relative;
}

.framework-graphic svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.framework-text {
    max-width: 520px;
}

.framework-text h2 {
    margin-bottom: 1.5rem;
}

.framework-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.dimension-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
}

.dimension-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--navy);
}

.dimension-list .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

/* Dimension Showcase - Premium Cards */
.dimension-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dimension-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.dimension-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.dimension-card:hover::before {
    opacity: 1;
}

.dimension-card .card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
}

.dimension-card .card-title {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--navy);
}

.dimension-card .card-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dimension-card .card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dimension-card .card-insight {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

/* Hexagon Animation */
@keyframes hexPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes hexRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hex-orbit {
    animation: hexRotate 60s linear infinite;
    transform-origin: center;
}

/* Responsive */
@media (max-width: 1000px) {
    .framework-visual {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .framework-graphic {
        order: -1;
    }

    .framework-graphic svg {
        max-width: 400px;
        margin: 0 auto;
    }

    .framework-text {
        max-width: 100%;
    }

    .dimension-list {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .dimension-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dimension-showcase {
        grid-template-columns: 1fr;
    }

    .dimension-list {
        grid-template-columns: 1fr;
    }
}

/* Dimension Deep Dive Cards */
.dimension-deep {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dimension-deep-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dimension-deep-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
}

.dimension-deep-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dimension-deep-card .dim-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 10px;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dimension-deep-card h3 {
    margin-bottom: 0.25rem;
}

.dimension-deep-card .dim-subtitle {
    color: var(--cyan);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dimension-deep-card p {
    margin-bottom: 0.75rem;
}

.dimension-deep-card p:last-child {
    margin-bottom: 0;
}

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

/* Engagement Section */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.engagement-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.engagement-icon {
    width: 60px;
    height: 60px;
    background: var(--cyan-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--cyan);
}

.engagement-card h3 {
    margin-bottom: 0.75rem;
}

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

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Background Section */
.background-section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.background-section img {
    width: 200px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .background-section {
        flex-direction: column;
        text-align: center;
    }
    .background-section img {
        margin: 0 auto;
    }
}

.credentials {
    margin-top: 1.5rem;
}

.credentials h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credentials ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.credentials li {
    padding: 0.25rem 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.lead { font-size: 1.15rem; color: var(--text-secondary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Termly Consent Link */
.termly-display-preferences {
    cursor: pointer;
}
