:root {
            --primary: #3498db;
            --accent: #2980b9;
            --bg: #edf6f9;
            --text: #273c75;
            --radius-lg: 16px;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background-color: var(--bg);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
        }

        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
            border-radius: 999px;
            padding: 0.6rem 1.6rem;
            font-weight: 500;
        }
        .btn-primary:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
            border-radius: 999px;
            padding: 0.6rem 1.6rem;
            font-weight: 500;
        }
        .btn-outline-primary:hover {
            background: var(--primary);
            color: #fff;
        }

        .section-padding {
            padding: 72px 0;
        }

        .section-title {
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: rgba(39, 60, 117, 0.8);
            margin-bottom: 1.5rem;
        }

        .card-soft {
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: none;
            box-shadow: 0 18px 45px rgba(15, 52, 96, 0.08);
        }

        /* HERO */
        #hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: url("img/image_694dcda9a3eb3.png") center/cover no-repeat;
            position: relative;
        }
        #hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 0 0, rgba(255,255,255,0.95) 0, rgba(255,255,255,0.90) 40%, rgba(237,246,249,0.96) 100%);
        }
        #hero .hero-inner {
            position: relative;
            z-index: 1;
        }

        .hero-form {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(15, 52, 96, 0.12);
            padding: 24px 24px 28px;
        }
        .hero-form-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .hero-form-subtitle {
            font-size: 0.9rem;
            color: rgba(39,60,117,0.75);
            margin-bottom: 1rem;
        }

        /* Gradient blocks */
        .gradient-block {
            background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(41,128,185,0.15));
            border-radius: var(--radius-lg);
        }

        /* FAQ */
        .faq-item {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(39,60,117,0.08);
            margin-bottom: 0.75rem;
            background: #ffffff;
        }
        .faq-item button {
            text-align: left;
            font-weight: 500;
        }

        /* Testimonials */
        .testimonial {
            border-radius: var(--radius-lg);
            background: #ffffff;
            padding: 1.5rem 1.75rem;
            height: 100%;
        }
        .testimonial-name {
            font-weight: 600;
        }
        .testimonial-meta {
            font-size: 0.85rem;
            color: rgba(39,60,117,0.65);
        }

        /* Portfolio overlay */
        #portfolio {
            position: relative;
            color: #fff;
        }
        #portfolio::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(15,52,96,0.88), rgba(41,128,185,0.7)),
                url("img/image_694dcdb0ae52d.png") center/cover no-repeat;
        }
        #portfolio .container {
            position: relative;
            z-index: 1;
        }

        /* Footer */
        #footer {
            background: #ffffff;
        }
        #footer a {
            color: var(--primary);
            text-decoration: none;
        }
        #footer a:hover {
            text-decoration: underline;
        }

        /* Cookie notice */
        #cookie-notice {
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 480px;
            width: calc(100% - 32px);
            z-index: 1050;
        }

        @media (max-width: 991.98px) {
            #hero {
                padding-top: 72px;
                padding-bottom: 56px;
            }
            #hero::before {
                background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(237,246,249,0.96));
            }
            .hero-form {
                margin-top: 24px;
            }
        }
