/* Veltis AI Website 2.0 - Light Theme */
/* Color palette from brand guidelines */
:root {
    --primary-navy: #0E103E;
    --secondary-navy: #111340;
    --dark-gray: #1A2332;
    --charcoal: #282D3C;
    --accent-cyan: #2AAAE2;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --border-gray: #E2E8F0;
    --text-dark: #1a1f36;
    --text-gray: #4a5568;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-navy);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.subtitle {
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-cyan);
}

.nav-links a.btn-primary {
    background: var(--accent-cyan);
    color: var(--white);
}

.nav-links a.btn-primary:hover {
    background: var(--primary-navy);
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    line-height: 1;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Bridge: fills the gap between nav link and mega menu so hover is never lost */
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: -20px;
    right: -20px;
    height: 0.75rem;
}

/* Mega Menu */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    box-shadow: 0 20px 56px rgba(14, 16, 62, 0.16);
    width: 760px;
    z-index: 1001;
    overflow: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    transition-delay: 0.22s;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.75rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border-gray);
}

.mega-col {
    padding: 0 1.25rem;
    border-right: 1px solid var(--border-gray);
}

.mega-col:first-child {
    padding-left: 0;
}

.mega-col:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-stage {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    margin-bottom: 0.4rem;
}

.mega-product-link {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-navy) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.mega-product-link:hover {
    color: var(--accent-cyan) !important;
    background: transparent !important;
}

.mega-product-link h4 {
    font-size: 0.975rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0;
    line-height: 1.3;
}

.mega-desc {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.mega-tag {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    background: rgba(42, 170, 226, 0.08);
    border: 1px solid rgba(42, 170, 226, 0.2);
    border-radius: 20px;
    font-size: 0.72rem;
    color: var(--text-gray);
    white-space: nowrap;
    cursor: default;
    user-select: none;
}

.mega-learn {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--accent-cyan) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.mega-learn:hover {
    color: var(--primary-navy) !important;
    background: transparent !important;
}

.mega-footer {
    padding: 0.8rem 1.5rem;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-footer-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary-navy) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.mega-footer-link:hover {
    color: var(--accent-cyan) !important;
    background: transparent !important;
}

.mega-footer-tagline {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* ============================================================
   Product Screenshot Preview
   ============================================================ */
.product-preview {
    padding: 5rem 0;
    background: var(--light-gray);
    overflow: hidden;
}

.product-preview .section-header {
    margin-bottom: 2.5rem;
}

/* macOS-style frame */
.screenshot-frame {
    background: #1c1e2b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(14, 16, 62, 0.22);
    position: relative;
}

.screenshot-bar {
    background: #2c2f42;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.screenshot-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.screenshot-dot:nth-child(1) { background: #ff5f57; }
.screenshot-dot:nth-child(2) { background: #febc2e; }
.screenshot-dot:nth-child(3) { background: #28c840; }

.screenshot-img-wrap {
    position: relative;
    line-height: 0;
}

.screenshot-bg {
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    filter: blur(0.4px);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* Gradient veil — fades bottom so fine text/numbers stay unreadable */
.screenshot-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 35%,
        rgba(245, 247, 250, 0.55) 75%,
        rgba(245, 247, 250, 0.85) 100%
    );
    pointer-events: none;
}

.screenshot-caption {
    font-size: 0.78rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Coach — single centred screenshot */
.preview-single {
    max-width: 820px;
    margin: 0 auto;
}

/* Intelligence — featured top + two smaller below */
.preview-featured {
    margin-bottom: 1.25rem;
}

.preview-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-navy);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--primary-navy);
}

.hero h1 span {
    color: var(--accent-cyan);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(14, 16, 62, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-navy);
}

.btn-white:hover {
    background: var(--light-gray);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-light {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--primary-navy);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover {
    box-shadow: 0 15px 30px rgba(42, 170, 226, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.stat-icon {
    margin-bottom: 1.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stat-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(14, 16, 62, 0.15));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon img {
    transform: scale(1.1) rotate(5deg);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(14, 16, 62, 0.08);
    transform: translateY(-3px);
}

.card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 170, 226, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(42, 170, 226, 0.08);
}

.feature-card .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Problem/Solution Lists */
.problem-solution {
    display: flex;
    flex-direction: column;
    background: rgba(14, 16, 62, 0.04);
    border: 1px solid rgba(14, 16, 62, 0.15);
    border-radius: 8px;
    padding: 2rem;
}

.problem-solution h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Dimension Cards */
.dimension-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
}

.dimension-card h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.dimension-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 16, 62, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}


.founder-badge {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.team-card:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    box-shadow: 0 5px 20px rgba(14, 40, 65, 0.2);
    transform: translateY(-3px);
}

.team-card:hover h3 {
    color: var(--white);
}

.team-card:hover .role {
    color: var(--accent-cyan);
}

.team-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.team-card:hover img {
    border-color: var(--white);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-cyan);
}

.team-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Highlight Box */
.highlight-box {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--accent-cyan);
    padding: 1.5rem;
    border-radius: 4px;
}

