/* Hero Section */
        .fountry_hero {
            padding: 6rem 0 4rem;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            padding: 0.5rem 1.2rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .fountry_hero h1 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: #fff;
            margin-top: 30px;
        }

        .fountry_hero h1 span {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 1.5rem auto;
            font-weight: 400;
            line-height: 1.7;
        }

        .hero-focus {
            font-size: 0.95rem;
            color: #60a5fa;
            font-weight: 600;
            margin: 2rem 0 2.5rem;
            letter-spacing: 0.02em;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            padding: 0.85rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid rgba(59, 130, 246, 0.3);
            font-size: 0.95rem;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.5);
        }

        /* Hero Metrics */
        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem;
            background: rgba(30, 58, 99, 0.3);
            border-radius: 1rem;
            border: 1px solid rgba(59, 130, 246, 0.15);
        }

        .metric {
            text-align: center;
        }

        .metric-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .metric-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Why Partner Section */
        .why-partner {
            text-align: center;
            margin: 3rem 0 2rem;
        }

        .why-partner h3 {
            font-size: 0.9rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .why-partner-subtitle {
            font-size: 0.95rem;
            color: #cbd5e1;
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
            border-bottom: 1px solid rgba(59, 130, 246, 0.08);
        }

        section:last-of-type {
            border-bottom: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
            color: #fff;
        }

        .section-title span {
            color: #60a5fa;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(30, 58, 99, 0.35);
            transform: translateY(-4px);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, transparent);
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 0.75rem;
        }

        .card-desc {
            font-size: 0.85rem;
            color: #cbd5e1;
            line-height: 1.6;
        }

        /* Challenge Cards */
        .challenge-card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 1.75rem;
            transition: all 0.3s;
        }

        .challenge-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(30, 58, 99, 0.35);
        }

        .challenge-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: #f1f5f9;
            margin-bottom: 0.75rem;
        }

        .challenge-desc {
            font-size: 0.85rem;
            color: #cbd5e1;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .challenge-outcome {
            background: rgba(59, 130, 246, 0.1);
            border-left: 3px solid #3b82f6;
            padding: 0.75rem;
            border-radius: 0.25rem;
            font-size: 0.8rem;
            color: #60a5fa;
            font-weight: 500;
        }

        /* Use Case Cards */
        .use-case-card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.3s;
        }

        .use-case-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-4px);
        }

        .use-case-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            padding: 0.35rem 0.85rem;
            border-radius: 0.375rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .use-case-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 0.75rem;
        }

        .use-case-customer {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-bottom: 1rem;
        }

        .use-case-outcome {
            background: rgba(16, 185, 129, 0.1);
            border-left: 3px solid #10b981;
            padding: 1rem;
            border-radius: 0.375rem;
            margin-bottom: 1rem;
        }

        .use-case-outcome-label {
            font-size: 0.7rem;
            color: #10b981;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .use-case-outcome-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #6ee7b7;
        }

        .use-case-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            font-size: 0.8rem;
        }

        .use-case-detail {
            background: rgba(59, 130, 246, 0.08);
            padding: 0.75rem;
            border-radius: 0.375rem;
            border-left: 2px solid #3b82f6;
        }

        .use-case-detail-label {
            color: #94a3b8;
            font-size: 0.7rem;
            text-transform: uppercase;
            margin-bottom: 0.2rem;
        }

        .use-case-detail-value {
            color: #e2e8f0;
            font-weight: 600;
        }



        /* Compare Section */
        .compare-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .compare-card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 2rem;
        }

        .compare-label {
            font-size: 0.7rem;
            color: #94a3b8;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .compare-title {
            font-size: 1rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 1rem;
        }

        .compare-section {
            margin-bottom: 1rem;
        }

        .compare-section-label {
            font-size: 0.7rem;
            color: #60a5fa;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
            font-weight: 600;
        }

        .compare-section-text {
            font-size: 0.85rem;
            color: #cbd5e1;
            line-height: 1.5;
        }

        .compare-bottom {
            background: rgba(59, 130, 246, 0.1);
            padding: 0.75rem;
            border-radius: 0.375rem;
            border-left: 3px solid #3b82f6;
            font-size: 0.8rem;
            color: #60a5fa;
            font-weight: 500;
            font-style: italic;
        }

        /* Deployment Grid */
        .deployment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .deployment-card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 1.75rem;
            transition: all 0.3s;
        }

        .deployment-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-3px);
        }

        .deployment-icon {
            font-size: 1.8rem;
            margin-bottom: 0.75rem;
        }

        .deployment-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .deployment-desc {
            font-size: 0.8rem;
            color: #cbd5e1;
            line-height: 1.5;
        }

        /* Customers */
        .customers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .customer-card {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .customer-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
        }

        .customer-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 0.75rem;
        }

        .customer-metric {
            font-size: 1.15rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #10b981);
            /* -webkit-background-clip: text; */
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .customer-detail {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 1rem;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 0.95rem;
            color: #cbd5e1;
            max-width: 500px;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .qualification-list {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            padding: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
        }

        .qualification-title {
            font-size: 0.8rem;
            color: #94a3b8;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .qualification-list ul {
            list-style: none;
        }

        .qualification-list li {
            font-size: 0.85rem;
            color: #cbd5e1;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .qualification-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        /* FAQ */
        .faq-grid {
            margin-top: 2rem;
        }

        .faq-item {
            background: rgba(30, 58, 99, 0.25);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            background: rgba(30, 58, 99, 0.35);
            padding: 1.25rem;
            cursor: pointer;
            font-weight: 600;
            color: #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(30, 58, 99, 0.45);
        }

        .faq-toggle {
            font-size: 1.2rem;
            color: #94a3b8;
            transition: transform 0.3s;
        }

        .faq-answer {
            display: none;
            padding: 1.25rem;
            color: #cbd5e1;
            font-size: 0.85rem;
            line-height: 1.6;
            background: rgba(15, 23, 42, 0.3);
        }

        .faq-answer.active {
            display: block;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        /* Footer */
        footer {
            background: rgba(10, 20, 40, 0.5);
            border-top: 1px solid rgba(59, 130, 246, 0.1);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            color: #94a3b8;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .fountry_hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .hero-metrics {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons button,
            .cta-buttons a {
                width: 100%;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .fountry_hero h1 {
                font-size: 1.6rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .hero-metrics {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                padding: 1.5rem;
            }

            .cards-grid,
            .deployment-grid,
            .compare-grid,
            .customers-grid {
                grid-template-columns: 1fr;
            }
        }