        /* CSS Variables */
        :root {
            --color-bg-main: #F8FAFC;
            --color-bg-card: #FFFFFF;
            --color-primary: #3B82F6;
            --color-primary-hover: #2563EB;
            --color-text-main: #0F172A;
            --color-text-muted: #64748B;
            --color-border: #E2E8F0;
            --color-success: #10B981;

            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-padding: 24px;
        }

        /* Resets & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            scroll-padding-top: 100px;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-bg-main);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
        }

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn--primary {
            background-color: var(--color-primary);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .btn--primary:hover {
            background-color: var(--color-primary-hover);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        }

        .btn--primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%;
            padding-top: 150%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
            opacity: 0;
            pointer-events: none;
        }

        .btn--primary:active::after {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            transition: 0s;
        }

        .btn--outline {
            background-color: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .btn--outline:hover {
            background-color: rgba(59, 130, 246, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        /* 1. Sticky Nav */

        /* 2. Hero Section */
        .hero {
            position: relative;
            padding: 160px 0 80px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0) 70%), #FFFFFF;
            overflow: hidden;
        }

        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .hero__inner {
            position: relative;
            z-index: 1;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--color-bg-card);
            padding: 8px 16px;
            border-radius: 40px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-text-main);
        }

        .hero__badge img {
            height: 24px;
        }

        .hero__title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero__subtitle {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            max-width: 800px;
            margin: 0 auto 32px;
        }

        .hero__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 64px;
        }

        .hero__tools {
            /*max-width: 800px;*/
            margin: 0 auto;
            border-top: 1px solid var(--color-border);
            padding-top: 32px;
        }

        .hero__tools p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero__apps-marq {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tool-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-main);
            background: var(--color-bg-card);
            padding: 8px 16px;
            border-radius: 12px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform, box-shadow;
        }

        .tool-item:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .tool-item img {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .hero__actions {
                flex-direction: column;
            }

            .hero__actions .btn {
                width: 100%;
            }
        }

        /* Animation specific placeholder */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: opacity, transform;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 3. Pricing Cards - Microsoft Style */
        .pricing {
            padding: 80px 0;
            background-color: var(--color-bg-main);
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-header p {
            color: var(--color-text-muted);
            font-size: clamp(1rem, 3vw, 1.125rem);
        }

        .pricing__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--color-bg-card);
            border-radius: 16px;
            padding: 40px 32px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            will-change: transform, box-shadow;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .pricing-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--color-primary);
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.25);
            z-index: 10;
        }

        .pricing-card.popular:hover {
            transform: scale(1.06) translateY(-6px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--color-primary) 0%, #0078d4 100%);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .card-header {
            margin-bottom: 24px;
            text-align: center;
        }

        .card-header h3 {
            font-size: 1.5rem;
            color: var(--color-text-main);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .benefit {
            color: var(--color-text-muted);
            font-size: 0.875rem;
        }

        .card-price {
            margin-bottom: 24px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .currency {
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 5px;
            margin-right: 2px;
        }

        .amount {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            color: var(--color-text-main);
        }

        .period {
            color: var(--color-text-muted);
            align-self: flex-end;
            margin-bottom: 5px;
            margin-left: 5px;
            font-size: 0.875rem;
        }

        .card__old-price {
            font-size: 1.125rem;
            color: #94A3B8;
            text-decoration: line-through;
            display: block;
            text-align: center;
            margin-bottom: 8px;
        }

        .card__app-icons {
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
            padding: 16px 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            margin-bottom: 24px;
        }

        .card__app-icons img {
            width: 28px;
            height: 28px;
            transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .card__app-icons img:hover {
            transform: scale(1.1) translateY(-2px);
        }

        .card__app-icons span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-text-muted);
        }

        .features-list {
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--color-text-main);
            font-size: 0.9rem;
        }

        .features-list li i {
            color: var(--color-success);
            margin-top: 4px;
            font-size: 1rem;
        }

        .features-list li strong {
            color: var(--color-primary);
        }

        .btn-block {
            width: 100%;
        }

        .pricing-note {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .asterisk {
            font-size: 18px;
            top: -5px;
            position: relative;
        }

        @media (max-width: 1100px) {
            .pricing__grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
                gap: 32px;
            }

            .pricing-card {
                padding: 32px;
            }

            .pricing-card.popular {
                grid-column: 1;
                transform: scale(1.02);
                /* Keeps mild pop for top tier */
                max-width: 100%;
            }

            .pricing-card.popular:hover {
                transform: translateY(-5px) scale(1.02);
            }
        }

        @media (max-width: 768px) {
            .pricing__grid {
                max-width: 500px;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-4px) scale(1);
            }

            .amount {
                font-size: 2.5rem;
            }

            .card-header h3 {
                font-size: 1.25rem;
            }

            .pricing-card {
                padding: 32px 24px;
            }
        }

        /* 4. Social Proof Upgraded */
        .trust-lite {
            padding: 80px 0 1px;
            background-color: var(--color-bg-card);
        }

        .trust-lite-card {
            margin: 40px auto;
            max-width: 750px;
            background: var(--color-bg-main);
            border: 1px solid var(--color-border);
            border-radius: 16px;
            padding: 28px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        @media (max-width: 768px) {
            .trust-lite-card {
                flex-direction: column;
                gap: 32px;
                text-align: center;
            }
        }

        .trust-item {
            text-align: center;
            flex: 1;
        }

        .trust-item h3 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1E3A8A, #3B82F6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .trust-item p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* Divider */
        .trust-divider {
            width: 1px;
            height: 40px;
            background: var(--color-border);
        }

        @media (max-width: 768px) {
            .trust-divider {
                width: 100%;
                height: 1px;
            }
        }

        /* Review block */
        .trust-review {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-review a {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-review img {
            height: 20px;
        }

        /* ⭐ Premium stars */
        .stars {
            font-size: 1.1rem;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #FBBF24, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 5. Testimonials Section (SaaS Focused Style) */
        .testimonials {
            padding-bottom: 80px;
            overflow: hidden;
            text-align: center;
            background-color: var(--color-bg-card);
        }

        .testimonial-wrapper {
            position: relative;
            max-width: 1200px;
            margin: -50px auto 0;
            padding: 0 56px;
        }

        .testimonial-slider-container {
            overflow: hidden;
            border-radius: 16px;
            padding: 30px 0;
            /* Space for scaling shadow */
        }

        .testimonial-slider {
            display: flex;
            gap: 24px;
            align-items: center;
            /* Center them to allow scaling */
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 16px);
            background: var(--color-bg-card);
            padding: 24px;
            /* Reduced padding */
            border-radius: 16px;
            border: 1px solid var(--color-border);
            text-align: left;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease-in-out;

            /* Inactive state (Left/Right) */
            /* opacity: 0.5; */
            transform: scale(0.9);
            /* filter: blur(2px); */
            box-shadow: var(--shadow-sm);
            pointer-events: none;
            /* Disable hover on side elements */
        }

        /* Active State (Center) */
        .testimonial-card.active {
            opacity: 1;
            transform: scale(1.05);
            /* Slight pop */
            filter: blur(0);
            box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.4);
            pointer-events: auto;
            z-index: 5;
        }

        .testimonial-rating {
            color: #FBBF24;
            font-size: 1rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-card p {
            font-size: 0.95rem;
            /* Reduced font size */
            line-height: 1.5;
            color: var(--color-text-main);
            margin-bottom: 24px;
            flex-grow: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--color-border);
            padding-top: 16px;
        }

        .author-avatar {
            width: 40px;
            /* Reduced avatar size */
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), #1E40AF);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .author-info h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0 0 2px 0;
            color: var(--color-text-main);
        }

        .author-info span {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* Navigation Arrows */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-md);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--color-text-main);
            transition: var(--transition);
            z-index: 10;
        }

        .nav-btn:hover {
            background: var(--color-primary);
            color: #FFFFFF;
            border-color: var(--color-primary);
            transform: translateY(-50%) scale(1.05);
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        @media (max-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 12px);
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 100%;
                /* Reset states for mobile since there's only 1 card */
                opacity: 1;
                transform: scale(1);
                filter: blur(0);
                pointer-events: auto;
            }

            .testimonial-card.active {
                transform: scale(1);
            }

            .testimonial-wrapper {
                padding: 0 16px;
            }

            .nav-btn {
                display: none;
            }
        }

        /* 6. Comparison Table */
        .comparison {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
            margin-inline: auto;
        }

        .comparison {
            max-width: 100vw;
        }

        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            margin: 0 -16px;
            /* Let it bleed slightly on mobile for better touch access */
            padding: 0 16px;
        }

        @media (min-width: 768px) {
            .table-wrap {
                margin: 0;
                padding: 0;
            }
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        .comp-table th,
        .comp-table td {
            padding: 16px 24px;
            text-align: left;
            border-bottom: 1px solid var(--color-border);
        }

        .comp-table th {
            background: var(--color-bg-main);
            font-weight: 600;
            font-size: 1.125rem;
            width: 25%;
        }

        .comp-table td {
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .comp-table tbody tr:hover td {
            background: rgba(59, 130, 246, 0.02);
        }

        .comp-table .check {
            color: var(--color-success);
            font-weight: bold;
        }

        .comp-table .cross {
            color: rgb(196, 97, 97);
            font-weight: bold;
        }

        .comp-table .highlight-col {
            background: rgba(59, 130, 246, 0.03);
            border-left: 1px solid var(--color-border);
            border-right: 1px solid var(--color-border);
        }

        .comp-table th.highlight-col {
            border-top: 3px solid var(--color-primary);
            color: var(--color-primary);
        }

        @media (max-width: 768px) {
            .table-wrap {
                overflow-x: hidden;
                border: none;
                margin: 0;
                padding: 0;
            }

            .comp-table,
            .comp-table tbody,
            .comp-table tr,
            .comp-table td {
                display: block;
                width: 100%;
                min-width: 0;
                /* Remove 800px minimum */
                box-sizing: border-box;
            }

            .comp-table thead {
                display: none;
                /* Hide top headers completely */
            }

            .comp-table tr {
                margin-bottom: 24px;
                border: 1px solid var(--color-border);
                border-radius: 12px;
                box-shadow: var(--shadow-sm);
                background: #FFFFFF;
                overflow: hidden;
            }

            .comp-table td {
                text-align: right;
                padding: 16px 16px 16px 45%;
                /* Space for pseudo-label */
                position: relative;
                border-bottom: 1px solid var(--color-border);
                min-height: 56px;
            }

            .comp-table td:last-child {
                border-bottom: none;
            }

            /* Pseudo Elements trick to create responsive labels natively using nth-child */
            .comp-table td::before {
                position: absolute;
                left: 16px;
                width: 40%;
                text-align: left;
                font-weight: 600;
                color: var(--color-text-main);
                top: 50%;
                transform: translateY(-50%);
                font-size: 0.9rem;
            }

            .comp-table td:nth-child(2)::before {
                content: "Business Starter";
            }

            .comp-table td:nth-child(3)::before {
                content: "Business Standard";
                color: var(--color-primary);
            }

            .comp-table td:nth-child(4)::before {
                content: "Business Plus";
            }

            /* Treat the first column (Feature Name) as the header of the card */
            .comp-table td:first-child {
                background: var(--color-bg-main);
                font-weight: 700;
                text-align: center;
                padding: 16px;
                font-size: 1.1rem;
            }

            .comp-table td:first-child::before {
                content: none;
                /* Don't add a label to the header */
            }

            .comp-table .highlight-col {
                background: transparent;
                border-left: none;
                border-right: none;
            }
        }

        /* 7. Why Webking */
        .why-us {
            padding: 80px 0;
            background-color: var(--color-bg-card);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Make first row stronger */
        .benefit-card {
            background: var(--color-bg-card);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--color-border);
            text-align: left;
            transition: 0.25s;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        /* Icon */
        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 18px;
            color: var(--color-primary);
        }

        /* Title */
        .benefit-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
        }

        /* Description */
        .benefit-card p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        /* 8. FAQ */
        .faq {
            padding: 80px 0;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 24px 0;
            background: none;
            border: none;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--color-text-main);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--color-primary);
            transition: var(--transition);
        }

        .faq-item.active .faq-question::after {
            content: '\2212';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 24px;
        }

        /* 9. Quote Form */
        .quote {
            padding: 80px 0;
            background: var(--color-bg-card);
        }

        .quote-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            background: linear-gradient(135deg, #1D4ED8, #2563EB, #3B82F6);
            padding: 48px;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .quote-info {
            color: var(--color-bg-card);
        }

        .quote-info h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .quote-info p {
            font-size: 1.125rem;
            margin-bottom: 32px;
        }

        .quote-form {
            display: grid;
            gap: 16px;
        }

        .quote-form button {
            width: 100%;
            padding: 16px;
            font-size: 1.125rem;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: var(--color-bg-card);
        }

        .form-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        @media (max-width: 900px) {
            .quote-wrapper {
                grid-template-columns: 1fr;
                padding: 32px;
            }

            .form-group-row {
                grid-template-columns: 1fr;
            }
        }
        
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            animation: fadeInCanvas 1.5s ease-in-out 0.3s forwards;
        }
        
        @keyframes fadeInCanvas {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }