:root {
    --bg-color: #0a0a0a;
    /* Very dark grey/black */
    --text-color: #ffffff;
    /* White text as requested */
    --accent-color: #008080;
    /* Teal */
    --accent-hover: #006666;
    --secondary-text: #808080;
    /* Gray for supporting text */
    --border-color: #333333;

    --font-main: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-container: 5vw;

    --grid-gap: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    /* Base size */
}

/* Typography Utility */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

p,
li {
    font-weight: 300;
}

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* Layout Utility */
.container {
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
    max-width: 1440px;
    margin: 0 auto;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
    background-color: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-color);
    background-color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--text-color);
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background-color: transparent;
    color: var(--text-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem var(--spacing-container);
        gap: 1.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

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

/* Hero offset for fixed nav */
.hero-section {
    padding-top: 4.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
    margin-left: var(--spacing-sm);
}

.btn-secondary:hover {
    border-color: var(--text-color);
}

/* --- Section 1: Hero --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Changed to allow footer strip */
    justify-content: center;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    position: relative;
}

.trusted-by-strip {
    margin-top: auto;
    /* Push to bottom of hero */
    padding-top: var(--spacing-lg);
    border-top: none;
    /* Removed for background continuity */
    width: 100%;
}

.trusted-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.logo-grid {
    display: flex;
    gap: var(--spacing-lg);
    opacity: 0.5;
}

.logo-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-text);
    /* Minimalist logo representation */
}

.hero-main {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding-top: var(--spacing-lg);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #111;
    border: 1px solid var(--border-color);
    box-shadow: 20px 20px 0px rgba(0, 206, 209, 0.1);
    overflow: hidden;
    position: relative;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-photo {
    filter: grayscale(0%);
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-subhead-container {
        border-left: none;
        padding-left: 0;
    }
}

.hero-subhead-container {
    margin-bottom: var(--spacing-lg);
    border-left: 2px solid var(--accent-color);
    padding-left: var(--spacing-md);
}

.hero-subhead {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-text);
}

.hero-text-swap {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
    height: 1.5em;
    /* reserve space */
    position: relative;
    overflow: hidden;
}

.hero-text-swap span {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text-swap span.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    margin-top: var(--spacing-md);
}

/* --- Consolidated Method & Engagement --- */
/* --- Method Grid (Parallel Viewport Fit) --- */
.method-section {
    padding: var(--spacing-lg) 0;
    border-top: none;
    /* Removed for background continuity */
    background-color: var(--bg-color);
}

.method-master-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: var(--text-color);
    text-align: center;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: stretch;
}

.method-card {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: var(--spacing-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.card-marker {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-color);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    border-bottom: 1px solid #222;
    padding-bottom: var(--spacing-xs);
}

.card-intro {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.compact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md);
    flex-grow: 1;
}

.compact-list li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--secondary-text);
    padding-left: 1rem;
    position: relative;
}

.compact-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.card-insight {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid #222;
}

.card-insight p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--accent-color);
}

.card-footer {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--secondary-text);
    margin-top: auto;
}

/* --- Engagement Models (Split/Half-height) --- */
.engagement-section {
    padding: var(--spacing-md) 0;
    background-color: #0c0c0c;
    border-top: none;
    /* Removed for background continuity */
}

.engagement-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.engagement-header .section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: stretch;
}

.fixed-projects .project-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-item {
    background: #141414;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.project-name {
    font-weight: 600;
}

.project-price {
    color: var(--accent-color);
}

.project-desc {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.equity-advisory-unified {
    height: 100%;
}

.equity-box {
    background: rgba(0, 128, 128, 0.05);
    padding: var(--spacing-sm) var(--spacing-md);
    /* Reduced top/bottom padding to fit better */
    border: 1px solid rgba(0, 128, 128, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content to avoid bottom edge crowding */
}

.equity-structure {
    font-size: 1.1rem;
    /* Slightly smaller to save space */
    font-weight: 600;
    margin: var(--spacing-xs) 0;
    /* Reduced margin */
    color: var(--text-color);
}

.equity-includes {
    font-size: 0.85rem;
    /* Slightly smaller */
    color: var(--secondary-text);
    margin-bottom: var(--spacing-sm);
    /* Explicit margin before button */
}


/* --- Impact Section (Half-height feature) --- */
.proof-section {
    padding: var(--spacing-lg) 0;
    background-color: #0c0c0c;
    border-top: none;
    /* Removed for background continuity */
}

.proof-section .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
    /* Ensure contents are centered */
}

.metric-item {
    padding: var(--spacing-sm);
    border: 1px solid #222;
    transition: all 0.3s ease;
    background: #111;
    display: flex;
    /* Use flex for easier centering */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-closing {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: var(--spacing-sm);
    font-style: italic;
}





/* --- CTA & Testimonial Side-by-Side --- */
.cta-section {
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    border-top: none;
    /* Removed for background continuity */
    background: var(--accent-color);
    /* Teal background */
    color: #000000;
    /* High contrast text */
}

.cta-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: 60px;
}

.cta-quote {
    padding-right: var(--spacing-lg);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle dark border */
}

.compact-quote p {
    font-size: 1.4rem;
    font-style: italic;
    font-family: serif;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    /* Slightly softened black */
    margin-bottom: var(--spacing-md);
}

.compact-quote strong {
    font-weight: 800;
    /* Extra bold for visibility */
    color: #000000;
}

.compact-quote cite {
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #000000;
    font-weight: 700;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    color: #000000;
}

/* Specific button for teal background to ensure accessibility */
.cta-section .btn-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: #000000;
}

/* --- Section: Insights --- */
.insights-section {
    padding: var(--spacing-xl) 0;
    border-top: none;
    /* Removed for background continuity */
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

.insight-card {
    display: flex;
    flex-direction: column;
}

.insight-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.insight-image-link {
    display: block;
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}

.insight-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.insight-card:hover .insight-image-link img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.insight-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.insight-content p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.5;
}

.text-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-link:hover {
    color: var(--text-color);
}

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: var(--spacing-lg) 0;
    font-size: 0.85rem;
    border-top: none;
    /* Removed for background continuity */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.footer-left {
    display: flex;
    gap: var(--spacing-md);
}

.footer-left a {
    color: #ffffff;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: var(--accent-color);
}

.footer-right {
    max-width: 600px;
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

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


/* --- Section: Pricing & Packaging --- */
.pricing-section {
    padding: var(--spacing-md) 0;
    /* Reduced from lg */
    border-top: none;
    /* Removed for background continuity */
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.pricing-intro h2 {
    font-size: 2.5rem;
    /* Reduced from 3rem */
    margin-bottom: var(--spacing-xs);
}

.pricing-intro p {
    font-size: 1.1rem;
    /* Reduced from 1.2rem */
    color: var(--secondary-text);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    align-items: stretch;
    margin-bottom: var(--spacing-lg);
    /* Reduced from xl */
}

.package-card {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
    border-color: #444;
}

.package-card.highlight {
    border: 2px solid var(--accent-color);
    background: #151515;
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.package-header {
    margin-bottom: var(--spacing-sm);
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.15rem;
}

.package-fit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.package-for {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-md);
    min-height: 3em;
}

.package-features {
    flex-grow: 1;
    margin-bottom: var(--spacing-sm);
}

.package-features h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-sm);
}

.package-features ul li {
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    margin-bottom: 0.25rem;
    /* Reduced from 0.5rem */
    padding-left: 1.25rem;
    position: relative;
    border-bottom: none;
    padding-top: 0;
}

.package-features ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.package-when {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #222;
}

.package-when h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.package-when ul li {
    font-size: 0.8rem;
    /* Reduced from 0.85rem */
    color: var(--secondary-text);
    margin-bottom: 0.15rem;
    /* Reduced from 0.25rem */
}

.package-actions {
    margin-top: var(--spacing-md);
}

.package-actions .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    /* Clear any residual secondary button margin */
}

/* --- Fixed Projects & Equity Advisory --- */
.secondary-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.fixed-projects h4,
.equity-advisory-unified h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-sm);
    /* Add padding above headings as requested */
}

.project-list {
    display: grid;
    gap: var(--spacing-sm);
}

.project-item {
    background: #0f0f0f;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #222;
    transition: border-color 0.2s ease;
}

.project-item:hover {
    border-color: #333;
}

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.project-name {
    font-weight: 600;
    color: var(--text-color);
}

.project-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.equity-advisory {
    background: rgba(0, 128, 128, 0.05);
    padding: var(--spacing-md);
    border: 1px solid rgba(0, 128, 128, 0.2);
}

.equity-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-text);
}

.equity-highlight {
    font-weight: 600;
    color: var(--text-color);
}

.equity-details {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
}


/* --- Interactive Logo Grid (Brutalist) --- */
.trusted-by-strip {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #1a1a1a;
    width: 100%;
}

/* --- Interactive Logo Grid (Refined) --- */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.logo-container {
    background: #FFFFFF;
    border: 2px solid #000;
    aspect-ratio: 1/1;
    min-width: 200px;
    min-height: 200px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-container img {
    max-width: 90%;
    max-height: 90%;
    /* Default state: subtle desaturation */
    filter: grayscale(0.6) opacity(0.75);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Teal Overlay for Hover (#00CED1 at 80%) */
.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00CED1;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* "Click for more detail" pill */
.logo-container::before {
    content: 'Click for more detail';
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.logo-container:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.logo-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 80%;
    pointer-events: none;
    z-index: 3;
    line-height: 1.2;
}

.logo-container:hover {
    background-color: #1A1A1A;
}

.logo-container:hover img {
    filter: none;
    opacity: 1;
}

.logo-container:hover::after {
    opacity: 0.8;
    /* 80% teal overlay */
}

.logo-container:hover .logo-hover-text {
    opacity: 1;
}

/* --- Modal (Brutalist) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fff;
    border: 3px solid #000;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    color: #000;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    color: #000;
    line-height: 1;
}

.modal-logo {
    max-width: 120px;
    margin-bottom: 24px;
    filter: grayscale(100%);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: #000;
}

.modal-company-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
    font-weight: 400;
}

.modal-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.modal-cta:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .modal-container {
        padding: 30px 20px;
    }
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .grid-layout {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
    }

    .problem-list ul li {
        font-size: 1.8rem;
    }

    .service-header,
    .service-details {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .process-content {
        margin: 0;
    }

    .checklist-col {
        width: 100%;
    }

    .checklist-col+.checklist-col {
        margin-top: var(--spacing-md);
    }

    .method-master-title {
        font-size: 3rem;
    }

    .method-track {
        padding-left: 0;
        border-left: none;
    }

    .step-marker {
        position: static;
        margin-bottom: var(--spacing-sm);
    }

    .step-insight {
        margin-top: var(--spacing-md);
        padding-left: var(--spacing-sm);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .package-card.highlight {
        transform: none;
    }

    .secondary-offers {
        grid-template-columns: 1fr;
    }

    .philosophy-lead {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {

    /* 1. Logo strip: consistent grid */
    .logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .logo-container {
        min-width: unset;
        min-height: unset;
        padding: 10px;
    }

    .logo-container img {
        max-width: 90%;
        max-height: 90%;
    }

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

    /* 2. Method: auto-rotating single-pane carousel */
    .method-grid {
        display: block;
        position: relative;
        overflow: hidden;
        /* min-height set dynamically by JS */
    }

    .method-card {
        position: absolute;
        top: 14px; /* offsets card down so .card-marker at top:-10px clears the overflow:hidden boundary */
        left: 0;
        right: 0;
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
        z-index: 0;
    }

    .method-card.carousel-active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        z-index: 1;
    }

    .method-card.carousel-exit {
        opacity: 0;
        transform: translateX(-40px);
        pointer-events: none;
        z-index: 0;
    }

    .method-master-title {
        font-size: 2.5rem;
    }

    /* Carousel dot indicators */
    .method-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: var(--spacing-md);
    }

    .method-carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #333;
        border: 1px solid #555;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .method-carousel-dots .dot.active {
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

    /* 3. Engagement: equity stacks below */
    .engagement-content {
        grid-template-columns: 1fr;
    }

    .fixed-projects .project-list {
        grid-template-columns: 1fr;
    }

    /* 4. Insights: vertical list */
    .insights-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .insights-section {
        padding: var(--spacing-lg) 0;
    }

    /* 5. CTA: stack quote & action vertically */
    .cta-split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .cta-quote {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: var(--spacing-md);
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-color);
    border-top: 1px solid #1a1a1a;
}

.faq-intro {
    color: var(--secondary-text);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    max-width: 640px;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    text-align: left;
    padding: var(--spacing-md) 0;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    transition: color 0.2s ease;
    line-height: 1.4;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: var(--spacing-md);
    color: var(--secondary-text);
    line-height: 1.75;
    max-width: 680px;
}

.faq-answer p {
    margin: 0;
}

/* ============================================================
   What I Do Page
   ============================================================ */

/* Active nav state */
.nav-link--active {
    color: var(--text-color) !important;
}

/* Page hero */
.wwd-hero {
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl);
    border-bottom: 1px solid #1a1a1a;
}

.wwd-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.wwd-hero-sub {
    font-size: 1.15rem;
    color: var(--secondary-text);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: var(--spacing-md);
}

.wwd-hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Narrow content column */
.wwd-narrow {
    max-width: 760px;
}

/* Section base */
.wwd-section {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid #1a1a1a;
}

.wwd-section--alt {
    background-color: #0d0d0d;
}

/* Section label */
.wwd-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.wwd-label--centre {
    text-align: center;
}

/* Section heading */
.wwd-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

/* Section intro */
.wwd-section-intro {
    color: var(--secondary-text);
    line-height: 1.75;
    margin-bottom: var(--spacing-md);
    max-width: 680px;
}

.wwd-section-intro--wide {
    max-width: 100%;
}

/* Section outro */
.wwd-section-outro {
    color: var(--secondary-text);
    line-height: 1.75;
    margin-top: var(--spacing-md);
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: var(--spacing-sm);
}

/* Problem signals list */
.problem-signals {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-signals li {
    padding: 0.85rem 0 0.85rem 1.8em;
    border-bottom: 1px solid #1c1c1c;
    font-size: 1.05rem;
    color: var(--secondary-text);
    position: relative;
    line-height: 1.5;
}

.problem-signals li:last-child {
    border-bottom: none;
}

.problem-signals li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Stage list (four-stage method) */
.stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stage-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #1c1c1c;
    align-items: start;
}

.stage-item:last-child {
    border-bottom: none;
}

.stage-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #252525;
    line-height: 1;
    letter-spacing: -0.04em;
    padding-top: 4px;
}

.stage-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.stage-desc {
    color: var(--secondary-text);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* Comparison table */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid #222;
}

.comparison-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.comparison-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #333;
    color: var(--text-color);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    color: transparent;
    user-select: none;
}

.comparison-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #1a1a1a;
    color: var(--secondary-text);
    font-size: 0.92rem;
    line-height: 1.55;
    vertical-align: top;
}

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

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.comparison-table .price-cell {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem !important;
}

.comparison-table .highlight-col {
    background: rgba(0, 128, 128, 0.06);
}

/* Fixed-outcome projects note */
.fixed-projects-note {
    padding: var(--spacing-md);
    border: 1px solid #222;
    border-left: 3px solid var(--accent-color);
}

.fixed-projects-note h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
}

.fixed-projects-desc {
    color: var(--secondary-text);
    font-size: 0.92rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.fixed-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 2rem;
    margin-bottom: var(--spacing-sm);
}

.fixed-project-item {
    color: var(--secondary-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.fixed-projects-equity {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    border-top: 1px solid #1c1c1c;
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

/* Fit / Not-Fit grid */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.fit-block {
    padding: var(--spacing-md);
    border: 1px solid #222;
}

.fit-block--yes {
    border-color: rgba(0, 128, 128, 0.4);
}

.fit-block--no {
    border-color: #222;
}

.fit-block-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--spacing-sm);
}

.fit-block--yes .fit-block-title {
    color: var(--accent-color);
}

.fit-block--no .fit-block-title {
    color: #555;
}

.fit-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-block ul li {
    color: var(--secondary-text);
    padding: 0.45rem 0 0.45rem 1.4em;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.5;
    border-bottom: 1px solid #161616;
}

.fit-block ul li:last-child {
    border-bottom: none;
}

.fit-block--yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.fit-block--no ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #444;
    font-weight: 700;
}

/* About block */
.about-block {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-top: var(--spacing-md);
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(20%);
    display: block;
}

.about-bio p {
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.about-bio p:last-of-type {
    margin-bottom: 0;
}

.about-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.about-links a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.about-links a:hover {
    opacity: 0.7;
}

/* Closing CTA */
.wwd-cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.wwd-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.wwd-cta-sub {
    color: var(--secondary-text);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- What I Do: Mobile responsive ---- */
@media (max-width: 768px) {

    .wwd-hero {
        padding: calc(var(--spacing-lg) + 60px) 0 var(--spacing-lg);
    }

    .wwd-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .wwd-hero-actions .btn-secondary {
        margin-left: 0;
    }

    .stage-item {
        grid-template-columns: 48px 1fr;
        gap: var(--spacing-sm);
    }

    .stage-number {
        font-size: 1.8rem;
    }

    .fit-grid {
        grid-template-columns: 1fr;
    }

    .about-block {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 160px;
        aspect-ratio: 1 / 1;
    }

    .about-links {
        gap: var(--spacing-sm);
    }

    .wwd-cta-section {
        padding: var(--spacing-lg) 0;
    }

    .fixed-projects-grid {
        grid-template-columns: 1fr;
    }
}