       /* Page-specific overrides only - base styles come from /styles.css */

        /* Body padding for fixed navbar */
        body {
            padding-top: 80px;
        }

        /* Section utilities used on this page */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: hsla(16, 100%, 50%, 0.1);
            color: var(--flamingo);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        .text-center {
            text-align: center;
        }
        /* Page-specific styles */

        /* Hero Section */
        .app-hero {
            position: relative;
            padding: 4rem 0 6rem;
            background: linear-gradient(180deg, hsl(220 14% 96%) 0%, var(--background) 100%);
            overflow: hidden;
        }

        .app-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 70% 30%, hsla(16, 100%, 50%, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .app-hero-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .app-hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .app-hero-content {
            position: relative;
            z-index: 1;
        }

        .app-hero-title {
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .app-hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 32rem;
        }

        .app-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Hero Visual */
        .app-hero-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-mockup {
            position: relative;
            width: 100%;
            max-width: 480px;
            background: var(--card);
            border-radius: 1rem;
            border: 1px solid var(--border);
            box-shadow: 0 25px 60px -15px hsla(220, 30%, 20%, 0.15);
            overflow: hidden;
        }

        .app-mockup-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: hsl(220 14% 96%);
            border-bottom: 1px solid var(--border);
        }

        .app-mockup-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
        }

        .app-mockup-dot.red {
            background: hsl(0 84% 60%);
        }

        .app-mockup-dot.yellow {
            background: hsl(45 93% 47%);
        }

        .app-mockup-dot.green {
            background: hsl(142 76% 36%);
        }

        .app-mockup-body {
            padding: 1.5rem;
            min-height: 280px;
        }

        .app-mockup-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .app-mockup-sidebar {
            width: 60px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .app-mockup-sidebar-item {
            height: 2.5rem;
            background: hsl(220 14% 94%);
            border-radius: 0.5rem;
        }

        .app-mockup-sidebar-item.active {
            background: linear-gradient(135deg, hsla(16, 100%, 50%, 0.2) 0%, hsla(30, 100%, 55%, 0.1) 100%);
            border: 1px solid hsla(16, 100%, 50%, 0.3);
        }

        .app-mockup-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .app-mockup-chart {
            height: 120px;
            background: linear-gradient(135deg, hsla(217, 91%, 60%, 0.1) 0%, hsla(197, 71%, 50%, 0.1) 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 1rem;
        }

        .app-mockup-bar {
            width: 1.5rem;
            background: linear-gradient(180deg, hsl(217 91% 60%) 0%, hsl(197 71% 50%) 100%);
            border-radius: 0.25rem 0.25rem 0 0;
            animation: barGrow 2s ease-out forwards;
        }

        @keyframes barGrow {
            from {
                height: 0;
            }
        }

        .app-mockup-bar:nth-child(1) {
            height: 40%;
            animation-delay: 0.1s;
        }

        .app-mockup-bar:nth-child(2) {
            height: 70%;
            animation-delay: 0.2s;
        }

        .app-mockup-bar:nth-child(3) {
            height: 50%;
            animation-delay: 0.3s;
        }

        .app-mockup-bar:nth-child(4) {
            height: 85%;
            animation-delay: 0.4s;
        }

        .app-mockup-bar:nth-child(5) {
            height: 60%;
            animation-delay: 0.5s;
        }

        .app-mockup-bar:nth-child(6) {
            height: 75%;
            animation-delay: 0.6s;
        }

        .app-mockup-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .app-mockup-card {
            padding: 0.75rem;
            background: hsl(220 14% 97%);
            border-radius: 0.5rem;
            text-align: center;
        }

        .app-mockup-card-value {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--foreground);
        }

        .app-mockup-card-label {
            font-size: 0.625rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (max-width: 768px) {
            .app-hero-visual {
                height: 300px;
            }
        }

        /* What We Build Section */
        .what-we-build {
            padding: 5rem 0;
            background: var(--background);
        }

        .build-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .build-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .build-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .build-card {
            padding: 2rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        .build-card:hover {
            transform: translateY(-4px);
            border-color: hsla(16, 100%, 50%, 0.3);
            box-shadow: 0 15px 40px hsla(16, 100%, 50%, 0.08);
        }

        .build-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .build-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .build-icon.coral {
            background: linear-gradient(135deg, hsl(16 100% 60%) 0%, hsl(30 100% 55%) 100%);
        }

        .build-icon.blue {
            background: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(197 71% 50%) 100%);
        }

        .build-icon.purple {
            background: linear-gradient(135deg, hsl(271 91% 65%) 0%, hsl(262 83% 58%) 100%);
        }

        .build-icon.teal {
            background: linear-gradient(135deg, hsl(175 70% 35%) 0%, hsl(180 70% 45%) 100%);
        }

        .build-icon.amber {
            background: linear-gradient(135deg, hsl(38 92% 50%) 0%, hsl(32 95% 44%) 100%);
        }

        .build-icon.green {
            background: linear-gradient(135deg, hsl(142 76% 36%) 0%, hsl(142 71% 45%) 100%);
        }

        .build-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .build-desc {
            font-size: 0.9375rem;
            color: var(--muted-foreground);
            line-height: 1.6;
        }

        /* Comparison Section */
        .comparison-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, hsl(220 14% 96%) 0%, hsl(220 10% 92%) 100%);
        }

        .comparison-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .comparison-card {
            padding: 2rem;
            border-radius: 1rem;
            position: relative;
        }

        .comparison-card.old-way {
            background: hsla(0, 0%, 50%, 0.08);
            border: 1px solid hsla(0, 0%, 50%, 0.2);
        }

        .comparison-card.new-way {
            background: hsla(142, 76%, 36%, 0.08);
            border: 1px solid hsla(142, 76%, 36%, 0.3);
        }

        .comparison-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .old-way .comparison-badge {
            background: hsla(0, 0%, 50%, 0.15);
            color: hsl(0, 0%, 40%);
        }

        .new-way .comparison-badge {
            background: hsla(142, 76%, 36%, 0.15);
            color: hsl(142, 76%, 36%);
        }

        .comparison-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .comparison-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .comparison-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
            color: var(--muted-foreground);
        }

        .comparison-item svg {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .old-way .comparison-item svg {
            color: hsl(0, 60%, 50%);
        }

        .new-way .comparison-item svg {
            color: hsl(142, 76%, 36%);
        }

        /* Tech Stack Section */
        .tech-stack-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, hsl(220 25% 6%) 0%, hsl(220 30% 8%) 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-stack-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 20%, hsla(16, 100%, 50%, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .tech-stack-section .section-badge {
            background: hsla(0, 0%, 100%, 0.1);
            color: hsla(0, 0%, 100%, 0.9);
        }

        .tech-stack-section .section-title {
            color: white;
        }

        .tech-stack-section .section-subtitle {
            color: hsla(0, 0%, 100%, 0.7);
        }

        .tech-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .tech-card {
            background: hsla(0, 0%, 100%, 0.03);
            border: 1px solid hsla(0, 0%, 100%, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            background: hsla(0, 0%, 100%, 0.06);
            border-color: hsla(16, 100%, 50%, 0.3);
            transform: translateY(-4px);
        }

        .tech-icon {
            width: 3rem;
            height: 3rem;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            background: hsla(0, 0%, 100%, 0.1);
        }

        .tech-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--flamingo);
        }

        .tech-name {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .tech-desc {
            font-size: 0.8125rem;
            color: hsla(0, 0%, 100%, 0.6);
        }

        /* Process Section */
        .process-section {
            padding: 5rem 0;
            background: var(--background);
        }

        .process-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .process-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .process-card {
            position: relative;
            padding: 2rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
        }

        .process-number {
            position: absolute;
            top: -0.75rem;
            left: 1.5rem;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, hsl(16 100% 60%) 0%, hsl(30 100% 55%) 100%);
            color: white;
            font-size: 0.875rem;
            font-weight: 700;
            border-radius: 50%;
        }

        .process-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .process-desc {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            line-height: 1.6;
        }

        /* App Showcase Section */
        .showcase-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, hsl(220 14% 96%) 0%, var(--background) 100%);
        }

        .showcase-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .showcase-item {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .showcase-item {
                grid-template-columns: 1fr 1fr;
            }

            .showcase-item.reverse {
                direction: rtl;
            }

            .showcase-item.reverse>* {
                direction: ltr;
            }
        }

        .showcase-screenshot {
            position: relative;
            background: var(--card);
            border-radius: 1rem;
            border: 1px solid var(--border);
            box-shadow: 0 25px 60px -15px hsla(220, 30%, 20%, 0.15);
            overflow: hidden;
        }

        .showcase-screenshot-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: hsl(220 14% 96%);
            border-bottom: 1px solid var(--border);
        }

        .showcase-screenshot-dot {
            width: 0.625rem;
            height: 0.625rem;
            border-radius: 50%;
        }

        .showcase-screenshot-dot.red {
            background: hsl(0 84% 60%);
        }

        .showcase-screenshot-dot.yellow {
            background: hsl(45 93% 47%);
        }

        .showcase-screenshot-dot.green {
            background: hsl(142 76% 36%);
        }

        .showcase-screenshot-body {
            padding: 1.5rem;
            min-height: 280px;
            background: linear-gradient(135deg, hsla(220, 14%, 96%, 0.5) 0%, hsla(220, 10%, 98%, 0.8) 100%);
        }

        /* Dashboard mockup variant */
        .showcase-dashboard {
            display: flex;
            gap: 1rem;
        }

        .showcase-dash-sidebar {
            width: 48px;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .showcase-dash-nav-item {
            height: 2rem;
            background: hsla(220, 20%, 90%, 0.8);
            border-radius: 0.375rem;
        }

        .showcase-dash-nav-item.active {
            background: linear-gradient(135deg, hsla(16, 100%, 50%, 0.2) 0%, hsla(30, 100%, 55%, 0.1) 100%);
            border: 1px solid hsla(16, 100%, 50%, 0.3);
        }

        .showcase-dash-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .showcase-dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .showcase-dash-title {
            height: 1.25rem;
            width: 120px;
            background: hsl(220 20% 85%);
            border-radius: 0.25rem;
        }

        .showcase-dash-actions {
            display: flex;
            gap: 0.5rem;
        }

        .showcase-dash-btn {
            height: 1.75rem;
            width: 4rem;
            background: linear-gradient(135deg, hsl(16 100% 60%) 0%, hsl(30 100% 55%) 100%);
            border-radius: 0.375rem;
        }

        .showcase-dash-btn.secondary {
            background: hsl(220 14% 90%);
            width: 3rem;
        }

        .showcase-dash-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .showcase-dash-metric {
            padding: 1rem;
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
        }

        .showcase-dash-metric-value {
            height: 1.5rem;
            width: 3rem;
            background: linear-gradient(135deg, hsl(142 76% 36%) 0%, hsl(142 71% 45%) 100%);
            border-radius: 0.25rem;
            margin-bottom: 0.375rem;
        }

        .showcase-dash-metric-label {
            height: 0.625rem;
            width: 4rem;
            background: hsl(220 14% 88%);
            border-radius: 0.125rem;
        }

        .showcase-dash-chart {
            flex: 1;
            min-height: 100px;
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 1rem;
        }

        .showcase-chart-bar {
            width: 1rem;
            background: linear-gradient(180deg, hsl(217 91% 60%) 0%, hsl(197 71% 50%) 100%);
            border-radius: 0.25rem 0.25rem 0 0;
        }

        .showcase-chart-bar:nth-child(1) {
            height: 50%;
        }

        .showcase-chart-bar:nth-child(2) {
            height: 75%;
        }

        .showcase-chart-bar:nth-child(3) {
            height: 40%;
        }

        .showcase-chart-bar:nth-child(4) {
            height: 90%;
        }

        .showcase-chart-bar:nth-child(5) {
            height: 60%;
        }

        .showcase-chart-bar:nth-child(6) {
            height: 80%;
        }

        .showcase-chart-bar:nth-child(7) {
            height: 55%;
        }

        /* Portal mockup variant */
        .showcase-portal {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .showcase-portal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .showcase-portal-logo {
            width: 80px;
            height: 1.5rem;
            background: hsl(220 20% 85%);
            border-radius: 0.25rem;
        }

        .showcase-portal-user {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .showcase-portal-avatar {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, hsl(262 83% 58%) 0%, hsl(271 91% 65%) 100%);
            border-radius: 50%;
        }

        .showcase-portal-name {
            width: 60px;
            height: 0.75rem;
            background: hsl(220 14% 88%);
            border-radius: 0.125rem;
        }

        .showcase-portal-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .showcase-portal-card {
            padding: 1rem;
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
        }

        .showcase-portal-card-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 0.375rem;
            margin-bottom: 0.5rem;
        }

        .showcase-portal-card-icon.blue {
            background: hsla(217, 91%, 60%, 0.15);
        }

        .showcase-portal-card-icon.green {
            background: hsla(142, 76%, 36%, 0.15);
        }

        .showcase-portal-card-icon.amber {
            background: hsla(45, 93%, 47%, 0.15);
        }

        .showcase-portal-card-icon.purple {
            background: hsla(262, 83%, 58%, 0.15);
        }

        .showcase-portal-card-title {
            height: 0.75rem;
            width: 70%;
            background: hsl(220 20% 85%);
            border-radius: 0.125rem;
            margin-bottom: 0.375rem;
        }

        .showcase-portal-card-desc {
            height: 0.5rem;
            width: 90%;
            background: hsl(220 14% 92%);
            border-radius: 0.125rem;
        }

        .showcase-portal-table {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .showcase-portal-table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: hsl(220 14% 97%);
            border-bottom: 1px solid var(--border);
        }

        .showcase-portal-th {
            height: 0.5rem;
            background: hsl(220 14% 85%);
            border-radius: 0.125rem;
        }

        .showcase-portal-table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            border-bottom: 1px solid hsla(220, 14%, 91%, 0.5);
        }

        .showcase-portal-td {
            height: 0.5rem;
            background: hsl(220 14% 90%);
            border-radius: 0.125rem;
        }

        .showcase-portal-td.status {
            width: 3rem;
            background: hsla(142, 76%, 36%, 0.2);
        }

        /* Content side */
        .showcase-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .showcase-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.75rem;
            background: hsla(16, 100%, 50%, 0.1);
            color: var(--flamingo);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            width: fit-content;
        }

        .showcase-title {
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .showcase-desc {
            font-size: 1rem;
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        .showcase-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .showcase-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9375rem;
            color: var(--muted-foreground);
        }

        .showcase-feature svg {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            color: hsl(142 76% 36%);
            margin-top: 0.125rem;
        }

        .showcase-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .showcase-result {
            text-align: center;
        }

        .showcase-result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--flamingo);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .showcase-result-label {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (max-width: 767px) {
            .showcase-results {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
            }

            .showcase-result-value {
                font-size: 1.25rem;
            }

            .showcase-screenshot-body {
                min-height: 220px;
                padding: 1rem;
            }

            .showcase-dash-metrics {
                grid-template-columns: repeat(2, 1fr);
            }

            .showcase-dash-metrics>*:last-child {
                display: none;
            }
        }

        /* Hosting & Deployment Section */
        .hosting-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, hsl(220 20% 10%) 0%, hsl(220 25% 8%) 100%);
            position: relative;
            overflow: hidden;
        }

        .hosting-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 30% 20%, hsla(197, 71%, 50%, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 70% 80%, hsla(16, 100%, 50%, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .hosting-section .section-badge {
            background: hsla(197, 71%, 50%, 0.15);
            color: hsl(197 71% 60%);
        }

        .hosting-section .section-title {
            color: white;
        }

        .hosting-section .section-subtitle {
            color: hsla(0, 0%, 100%, 0.7);
        }

        .hosting-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .hosting-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .hosting-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .hosting-card {
            background: hsla(0, 0%, 100%, 0.03);
            border: 1px solid hsla(0, 0%, 100%, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .hosting-card:hover {
            background: hsla(0, 0%, 100%, 0.05);
            border-color: hsla(197, 71%, 50%, 0.3);
            transform: translateY(-4px);
        }

        .hosting-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .hosting-card-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .hosting-card-icon.cyan {
            background: linear-gradient(135deg, hsl(197 71% 50%) 0%, hsl(187 70% 45%) 100%);
        }

        .hosting-card-icon.cyan svg {
            color: white;
        }

        .hosting-card-icon.blue {
            background: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(230 85% 55%) 100%);
        }

        .hosting-card-icon.blue svg {
            color: white;
        }

        .hosting-card-icon.purple {
            background: linear-gradient(135deg, hsl(262 83% 58%) 0%, hsl(280 75% 55%) 100%);
        }

        .hosting-card-icon.purple svg {
            color: white;
        }

        .hosting-card-icon.green {
            background: linear-gradient(135deg, hsl(142 76% 36%) 0%, hsl(160 70% 40%) 100%);
        }

        .hosting-card-icon.green svg {
            color: white;
        }

        .hosting-card-icon.amber {
            background: linear-gradient(135deg, hsl(38 92% 50%) 0%, hsl(25 90% 48%) 100%);
        }

        .hosting-card-icon.amber svg {
            color: white;
        }

        .hosting-card-icon.coral {
            background: linear-gradient(135deg, hsl(16 100% 60%) 0%, hsl(30 100% 55%) 100%);
        }

        .hosting-card-icon.coral svg {
            color: white;
        }

        .hosting-card-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .hosting-card-desc {
            font-size: 0.875rem;
            color: hsla(0, 0%, 100%, 0.6);
            line-height: 1.6;
        }

        /* Deployment Options */
        .deployment-options {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .deployment-options {
                grid-template-columns: 1fr 1fr;
            }
        }

        .deployment-option {
            background: hsla(0, 0%, 100%, 0.02);
            border: 1px solid hsla(0, 0%, 100%, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
        }

        .deployment-option.managed {
            border-color: hsla(197, 71%, 50%, 0.3);
        }

        .deployment-option.self-hosted {
            border-color: hsla(142, 76%, 36%, 0.3);
        }

        .deployment-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .deployment-option.managed .deployment-badge {
            background: hsla(197, 71%, 50%, 0.15);
            color: hsl(197 71% 60%);
        }

        .deployment-option.self-hosted .deployment-badge {
            background: hsla(142, 76%, 36%, 0.15);
            color: hsl(142 70% 50%);
        }

        .deployment-title {
            font-size: 1.375rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .deployment-desc {
            font-size: 0.9375rem;
            color: hsla(0, 0%, 100%, 0.6);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .deployment-features {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
        }

        .deployment-feature {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.875rem;
            color: hsla(0, 0%, 100%, 0.8);
        }

        .deployment-feature svg {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

        .deployment-option.managed .deployment-feature svg {
            color: hsl(197 71% 55%);
        }

        .deployment-option.self-hosted .deployment-feature svg {
            color: hsl(142 70% 50%);
        }

        /* Container Architecture Visual */
        .container-arch {
            margin-top: 3rem;
            padding: 2rem;
            background: hsla(0, 0%, 0%, 0.3);
            border: 1px solid hsla(0, 0%, 100%, 0.08);
            border-radius: 1rem;
        }

        .container-arch-title {
            font-size: 1rem;
            font-weight: 600;
            color: hsla(0, 0%, 100%, 0.9);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .container-arch-visual {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .arch-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background: hsla(0, 0%, 100%, 0.05);
            border: 1px solid hsla(0, 0%, 100%, 0.1);
            border-radius: 0.75rem;
            min-width: 100px;
        }

        .arch-box svg {
            width: 1.5rem;
            height: 1.5rem;
            color: hsl(197 71% 60%);
        }

        .arch-box span {
            font-size: 0.75rem;
            font-weight: 500;
            color: hsla(0, 0%, 100%, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .arch-connector {
            display: flex;
            align-items: center;
            color: hsla(0, 0%, 100%, 0.3);
        }

        @media (max-width: 767px) {
            .arch-connector {
                transform: rotate(90deg);
            }

            .container-arch-visual {
                flex-direction: column;
                align-items: center;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, hsl(220 25% 8%) 0%, hsl(220 30% 12%) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 50% 100%, hsla(16, 100%, 50%, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 42rem;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.125rem;
            color: hsla(0, 0%, 100%, 0.7);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }