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

        :root {
            --blue-primary: #2797E2;
            --blue-dark: #1D5AA8;
            --blue-cyan: #00ADEE;
            --blue-mid: #2483C5;
            --navy: #0a1628;
            --navy-light: #0f1f3a;
            --white: #ffffff;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --gray-900: #0F172A;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-800);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

        /* ─── NAV ─── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-200);
            transition: box-shadow 0.3s;
        }
        nav.scrolled { box-shadow: var(--shadow-md); }

        .nav-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
            display: flex; align-items: center; justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            display: flex; align-items: center; gap: 0.6rem;
            text-decoration: none; color: var(--gray-900);
        }
        .nav-logo-img { height: 100px; width: auto; }
        .footer-logo-img { height: 80px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

        .nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
        .nav-links a {
            padding: 0.5rem 1rem; border-radius: var(--radius-sm);
            font-size: 0.9rem; font-weight: 500; color: var(--gray-600);
            text-decoration: none; transition: all 0.2s;
        }
        .nav-links a:hover { color: var(--blue-primary); background: var(--gray-50); }
        .nav-links a.active { color: var(--blue-primary); background: rgba(39,151,226,0.08); }

        .nav-cta {
            padding: 0.55rem 1.25rem; border-radius: var(--radius-sm);
            background: var(--blue-primary); color: white !important;
            font-weight: 600; font-size: 0.85rem;
            transition: all 0.2s; text-decoration: none;
        }
        .nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
        .nav-toggle svg { display: block; }

        /* ─── HERO ─── */
        .hero {
            padding: 10rem 0 6rem;
            background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 50%, #112240 100%);
            position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(0,173,238,0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -150px; left: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(29,90,168,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero .container { position: relative; z-index: 1; }

        .hero-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 4rem; align-items: center;
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(39,151,226,0.15); border: 1px solid rgba(39,151,226,0.25);
            color: var(--blue-cyan); font-size: 0.8rem; font-weight: 600;
            padding: 0.4rem 1rem; border-radius: 100px;
            margin-bottom: 1.5rem; letter-spacing: 0.02em;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800;
            line-height: 1.12; letter-spacing: -0.035em;
            color: white; margin-bottom: 1.5rem;
        }
        .hero h1 .accent {
            background: linear-gradient(135deg, var(--blue-cyan), var(--blue-primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.1rem; color: var(--gray-400);
            line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px;
        }

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

        .btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.85rem 1.75rem; border-radius: var(--radius-sm);
            font-size: 0.95rem; font-weight: 600; text-decoration: none;
            transition: all 0.2s; cursor: pointer; border: none; font-family: inherit;
        }
        .btn-primary {
            background: var(--blue-primary); color: white;
            box-shadow: 0 4px 14px rgba(39,151,226,0.4);
        }
        .btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(39,151,226,0.5); transform: translateY(-1px); }
        .btn-outline {
            background: transparent; color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

        .hero-stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
            padding: 2rem; border-radius: var(--radius);
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
        }
        .hero-stat { text-align: center; }
        .hero-stat-value {
            font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--blue-cyan), var(--blue-primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .hero-stat-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.25rem; font-weight: 500; }

        /* ─── TRUST BAR ─── */
        .trust-bar {
            padding: 3rem 0; background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }
        .trust-bar-inner {
            display: flex; align-items: center; justify-content: center;
            gap: 3rem; flex-wrap: wrap;
        }
        .trust-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
        .trust-logos { display: flex; align-items: center; gap: 3rem; }
        .trust-logo {
            height: 32px; width: auto; max-width: 120px; object-fit: contain;
            opacity: 0.5; transition: opacity 0.3s; filter: grayscale(100%);
        }
        .trust-logo:hover { opacity: 0.85; filter: grayscale(0%); }

        /* ─── SECTIONS ─── */
        section { padding: 6rem 0; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-label {
            font-size: 0.8rem; font-weight: 700; color: var(--blue-primary);
            text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
        }
        .section-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
            color: var(--gray-900); letter-spacing: -0.03em; margin-bottom: 1rem;
        }
        .section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.7; }

        /* ─── OFFER TABS ─── */
        #oferta { background: var(--gray-50); }

        .offer-tabs {
            display: flex; justify-content: center; gap: 0.5rem;
            margin-bottom: 3rem; flex-wrap: wrap;
        }
        .offer-tab {
            padding: 0.65rem 1.5rem; border-radius: 100px;
            font-size: 0.88rem; font-weight: 600; cursor: pointer;
            border: 1px solid var(--gray-200); background: white;
            color: var(--gray-600); transition: all 0.2s; font-family: inherit;
        }
        .offer-tab:hover { border-color: var(--blue-primary); color: var(--blue-primary); }
        .offer-tab.active {
            background: var(--blue-primary); color: white;
            border-color: var(--blue-primary); box-shadow: 0 2px 8px rgba(39,151,226,0.3);
        }

        .offer-panel { display: none; }
        .offer-panel.active { display: block; }

        .offer-content {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 3rem; align-items: center;
        }
        .offer-text h3 {
            font-size: 1.6rem; font-weight: 700; color: var(--gray-900);
            letter-spacing: -0.02em; margin-bottom: 1rem;
        }
        .offer-text p {
            font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 1.5rem;
        }
        .offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
        .offer-list li {
            display: flex; align-items: flex-start; gap: 0.75rem;
            font-size: 0.92rem; color: var(--gray-700); line-height: 1.5;
        }
        .offer-list .check {
            flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
            background: rgba(39,151,226,0.1); display: flex;
            align-items: center; justify-content: center; margin-top: 1px;
        }
        .offer-list .check svg { width: 12px; height: 12px; }

        .offer-visual {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: var(--radius); padding: 3rem;
            display: flex; flex-direction: column; gap: 1.25rem;
            min-height: 360px; justify-content: center;
        }
        .offer-visual-item {
            display: flex; align-items: center; gap: 1rem;
            padding: 1rem 1.25rem; border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
        }
        .offer-visual-icon {
            width: 40px; height: 40px; border-radius: 10px;
            background: linear-gradient(135deg, rgba(0,173,238,0.2), rgba(29,90,168,0.2));
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .offer-visual-icon svg { width: 20px; height: 20px; stroke: var(--blue-cyan); }
        .offer-visual-text { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 500; }

        /* ─── FEATURES ─── */
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .feature-card {
            background: white; border: 1px solid var(--gray-200);
            border-radius: var(--radius); padding: 2rem;
            transition: all 0.25s;
        }
        .feature-card:hover {
            border-color: rgba(39,151,226,0.25);
            box-shadow: var(--shadow-lg); transform: translateY(-3px);
        }
        .feature-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: linear-gradient(135deg, rgba(0,173,238,0.1), rgba(29,90,168,0.1));
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
        }
        .feature-icon svg { width: 24px; height: 24px; stroke: var(--blue-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
        .feature-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

        /* ─── PROJECTS ─── */
        #realizacje { background: var(--gray-50); }
        .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        .project-card {
            background: white; border: 1px solid var(--gray-200);
            border-radius: var(--radius); overflow: hidden;
            transition: all 0.25s; cursor: pointer;
            text-decoration: none; color: inherit; display: block;
        }
        .project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
        .project-card:hover .project-thumb img { transform: scale(1.05); }
        .project-thumb {
            height: 220px; position: relative; overflow: hidden;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        .project-thumb img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }
        .project-badge {
            position: absolute; top: 1rem; left: 1rem;
            background: rgba(39,151,226,0.9); color: white;
            font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem;
            border-radius: 6px; letter-spacing: 0.02em; z-index: 1;
        }
        .project-body { padding: 1.5rem; }
        .project-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.35rem; }
        .project-body .project-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 0.75rem; }
        .project-body .location {
            display: flex; align-items: center; gap: 0.35rem;
            font-size: 0.82rem; color: var(--gray-400); font-weight: 500;
        }
        .project-body .location svg { width: 14px; height: 14px; stroke: var(--gray-400); fill: none; stroke-width: 2; }
        .project-tags { display: flex; gap: 0.4rem; margin-top: 0.75rem; flex-wrap: wrap; }
        .project-tag {
            font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.6rem;
            border-radius: 6px; background: var(--gray-100); color: var(--gray-500);
        }

        /* ─── CTA ─── */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(165deg, var(--navy), var(--navy-light));
            position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(0,173,238,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta-content {
            text-align: center; position: relative; z-index: 1;
            max-width: 600px; margin: 0 auto;
        }
        .cta-content h2 {
            font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800;
            color: white; letter-spacing: -0.03em; margin-bottom: 1rem;
        }
        .cta-content p { font-size: 1.05rem; color: var(--gray-400); margin-bottom: 2.5rem; line-height: 1.7; }
        .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ─── CONTACT ─── */
        #kontakt { background: var(--gray-50); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
        .contact-info h3 { font-size: 1.4rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
        .contact-info > p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2rem; }

        .contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
        .contact-item {
            display: flex; gap: 1rem; align-items: flex-start;
        }
        .contact-item-icon {
            width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(0,173,238,0.1), rgba(29,90,168,0.1));
            display: flex; align-items: center; justify-content: center;
        }
        .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue-primary); fill: none; stroke-width: 2; }
        .contact-item-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
        .contact-item-value { font-size: 0.95rem; color: var(--gray-800); font-weight: 500; margin-top: 0.15rem; }
        .contact-item-value a { color: var(--blue-primary); text-decoration: none; }
        .contact-item-value a:hover { text-decoration: underline; }

        .contact-form-card {
            background: white; border: 1px solid var(--gray-200);
            border-radius: var(--radius); padding: 2.5rem;
        }
        .contact-form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; }
        .form-group { margin-bottom: 1.25rem; }
        .form-group label {
            display: block; font-size: 0.82rem; font-weight: 600;
            color: var(--gray-600); margin-bottom: 0.4rem;
        }
        .form-group input, .form-group textarea {
            width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm);
            border: 1px solid var(--gray-200); font-family: inherit;
            font-size: 0.9rem; color: var(--gray-800);
            transition: border-color 0.2s; outline: none; background: var(--gray-50);
        }
        .form-group input:focus, .form-group textarea:focus { border-color: var(--blue-primary); background: white; }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-submit {
            width: 100%; padding: 0.85rem; border-radius: var(--radius-sm);
            background: var(--blue-primary); color: white;
            font-weight: 600; font-size: 0.95rem;
            border: none; cursor: pointer; font-family: inherit;
            transition: all 0.2s;
        }
        .form-submit:hover { background: var(--blue-dark); }

        /* ─── FOOTER ─── */
        footer {
            background: var(--gray-900); color: var(--gray-400);
            padding: 4rem 0 2rem;
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem; margin-bottom: 3rem;
        }
        .footer-brand-text { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
        .footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col a { color: var(--gray-400); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
        .footer-col a:hover { color: var(--blue-cyan); }
        .footer-bottom {
            padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.78rem; flex-wrap: wrap; gap: 1rem;
        }
        .footer-company-info { font-size: 0.78rem; color: var(--gray-500); }

        /* ─── MOBILE NAV ─── */
        .mobile-menu {
            display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
            z-index: 999; padding: 2rem 1.5rem;
            flex-direction: column; gap: 0.5rem;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            padding: 1rem; font-size: 1rem; font-weight: 500;
            color: var(--gray-700); text-decoration: none;
            border-radius: var(--radius-sm); transition: all 0.2s;
        }
        .mobile-menu a:hover { background: var(--gray-50); color: var(--blue-primary); }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero-actions { justify-content: center; }
            .hero-stats { max-width: 500px; margin: 3rem auto 0; }
            .offer-content { grid-template-columns: 1fr; }
            .offer-visual { order: -1; min-height: 280px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-toggle { display: block; }
            section { padding: 4rem 0; }
            .hero { padding: 8rem 0 4rem; }
            .features-grid { grid-template-columns: 1fr; }
            .projects-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
            .hero-actions { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 280px; justify-content: center; }
            .offer-tabs { gap: 0.35rem; }
            .offer-tab { padding: 0.5rem 1rem; font-size: 0.8rem; }
        }

        /* ─── MODAL ─── */
        .modal-overlay {
            display: none; position: fixed; inset: 0; z-index: 2000;
            background: rgba(15,23,42,0.6); backdrop-filter: blur(6px);
            overflow-y: auto; padding: 3rem 1.5rem;
        }
        .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
        .modal {
            background: white; border-radius: var(--radius);
            width: min(680px, calc(100% - 3rem));
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
            position: relative; flex-shrink: 0;
        }
        .modal-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; }
        .modal-close {
            position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
            border-radius: 50%; background: rgba(0,0,0,0.5); border: none;
            color: white; font-size: 1.2rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            z-index: 1; transition: background 0.2s;
            padding: 0; line-height: 1;
        }
        .modal-close:hover { background: rgba(0,0,0,0.7); }
        .modal-body { padding: 2rem; }
        .modal-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
        .modal-location { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.35rem; }
        .modal-location svg { width: 16px; height: 16px; stroke: var(--gray-400); fill: none; stroke-width: 2; flex-shrink: 0; }
        .modal-body p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.25rem; }
        .modal-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
        .modal-detail {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 0.85rem; color: var(--gray-700); line-height: 1.5;
        }
        .modal-detail svg { width: 18px; height: 18px; stroke: var(--blue-primary); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
        .modal-scope h4 { font-size: 0.78rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
        .modal-scope-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .modal-scope-tag {
            font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.75rem;
            border-radius: 100px; background: rgba(39,151,226,0.08); color: var(--blue-dark);
        }
        .modal-links {
            display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
            padding-top: 1.5rem; border-top: 1px solid var(--gray-200);
        }
        .modal-link {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-size: 0.85rem; font-weight: 600; color: var(--blue-primary);
            text-decoration: none; padding: 0.5rem 1rem; border-radius: var(--radius-sm);
            background: rgba(39,151,226,0.06); border: 1px solid rgba(39,151,226,0.15);
            transition: all 0.2s;
        }
        .modal-link:hover { background: rgba(39,151,226,0.12); border-color: rgba(39,151,226,0.3); }
        .modal-link svg { width: 14px; height: 14px; stroke: var(--blue-primary); fill: none; stroke-width: 2; flex-shrink: 0; }
        @media (max-width: 640px) {
            .modal-img { height: 180px; }
            .modal-body { padding: 1.5rem; }
            .modal-details { grid-template-columns: 1fr; }
        }

        /* ─── ANIMATIONS ─── */
        .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .fade-up-delay-1 { transition-delay: 0.1s; }
        .fade-up-delay-2 { transition-delay: 0.2s; }
        .fade-up-delay-3 { transition-delay: 0.3s; }
