/* ============================================
           IRON CANYON CO - DESIGN SYSTEM
           ============================================ */

        :root {
            --bg-cream: #F4F1EA;
            --text-headline: #1F1F1F;
            --text-body: #333333;
            --action-orange: #B8441F;
            --action-orange-hover: #A93A18;
            --card-border: #D4D0C8;
            --card-bg: #FDFCFA;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ============================================
           NAVIGATION
           ============================================ */

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--bg-cream);
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--card-border);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            min-height: 40px;
            text-decoration: none;
        }

        .nav-brand-logo {
            height: 36px;
            width: auto;
        }

        .nav-brand-text {
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-headline);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: none;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-body);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--action-orange);
        }

        .nav-phone {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--action-orange);
            color: white;
            padding: 0.5rem 0.8rem;
            min-height: 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.75rem;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .nav-phone:hover {
            background: var(--action-orange-hover);
        }

        /* Mobile: smaller text and logo */
        @media (max-width: 480px) {
            .nav {
                padding: 0.8rem 1rem;
            }

            .nav-brand-text {
                font-size: 0.85rem;
            }

            .nav-brand-logo {
                height: 28px;
            }

            .nav-phone {
                padding: 0.45rem 0.5rem;
                font-size: 0.65rem;
            }
        }

        @media (min-width: 768px) {
            .nav {
                padding: 1rem 3rem;
            }

            .nav-links {
                display: flex;
            }

            .nav-phone {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        /* ============================================
           HERO SECTION
           ============================================ */

        .hero {
            min-height: 100vh;
            padding: 6rem 1.5rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Subtle texture overlay */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4D0C8' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }


        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 900;
            color: var(--text-headline);
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 1rem;
        }

        .hero-sub {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: var(--text-body);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero-trades {
            font-size: 1rem;
            color: var(--text-body);
            margin-bottom: 2.5rem;
            max-width: 520px;
            line-height: 1.7;
        }

        .hero-trades strong {
            color: var(--action-orange);
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            align-items: center;
        }

        .btn-primary {
            display: inline-block;
            background: var(--action-orange);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 320px;
        }

        .btn-primary:hover {
            background: var(--action-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(217, 83, 41, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 58px;
            width: 100%;
            max-width: 320px;
            padding: 1rem 2rem;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.55);
            color: var(--text-headline);
            text-decoration: none;
            font-size: 1.02rem;
            font-weight: 800;
            transition: border-color 0.2s, color 0.2s, transform 0.2s;
        }

        .btn-secondary:hover {
            border-color: var(--action-orange);
            color: var(--action-orange);
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .hero {
                text-align: left;
                padding: 0 4rem;
            }

            .hero-actions {
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
            }

            .btn-primary {
                width: auto;
            }

            .btn-secondary {
                width: auto;
            }
        }

        /* ============================================
           WHO WE SERVE SECTION
           ============================================ */

        .who-we-serve {
            padding: 5rem 1.5rem;
            background: white;
        }

        .trades-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .trade-card {
            background: var(--bg-cream);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .trade-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .trade-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .trade-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-headline);
            margin-bottom: 0.25rem;
        }

        .trade-card p {
            font-size: 0.85rem;
            color: var(--text-body);
            opacity: 0.8;
        }

        @media (min-width: 768px) {
            .who-we-serve {
                padding: 6rem 3rem;
            }

            .trades-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        /* ============================================
           PROOF SECTION
           ============================================ */

        .proof {
            padding: 5rem 1.5rem;
            background: var(--bg-cream);
        }

        .proof-shell {
            max-width: 1120px;
            margin: 0 auto;
        }

        .proof-head {
            display: grid;
            gap: 0.9rem;
            max-width: 820px;
            margin-bottom: 2rem;
        }

        .proof-kicker {
            margin-bottom: 0.7rem;
            color: var(--action-orange);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .proof-head h2 {
            max-width: 760px;
            color: var(--text-headline);
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 850;
            line-height: 1.04;
            margin-bottom: 0;
        }

        .proof-head p {
            max-width: 560px;
            color: var(--text-body);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .proof-head a {
            color: var(--action-orange);
            font-weight: 800;
            text-decoration-thickness: 0.08em;
            text-underline-offset: 0.18em;
        }

        .proof-assets {
            display: grid;
            gap: 1rem;
        }

        .proof-artifact {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .proof-artifact-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--card-border);
            background: white;
            min-height: 64px;
        }

        .proof-artifact-title {
            color: var(--text-headline);
            font-size: clamp(0.84rem, 1vw, 0.95rem);
            font-weight: 800;
            line-height: 1.25;
            min-width: 0;
            white-space: nowrap;
        }

        .proof-artifact-tag {
            color: var(--action-orange);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            flex: 0 0 auto;
        }

        .proof-artifact-body {
            padding: 1.25rem;
            flex: 1;
        }

        .proof-list {
            display: grid;
            gap: 1rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .proof-list li {
            display: grid;
            grid-template-columns: 2.2rem 1fr;
            gap: 0.75rem;
            align-items: start;
        }

        .proof-list span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 6px;
            background: rgba(184, 68, 31, 0.11);
            color: var(--action-orange);
            font-weight: 850;
            font-size: 0.8rem;
        }

        .proof-list strong {
            display: block;
            color: var(--text-headline);
            margin-bottom: 0.1rem;
        }

        .proof-list p {
            margin: 0;
            color: var(--text-body);
            font-size: 0.92rem;
        }

        @media (min-width: 768px) {
            .proof {
                padding: 6rem 3rem;
            }

            .proof-assets {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                align-items: stretch;
            }
        }

        @media (max-width: 900px) {
            .proof-artifact-title {
                white-space: normal;
            }
        }

        /* ============================================
           SAMPLE SHOWCASE SECTION
           ============================================ */

        .sample-showcase {
            padding: 5rem 1.5rem;
            background: white;
        }

        .sample-showcase-shell,
        .resource-shell {
            max-width: 1120px;
            margin: 0 auto;
        }

        .sample-showcase-head {
            display: grid;
            gap: 0.9rem;
            max-width: 820px;
            margin-bottom: 2rem;
        }

        .sample-showcase-head h2,
        .resource-copy h2 {
            color: var(--text-headline);
            font-size: clamp(2rem, 5vw, 3.1rem);
            font-weight: 850;
            line-height: 1.04;
            letter-spacing: -0.03em;
        }

        .sample-showcase-head p,
        .resource-copy p {
            max-width: 600px;
            color: var(--text-body);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .sample-showcase-grid {
            display: grid;
            gap: 1rem;
        }

        .sample-showcase-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 8px;
        }

        .sample-showcase-card img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            background: var(--bg-cream);
        }

        .sample-showcase-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 1.25rem;
        }

        .sample-label {
            margin-bottom: 0.4rem;
            color: var(--action-orange);
            font-size: 0.74rem;
            font-weight: 850;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .sample-showcase-body h3 {
            color: var(--text-headline);
            font-size: 1.25rem;
            line-height: 1.15;
            margin-bottom: 0.45rem;
        }

        .sample-showcase-body p:not(.sample-label) {
            color: var(--text-body);
            font-size: 0.95rem;
            flex: 1;
            margin-bottom: 1.1rem;
        }

        .sample-showcase-body a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            background: var(--text-headline);
            color: white;
            text-decoration: none;
            font-weight: 800;
            transition: background 0.2s, transform 0.2s;
        }

        .sample-showcase-body a:hover {
            background: var(--action-orange);
            transform: translateY(-2px);
        }

        .sample-proof-strip {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
            margin-top: 1.25rem;
        }

        @media (max-width: 767px) {
            .seo-section .btn-primary {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (min-width: 768px) {
            .sample-showcase {
                padding: 6rem 3rem;
            }

            .sample-showcase-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                align-items: stretch;
            }

            .sample-proof-strip {
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
        }

        /* ============================================
           SEO SECTION
           ============================================ */

        .seo-section {
            padding: 5rem 1.5rem;
            background: var(--action-orange);
            color: white;
        }

        .seo-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .seo-section h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .seo-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }

        .seo-features {
            margin-bottom: 2.5rem;
        }

        .seo-feature {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .seo-check {
            background: white;
            color: var(--action-orange);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .seo-feature strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .seo-feature p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0;
        }

        .seo-section .btn-primary {
            background: white;
            color: var(--action-orange);
        }

        .seo-section .btn-primary:hover {
            background: var(--bg-cream);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        @media (min-width: 768px) {
            .seo-section {
                padding: 6rem 3rem;
            }
        }

        /* ============================================
           PRICING SECTION
           ============================================ */

        .pricing {
            padding: 5rem 1.5rem;
            background: var(--bg-cream);
        }

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

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--text-headline);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            color: var(--text-body);
            font-size: 1.1rem;
        }

        .pricing-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 8px;
            padding: 2rem;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
        }

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

        .pricing-card.featured {
            border-color: var(--action-orange);
            border-width: 3px;
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--action-orange);
            color: white;
            padding: 0.3rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 4px;
            letter-spacing: 0.05em;
        }

        .card-header {
            border-bottom: 1px dashed var(--card-border);
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-body);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .card-price {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-headline);
            line-height: 1;
        }

        .card-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-body);
        }

        .card-tax {
            margin-top: 0.45rem;
            color: #6f6a61;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .card-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .card-features li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--card-border);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .card-features li::before {
            content: '✓';
            color: var(--action-orange);
            font-weight: 700;
        }

        .card-features li:last-child {
            border-bottom: none;
        }

        .pricing-note {
            max-width: 760px;
            margin: 1.5rem auto 0;
            color: #5f5a52;
            font-size: 0.95rem;
            text-align: center;
        }

        .pricing-note a {
            color: var(--action-orange);
            font-weight: 700;
            text-decoration: none;
        }

        .pricing-note a:hover {
            text-decoration: underline;
        }

        .btn-card {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-card-primary {
            background: var(--action-orange);
            color: white;
        }

        .btn-card-primary:hover {
            background: var(--action-orange-hover);
        }

        .btn-card-secondary {
            background: transparent;
            color: var(--text-headline);
            border: 2px solid var(--card-border);
        }

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

        .card-question {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
        }

        .card-question a {
            color: var(--text-body);
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .card-question a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        @media (min-width: 768px) {
            .pricing {
                padding: 6rem 3rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============================================
           HOW IT WORKS SECTION
           ============================================ */

        .how-it-works {
            padding: 5rem 1.5rem;
            background: var(--text-headline);
            color: white;
        }

        .how-it-works .section-header h2 {
            color: white;
        }

        .how-it-works .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .steps-grid {
            display: grid;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--action-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
        }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        @media (min-width: 768px) {
            .how-it-works {
                padding: 6rem 3rem;
            }

            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ============================================
           RESOURCE SECTION
           ============================================ */

        .resource-band {
            padding: 5rem 1.5rem;
            background: white;
        }

        .resource-shell {
            display: grid;
            gap: 1.5rem;
            align-items: start;
        }

        .resource-copy {
            display: grid;
            gap: 1rem;
        }

        .resource-list {
            display: grid;
            gap: 0.8rem;
        }

        .resource-list div {
            display: grid;
            grid-template-columns: 2.4rem 1fr;
            column-gap: 0.85rem;
            row-gap: 0.1rem;
            padding: 1rem;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            background: var(--card-bg);
        }

        .resource-list span {
            grid-row: span 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 6px;
            background: rgba(184, 68, 31, 0.11);
            color: var(--action-orange);
            font-size: 0.78rem;
            font-weight: 850;
        }

        .resource-list strong {
            color: var(--text-headline);
            line-height: 1.2;
        }

        .resource-list p {
            margin: 0;
            color: var(--text-body);
            font-size: 0.92rem;
        }

        @media (min-width: 768px) {
            .resource-band {
                padding: 6rem 3rem;
            }

            .resource-shell {
                grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
                gap: 2.5rem;
            }
        }

        /* ============================================
           CONTACT / CTA SECTION
           ============================================ */

        .contact {
            padding: 5rem 1.5rem;
            text-align: center;
        }

        .contact h2 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 800;
            color: var(--text-headline);
            margin-bottom: 1rem;
        }

        .contact p {
            font-size: 1.1rem;
            color: var(--text-body);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-phone {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 800;
            color: var(--action-orange);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 2rem;
            transition: opacity 0.2s;
        }

        .contact-phone:hover {
            opacity: 0.8;
        }

        .contact-email {
            display: block;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-body);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: color 0.2s;
        }

        .contact-email:hover {
            color: var(--action-orange);
        }

        .contact-form {
            max-width: 500px;
            margin: 0 auto;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--card-border);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            background: var(--card-bg);
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--action-orange);
        }

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

        @media (min-width: 768px) {
            .contact {
                padding: 6rem 3rem;
            }
        }

        /* ============================================
           FOOTER
           ============================================ */

        .footer {
            background: var(--text-headline);
            color: white;
            padding: 3rem 1.5rem;
            text-align: center;
        }

        .footer-brand {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .footer-phone {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--action-orange);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-email {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 1.5rem;
            transition: color 0.2s;
        }

        .footer-email:hover {
            color: var(--action-orange);
        }

        .footer-location {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 1.5rem;
            max-width: 720px;
            margin: 2rem auto 0;
            text-align: left;
        }

        .footer-links h3 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.75rem;
            color: white;
        }

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

        .footer-links li {
            margin: 0.35rem 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            font-size: 0.9rem;
        }

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

        @media (min-width: 768px) {
            .footer {
                padding: 4rem 3rem;
            }
        }

        @media (max-width: 640px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           FREE SITE AUDIT SECTION
           ============================================ */

        .free-audit {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, var(--action-orange) 0%, var(--action-orange-hover) 100%);
            color: white;
        }

        .audit-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        .audit-text h2 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .audit-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .audit-benefits {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .audit-benefits li {
            padding: 0.5rem 0;
            font-size: 1rem;
        }

        .audit-benefits strong {
            color: white;
        }

        .audit-kicker {
            color: rgba(255, 255, 255, 0.82);
        }

        .audit-note {
            font-size: 0.9rem;
            opacity: 0.8;
            font-style: italic;
        }

        .audit-form {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .audit-form .form-group input {
            border: 2px solid #E5E5E5;
        }

        .audit-form .form-group label:not(.sr-only) {
            display: block;
            margin-bottom: 0.35rem;
            color: var(--text-headline);
            font-size: 0.9rem;
            font-weight: 800;
        }

        .audit-form .form-group textarea {
            border: 2px solid #E5E5E5;
        }

        .audit-form .form-group input:focus {
            border-color: var(--action-orange);
        }

        .audit-form .form-group textarea:focus {
            border-color: var(--action-orange);
        }

        .form-microcopy {
            margin-top: 0.9rem;
            color: #625d55;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .audit-page-hero {
            padding: 8rem 1.5rem 5rem;
            background: var(--bg-cream);
        }

        .audit-page-shell {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
            align-items: center;
        }

        .audit-page-copy h1 {
            max-width: 760px;
            color: var(--text-headline);
            font-size: clamp(2.35rem, 6vw, 4.35rem);
            font-weight: 900;
            line-height: 1.02;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .audit-page-copy p:not(.proof-kicker) {
            max-width: 620px;
            color: var(--text-body);
            font-size: 1.15rem;
        }

        .audit-page-actions {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            align-items: center;
            margin-top: 1.75rem;
        }

        .audit-summary-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 1.25rem;
        }

        .audit-summary-card h2 {
            color: var(--text-headline);
            font-size: 1.35rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .audit-summary-card ul {
            display: grid;
            gap: 0.85rem;
            list-style: none;
        }

        .audit-summary-card li {
            display: grid;
            grid-template-columns: 2.4rem 1fr;
            column-gap: 0.8rem;
            row-gap: 0.1rem;
            padding: 0.9rem;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            background: white;
        }

        .audit-summary-card span {
            grid-row: span 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 6px;
            background: rgba(184, 68, 31, 0.11);
            color: var(--action-orange);
            font-size: 0.78rem;
            font-weight: 850;
        }

        .audit-summary-card strong {
            color: var(--text-headline);
            line-height: 1.2;
        }

        .audit-summary-card p {
            margin: 0;
            color: var(--text-body);
            font-size: 0.92rem;
        }

        .audit-process .section-header {
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .audit-page-form {
            scroll-margin-top: 5rem;
        }

        .teardown-proof {
            background: var(--bg-cream);
        }

        .teardown-shell {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
            align-items: stretch;
        }

        .teardown-copy {
            min-width: 0;
        }

        .teardown-copy h2 {
            max-width: 780px;
            color: var(--text-headline);
            font-size: clamp(2rem, 5vw, 3.6rem);
            font-weight: 900;
            line-height: 1.02;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .teardown-copy p:not(.proof-kicker) {
            max-width: 660px;
            color: var(--text-body);
            font-size: 1.08rem;
            line-height: 1.65;
        }

        .teardown-actions {
            margin-top: 1.4rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
        }

        .teardown-list {
            display: grid;
            gap: 0.85rem;
            list-style: none;
        }

        .teardown-list li {
            display: grid;
            grid-template-columns: 2.6rem 1fr;
            gap: 0.25rem 0.9rem;
            padding: 1rem;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            background: white;
        }

        .teardown-list span {
            grid-row: span 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.6rem;
            height: 2.6rem;
            border-radius: 6px;
            background: rgba(184, 68, 31, 0.1);
            color: var(--action-orange);
            font-size: 0.82rem;
            font-weight: 850;
        }

        .teardown-list strong {
            color: var(--text-headline);
            line-height: 1.2;
        }

        .teardown-list p {
            margin: 0;
            color: var(--text-body);
            font-size: 0.95rem;
            line-height: 1.45;
        }

        .audit-followup-shell {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .audit-followup-shell h2 {
            color: var(--text-headline);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 850;
            line-height: 1.04;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .audit-followup-shell p {
            margin: 0 auto 1.5rem;
            max-width: 620px;
            color: var(--text-body);
            font-size: 1.05rem;
        }

        @media (min-width: 768px) {
            .free-audit {
                padding: 6rem 3rem;
            }

            .audit-content {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 4rem;
            }

            .audit-page-hero {
                padding: 9rem 3rem 6rem;
            }

            .audit-page-shell {
                grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
                gap: 3rem;
            }

            .audit-page-actions {
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
            }

            .teardown-shell {
                grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
                gap: 3rem;
            }
        }

        /* ============================================
           FAQ SECTION
           ============================================ */

        .faq {
            padding: 5rem 1.5rem;
            background: white;
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-cream);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--action-orange);
        }

        .faq-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-headline);
            margin-bottom: 0.5rem;
        }

        .faq-item p {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.6;
        }

        @media (min-width: 768px) {
            .faq {
                padding: 6rem 3rem;
            }

            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           UTILITIES
           ============================================ */

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

.deliverables-grid {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 1rem;
                max-width: 1100px;
                margin: 0 auto;
                padding: 0 1.5rem;
            }

            .deliverable-item {
                background: var(--bg-cream);
                border: 1px solid var(--card-border);
                border-radius: 8px;
                padding: 1.5rem;
            }

            .deliverable-item span {
                display: block;
                color: var(--action-orange);
                font-weight: 800;
                font-size: 0.78rem;
                letter-spacing: 0.12em;
                margin-bottom: 0.85rem;
            }

            .deliverable-item h3 {
                color: var(--text-headline);
                margin-bottom: 0.5rem;
                font-size: 1.1rem;
            }

            .deliverable-item p {
                color: var(--text-body);
                font-size: 0.95rem;
            }

            @media (min-width: 768px) {
                .deliverables-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

/* Extracted inline utility styles for stricter CSP */
.section-pad-white {
    padding: 5rem 1.5rem;
    background: #fff;
}

.center-mt {
    text-align: center;
    margin-top: 2rem;
}

.tech-stack {
    background: #1F1F1F;
    color: #fff;
    padding: 6rem 1.5rem;
}

.tech-stack h2 {
    color: #fff;
}

.tech-stack .tech-subtitle {
    color: rgba(255,255,255,0.7);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tech-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.form-hidden {
    display: none;
}

.btn-full {
    width: 100%;
}
