:root {
            /* Brand Colors - Professional Blue & Teal */
            --brand-50: #f0f9ff;
            --brand-100: #e0f2fe;
            --brand-300: #7dd3fc;
            --brand-400: #38bdf8;
            --brand-500: #0ea5e9;
            --brand-600: #0284c7;
            --brand-700: #0369a1;

            /* Typography & Neutrals - Slate */
            --bg-body: #f8fafc;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            
            /* Emerald Colors for Success Box */
            --emerald-500: #10b981;
            --emerald-600: #059669;

            /* Effects */
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.4);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
            --shadow-hover: 0 20px 25px -5px rgba(2, 132, 199, 0.08), 0 10px 10px -5px rgba(2, 132, 199, 0.04);

            --radius-md: 0.5rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--slate-700);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Outfit', sans-serif;
            color: var(--slate-900);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        p {
            color: var(--slate-600);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* General Utilities */
        .section {
            padding: 6rem 0;
        }

        .section-light {
            background-color: white;
        }

        .section-dark {
            background-color: var(--slate-900);
            color: var(--slate-200);
        }

        .section-dark h2 {
            color: white;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: var(--brand-50);
            color: var(--brand-700);
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        a.badge {
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        a.badge:hover {
            background-color: var(--brand-100) !important;
            color: var(--brand-800) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .badge.badge-dark {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--slate-200);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 999px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--brand-600);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--brand-500);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(2, 132, 199, 0.23);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--slate-800);
            border: 1px solid var(--slate-300);
        }

        .btn-outline:hover {
            border-color: var(--slate-800);
            background-color: var(--slate-50);
        }

        .btn-white {
            background-color: white;
            color: var(--slate-900);
        }

        .btn-white:hover {
            background-color: var(--slate-50);
            transform: translateY(-2px);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1.25rem 0;
            border-bottom: 1px solid transparent;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--slate-200);
            padding: 1rem 0;
            box-shadow: var(--shadow-sm);
        }

        .animated-phone {
            animation: ring 2.5s infinite ease-in-out;
            transform-origin: center;
            display: inline-block;
        }

        @keyframes ring {
            0% { transform: rotate(0); }
            5% { transform: rotate(-15deg); }
            10% { transform: rotate(15deg); }
            15% { transform: rotate(-15deg); }
            20% { transform: rotate(15deg); }
            25% { transform: rotate(0); }
            100% { transform: rotate(0); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Mobile Menu Toggle Button Styles */
        .menu-toggle {
            display: none;
        }

        .header-contact a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--slate-900);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-600);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .logo-text {
            font-family: 'Outfit', sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo-main {
            font-weight: 700;
            font-size: 1.7rem;
            letter-spacing: -0.03em;
            line-height: 0.8;
            margin-bottom: -0.1rem;
        }

        .logo-main span {
            color: var(--brand-600);
        }

        .logo-sub {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.45em;
            color: var(--slate-500);
            text-transform: uppercase;
            margin-top: 0;
            margin-left: 0.05rem;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--slate-700);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            color: var(--brand-600);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mobile-menu-phones {
            display: none;
        }

        /* Hero */
        .hero {
            padding-top: 160px;
            padding-bottom: 100px;
            display: flex;
            align-items: center;
            position: relative;
            background-color: var(--slate-900);
            overflow: hidden;
        }

        /* Subtle architectural grid pattern */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Blue glow accent */
        .hero::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
            top: 50%;
            left: 80%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
        }

        .hero h1 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--brand-500);
        }

        .hero p {
            color: var(--slate-200);
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Trusted by strip */
        .stats-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem 0;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            background: rgba(2, 132, 199, 0.1);
            color: var(--brand-500);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-text h4 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 0.1rem;
        }

        .stat-text p {
            color: var(--slate-300);
            font-size: 0.875rem;
            margin: 0;
        }

        /* Section Headings */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--slate-100);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--brand-100);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--brand-50);
            color: var(--brand-600);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--brand-600);
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: var(--slate-600);
            border-bottom: 1px solid var(--slate-50);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list i {
            color: var(--brand-500);
            width: 18px;
            height: 18px;
        }

        /* Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .process-step {
            position: relative;
            padding: 2.5rem 2rem;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Glassmorphism subtle overlay */
        .process-step::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
            z-index: -2;
        }

        .process-step.visible:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.15);
            border-color: var(--brand-200);
        }

        .step-num {
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 6rem;
            font-weight: 800;
            color: var(--slate-50);
            z-index: -1;
            line-height: 1;
            font-family: 'Outfit', sans-serif;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step:hover .step-num {
            color: var(--brand-50);
            transform: scale(1.05) translate(-10px, 10px);
        }

        .step-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--brand-50);
            color: var(--brand-600);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-icon i {
            width: 28px;
            height: 28px;
        }

        .process-step:hover .step-icon {
            background: var(--brand-500);
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
        }

        .step-arrow {
            position: absolute;
            top: 2.75rem;
            right: 1.5rem;
            color: var(--slate-200);
            transition: all 0.3s ease;
            width: 24px;
            height: 24px;
        }

        .process-step:hover .step-arrow {
            color: var(--brand-500);
            transform: translateX(10px);
        }

        .process-step h3 {
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .contact-info {
            background: var(--slate-900);
            color: white;
            padding: 4rem;
            position: relative;
        }

        /* Subtle pattern for contact block */
        .contact-info::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
        }

        .contact-info h3 {
            color: white;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .contact-item-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-500);
        }

        .contact-item-text h4 {
            color: var(--slate-300);
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-family: 'Inter', sans-serif;
        }

        .contact-item-text p,
        .contact-item-text a {
            color: white;
            font-size: 1.125rem;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .contact-item-text a:hover {
            color: var(--brand-500);
        }

        .contact-form {
            padding: 4rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--slate-700);
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--slate-300);
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.2s;
            background-color: var(--bg-body);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--brand-500);
            background-color: white;
            box-shadow: 0 0 0 4px var(--brand-50);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Form Feedback */
        .form-success {
            display: none;
            background: #ecfdf5;
            border: 1px solid #10b981;
            color: #065f46;
            padding: 1rem;
            border-radius: var(--radius-md);
            margin-bottom: 1.5rem;
            align-items: center;
            gap: 0.75rem;
        }

        /* Footer */
        .footer {
            background-color: var(--slate-900);
            color: var(--slate-200);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            margin-bottom: 1rem;
        }

        .footer-brand strong {
            color: white;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }

        .footer ul {
            list-style: none;
        }

        .footer ul li {
            margin-bottom: 0.75rem;
        }

        .footer a {
            color: var(--slate-200);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer a:hover {
            color: var(--brand-500);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding: 3rem;
            }

            .contact-form {
                padding: 3rem;
            }

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

            .stats-strip {
                position: relative;
                background: rgba(15, 23, 42, 0.95);
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Responsive Helpers */
        .responsive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        @media (max-width: 768px) {
            .d-none-mobile { display: none !important; }
            .responsive-grid, .form-row { grid-template-columns: 1fr !important; gap: 2rem; }

            .header-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border-bottom: 2px solid var(--slate-200);
                padding: 1.5rem 2rem;
                gap: 1.25rem;
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }

            .header-nav.active {
                display: flex !important;
            }

            .header-nav .nav-link {
                font-size: 1.1rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid var(--slate-100);
                width: 100%;
            }

            .header-nav .nav-link:last-child {
                border-bottom: none;
            }

            .mobile-menu-phones {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                border-top: 1px solid var(--slate-200);
                padding-top: 1rem;
                margin-top: 0.5rem;
                width: 100%;
            }

            .mobile-menu-phones .nav-link {
                display: flex !important;
                align-items: center;
                gap: 0.5rem;
                color: var(--slate-900) !important;
                font-weight: 600;
                border-bottom: none !important;
                padding: 0.25rem 0 !important;
            }

            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--slate-100);
                color: var(--slate-800);
                border: none;
                width: 42px;
                height: 42px;
                border-radius: var(--radius-md);
                cursor: pointer;
                transition: all 0.2s ease;
            }

            .menu-toggle:hover {
                background: var(--slate-200);
                color: var(--slate-900);
            }

            .menu-toggle i {
                width: 22px;
                height: 22px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 4rem 0;
            }

            .contact-info,
            .contact-form {
                padding: 2rem;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }


/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.08);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-50);
    color: var(--brand-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    width: 20px;
    height: 20px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
    color: var(--slate-900);
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--slate-600);
    margin: 0;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cookie-banner {
        left: 2rem;
        right: auto;
        width: 500px;
    }
}

@media (max-width: 639px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-icon {
        width: 36px;
        height: 36px;
    }
    
    .cookie-icon i {
        width: 18px;
        height: 18px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }
    
    .cookie-actions button {
        width: 100%;
    }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4); border-color: var(--brand-500); }
    50% { box-shadow: 0 0 20px 5px rgba(2, 132, 199, 0.2); border-color: var(--brand-500); }
    100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.highlight-service {
    animation: pulse-glow 1.5s ease-in-out infinite;
    border-color: var(--brand-500) !important;
}

/* Value/Benefits Cards in About Page */
.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.12), 0 1px 3px rgba(2, 132, 199, 0.02);
    border-color: rgba(2, 132, 199, 0.25);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(2, 132, 199, 0.06);
    color: var(--brand-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

.value-icon i {
    width: 24px;
    height: 24px;
}

.value-card:hover .value-icon {
    background: var(--brand-600);
    color: white;
    transform: scale(1.05) rotate(4deg);
    border-color: var(--brand-600);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.975rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .value-card {
        padding: 2rem 1.5rem;
    }
}

/* Custom Interactive Option Cards for Dynamic Form */
.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
}

.option-card input[type="checkbox"],
.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card .card-icon {
    font-size: 1.5rem;
    color: var(--slate-400);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card .card-icon i {
    width: 28px;
    height: 28px;
}

.option-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    transition: all 0.25s ease;
}

.option-card:hover {
    border-color: var(--brand-300);
    background: var(--brand-50)/30%;
}

/* Checked State */
.option-card.checked {
    border-color: var(--brand-500);
    background: var(--brand-50);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.option-card.checked .card-icon {
    color: var(--brand-600);
    transform: scale(1.1);
}

.option-card.checked span {
    color: var(--brand-800);
}

/* Checkbox Grid for Services */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.checkbox-item:hover {
    background: white;
    border-color: var(--brand-200);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-500);
    cursor: pointer;
}

.checkbox-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-700);
}

.checkbox-item.checked {
    background: white;
    border-color: var(--brand-500);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.04);
}