        /* === VARIABLES === */
        :root {
            --primary: #592884;
            --accent-orange: #eb5e46;
            --accent-green: #70bf97;
            
            --bg-dark: #0A0A0F;
            --bg-card: #14141F;
            --bg-elevated: #1A1A28;
            
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0B8;
            --text-muted: #6B6B80;
            
            --border: rgba(89, 40, 132, 0.08);
            --glow: rgba(89, 40, 132, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Gilroy-Regular', 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            font-weight: 400;
        }

        /* === TYPOGRAPHY === */
        h1, h2, h3 {
            font-family: 'Stacion', sans-serif;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

        p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        strong {
            font-family: 'Gilroy-Bold', sans-serif;
            font-weight: 600;
        }

        /* === SVG ICONS === */
        .hero-badge svg {
            stroke: var(--primary);
            transition: transform 0.3s ease;
        }

        .hero-badge:hover svg {
            transform: rotate(15deg);
        }

        .problem-icon svg {
            stroke: var(--accent-orange);
            transition: all 0.3s ease;
        }

        .problem-card:hover .problem-icon svg {
            transform: scale(1.1);
        }

        .module-icon svg {
            stroke: var(--primary);
            transition: all 0.3s ease;
        }

        .module:hover .module-icon svg {
            transform: scale(1.05);
        }

        .upsell-emoji svg {
            stroke: var(--accent-orange);
            transition: all 0.3s ease;
        }

        .upsell-card:hover .upsell-emoji svg {
            transform: scale(1.1);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* === NAVIGATION === */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            background: rgba(10, 10, 15, 0.7);
            backdrop-filter: blur(30px);
            border-bottom: 0.5px solid var(--border);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 0;
            background: rgba(10, 10, 15, 0.9);
            border-bottom: 0.5px solid rgba(89, 40, 132, 0.15);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Stacion', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-cta {
            padding: 0.7rem 1.75rem;
            background: var(--accent-orange);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            border: 0.5px solid rgba(255, 255, 255, 0.05);
            letter-spacing: 0.01em;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(235, 94, 70, 0.2);
            border-color: rgba(255, 255, 255, 0.15);
        }

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

        section {
            padding: 8rem 0;
        }

        /* === HERO === */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            opacity: 0.08;
            filter: blur(100px);
            animation: float 25s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-60px, 60px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1.1rem;
            background: rgba(89, 40, 132, 0.06);
            border: 0.5px solid rgba(89, 40, 132, 0.12);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            max-width: 700px;
            font-weight: 300;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.15rem 2.75rem;
            background: linear-gradient(135deg, var(--accent-orange), #d04533);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 30px rgba(235, 94, 70, 0.15);
            border: 0.5px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 0.01em;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(235, 94, 70, 0.25);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .hero-subtext {
            margin-top: 1rem;
            font-size: 0.8rem;
            color: var(--accent-green);
            font-weight: 300;
        }

        /* === PROBLEM SECTION === */
        .problem {
            background: var(--bg-card);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .problem-card {
            padding: 2.5rem;
            background: var(--bg-elevated);
            border: 0.5px solid var(--border);
            border-radius: 24px;
            transition: all 0.4s ease;
        }

        .problem-card:hover {
            border-color: rgba(235, 94, 70, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .problem-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
        }

        .problem-icon svg {
            width: 100%;
            height: 100%;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }

        .problem-card p {
            font-size: 1rem;
            font-weight: 300;
        }

        /* === MODULES === */
        .modules {
            background: var(--bg-dark);
        }

        .module {
            background: var(--bg-card);
            border: 0.5px solid var(--border);
            border-radius: 28px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.4s ease;
        }

        .module:hover {
            border-color: rgba(89, 40, 132, 0.2);
            box-shadow: 0 20px 60px rgba(89, 40, 132, 0.06);
        }

        .module-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .module-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .module-icon svg {
            width: 100%;
            height: 100%;
        }

        .module h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .module-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
        }

        .module-list {
            list-style: none;
            display: grid;
            gap: 1rem;
        }

        .module-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(89, 40, 132, 0.03);
            border-radius: 14px;
            transition: all 0.3s ease;
            border: 0.5px solid transparent;
        }

        .module-list li:hover {
            background: rgba(89, 40, 132, 0.06);
            border-color: rgba(89, 40, 132, 0.1);
        }

        .module-list li::before {
            content: '✓';
            color: var(--accent-green);
            font-weight: 500;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .module-list li strong {
            font-weight: 500;
        }

        /* === PORTFOLIO === */
        .portfolio {
            background: var(--bg-elevated);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .portfolio-card {
            background: var(--bg-card);
            border-radius: 24px;
            overflow: hidden;
            border: 0.5px solid var(--border);
            transition: all 0.4s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            border-color: rgba(89, 40, 132, 0.15);
        }

        .portfolio-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--accent-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: 400;
            font-family: 'Stacion', sans-serif;
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h4 {
            font-family: 'Stacion', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .portfolio-tag {
            display: inline-block;
            padding: 0.3rem 0.85rem;
            background: rgba(89, 40, 132, 0.06);
            border-radius: 20px;
            font-size: 0.7rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 400;
            border: 0.5px solid rgba(89, 40, 132, 0.08);
            letter-spacing: 0.02em;
        }

        .portfolio-content p {
            font-weight: 300;
        }

        .portfolio-result {
            padding: 1rem;
            background: rgba(112, 191, 151, 0.06);
            border-left: 2px solid var(--accent-green);
            border-radius: 8px;
            margin-top: 1rem;
            font-size: 0.95rem;
            color: var(--accent-green);
            font-weight: 300;
        }

        /* === TESTIMONIALS === */
        .testimonials {
            background: var(--bg-dark);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial {
            padding: 2.5rem;
            background: var(--bg-card);
            border: 0.5px solid var(--border);
            border-radius: 24px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -0.5rem;
            left: 2rem;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.12;
            font-family: 'Stacion', sans-serif;
        }

        .testimonial p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            font-style: italic;
            font-weight: 300;
        }

        .testimonial-author {
            font-weight: 500;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* === UPSELLS === */
        .upsells {
            background: var(--bg-card);
        }

        .upsell-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .upsell-card {
            padding: 2.5rem;
            background: var(--bg-elevated);
            border: 0.5px solid var(--border);
            border-radius: 24px;
            transition: all 0.4s ease;
        }

        .upsell-card:hover {
            border-color: rgba(235, 94, 70, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .upsell-emoji {
            width: 40px;
            height: 40px;
            margin-bottom: 1rem;
        }

        .upsell-emoji svg {
            width: 100%;
            height: 100%;
        }

        .upsell-card h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-family: 'Stacion', sans-serif;
            font-weight: 400;
        }

        .upsell-price {
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--accent-orange);
            margin: 1rem 0;
            font-family: 'Stacion', sans-serif;
        }

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

        .upsell-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 300;
        }

        /* === PRICING === */
        .pricing {
            background: var(--bg-dark);
        }

        .pricing-card {
            max-width: 700px;
            margin: 4rem auto 0;
            padding: 3.5rem;
            background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
            border: 0.5px solid rgba(89, 40, 132, 0.2);
            border-radius: 32px;
            text-align: center;
            position: relative;
            box-shadow: 0 25px 80px rgba(89, 40, 132, 0.1);
        }

        .pricing-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1.35rem;
            background: var(--accent-orange);
            color: white;
            border-radius: 50px;
            font-weight: 400;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border: 0.5px solid rgba(255, 255, 255, 0.08);
        }

        .pricing-card h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
        }

        .pricing-description {
            margin-bottom: 2rem;
            font-weight: 300;
            font-size: 1rem;
        }

        .price-wrapper {
            margin: 2.5rem 0;
        }

        .old-price {
            font-size: 1.5rem;
            text-decoration: line-through;
            color: var(--text-muted);
            font-weight: 300;
        }

        .current-price {
            font-size: 4rem;
            font-weight: 400;
            font-family: 'Stacion', sans-serif;
            color: var(--text-primary);
            margin: 1rem 0;
        }

        .current-price span {
            font-size: 2rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .deposit-info {
            display: inline-block;
            padding: 0.6rem 1.25rem;
            background: rgba(112, 191, 151, 0.06);
            border: 0.5px solid rgba(112, 191, 151, 0.2);
            border-radius: 12px;
            color: var(--accent-green);
            font-weight: 400;
            font-size: 0.875rem;
            margin: 1.5rem 0;
        }

        .availability {
            display: inline-block;
            padding: 0.85rem 1.35rem;
            background: rgba(235, 94, 70, 0.04);
            border: 0.5px solid rgba(235, 94, 70, 0.15);
            border-radius: 12px;
            color: var(--accent-orange);
            font-weight: 400;
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin: 2.5rem 0;
        }

        .features-list li {
            padding: 1rem;
            margin-bottom: 0.75rem;
            background: rgba(89, 40, 132, 0.04);
            border-left: 2px solid var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 300;
        }

        .features-list li span {
            font-size: 1.5rem;
        }

        .features-list li strong {
            font-weight: 500;
        }

        .features-list li strong {
            font-weight: 400;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            padding: 1.35rem;
            background: linear-gradient(135deg, var(--accent-orange), #d04533);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
            border: 0.5px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 0.01em;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 45px rgba(235, 94, 70, 0.25);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .pricing-security {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 300;
            opacity: 0.7;
        }

        /* === FAQ === */
        .faq {
            background: var(--bg-card);
        }

        .faq-container {
            max-width: 900px;
            margin: 4rem auto 0;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            background: var(--bg-elevated);
            border: 0.5px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: rgba(89, 40, 132, 0.2);
        }

        .faq-question {
            padding: 1.75rem 2rem;
            font-weight: 500;
            font-size: 1.125rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-orange);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            font-weight: 300;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem 2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        /* === VISION === */
        .vision {
            background: var(--bg-dark);
            text-align: center;
        }

        .vision-content {
            max-width: 800px;
            margin: 3rem auto;
        }

        .vision-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            border: 1px solid rgba(89, 40, 132, 0.2);
            background: linear-gradient(135deg, var(--primary), var(--accent-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .vision h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .vision-quote {
            font-size: 1.5rem;
            font-style: italic;
            color: var(--text-secondary);
            margin: 2rem 0;
            line-height: 1.6;
            font-weight: 300;
        }

        .vision-signature {
            margin-top: 3rem;
            font-size: 1.125rem;
        }

        .vision-signature > div:first-child {
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .vision-title {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
        }

        /* === FOOTER === */
        footer {
            padding: 2.5rem 0;
            text-align: center;
            border-top: 0.5px solid var(--border);
            color: var(--text-muted);
            font-weight: 300;
            font-size: 0.75rem;
            opacity: 0.6;
        }

        /* === ANIMATIONS === */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.125rem;
            }

            .portfolio-grid,
            .testimonial-grid,
            .problem-grid,
            .upsell-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 2rem;
            }

            .current-price {
                font-size: 3rem;
            }

            .module {
                padding: 2rem;
            }
        }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

/* === CONTACT FORM === */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: 24px;
    border: 0.5px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--bg-dark);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(89, 40, 132, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1.15rem;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #d94d36;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 94, 70, 0.25);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* === NOTIFICATIONS === */
.notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 400;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
}

.notification.success {
    background: rgba(112, 191, 151, 0.95);
    color: white;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.notification.error {
    background: rgba(235, 94, 70, 0.95);
    color: white;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .notification {
        left: 1rem;
        right: 1rem;
        transform: none;
    }
}
