
/*** T3SB identifier: t3sbsCSSassets_32047 */

/* t3sbs_assets_32047 */
        :root {
            --primary-dark: #0a1628;
            --primary-blue: #1a3a5c;
            --accent-copper: #b8860b;
            --accent-teal: #2c7873;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6a6a6a;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-subtle: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {

            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1560px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        /* Header Navigation */
        .header-nav {

            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-subtle);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-cta {
            background: var(--primary-dark);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-dark);
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 120, 115, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            color: white;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-tagline {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .btn-primary {
            background: var(--accent-copper);
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-copper);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .hero-stats {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            animation: fadeInRight 0.8s ease-out 0.4s backwards;
        }

        .stat-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .stat-value {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Syne', sans-serif;
        }

        /* Problem Section */
        .problem-section {
            padding: 120px 0;
            background: var(--bg-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-eyebrow {
            color: var(--accent-teal);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            color: var(--primary-dark);
            margin-bottom: 24px;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--text-medium);
            max-width: 720px;
            margin: 0 auto;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .problem-card {
            background: var(--bg-light);
            padding: 36px;
            border-radius: 12px;
            border-left: 4px solid var(--accent-copper);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .problem-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .problem-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .problem-card h3 {
            color: var(--primary-dark);
            margin-bottom: 16px;
            font-size: 1.3rem;
        }

        .problem-card p {
            color: var(--text-medium);
            line-height: 1.7;
        }

        /* Solution Section */
        .solution-section {
            padding: 120px 0;
            background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
            position: relative;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .solution-visual {
            background: var(--primary-dark);
            border-radius: 16px;
            padding: 60px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .solution-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .solution-visual-content {
            position: relative;
            z-index: 1;
        }

        .solution-feature {
            padding: 24px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .solution-feature:last-child {
            border-bottom: none;
        }

        .solution-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .solution-feature-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 16px 0;
            padding-left: 36px;
            position: relative;
            font-size: 1.05rem;
            color: var(--text-dark);
            line-height: 1.7;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-teal);
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Tech Section */
        .tech-section {
            padding: 120px 0;
            background: var(--primary-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .tech-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(44, 120, 115, 0.05) 30%, rgba(44, 120, 115, 0.05) 70%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(184, 134, 11, 0.03) 30%, rgba(184, 134, 11, 0.03) 70%, transparent 70%);
            background-size: 60px 60px;
            opacity: 0.3;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 36px;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .tech-card h3 {
            color: var(--accent-copper);
            margin-bottom: 16px;
            font-size: 1.4rem;
        }

        .tech-card ul {
            list-style: none;
        }

        .tech-card li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: rgba(255, 255, 255, 0.85);
        }

        .tech-card li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--accent-teal);
        }

        /* USP Section */
        .usp-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
            color: white;
            text-align: center;
        }

        .usp-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .usp-highlight {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .usp-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 32px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Target Groups */
        .targets-section {
            padding: 120px 0;
            background: var(--bg-white);
        }

        .targets-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .target-box {
            background: var(--bg-light);
            padding: 48px;
            border-radius: 12px;
        }

        .target-box h3 {
            color: var(--primary-dark);
            margin-bottom: 32px;
            font-size: 1.8rem;
        }

        .target-box ul {
            list-style: none;
        }

        .target-box li {
            padding: 16px 0;
            font-size: 1.05rem;
            color: var(--text-dark);
            border-bottom: 1px solid var(--border-subtle);
        }

        .target-box li:last-child {
            border-bottom: none;
        }

        /* Agency Section */
        .agency-section {
            padding: 120px 0;
            background: var(--bg-light);
        }

        .agency-content {
            background: white;
            border-radius: 16px;
            padding: 60px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

        .agency-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .agency-logo {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 24px;
        }

        .agency-facts {
            list-style: none;
        }

        .agency-facts li {
            padding: 16px 0;
            font-size: 1.05rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .agency-facts li:last-child {
            border-bottom: none;
        }

        .agency-facts strong {
            color: var(--accent-teal);
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: 120px 0;
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 900px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: white;
            border: 2px solid var(--border-subtle);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-teal);
        }

        .faq-question {
            padding: 28px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-teal);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent-teal);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 32px 28px;
            color: var(--text-medium);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 60px;
            margin-top: 60px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            text-align: left;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'IBM Plex Sans', sans-serif;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-copper);
            background: white;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent-copper);
            color: white;
            padding: 18px 48px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'IBM Plex Sans', sans-serif;
            margin-top: 16px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
        }

        .form-benefits {
            margin-top: 32px;
            text-align: left;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-benefits ul {
            list-style: none;
        }

        .form-benefits li {
            padding: 8px 0;
            padding-left: 32px;
            position: relative;
        }

        .form-benefits li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-copper);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

        .footer-contact a {
            color: var(--accent-copper);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--accent-teal);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid,
            .solution-grid,
            .targets-grid,
            .agency-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                min-height: auto;
                padding: 120px 0 80px;
            }

            .section-header,
            .problem-section,
            .solution-section,
            .tech-section,
            .usp-section,
            .targets-section,
            .agency-section,
            .faq-section,
            .cta-section {
                padding: 80px 0;
            }

            .form-container,
            .agency-content {
                padding: 40px 24px;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }
	

