/* --- Variables & Reset --- */
:root {
    --bg-color: #0f1115;
    /* Deep dark background */
    --text-color: #e0e0e0;
    --text-muted: #9ca3af;
    --primary-color: #ff5722;
    /* Vibrant Orange for CTA */
    --primary-hover: #e64a19;
    --bg-orange: #d84315;
    /* Darker/Dimmer Orange for Backgrounds */
    --accent-color: #ffffff;
    --nav-bg: rgba(15, 17, 21, 0.85);
    --font-main: 'Outfit', sans-serif;
    --container-width: 1440px;
    --transition: all 0.3s ease;
}

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

/* html rules removed for Lenis */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography Helpers --- */
/* --- Typography System --- */
h1,
.heading-style-h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    letter-spacing: -2px;
}

h2,
.heading-style-h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
}

h3,
.heading-style-h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    letter-spacing: -0.5px;
}

h4,
.heading-style-h4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h5,
.heading-style-h5 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h6,
.heading-style-h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive sizes */
@media (max-width: 900px) {

    h1,
    .heading-style-h1 {
        font-size: 4rem;
    }

    h2,
    .heading-style-h2 {
        font-size: 3rem;
    }

    h3,
    .heading-style-h3 {
        font-size: 2.25rem;
    }

    h4,
    .heading-style-h4 {
        font-size: 1.75rem;
    }
}

/* --- Global Typography Utilities --- */
.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-medium {
    font-size: 1rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-tiny {
    font-size: 0.75rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-underline {
    text-decoration: underline;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: white;
}

.text-muted {
    color: var(--text-muted);
}

.highlight-text {
    color: var(--primary-color) !important;
}

/* Text Links */
a.text-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

a.text-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* --- Section Spacing --- */
.section-padding-large {
    padding: 140px 0;
}

.section-padding-medium {
    padding: 100px 0;
}

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

/* --- Spacing Utilities (Margins/Paddings) --- */
.m-0 {
    margin: 0 !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .section-padding-large {
        padding: 100px 0;
    }

    .section-padding-medium {
        padding: 80px 0;
    }

    .section-padding-small {
        padding: 40px 0;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    /* Sharper corners for modern look */
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    animation: pulse-glow 3s infinite;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
    animation: none;
    /* Pause pulse on hover to show hover state clearly */
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-alternative {
    background-color: white;
    color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-alternative:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-icon:hover svg {
    transform: translateX(4px);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.7);
    }

    100% {
        box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    }
}

.btn-accent {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-accent:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input-error {
    border-color: #ff3b30;
}

.form-error-message {
    color: #ff3b30;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    /* Smooth transition for border/bg */
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-links ul {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:hover {
    color: white;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    padding-top: 180px;
    /* Increased top padding */
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(255, 87, 34, 0.15), transparent 60%), radial-gradient(circle at bottom left, rgba(40, 44, 52, 0.3), transparent 60%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Image Left (Smaller), Content Right (Larger) */
    gap: 80px;
    align-items: center;
    z-index: 1;
}

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

.hero-tagline {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title .highlight-text {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0 10px;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
    /* Highlight Background Style */
    position: relative;
    display: inline-block;
    transform: skewX(-10deg);
    z-index: 1;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 60px;
    display: flex;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.trusted-by {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trusted-by span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 700;
}

.logos {
    display: flex;
    gap: 40px;
    opacity: 0.6;
}

.logo-item {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Hero Image Placeholder / Graphic */
.hero-image-wrapper {
    position: relative;
    height: 700px;
    /* Taller for portrait */
    width: 100%;
    background: linear-gradient(135deg, #1a1d23 0%, #0f1115 100%);
    border-radius: 8px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    border: 1px solid rgba(255, 87, 34, 0.2);
    /* Orange tint border */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Blend mode if needed, or just clean image */
}

/* Using CSS to simulate the house/building image feeling */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    /* Modern House Architecture */
    background-size: cover;
    background-position: center;
    position: relative;
    filter: brightness(0.8) contrast(1.1);
}

.glass-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    /* Overlap effect */
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary-color);
    color: white;
    max-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.glass-card p {
    font-size: 1rem;
    color: #ccc;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 87, 34, 0.06);
    /* faint orange glow */
    top: -150px;
    right: -150px;
}

.bg-glow-2 {
    width: 800px;
    height: 800px;
    background: rgba(33, 150, 243, 0.03);
    /* faint blue glow */
    bottom: -200px;
    left: -300px;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 350px;
        order: 1;
        margin-top: 40px;
    }

    .glass-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
    }

    .trusted-by {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- Silent Leak Section --- */
/* --- Silent Leak Section --- */
#silent-leak {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

#silent-leak::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* --- Growth Section Redesign --- */

.text-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mt-50 {
    margin-top: 60px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#silent-leak .section-title {
    color: white;
    /* White Section Title on Orange */
}

#silent-leak .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    /* Light semi-transparent subtitle */
}

#silent-leak .highlight-text {
    color: white !important;
    /* White highlight text */
}

.section-subtitle {
    font-size: 1.25rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 70px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.leak-card {
    background: linear-gradient(145deg, #1e2126 0%, #15171c 100%);
    /* Deep gradient dark box */
    padding: 40px 30px;
    /* More padding */
    border-radius: 8px;
    /* Softer corners */
    text-align: center;
    border: 2px solid white;
    /* Crisp White Border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.leak-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, #25282e 0%, #1a1d23 100%);
}

/* Optional hover glow effect */
.leak-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
    /* White top bar */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.leak-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    /* Glow on the bar */
}

.leak-icon {
    color: var(--primary-color);
    /* Orange Icon */
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
}

.leak-icon svg {
    width: 80px;
    height: 80px;
}

.leak-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leak-desc {
    font-size: 1.2rem;
    color: #cccccc;
    /* Light gray text inside dark card */
    line-height: 1.6;
}

#silent-leak .highlight-black {
    color: #0d0f12;
    /* Deep Black */
    text-shadow: none;
    display: inline-block;
    position: relative;
}

/* Optional: Underline for the black text */
#silent-leak .highlight-black::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: #0d0f12;
    margin-top: -5px;
    /* Tweak position */
}

#silent-leak .section-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leak-cta {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(13, 15, 18, 0.3);
    /* Dark glass pill */
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.leak-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.leak-cta:hover {
    background: rgba(13, 15, 18, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.leak-cta:hover::after {
    transform: translateX(5px);
}

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

    .section-title {
        font-size: 2.2rem;
    }
}

/* --- Problem / Truth Section --- */
#problem {
    background: radial-gradient(circle at left center, rgba(255, 87, 34, 0.1), transparent 60%), #0d0f12;
    /* Left side glow */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.problem-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1 / 1;
    /* Force Square */
    width: 100%;
}

.portrait {
    width: 100%;
    height: 100%;
    /* Fill the square */
    object-fit: cover;
    /* Crop to fit */
    display: block;
    filter: grayscale(10%) contrast(110%);
    transition: transform 0.5s ease;
}

.image-wrapper:hover .portrait {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(13, 15, 18, 0.8) 100%);
    pointer-events: none;
}

.problem-content {
    color: var(--text-color);
}

.problem-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white;
}

.problem-title .highlight-text {
    color: var(--primary-color);
}

.problem-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.problem-list {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 1.25rem;
    /* Larger Text */
    font-weight: 400;
    line-height: 1.5;
    color: white;
    /* Brighter White */
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
    /* Glow */
    margin-top: -2px;
}

.problem-outro {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding: 0 0 0 24px;
    border-left: 4px solid var(--primary-color);
    /* Orange Accent Line */
    margin-top: 40px;
    line-height: 1.4;
    font-family: var(--font-main);
}

@media (max-width: 900px) {
    .problem-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .problem-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .problem-title {
        font-size: 2.5rem;
    }
}

/* --- Growth Section --- */
/* --- Growth Section --- */
#growth {
    background: radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.4), transparent 60%), radial-gradient(circle at 50% 0%, #e65100 0%, var(--primary-color) 100%);
    /* Matched to Silent Leak */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.mb-60 {
    margin-bottom: 60px;
}

.growth-container {
    max-width: var(--container-width);
    /* Standard width */
    margin: 0 auto;
    padding: 0 24px;
}

.growth-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.growth-card {
    background: #0d0f12;
    /* Dark Card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 40px;
    transition: all 0.3s ease;
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.growth-card:hover {
    background: #15171c;
    transform: translateX(10px);
    /* Slide Right */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.growth-icon {
    color: var(--primary-color);
    margin-bottom: 0;
    margin-right: 32px;
    /* Space between icon and text */
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.growth-card:hover .growth-icon {
    transform: scale(1.1) rotate(5deg);
}

.growth-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.growth-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    /* White title on dark card */
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.growth-desc {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    transition: color 0.3s ease;
}

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

/* --- Comparison Section --- */
#comparison {
    background-color: #0b0d10;
    /* Very dark, distinct from Growth */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.comparison-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 60px;
    margin-top: 60px;
}

.comparison-col {
    flex: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-divider {
    display: none;
    /* Removing divider line in favor of card separation or gap */
}

/* Alternative: If user wants split with line, simpler to just have gap */
/* Let's keep the gap large. */

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.comparison-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific styling for bad side to add border */
.bad-side {
    border: 1px solid white;
    /* 100% White Border */
}

.bad-icon {
    color: #ef4444;
}

.bad-side h3 {
    color: #ef4444;
}

.good-side {
    background: var(--primary-color);
    /* Standard Brand Orange */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.3);
    transform: scale(1.02);
    z-index: 10;
}

.good-icon {
    color: white;
}

/* Specific styling for good side header since bg is now orange */
.good-side h3 {
    color: white;
}

/* Adjust check icon for orange bg */
.good-side .icon-check {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.good-side .comparison-list li {
    color: white;
    font-weight: 500;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.icon-x,
.icon-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-x {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.icon-check {
    background: rgba(255, 87, 34, 0.2);
    color: var(--primary-color);
}

.comparison-outro {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.mt-60 {
    margin-top: 60px;
}

.mt-30 {
    margin-top: 30px;
}

@media (max-width: 900px) {
    .comparison-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* --- Strategist Section --- */
#strategist {
    background: radial-gradient(circle at 85% 30%, rgba(255, 87, 34, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
        #0b0d10;
    /* Dual Orange Glows */
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.strategist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Reduced gap to give more width to columns */
    align-items: center;
}

.strategist-content {
    text-align: left;
}

.strategist-title {
    font-size: 6rem;
    /* Massive Title */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 0.95;
    /* Tight line-height */
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.strategist-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    line-height: 1.4;
}

.strategist-bio p {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.8;
}

.signature {
    font-family: 'Dancing Script', cursive;
    /* Use handwriting font */
    font-size: 4rem;
    color: var(--primary-color);
    margin-top: 40px;
}

.strategist-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.strategist-img-container {
    border: 1px solid var(--primary-color);
    /* Orange Frame */
    padding: 20px;
    /* Reduced padding for larger image */
    display: block;
    position: relative;
    background: #050505;
    /* Deep dark backing */
    box-shadow: 0 0 50px rgba(255, 87, 34, 0.15);
    /* Ambient Orange Glow */
}

.strategist-img {
    width: 100%;
    /* Fill container */
    aspect-ratio: 4 / 5;
    /* 4:5 Portrait Ratio */
    object-fit: cover;
    object-position: center 15%;
    /* Focus on face */
    background-color: #121418;
    display: block;
}

@media (max-width: 900px) {
    .strategist-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .strategist-image-side {
        order: -1;
        /* Image top on mobile */
        margin-bottom: 40px;
    }
}

/* --- Process Section --- */
#process {
    background-color: var(--bg-color);
    padding: 140px 0;
    position: relative;
}

/* --- Process Section (Reverse Grid) --- */
.process-reverse-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    /* Content Left, Title Right */
    gap: 100px;
    align-items: start;
    position: relative;
}

.process-header-col {
    position: sticky;
    top: 250px;
    /* Increased Sticky Top */
    text-align: left;
}

/* Removed specific override */

.process-steps-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d84315 100%);
    /* Orange Gradient */
    padding: 50px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-card:hover {
    transform: translateY(-5px);
}

.card-marker {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 0.8;
    flex-shrink: 0;
}

.process-card h3 {
    font-size: 2.8rem;
    /* Increased Title Size */
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-card p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-reverse-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-header-col {
        order: -1;
        /* Title on top on mobile */
        position: static;
        text-align: left;
    }
}

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

    .process-content-side .section-title {
        font-size: 2.5rem;
    }
}

/* --- Results Section --- */
/* --- Results Section --- */
#results {
    background-color: var(--primary-color);
    padding: 100px 0;
}

#results .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.result-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    background: #121418;
    /* Dark Card */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.result-card:hover {
    transform: translateY(-8px);
    background-color: #1a1d23;
    /* Lighter Dark */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* 
.result-card:hover .result-client,
.result-card:hover .client-type,
.result-card:hover .result-stat,
.result-card:hover .result-link {
    color: white !important;
} 
*/

.result-client {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: auto;
}

.client-type {
    font-weight: 400;
    color: #cccccc;
    text-transform: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.result-image-wrapper {
    width: calc(100% + 60px);
    margin: 0 -30px 24px -30px;
    border-radius: 0;
    overflow: hidden;
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.result-card:hover .result-img {
    transform: scale(1.05);
}

.result-stat {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.result-link {
    font-size: 1.1rem;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.result-link:hover {
    color: rgba(255, 255, 255, 0.8);
    /* Subtle dim on direct link hover */
}

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

/* --- Testimonials Section --- */
/* --- Testimonials Section --- */
#testimonials {
    background-color: #0b0d10;
    /* Deep Dark */
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Clean transition from valid orange section */
}

/* --- Global Header Wrappers --- */
.header-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.mw-600 {
    max-width: 600px;
}

.mw-800 {
    max-width: 800px;
}

/* --- Testimonials Section --- */
.testimonial-intro-grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin: 0 auto 60px auto;
}

.testimonial-intro-img {
    width: auto;
    max-width: 25%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    display: flex;
}

.intro-img {
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.testimonial-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Strategist / Bio Section --- */
.strategist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.strategist-content {
    position: relative;
    z-index: 2;
}

.strategist-img-container {
    position: relative;
    border-radius: 20px;
    padding: 20px;
}

.strategist-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    filter: grayscale(20%) contrast(110%);
}

.strategist-content .heading-style-h2 {
    margin-bottom: 40px;
}

.commitment-statement {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 1;
    font-style: italic;
    border-left: 6px solid var(--primary-color);
    padding-left: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.strategist-sig-block {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sig-headshot img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    /* Rounder borders as requested */
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sig-seal img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.sig-details {
    display: flex;
    flex-direction: column;
}

.signature-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
}

.sig-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- SCI-FI CARD STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700;800&display=swap');

:root {
    --sci-orange: #ff8e4f;
    --sci-orange-hot: #fff5e6;
    --sci-dark-metal: #14171c;
    /* --sci-shape: polygon(0% 0%, 15% 0%, 18% 12px, 82% 12px, 85% 0%, 100% 0%,
            100% 15%, calc(100% - 12px) 20%, calc(100% - 12px) 80%, 100% 85%,
            100% 100%, 85% 100%, 82% calc(100% - 12px), 18% calc(100% - 12px), 15% 100%, 0% 100%,
            0% 85%, 12px 80%, 12px 20%, 0% 15%); */
}

.tech-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 87, 34, 0.4));
}

.process-card-scifi {
    position: relative;
    width: 100%;
    /* max-width: 720px; Let grid control width */
    min-height: 200px;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 30px;

    /* Moved from .scifi-plate */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;

    background:
        radial-gradient(circle at 30% -20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(90deg, transparent 0px, transparent 2px, rgba(0, 0, 0, 0.15) 3px, transparent 4px),
        linear-gradient(90deg, #1c1f26 0%, #3a414d 30%, #48505e 50%, #3a414d 70%, #1c1f26 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Removed Complex Layers */
/*
.scifi-rim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #333 0%, #a06545 30%, #222 50%, #a06545 70%, #333 100%);
    clip-path: var(--sci-shape);
    z-index: 1;
    filter: brightness(1.3);
}

.scifi-chassis {
    position: absolute;
    inset: 2px;
    background: var(--sci-dark-metal);
    clip-path: var(--sci-shape);
    z-index: 2;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0px, transparent 2px);
    background-size: 4px 100%, 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scifi-groove {
    position: absolute;
    z-index: 5;
    height: 3px;
    width: 64%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    background: linear-gradient(90deg, transparent 0%, var(--sci-orange) 20%, var(--sci-orange-hot) 50%, var(--sci-orange) 80%, transparent 100%);
    box-shadow: 0 0 5px var(--sci-orange), 0 0 10px var(--sci-orange), 0 0 20px var(--sci-orange), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.groove-top {
    top: 6px;
}

.groove-bottom {
    bottom: 6px;
}

.scifi-neon {
    position: absolute;
    z-index: 5;
    width: 4px;
    height: 40%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--sci-orange);
    box-shadow: 0 0 15px var(--sci-orange);
    border-radius: 2px;
}

.neon-left {
    left: 6px;
}

.neon-right {
    right: 6px;
}

.scifi-inner {
    position: relative;
    width: 94%;
    height: 86%;
    z-index: 10;
}

.scifi-plate {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background:
        radial-gradient(circle at 30% -20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(90deg, transparent 0px, transparent 2px, rgba(0, 0, 0, 0.15) 3px, transparent 4px),
        linear-gradient(90deg, #1c1f26 0%, #3a414d 30%, #48505e 50%, #3a414d 70%, #1c1f26 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}
*/
.scifi-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
    position: relative;
    z-index: 20;
}

.scifi-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    /* Flex required for centering */
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.scifi-bg-number {
    position: absolute;
    font-size: 100px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.3);
    top: -35px;
    left: -10px;
    z-index: -1;
    user-select: none;
    line-height: 1;
}

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

.scifi-label {
    color: #88909b;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.scifi-title {
    color: var(--sci-orange);
    font-size: 2.5rem;
    /* Matched to previous large sizing */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 0.9;
    text-shadow: 0 0 25px rgba(255, 142, 79, 0.3);
}

.scifi-desc {
    color: #dbe1eb;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width: 600px) {
    .scifi-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .scifi-plate {
        padding: 30px 20px;
    }

    .scifi-bg-number {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Guarantee Badge Overlay */
/* Guarantee Badge Overlay */
.guarantee-badge-img {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 140px;
    height: 140px;
    object-fit: contain;
    z-index: 10;
    transform: rotate(15deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: lightning-glow 1.5s infinite alternate;
}

.guarantee-badge-img:hover {
    transform: rotate(-5deg) scale(1.1);
    cursor: pointer;
}

@keyframes lightning-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
    }
}

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

    .strategist-sig-block {
        justify-content: center;
        text-align: center;
    }

    .sig-details {
        align-items: center;
    }

    .guarantee-badge-img {
        width: 110px;
        height: 110px;
        top: -30px;
        right: 0px;
    }


}

.testimonial-intro-content .heading-style-h1 {
    margin-bottom: 20px;
    line-height: 0.95;
    /* Tighter for large text */
}

@media (max-width: 768px) {
    .testimonial-intro-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .testimonial-intro-img {
        width: 150px;
        /* Fallback fixed width on mobile */
        height: 150px;
    }

    .testimonial-intro-content p.text-left {
        text-align: center;
    }
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: max(20px, calc(50vw - 600px));
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 80px) / 3);
    min-width: 0;
    scroll-snap-align: start;

    border: 4px solid white;
    /* 4 width 100% white */
    border-radius: 16px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d84315 100%);
    /* Rich Orange Gradient */
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Slider Nav */
.testimonial-nav {
    display: flex;
    gap: 16px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .testimonial-card {
        min-width: 85vw;
        padding: 40px 30px;
    }

    .testimonial-nav {
        justify-content: center;
        margin-top: 20px;
    }
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 14rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    font-family: serif;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 87, 34, 0.4);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
    color: white;
}

.stars svg {
    width: 24px;
    height: 24px;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 500;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Strategist Section --- */
#strategist {
    background-color: var(--bg-color);
    padding: 120px 0;
}

/* [Duplicate CSS Block Removed] */

/* --- FAQ Section --- */
#faq {
    background-color: var(--bg-color);
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 2;
}

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

.faq-item {
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.faq-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: white;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color: white;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
    color: white;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

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

.faq-answer p {
    color: white;
    line-height: 1.6;
    font-size: 1.05rem;
    padding: 0 30px 24px 30px;
    margin: 0;
}

/* Active State for FAQ */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- CTA Section --- */
#cta {
    background: linear-gradient(135deg, var(--bg-orange) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

#cta .highlight-text {
    background-color: black;
    /* Black Background */
    color: white;
    padding: 0 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

#cta p {
    color: white !important;
    opacity: 1;
}

/* Alternative Button */
.btn-alt {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
}

.btn-alt:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-alt svg {
    transition: transform 0.3s ease;
}

.btn-alt:hover svg {
    transform: translateX(4px);
}

/* --- Footer --- */
footer {
    background-color: #050505;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-links-list a:hover {
        transform: none;
    }
}

/* --- Work Page Styles --- */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.project-card {
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.project-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 24px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-content {
    padding: 0 10px;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
}

.project-desc {
    color: #aeaeae;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.project-stats li {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-stats li span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

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

/* --- Process Page Specifics --- */
.process-image-col {
    width: 100%;
    height: 100%;
}

/* Ensure grid works on desktop if not fully defined elsewhere for this specific context */
@media (min-width: 901px) {
    .process-reverse-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
}

/* --- Services Page Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #121418;
    /* Dark card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #1b1d22 0%, #121418 100%);
    /* Subtle lift */
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(230, 81, 0, 0.1);
    /* Subtle Orange glow */
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.package-sub {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
}

.pricing-features li .icon-check {
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- About Page Styles --- */
.about-bio-section {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: #aeaeae;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text p.lead {
    font-size: 1.3rem;
    color: white;
    font-weight: 500;
}

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

.value-card {
    background: #121418;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Contact Page Styles --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 100px;
}

.contact-info-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method label {
    display: block;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-method a,
.contact-method p {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
}

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

.form-label {
    display: block;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: #0b0d10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    color: white;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- New About Page Styles (Revamp) --- */

/* Stats Bar */
.about-stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Split Layout */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #aeaeae;
    margin-bottom: 20px;
}

.split-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Banner */
.mission-banner {
    background: #121418;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 100px;
}

.mission-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Tech Stack */
.tech-stack-section {
    margin-bottom: 100px;
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.7;
}

.tech-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Responsive */
@media(max-width: 900px) {
    .about-stats-bar {
        flex-direction: column;
        gap: 40px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-image-wrapper {
        min-height: 300px;
        order: -1;
        /* Image on top mobile */
    }

    .mission-text {
        font-size: 1.5rem;
    }
}

/* --- Enhanced About Hero --- */
#about-hero {
    background: radial-gradient(circle at 20% 30%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        #0b0d10;
    position: relative;
    padding-top: 180px;
    /* More breathing room */
    padding-bottom: 100px;
}

#about-hero .heading-style-h1 {
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#about-hero .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* --- Recent Works Gallery --- */
#recent-works {
    padding: 0;
    /* Full bleed */
    background: #0b0d10;
}

.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns like reference */
    width: 100%;
}

.mockup-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    /* Consistent aspect ratio */
}

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

.mockup-item:hover .mockup-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mockup-gallery {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* --- Construction Visuals System --- */

/* 1. Blueprint Grid Background */
.bg-blueprint {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

/* 2. Technical Corners (Add to relative containers) */
.tech-corner-tl {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    z-index: 2;
}

.tech-corner-br {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    z-index: 2;
}

/* 3. Caution Stripe Divider */
.divider-caution {
    height: 4px;
    width: 100%;
    background: repeating-linear-gradient(45deg,
            #1a1a1a,
            #1a1a1a 10px,
            var(--primary-color) 10px,
            var(--primary-color) 12px);
    opacity: 0.8;
    margin: 0;
}

/* 4. Concrete Noise Overlay (Subtle) */
.bg-concrete::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* --- Growth Section Redesign --- */
/* --- Process Flow Section (Growth Redesign) --- */
/* Reset #growth background explicitly */
#growth {
    background: #0b0d10 !important;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.15) 0%, transparent 50%) !important;
    padding: 100px 0;
    position: relative;
    overflow: visible;
    /* Allowing hover effects */
}

.process-section {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 20px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.process-icon-wrapper {
    width: 140px;
    /* Increased from 100px */
    height: 140px;
    /* Increased from 100px */
    margin: 0 auto 30px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 87, 34, 0.3));
    /* Glow effect */
}

.process-step:hover .process-icon-wrapper {
    transform: scale(1.1) translateY(-10px);
}

.step-num {
    display: block;
    font-size: 1.2rem;
    /* Increased from 1rem */
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.process-title {
    font-size: 1.4rem;
    /* Increased from 1.1rem */
    /* Smaller, sharper title */
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-desc {
    font-size: 1.1rem;
    /* Increased from 0.9rem */
    color: #999;
    line-height: 1.6;
}

.strike-text {
    text-decoration: line-through;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 4px;
    color: rgba(255, 255, 255, 0.5);
}

/* Arrows */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    /* Dark grey arrow */
    margin-top: 40px;
    /* Align with center of icons roughly */
    animation: pulseArrow 2s infinite;
}

.process-arrow svg {
    color: rgba(255, 87, 34, 0.5);
    width: 40px;
    height: 40px;
}

@keyframes pulseArrow {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

@media (max-width: 900px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .process-arrow {
        transform: rotate(90deg);
        /* Point down */
        margin-top: 0;
        margin-bottom: 0;
    }

    .process-arrow svg {
        animation: none;
        /* simple static arrow on mobile */
    }

    .process-step {
        max-width: 400px;
    }
}



/* --- Video Introduction Section --- */
#video-intro {
    padding: 80px 0;
    background-color: #0b0d10;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Cinema width */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    /* Orange Border & Glow */
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Aspect ratio handled by Wistia Embed */

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1d21, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 87, 34, 0.3);
    /* Subtle orange border */
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
}

.video-section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* --- About Page Expansion: Industry Focus --- */
#industry-focus {
    background: #0b0d10;
    padding: 100px 0;
}

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

.industry-card {
    background: linear-gradient(145deg, #121418, #0b0d10);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    color: var(--primary-color);
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.industry-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.industry-card p {
    font-size: 0.95rem;
    color: #999;
}

/* --- About Page Expansion: Timeline Journey --- */
#journey-timeline {
    background: #0b0d10;
    padding: 120px 0;
    position: relative;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

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

.timeline-marker {
    position: absolute;
    left: -49px;
    /* Adjust for line position */
    top: 0;
    width: 16px;
    height: 16px;
    background: #0b0d10;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
}

.timeline-item h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-item p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- About Page Expansion: Visual Blueprint Process --- */
#blueprint-process {
    padding: 100px 0;
    background-color: #0b0d10;
    /* Dark BG */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

.blueprint-diagram {
    display: flex;
    justify-content: space-between;
    /* 3 Steps */
    align-items: center;
    margin-top: 60px;
    position: relative;
    gap: 20px;
}

.blueprint-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    z-index: 0;
    transform: translateY(-50%);
}

.blueprint-step {
    background: #0b0d10;
    border: 1px solid white;
    padding: 30px;
    width: 30%;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.blueprint-step:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.blueprint-step h4 {
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blueprint-step p {
    font-size: 0.9rem;
    color: #aaa;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

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

    .blueprint-diagram {
        flex-direction: column;
    }

    .blueprint-diagram::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .blueprint-step {
        width: 100%;
        margin-bottom: 30px;
    }
}