/* Solution List */
.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-gray);
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li strong {
    color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-content,
    .contact-content,
    .problem-solution,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--border-gray);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    /* Mobile mega-menu — always visible inline block */
    .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        transition-delay: 0s;
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: none;
        border-right: none;
        border-radius: 0;
        width: auto;
        overflow: visible;
        background: var(--light-gray);
    }

    .nav-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        padding: 0;
        border-bottom: none;
        gap: 0;
    }

    .mega-col {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-stage {
        display: block;
        padding: 0.6rem 1rem 0 2rem;
        font-size: 0.65rem;
    }

    .mega-product-link {
        display: block;
        padding: 0.25rem 1rem 0.6rem 2rem !important;
        color: var(--text-dark) !important;
    }

    .mega-product-link:hover {
        color: var(--accent-cyan) !important;
    }

    .mega-desc,
    .mega-tags,
    .mega-learn {
        display: none;
    }

    .mega-footer {
        display: none;
    }

    .dropdown-arrow {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
    }
}

/* ===== About Page - Team Section Styles ===== */

/* Page header with background image */
.page-header-image {
    padding: 12rem 0 5rem;
}

.page-header-image h1 {
    color: var(--white);
}

.page-header-image p {
    color: rgba(255, 255, 255, 0.9);
}

/* Feature list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.feature-list li strong {
    color: var(--primary-navy);
}

/* Stat Cards */
.stat-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 5px 20px rgba(14, 16, 62, 0.08);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Team Grid - 5 columns */
.team-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.team-grid-5 .team-card {
    padding: 1.5rem;
}

.team-grid-5 .team-card img {
    width: 120px;
    height: 120px;
}

.team-grid-5 .team-card p:not(.role) {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Dark Section */
.section-dark {
    background: var(--primary-navy);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark .subtitle {
    color: var(--accent-cyan);
}

/* Process Cards */
.process-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.process-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.process-time {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--primary-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.process-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.process-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Responsive adjustments for new elements */
@media (max-width: 1200px) {
    .team-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .team-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid-5 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== Home Page - New Hero & Teaser Styles ===== */

/* Wide Hero with background image */
.hero-wide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-wide-content {
    max-width: 650px;
}

.hero-wide h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-wide h1 span {
    color: var(--accent-cyan);
}

.hero-wide .hero-tagline {
    color: var(--accent-cyan);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-wide .hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* Teaser Grid */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.teaser-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.teaser-card h3 {
    color: var(--primary-navy);
}

.teaser-card p {
    color: var(--text-gray);
}

.teaser-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.teaser-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.teaser-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Stats Teaser */
.stats-teaser {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
}

.stat-teaser-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-teaser-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.stat-teaser-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
}

/* Question List */
.question-list {
    margin: 1.5rem 0;
}

.question-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.question-item:last-child {
    border-bottom: none;
}

.question-number {
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.question-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.question-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Approach Preview */
.approach-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.approach-item {
    text-align: center;
    padding: 1.5rem;
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.approach-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Team Stats Row */
.team-stats-row {
    display: flex;
    gap: 3rem;
    margin: 1.5rem 0;
}

.team-stat {
    text-align: center;
}

.team-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.team-stat p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* About content reverse */
.about-content.reverse {
    direction: rtl;
}

.about-content.reverse>* {
    direction: ltr;
}

/* Simple Steps */
.simple-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.simple-step {
    text-align: center;
    padding: 2rem;
    flex: 1;
    max-width: 280px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.simple-step h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.simple-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.step-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== Services Page Styles ===== */

/* Service Highlights */
.service-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-highlight img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-highlight span {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

/* Measurement Grid */
.measurement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.measurement-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
}

.measurement-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.measurement-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.measurement-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.measurement-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* AI Models Row */
.ai-models-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ai-model {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.ai-model:hover {
    background: var(--accent-cyan);
    color: var(--white);
    border-color: var(--accent-cyan);
}

/* Deliverable Cards */
.deliverable-card {
    background: rgb(14, 16, 62);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
}

.deliverable-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deliverable-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.deliverable-header h3 {
    color: var(--white);
    margin: 0;
}

.deliverable-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverable-card ul li:last-child {
    border-bottom: none;
}

.deliverable-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Timeline */
.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: var(--border-gray);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 42px;
    height: 42px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive for new elements */
@media (max-width: 1024px) {
    .teaser-grid {
        grid-template-columns: 1fr;
    }

    .approach-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-teaser {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-teaser-divider {
        width: 80px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .hero-wide {
        min-height: 70vh;
        background-position: center;
    }

    .hero-wide h1 {
        font-size: 2.5rem;
    }

    .hero-wide .hero-lead {
        font-size: 1.1rem;
    }

    .approach-preview {
        grid-template-columns: 1fr;
    }

    .simple-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .team-stats-row {
        justify-content: center;
    }

    .measurement-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-cyan);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    color: var(--primary-navy);
    font-size: 1rem;
}

/* ===== Benchmark Teaser ===== */
.benchmark-teaser {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benchmark-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid var(--accent-cyan);
}

.benchmark-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benchmark-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .benchmark-teaser {
        grid-template-columns: 1fr;
    }
}

/* ===== AI Model Cards with Logos ===== */
.ai-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ai-model-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.ai-model-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.ai-model-card h4 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.ai-model-card .model-company {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.ai-model-card .model-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.ai-model-more {
    background: var(--light-gray);
    border: 2px dashed var(--border-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-model-more span {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.ai-model-more p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .ai-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ai-models-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Service Visual (replaces image) ===== */
.service-visual {
    background: var(--primary-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.service-visual-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.visual-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* About Visual (replaces image on about page) */
.about-visual {
    background: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 2rem;
}

.about-visual-content {
    text-align: center;
}

.about-visual .visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.about-visual .visual-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.about-visual h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ===== Contact Page - Centered Layout ===== */
.contact-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-centered .subtitle {
    margin-bottom: 0.5rem;
}

.contact-centered h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.scope-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.scope-list li {
    background: var(--light-gray);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    position: relative;
    padding-left: 2.5rem;
    color: var(--primary-navy);
    font-weight: 500;
}

.scope-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-icon svg {
    color: var(--accent-cyan);
}

.office-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.office-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.office-location a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.office-location a:hover {
    text-decoration: underline;
}

.office-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.office-email {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.office-email h3,
.office-email .office-desc {
    color: var(--white);
}

.office-email .office-desc {
    color: rgba(255, 255, 255, 0.8);
}

.office-email .office-icon {
    background: rgba(255, 255, 255, 0.1);
}

.office-email .office-icon svg {
    color: var(--accent-cyan);
}

.office-email .office-location a {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .scope-list {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Simple Steps Table ===== */
.simple-steps-table {
    max-width: 700px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 1rem;
    width: 100%;
}

.simple-steps-table tr {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
}

.simple-steps-table td {
    padding: 1.5rem;
    border: 1px solid var(--border-gray);
}

.simple-steps-table td:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
    width: 80px;
    text-align: center;
    vertical-align: middle;
}

.simple-steps-table td:last-child {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.step-circle-cell .step-circle {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto;
}

.step-content-cell h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content-cell p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .simple-steps-table td {
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .simple-steps-table td:first-child {
        border-radius: 8px 8px 0 0;
        border-right: 1px solid var(--border-gray);
        border-bottom: none;
        padding-bottom: 0.5rem;
    }

    .simple-steps-table td:last-child {
        border-radius: 0 0 8px 8px;
        border-left: 1px solid var(--border-gray);
        border-top: none;
        text-align: center;
    }
}

/* ===== Contact Page - Pharma Focus Section ===== */
.pharma-focus-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.pharma-focus-content .subtitle {
    margin-bottom: 0.5rem;
}

.pharma-focus-content h2 {
    margin-bottom: 1.5rem;
}

.pharma-focus-content p {
    margin-bottom: 1.25rem;
}

.pharma-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.pharma-stat {
    text-align: center;
}

.pharma-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.pharma-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* CTA Card */
.cta-card {
    background: var(--primary-navy);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.cta-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.cta-card .btn {
    margin-bottom: 1rem;
}

.cta-email {
    margin: 0;
}

.cta-email a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-email a:hover {
    text-decoration: underline;
}

/* Why Now Section */
.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-now-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.why-now-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.why-now-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-now-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.why-now-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Process Timeline (Contact Page) */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.process-timeline-item:last-child {
    border-bottom: none;
}

.process-timeline-number {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-timeline-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-timeline-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive for contact page */
@media (max-width: 968px) {
    .pharma-focus-grid {
        grid-template-columns: 1fr;
    }

    .pharma-stats {
        justify-content: center;
    }

    .why-now-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pharma-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pharma-stat-number {
        font-size: 2.5rem;
    }
}

/* ===== About - Story Tagline ===== */
.story-tagline {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

/* ===== Contact - Centered CTA ===== */
.contact-cta-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.contact-cta-centered h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-cta-centered p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== Services - VeltisScore Explainer ===== */
.veltis-score-explainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.score-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.score-column h4 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.score-column p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.score-scale {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.score-scale-header h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.score-scale-items {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 100px;
}

.score-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.score-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.score-excellent { background: rgb(26, 28, 69); }
.score-good { background: rgb(33, 61, 97); }
.score-moderate { background: rgb(96, 147, 212); }
.score-weak { background: rgb(174, 174, 174); }
.score-critical { background: rgb(174, 36, 24); }

@media (max-width: 968px) {
    .veltis-score-explainer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .score-scale-items {
        flex-direction: column;
        align-items: center;
    }

    .score-item {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== Homepage - VeltisScore Solution Section ===== */
.solution-highlights {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.solution-stat {
    text-align: center;
}

.solution-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.solution-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Homepage - Proof Point Case Study ===== */
.proof-point {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.proof-stat {
    flex-shrink: 0;
}

.proof-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.proof-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proof-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.proof-content p:last-child {
    margin-bottom: 0;
}

.proof-insight {
    color: var(--accent-cyan) !important;
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 768px) {
    .solution-highlights {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .solution-number {
        font-size: 2.5rem;
    }

    .proof-point {
        flex-direction: column;
        text-align: center;
    }

    .proof-number {
        font-size: 3.5rem;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-navy);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.cookie-buttons .btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.cookie-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

/* ===== Results / Case Study Page ===== */
.case-study-featured {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-study-header h2 {
    color: var(--primary-navy);
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-study-challenge,
.case-study-approach,
.case-study-results,
.case-study-outcome {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
}

.case-study-challenge h3,
.case-study-approach h3,
.case-study-results h3,
.case-study-outcome h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.approach-details {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.approach-details .approach-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.approach-details .approach-number {
    width: 30px;
    height: 30px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.results-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--primary-navy);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.result-stat {
    text-align: center;
    flex-shrink: 0;
}

.result-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.result-explanation {
    color: var(--white);
}

.result-explanation p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.results-breakdown h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.gap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gap-item {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.gap-item h5 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gap-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.outcome-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.outcome-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

.outcome-quote {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.insight-card h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.insight-card p {
    color: var(--text-gray);
    margin: 0;
}

.more-results {
    text-align: center;
    padding: 3rem 0;
}

.more-results h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.more-results p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .results-highlight {
        flex-direction: column;
        text-align: center;
    }

    .result-number {
        font-size: 3rem;
    }

    .gap-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Privacy / Legal Pages ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h2 {
    color: var(--primary-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--primary-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.legal-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-gray);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-cyan);
}

.legal-note {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.legal-note p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Homepage - AI Visibility Blind Spot Section ===== */
.blind-spot-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.blind-spot-current,
.blind-spot-ai {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
}

.blind-spot-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
}

.blind-spot-statement {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 0;
}

.blind-spot-statement strong {
    color: var(--accent-cyan);
}

.blind-spot-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blind-spot-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.blind-spot-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.blind-spot-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.blind-spot-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.blind-spot-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blind-spot-conclusion p {
    font-size: 1.1rem;
    color: var(--primary-navy);
}

.blind-spot-conclusion strong {
    color: var(--accent-cyan);
}

/* ===== Homepage - AI Selection Framework Grid ===== */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.framework-card {
    background: rgb(14, 16, 62);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.framework-number {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.framework-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.framework-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ===== Homepage - VeltisAI Introduction Grid ===== */
.veltis-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.veltis-intro-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.veltis-intro-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(42, 170, 226, 0.1);
    transform: translateY(-3px);
}

.veltis-intro-card .question-number {
    margin: 0 auto 1.25rem;
}

.veltis-intro-card h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.veltis-intro-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive for new homepage sections */
@media (max-width: 1024px) {
    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .blind-spot-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blind-spot-divider {
        justify-content: center;
    }

    .blind-spot-vs {
        width: 36px;
        height: 36px;
    }

    .veltis-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .framework-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Stack components (new home)
   =========================== */

.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.stack-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(14, 16, 62, 0.10);
    border-color: var(--accent-cyan);
}

.stack-stage {
    display: inline-block;
    background: var(--primary-navy);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.stack-card h3 {
    color: var(--primary-navy);
    font-size: 1.45rem;
    margin: 0 0 0.35rem;
}

.stack-tagline {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.stack-card > p {
    color: var(--text-gray);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.stack-list li {
    color: var(--text-dark);
    font-size: 0.92rem;
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.55rem;
}

.stack-list li::before {
    content: "→";
    color: var(--accent-cyan);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.stack-link {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: auto;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.stack-link:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

/* ============================
   Stack flow (services hub)
   ============================ */

.stack-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2.5rem;
}

.stack-flow-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stack-flow-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(14, 16, 62, 0.08);
}

.stack-flow-stage {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.stack-flow-item h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin: 0 0 0.4rem;
}

.stack-flow-item p {
    color: var(--text-gray);
    font-size: 0.92rem;
    margin: 0;
}

.stack-flow-arrow {
    align-self: center;
    color: var(--accent-cyan);
    font-size: 1.75rem;
    font-weight: 700;
}

/* ============================
   Capabilities (under the hood)
   ============================ */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.capability-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(14, 16, 62, 0.08);
}

.capability-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.capability-icon img {
    max-width: 100%;
    max-height: 100%;
}

.capability-card h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin: 0 0 0.6rem;
}

.capability-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.capability-powers {
    color: var(--accent-cyan) !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    margin-top: 0.5rem !important;
}

.capability-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.capability-card-dark h3 {
    color: var(--white);
}

.capability-card-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.capability-card-dark .capability-powers {
    color: var(--accent-cyan) !important;
}

/* ============================
   Service drill-down extras
   ============================ */

.service-subnav {
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
    padding: 0.85rem 0;
    font-size: 0.9rem;
}

.service-subnav .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.service-subnav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.service-subnav a:hover {
    color: var(--primary-navy);
}

.subnav-back {
    color: var(--accent-cyan) !important;
}

.subnav-divider {
    width: 1px;
    height: 1rem;
    background: var(--border-gray);
    flex-shrink: 0;
}

.subnav-explore {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
    opacity: 0.7;
    margin-right: -0.4rem;
}

.service-summary-tagline {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

/* ============================
   Dimensions grid (Intelligence + Coach)
   ============================ */

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-top: 2.5rem;
}

.dimension-detail-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.dimension-detail-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.dimension-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-navy);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.dimension-detail-card h4 {
    color: var(--primary-navy);
    font-size: 1.02rem;
    margin: 0 0 0.4rem;
}

.dimension-detail-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.dimension-detail-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.dimension-detail-card-dark h4 {
    color: var(--white);
}

.dimension-detail-card-dark p {
    color: rgba(255, 255, 255, 0.78);
}

/* ============================
   Foresight phase flow
   ============================ */

.foresight-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.foresight-phase {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 1.85rem 1.6rem;
    border-top: 4px solid var(--accent-cyan);
}

.foresight-phase-label {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.foresight-phase h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
}

.foresight-phase > p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================
   Persona layers (Foresight)
   ============================ */

.persona-layers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.persona-layer {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.4rem 1.1rem;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.persona-layer:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}

.persona-layer-num {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.persona-layer h4 {
    color: var(--white);
    font-size: 1.02rem;
    margin: 0 0 0.4rem;
}

.persona-layer p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================
   Responsive — stack/capabilities
   ============================ */

@media (max-width: 1024px) {
    .stack-grid,
    .capability-grid,
    .foresight-flow {
        grid-template-columns: 1fr;
    }

    .stack-flow {
        grid-template-columns: 1fr;
    }

    .stack-flow-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .persona-layers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dimensions-grid {
        grid-template-columns: 1fr;
    }

    .persona-layers {
        grid-template-columns: 1fr;
    }

    .service-subnav .container {
        gap: 0.75rem;
    }
}