  /* CSS Variables - Beesoul Brand System */
        :root {
            --orange: #ff6a00;
            --orange-light: #fff3eb;
            --orange-dark: #e05500;
            --dark: #1a1a1a;
            --text: #444;
            --text-lighter: #777;
            --bg: #fff;
            --bg-2: #f9f9fc;
            --border: #e8e8e8;
            --shadow: 0 4px 24px rgba(0,0,0,.06);
            --r: 16px;
            --r-pill: 9999px;
        }

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

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

        .mono {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85em;
            letter-spacing: 0.5px;
        }

        /* Announcement Bar */
        .announcement-bar {
            background: var(--dark);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee {
            display: flex;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-content {
            display: flex;
            gap: 48px;
            padding-right: 48px;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .marquee-item svg {
            width: 16px;
            height: 16px;
            fill: var(--orange);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Navigation */
        /*nav {*/
        /*    position: sticky;*/
        /*    top: 0;*/
        /*    background: white;*/
        /*    border-bottom: 1px solid var(--border);*/
        /*    z-index: 100;*/
        /*    padding: 16px 0;*/
        /*}*/

        /*.nav-container {*/
        /*    max-width: 1280px;*/
        /*    margin: 0 auto;*/
        /*    padding: 0 24px;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: space-between;*/
        /*}*/

        /*.logo {*/
        /*    font-family: 'Playfair Display', serif;*/
        /*    font-size: 24px;*/
        /*    font-weight: 700;*/
        /*    color: var(--dark);*/
        /*    text-decoration: none;*/
        /*}*/

        /*.nav-links {*/
        /*    display: flex;*/
        /*    gap: 32px;*/
        /*    align-items: center;*/
        /*}*/

        /*.nav-links a {*/
        /*    color: var(--text);*/
        /*    text-decoration: none;*/
        /*    font-size: 15px;*/
        /*    transition: color 0.2s;*/
        /*}*/

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

        /* Buttons */
        .btn.custom {
            display: inline-block;
            padding: 14px 28px;
            border-radius: var(--r-pill);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            font-family: 'DM Sans', sans-serif;
        }

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

        .btn-primary.custom:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(255, 106, 0, 0.2);
        }

        .btn-secondary.custom {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }

        .btn-secondary.custom:hover {
            background: var(--dark);
            color: white;
        }

        .btn-white.custom {
            background: white;
            color: var(--dark);
        }

        .btn-white.custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
        }

        .section-dark {
            background: var(--dark);
            color: white;
        }

        .section-dark h2,
        .section-dark h3,
        .section-dark h4 {
            color: white;
        }

        .section-light {
            background: var(--bg-2);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
        }

        .urgency-badge {
            display: inline-block;
            background: var(--orange-light);
            color: var(--orange);
            padding: 8px 16px;
            border-radius: var(--r-pill);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero h1 {
            max-width: 900px;
            margin-bottom: 24px;
        }

        .hero h1 em {
            color: var(--orange);
            font-style: italic;
        }

        .subheadline {
            font-size: 20px;
            color: var(--text-lighter);
            max-width: 700px;
            margin-bottom: 40px;
        }

        .cta-group.custom {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .hero-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: var(--r);
            padding: 60px;
            margin: 60px 0;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-align: center;
        }

        .stat-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .stat-card {
            background: white;
            padding: 24px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-lighter);
        }

        /* Trusted Brands */
        .brands {
            padding: 60px 0;
            background: white;
            border-bottom: 1px solid var(--border);
        }

        .brands-label {
            text-align: center;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-lighter);
            margin-bottom: 24px;
        }

        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .brand-logo {
            font-weight: 600;
            font-size: 18px;
            color: var(--text-lighter);
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        .brand-logo:hover {
            opacity: 1;
        }

        /* Definition Box */
        .definition-box {
            background: white;
            border-left: 4px solid var(--orange);
            padding: 32px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            margin: 40px 0;
        }

        .definition-box h2 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .definition-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .attribution {
            font-size: 14px;
            color: var(--text-lighter);
            font-style: italic;
        }

        /* Statistics Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .stat-card-large {
            background: rgba(255, 255, 255, 0.05);
            padding: 32px;
            border-radius: var(--r);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-card-large .stat-number {
            font-size: 48px;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .stat-card-large .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }

        .stat-source {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-family: 'JetBrains Mono', monospace;
        }

        /* Problem Section */
        .problem-hero {
            font-size: 64px;
            font-weight: 700;
            color: var(--orange);
            margin: 24px 0;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Risk Cards */
        .risks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .risk-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 28px;
            border-radius: var(--r);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .risk-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .risk-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }

        .risk-title-group {
            flex: 1;
        }

        .risk-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .severity-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--r-pill);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .severity-critical {
            background: #ef4444;
            color: white;
        }

        .severity-high {
            background: #f97316;
            color: white;
        }

        .severity-medium {
            background: #eab308;
            color: var(--dark);
        }

        .risk-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .warning-callout {
            background: rgba(255, 106, 0, 0.1);
            border: 2px solid var(--orange);
            padding: 24px;
            border-radius: var(--r);
            margin-top: 40px;
        }

        .warning-callout strong {
            color: var(--orange);
            font-size: 18px;
        }

        /* Process Timeline */
        .timeline {
            display: grid;
            gap: 40px;
            margin-top: 48px;
        }

        .timeline-phase {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 32px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--r);
            border-left: 4px solid var(--orange);
        }

        .phase-week {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--orange);
            font-weight: 600;
        }

        .phase-content h3 {
            margin-bottom: 12px;
        }

        .phase-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
        }

        .deliverables {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .deliverables li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        .deliverables li::before {
            content: "✓";
            color: var(--orange);
            font-weight: 700;
            font-size: 18px;
        }

        /* NDA Section */
        .nda-box {
            background: var(--orange-light);
            border: 2px solid var(--orange);
            padding: 32px;
            border-radius: var(--r);
            text-align: center;
            margin: 60px 0;
        }

        .nda-box h3 {
            color: var(--orange-dark);
            margin-bottom: 16px;
        }

        /* Service Cards Grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .service-card {
            background: white;
            padding: 32px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
            border-color: var(--orange);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--orange-light) 0%, #ffe8d6 100%);
            border-radius: 50%;
            font-size: 40px;
            box-shadow:
                0 4px 16px rgba(255, 106, 0, 0.15),
                inset 0 2px 8px rgba(255, 255, 255, 0.8);
            position: relative;
            transition: all 0.3s ease;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow:
                0 8px 24px rgba(255, 106, 0, 0.25),
                inset 0 2px 8px rgba(255, 255, 255, 0.8);
        }

        .service-card:hover .service-icon::before {
            opacity: 0.15;
        }

        .service-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--orange);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-card h3 {
            margin-bottom: 16px;
        }

        .service-description {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .checklist {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
        }

        .checklist li::before {
            content: "✓";
            color: var(--orange);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Comparison Table */
        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        th {
            background: var(--dark);
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
        }

        td {
            padding: 16px;
            border-bottom: 1px solid var(--border);
        }

        tr:last-child td {
            border-bottom: none;
        }

        .highlight-col {
            background: var(--orange-light);
        }

        th.highlight-col {
            background: var(--orange);
        }

        /* Tech Grid */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .tech-card {
            background: white;
            padding: 24px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s;
        }

        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
        }

        .tech-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .tech-name {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .tech-description {
            font-size: 14px;
            color: var(--text-lighter);
        }

        /* Decision Framework */
        .decision-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: start;
        }

        .decision-sticky {
            position: sticky;
            top: 100px;
        }

        .signals-grid {
            display: grid;
            gap: 20px;
        }

        .signal-card {
            background: white;
            padding: 24px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .signal-emoji {
            font-size: 32px;
            flex-shrink: 0;
        }

        .signal-content h4 {
            margin-bottom: 8px;
        }

        .signal-description {
            font-size: 14px;
            color: var(--text-lighter);
        }

        /* Audience Cards */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .audience-card {
            background: white;
            padding: 32px 24px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s;
        }

        .audience-card:hover {
            transform: translateY(-5px);
            border-color: var(--orange);
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
        }

        .audience-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .audience-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
        }

        /* Case Study */
        .case-study {
            background: white;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin: 40px 0;
        }

        .case-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 40px;
            color: white;
            text-align: center;
        }

        .case-content {
            padding: 48px;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 40px 0;
            padding: 32px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .metric {
            text-align: center;
        }

        .metric-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 36px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 14px;
            color: var(--text-lighter);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: var(--r);
            box-shadow: var(--shadow);
        }

        .stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .quote {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            color: var(--dark);
        }

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

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .author-role {
            font-size: 14px;
            color: var(--text-lighter);
        }

        /* Case Studies Carousel */
        .carousel-wrapper {
            overflow-x: auto;
            margin-top: 40px;
            padding-bottom: 20px;
        }

        .carousel {
            display: flex;
            gap: 24px;
            min-width: min-content;
        }

        .carousel-card {
            background: white;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            min-width: 350px;
            flex-shrink: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
        }

        .carousel-header {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            padding: 32px 24px;
            color: white;
        }

        .carousel-content {
            padding: 24px;
        }

        /* Value Props */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin: 48px 0;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 32px;
            border-radius: var(--r);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .value-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .value-card h4 {
            margin-bottom: 12px;
        }

        .value-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .featured-testimonial {
            background: rgba(255, 106, 0, 0.1);
            border: 2px solid var(--orange);
            padding: 32px;
            border-radius: var(--r);
            margin-top: 48px;
            text-align: center;
        }

        .featured-quote {
            font-size: 24px;
            font-style: italic;
            color: white;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Mid-page CTA */
        .mid-cta {
            background: var(--orange-light);
            padding: 48px;
            border-radius: var(--r);
            text-align: center;
            margin: 60px 0;
        }

        .mid-cta h3 {
            color: var(--orange-dark);
            margin-bottom: 16px;
        }

        /* Pricing Section */
        .pricing-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-top: 48px;
        }

        .pricing-card {
            background: white;
            padding: 40px;
            border-radius: var(--r);
            box-shadow: 0 8px 40px rgba(0,0,0,.08);
            border: 2px solid var(--orange);
        }

        .pricing-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--orange);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-title {
            font-size: 28px;
            margin-bottom: 24px;
        }

        .price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .price-basis {
            font-size: 16px;
            color: var(--text-lighter);
            margin-bottom: 32px;
        }

        .pricing-note {
            font-size: 14px;
            color: var(--text-lighter);
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        /* FAQ Section */
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .faq-sidebar {
            position: sticky;
            top: 100px;
        }

        .faq-testimonial {
            background: var(--orange-light);
            padding: 24px;
            border-radius: var(--r);
            margin: 32px 0;
        }

        .accordion {
            display: grid;
            gap: 16px;
        }

        .accordion-item {
            background: white;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .accordion-button {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.2s;
        }

        .accordion-button:hover {
            color: var(--orange);
        }

        .accordion-icon {
            font-size: 24px;
            color: var(--orange);
            transition: transform 0.3s;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-body {
            padding: 0 24px 24px;
            color: var(--text);
            line-height: 1.7;
        }

        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin: 48px 0;
        }

        .article-card {
            background: white;
            border-radius: var(--r);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(0,0,0,.1);
        }

        .article-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .article-content {
            padding: 24px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .article-description {
            font-size: 14px;
            color: var(--text-lighter);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .article-link {
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .article-link:hover {
            text-decoration: underline;
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 24px;
            color: white !important;
        }

        .final-cta h2 em {
            color: var(--dark) !important;
            font-style: italic;
            font-weight: 700;
        }

        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .trust-pill {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: var(--r-pill);
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
        }

        .phone-link {
            display: inline-block;
            margin-top: 24px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 16px;
        }

        .phone-link:hover {
            color: white;
        }

        /* Footer */
        /*footer {*/
        /*    background: var(--dark);*/
        /*    color: white;*/
        /*    border-top: 3px solid var(--orange);*/
        /*}*/

        /*.footer-grid {*/
        /*    display: grid;*/
        /*    grid-template-columns: 2fr 1fr 1fr 1fr;*/
        /*    gap: 48px;*/
        /*    padding: 80px 0 40px;*/
        /*}*/

        /*.footer-brand h3 {*/
        /*    color: white;*/
        /*    margin-bottom: 16px;*/
        /*}*/

        /*.footer-description {*/
        /*    color: rgba(255, 255, 255, 0.7);*/
        /*    line-height: 1.7;*/
        /*    margin-bottom: 24px;*/
        /*}*/

        /*.footer-column h4 {*/
        /*    color: white;*/
        /*    font-size: 16px;*/
        /*    margin-bottom: 20px;*/
        /*}*/

        /*.footer-links {*/
        /*    list-style: none;*/
        /*    display: grid;*/
        /*    gap: 12px;*/
        /*}*/

        /*.footer-links a {*/
        /*    color: rgba(255, 255, 255, 0.7);*/
        /*    text-decoration: none;*/
        /*    transition: color 0.2s;*/
        /*}*/

        /*.footer-links a:hover {*/
        /*    color: var(--orange);*/
        /*}*/

        /*.social-links {*/
        /*    display: flex;*/
        /*    gap: 16px;*/
        /*    margin-top: 24px;*/
        /*}*/

        /*.social-icon {*/
        /*    width: 40px;*/
        /*    height: 40px;*/
        /*    border-radius: 50%;*/
        /*    background: rgba(255, 255, 255, 0.1);*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    color: white;*/
        /*    text-decoration: none;*/
        /*    transition: all 0.2s;*/
        /*}*/

        /*.social-icon:hover {*/
        /*    background: var(--orange);*/
        /*    transform: translateY(-2px);*/
        /*}*/

        /*.footer-bottom {*/
        /*    border-top: 1px solid rgba(255, 255, 255, 0.1);*/
        /*    padding: 32px 0;*/
        /*    display: flex;*/
        /*    justify-content: space-between;*/
        /*    align-items: center;*/
        /*    font-size: 14px;*/
        /*    color: rgba(255, 255, 255, 0.6);*/
        /*}*/

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
        }

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

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 960px) {
            .nav-links {
                display: none;
            }

            .decision-grid,
            .faq-layout,
            .pricing-layout {
                grid-template-columns: 1fr;
            }

            .decision-sticky,
            .faq-sidebar {
                position: static;
            }

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

            .timeline-phase {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            section {
                padding: 60px 0;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .cta-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .case-metrics {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }
        }

        /* ========================================
           PREMIUM ENHANCEMENTS
           ======================================== */

        /* Premium gradient backgrounds */
        .gradient-card {
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
        }

        .gradient-card-reverse {
            background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
        }

        /* Gradient borders */
        .gradient-border {
            position: relative;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, var(--orange), var(--orange-dark)) border-box;
        }

        /* Decorative quote marks */
        .quote-mark {
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 80px;
            color: var(--orange);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        /* Premium shadows */
        .premium-shadow {
            box-shadow:
                0 4px 24px rgba(0,0,0,.06),
                0 2px 8px rgba(255, 106, 0, 0.05);
        }

        .premium-shadow-lg {
            box-shadow:
                0 8px 40px rgba(0,0,0,.08),
                0 4px 16px rgba(255, 106, 0, 0.08);
        }

        /* Hover lift effect */
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,.12);
        }

        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Decorative corner accents */
        .corner-accent {
            position: relative;
        }

        .corner-accent::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            border-top: 3px solid var(--orange);
            border-left: 3px solid var(--orange);
            opacity: 0.5;
        }

        .corner-accent::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 40px;
            border-bottom: 3px solid var(--orange);
            border-right: 3px solid var(--orange);
            opacity: 0.5;
        }

        /* Premium problem hero stat card */
        .problem-hero-card {
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
            border: 2px solid var(--orange);
            border-radius: var(--r);
            padding: 48px;
            margin: 40px auto;
            max-width: 600px;
            position: relative;
            box-shadow:
                0 8px 40px rgba(0,0,0,.08),
                0 4px 16px rgba(255, 106, 0, 0.08);
        }

        .problem-hero-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: var(--r);
            z-index: -1;
            opacity: 0.1;
        }

        /* Circular progress indicator */
        .circular-progress {
            width: 160px;
            height: 160px;
            margin: 0 auto 24px;
            position: relative;
        }

        .circular-progress svg {
            transform: rotate(-90deg);
        }

        .progress-circle-bg {
            fill: none;
            stroke: #e8e8e8;
            stroke-width: 8;
        }

        .progress-circle {
            fill: none;
            stroke: url(#gradient);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 440;
            stroke-dashoffset: calc(440 - (440 * 24.7) / 100);
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'JetBrains Mono', monospace;
            font-size: 36px;
            font-weight: 700;
            color: var(--orange);
        }

        /* Premium dilemma grid */
        .dilemma-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .dilemma-card {
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
            padding: 32px;
            border-radius: var(--r);
            border-left: 4px solid var(--orange);
            box-shadow:
                0 4px 24px rgba(0,0,0,.06),
                0 2px 8px rgba(255, 106, 0, 0.05);
            transition: all 0.3s ease;
        }

        .dilemma-card:hover {
            transform: translateY(-4px);
            box-shadow:
                0 8px 32px rgba(0,0,0,.08),
                0 4px 16px rgba(255, 106, 0, 0.08);
        }

        .dilemma-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            box-shadow: 0 4px 16px rgba(255, 106, 0, 0.2);
        }

        .dilemma-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
            font-family: 'DM Sans', sans-serif;
        }

        .dilemma-description {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text);
        }

        /* Premium step indicator */
        .step-indicator {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
            margin-bottom: 24px;
        }

        /* Enhanced timeline phase */
        .timeline-phase-premium {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border-left: 4px solid var(--orange);
            position: relative;
            overflow: visible;
        }

        .timeline-phase-premium::before {
            content: '';
            position: absolute;
            left: -2px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--orange), var(--orange-dark));
        }

        /* Enhanced tech card */
        .tech-card-premium {
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .tech-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--orange-dark));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .tech-card-premium:hover::before {
            transform: translateX(0);
        }

        .tech-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--orange);
            color: white;
            font-size: 10px;
            padding: 4px 8px;
            border-radius: var(--r-pill);
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Enhanced signal card */
        .signal-card-premium {
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
            border: 1px solid rgba(255, 106, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .signal-card-premium::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--orange), var(--orange-dark));
        }

        .signal-emoji-circle {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--orange-light), #fff);
            border: 2px solid var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }

        /* Enhanced testimonial card */
        .testimonial-card-premium {
            position: relative;
            background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
            border-top: 4px solid transparent;
            background-origin: border-box;
            background-clip: padding-box, border-box;
            border-image: linear-gradient(90deg, var(--orange), var(--orange-dark)) 1;
            border-image-slice: 1 0 0 0;
        }

        .testimonial-card-premium .quote-mark {
            top: 20px;
            left: 20px;
            font-size: 120px;
            opacity: 0.08;
        }

        .testimonial-card-premium .avatar {
            border: 3px solid var(--orange-light);
            box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
        }

        .verified-badge {
            width: 20px;
            height: 20px;
            background: var(--orange);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            margin-left: 6px;
            vertical-align: middle;
        }

        /* Premium CTA boxes */
        .cta-premium {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-premium::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            pointer-events: none;
        }

        /* Premium data wall */
        .stat-card-premium {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }

        .stat-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            opacity: 0.1;
            border-radius: 0 var(--r) 0 100%;
        }

        .stat-card-premium .stat-number {
            font-size: 56px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Mobile responsiveness for new elements */
        @media (max-width: 768px) {
            .dilemma-grid {
                grid-template-columns: 1fr;
            }

            .circular-progress {
                width: 120px;
                height: 120px;
            }

            .progress-text {
                font-size: 28px;
            }

            .step-indicator {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }

            .quote-mark {
                font-size: 60px;
            }

            .corner-accent::before,
            .corner-accent::after {
                width: 24px;
                height: 24px;
            }
        }