/* ============================================================
   index.php — page styles
   Moved out of the page on 14 Aug 2026. Values come from
   css/tokens.css: edit a token there and it changes here too.
   ============================================================ */


        :root {
            --primary: var(--gx-brand);
            --primary-light: var(--gx-brand-light);
            --primary-dark: var(--gx-brand-dark);
            --accent: #f0b90b;
            --accent-light: #ffd54f;
            /* The gold reads at about 1.8:1 on white, so it fails contrast the
               moment it is used for TEXT. --accent stays as-is for fills, borders
               and badges; --accent-ink is the darker gold for type on a light
               background (~4.9:1, clears WCAG AA). */
            --accent-ink: #8a6d00;
            --success: var(--gx-success);
            --error: var(--gx-error);
            --text-primary: var(--gx-ink);
            --text-secondary: var(--gx-muted);
            --bg-light: var(--gx-bg);
            --bg-white: var(--gx-white);
            --border-color: var(--gx-line);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.6;
        }

        /* ===== TYPOGRAPHY ===== */
        h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
        h2 { font-size: var(--gx-fs-5xl); font-weight: 700; line-height: 1.2; margin: 2rem 0 1rem 0; }
        h3 { font-size: var(--gx-fs-2xl); font-weight: 600; }
        h4 { font-size: 1.125rem; font-weight: 600; }
        p { color: var(--text-secondary); font-size: var(--gx-fs-base); }

        @media (max-width: 768px) {
            h1 { font-size: var(--gx-fs-4xl); }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.25rem; }
        }

        /* ===== LAYOUT ===== */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
        .section { padding: 6rem 0; }
        .section-header { margin-bottom: 3rem; text-align: center; }
        .section-title { color: var(--text-primary); margin-bottom: 0.5rem; }
        .section-subtitle { color: var(--text-secondary); font-size: var(--gx-fs-lg); max-width: 600px; margin: 0 auto; }

        @media (max-width: 768px) {
            .section { padding: 3rem 0; }
            .section-header { margin-bottom: 2rem; }
            .section-title { font-size: var(--gx-fs-3xl); }
            .section-subtitle { font-size: var(--gx-fs-base); }
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: var(--gx-r);
            font-weight: 600;
            font-size: var(--gx-fs-base);
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--gx-transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .btn-accent {
            background: var(--accent);
            color: var(--primary-dark);
            font-weight: 700;
        }

        .btn-accent:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }

        /* ===== POPUP ===== */
        .popup-premium {
            display: none;
            position: fixed;
            top: 30px;
            right: 30px;
            min-width: 340px;
            background: white;
            border-radius: var(--gx-r-lg);
            box-shadow: var(--shadow-lg);
            z-index: 10000;
            overflow: hidden;
            animation: slideInRight 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .popup-premium.success { border-left: 5px solid var(--success); }
        .popup-premium.error { border-left: 5px solid var(--error); }

        .popup-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
        }

        .popup-message {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .popup-message i { font-size: 22px; }
        .success .popup-message i { color: var(--success); }
        .error .popup-message i { color: var(--error); }

        .close-popup {
            cursor: pointer;
            font-size: 20px;
            color: var(--text-secondary);
            transition: 0.2s;
        }

        .close-popup:hover { color: var(--text-primary); }

        .progress-bar-premium {
            height: 4px;
            background: var(--border-color);
        }

        .progress-bar-premium .progress {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--success), #34d399);
            animation: progressShrink 5s linear forwards;
        }

        .error .progress-bar-premium .progress {
            background: linear-gradient(90deg, var(--error), #f87171);
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideOutRight {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }

        @keyframes progressShrink {
            from { width: 100%; }
            to { width: 0%; }
        }

        /* ===== HERO SECTION ===== */
        .hero-premium {
            background-image: linear-gradient(135deg, rgba(15, 24, 48, 0.85) 0%, rgba(30, 42, 90, 0.75) 100%),
                url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-premium::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
            border-radius: var(--gx-r-circle);
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .hero-premium::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: var(--gx-r-circle);
            animation: float 8s ease-in-out infinite reverse;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 750px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 650px;
            text-shadow: 0 1px 8px rgba(0,0,0,0.2);
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Floating shapes */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .floating-shapes span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(240, 185, 11, 0.08);
            border-radius: var(--gx-r-circle);
            animation: floatShape 20s infinite linear;
        }

        .floating-shapes span:nth-child(1) { left: 5%; animation-duration: 18s; animation-delay: 0s; width: 30px; height: 30px; }
        .floating-shapes span:nth-child(2) { left: 15%; animation-duration: 22s; animation-delay: 2s; width: 15px; height: 15px; }
        .floating-shapes span:nth-child(3) { left: 25%; animation-duration: 16s; animation-delay: 4s; width: 40px; height: 40px; background: rgba(255,255,255,0.05); }
        .floating-shapes span:nth-child(4) { left: 40%; animation-duration: 24s; animation-delay: 1s; width: 25px; height: 25px; }
        .floating-shapes span:nth-child(5) { left: 55%; animation-duration: 20s; animation-delay: 3s; width: 35px; height: 35px; }
        .floating-shapes span:nth-child(6) { left: 70%; animation-duration: 19s; animation-delay: 5s; width: 20px; height: 20px; }
        .floating-shapes span:nth-child(7) { left: 85%; animation-duration: 23s; animation-delay: 2s; width: 45px; height: 45px; background: rgba(240,185,11,0.05); }
        .floating-shapes span:nth-child(8) { left: 95%; animation-duration: 21s; animation-delay: 4s; width: 15px; height: 15px; }

        @keyframes floatShape {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        @media (max-width: 768px) {
            .hero-premium {
                padding: 3rem 0;
                background-attachment: scroll;
            }

            .hero-title {
                font-size: var(--gx-fs-4xl);
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .hero-cta {
                gap: 0.75rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* ===== TRUST SECTION ===== */
        .trust-section {
            background: white;
            padding: 4rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-item .trust-value {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: var(--gx-fs-2xl);
        }

        .trust-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ===== WHY CHOOSE SECTION ===== */
        .why-choose {
            background: var(--bg-light);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .why-card {
            padding: 2.5rem;
            border-radius: var(--gx-r-lg);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: none;
            background: var(--gx-white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        /* Different gradient backgrounds for each card */
        .why-card:nth-child(1) { background: linear-gradient(145deg, var(--gx-white), #f0f4ff); }
        .why-card:nth-child(2) { background: linear-gradient(145deg, var(--gx-white), #fff5f0); }
        .why-card:nth-child(3) { background: linear-gradient(145deg, var(--gx-white), #f0fff4); }
        .why-card:nth-child(4) { background: linear-gradient(145deg, var(--gx-white), #fdf0ff); }
        .why-card:nth-child(5) { background: linear-gradient(145deg, var(--gx-white), #fff8f0); }
        .why-card:nth-child(6) { background: linear-gradient(145deg, var(--gx-white), #f0f8ff); }

        /* Glow effect on hover - each card has different color */
        .why-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            transition: all 0.6s ease;
            opacity: 0;
            z-index: 0;
        }

        .why-card:nth-child(1)::before { background: radial-gradient(circle at center, rgba(30, 42, 90, 0.15) 0%, transparent 70%); }
        .why-card:nth-child(2)::before { background: radial-gradient(circle at center, rgba(240, 185, 11, 0.2) 0%, transparent 70%); }
        .why-card:nth-child(3)::before { background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%); }
        .why-card:nth-child(4)::before { background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%); }
        .why-card:nth-child(5)::before { background: radial-gradient(circle at center, rgba(236, 72, 153, 0.2) 0%, transparent 70%); }
        .why-card:nth-child(6)::before { background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%); }

        .why-card:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .why-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .why-card:nth-child(1):hover { box-shadow: 0 20px 60px rgba(30, 42, 90, 0.15); }
        .why-card:nth-child(2):hover { box-shadow: 0 20px 60px rgba(240, 185, 11, 0.2); }
        .why-card:nth-child(3):hover { box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2); }
        .why-card:nth-child(4):hover { box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2); }
        .why-card:nth-child(5):hover { box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2); }
        .why-card:nth-child(6):hover { box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2); }

        .why-card * {
            position: relative;
            z-index: 1;
        }

        .why-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .why-card:hover .why-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .why-card h3 {
            margin-bottom: 0.75rem;
            color: var(--primary);
        }

        .why-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* ===== COURSES SECTION ===== */
        .courses-section {
            background: white;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .course-card {
            background: white;
            border-radius: var(--gx-r-lg);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid var(--border-color);
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            border-color: var(--accent);
        }

        .course-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        .course-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .course-card:hover .course-img {
            transform: scale(1.05);
        }

        .course-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .course-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .course-badge {
            display: inline-block;
            background: rgba(240, 185, 11, 0.95);
            color: var(--primary-dark);
            padding: 0.4rem 1rem;
            border-radius: var(--gx-r-xl);
            font-size: var(--gx-fs-xs);
            font-weight: 700;
            text-transform: uppercase;
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
        }

        .course-badge.coming-soon {
            background: rgba(30, 42, 90, 0.9);
            color: white;
            box-shadow: 0 4px 15px rgba(30, 42, 90, 0.3);
        }

        .course-badge.coming-soon i {
            margin-right: 6px;
        }

        .course-body {
            padding: 1.75rem;
        }

        .course-title {
            font-size: var(--gx-fs-xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .course-description {
            color: var(--text-secondary);
            font-size: var(--gx-fs-md);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 1.25rem;
            font-size: var(--gx-fs-sm);
            color: var(--text-secondary);
        }

        .course-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .course-meta i {
            color: var(--accent);
        }
        /* A popular-course card can now carry duration, mode and price,
           so the row wraps instead of squeezing three chips onto one
           line on narrow cards. */
        .course-meta {
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }

        .course-price-was {
            color: var(--text-secondary);
            opacity: 0.7;
            font-weight: 400;
        }


        .course-btn {
            width: 100%;
            justify-content: center;
            padding: 0.75rem;
            border-radius: var(--gx-r);
        }

        .course-btn i {
            transition: transform 0.3s ease;
        }

        .course-btn:hover i {
            transform: translateX(5px);
        }

        /* ===== ECOSYSTEM SECTION ===== */
        .ecosystem-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
        }

        .ecosystem-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .ecosystem-visual {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            min-height: 400px;
            background: rgba(240, 185, 11, 0.1);
            border: 2px solid rgba(240, 185, 11, 0.2);
        }

        .ecosystem-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
        }

        .ecosystem-visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 24, 48, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.4s ease;
            cursor: pointer;
            border-radius: 24px;
        }

        .ecosystem-visual-overlay i {
            font-size: 4rem;
            color: var(--accent);
            margin-bottom: 1rem;
            transition: transform 0.4s ease;
        }

        .ecosystem-visual-overlay span {
            font-size: var(--gx-fs-lg);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .ecosystem-visual:hover .ecosystem-visual-overlay {
            background: rgba(15, 24, 48, 0.6);
        }

        .ecosystem-visual:hover .ecosystem-visual-overlay i {
            transform: scale(1.1);
        }

        .ecosystem-content h2 {
            color: white;
            margin-top: 0;
        }

        .ecosystem-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .ecosystem-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem;
            border-radius: var(--gx-r);
            transition: var(--gx-transition);
            background: rgba(255,255,255,0.05);
        }

        .ecosystem-item:hover {
            background: rgba(240, 185, 11, 0.1);
            transform: translateX(5px);
        }

        .ecosystem-item .icon {
            font-size: 2rem;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .ecosystem-item h3 {
            color: white;
            font-size: var(--gx-fs-base);
            margin-bottom: 0.25rem;
        }

        .ecosystem-item p {
            color: rgba(255, 255, 255, 0.85);
            font-size: var(--gx-fs-md);
            margin: 0;
        }

        @media (max-width: 768px) {
            .ecosystem-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .ecosystem-visual {
                min-height: 250px;
            }

            .ecosystem-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* ===== JOURNEY SECTION ===== */
        .journey-section {
            background: white;
        }

        .journey-timeline {
            display: grid;
            /* Six steps in two rows of three. auto-fit with a 140px minimum put
               every step on one line — seven columns of about 150px, each
               holding a heading, a sentence and a label. */
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
            position: relative;
        }


        .journey-step {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 1.75rem;
            text-align: center;
            transition: var(--gx-transition);
            position: relative;
        }

        .journey-step:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .journey-number {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: var(--gx-r-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--gx-fs-2xl);
            margin: 0 auto 1rem;
        }

        .journey-step h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .journey-step p {
            font-size: var(--gx-fs-md);
            color: var(--text-secondary);
            margin: 0;
        }

        .journey-arrow {
            display: none;
            position: absolute;
            right: -35px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: var(--gx-fs-2xl);
        }

        .journey-step:not(:last-child) .journey-arrow {
            display: block;
        }

        @media (max-width: 1024px) {
            .journey-timeline { gap: 1rem; }

            .journey-arrow {
                display: none;
            }

            .journey-step {
                padding: 1.5rem;
            }

            .journey-number {
                width: 45px;
                height: 45px;
                font-size: 1.25rem;
            }
        }

        /* ===== INTERNSHIP SECTION ===== */
        .internship-section {
            background: linear-gradient(135deg, rgba(240, 185, 11, 0.08) 0%, rgba(30, 42, 90, 0.05) 100%);
        }

        .internship-flow {
            display: flex;
            align-items: stretch;
            gap: 0;
            margin-top: 2.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .flow-box {
            flex: 1;
            min-width: 180px;
            max-width: 220px;
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        /* Per-card accent, read by every hover rule below.
           nth-CHILD, not nth-of-type: .flow-connector is a <div> too, so the
           boxes sit at child positions 1, 3, 5 and 7. nth-of-type counted every
           div and handed two of the colours to the connectors. */
        .internship-flow .flow-box:nth-child(1) { --flow-accent: #2563eb; }  /* Training   */
        .internship-flow .flow-box:nth-child(3) { --flow-accent: #7c3aed; }  /* Projects   */
        .internship-flow .flow-box:nth-child(5) { --flow-accent: #0d9488; }  /* Internship */
        .internship-flow .flow-box:nth-child(7) { --flow-accent: #f59e0b; }  /* Career     */

        .flow-box {
            transition: transform .25s ease, box-shadow .25s ease,
                        border-color .25s ease, background .25s ease;
        }

        .flow-box:hover {
            /* Was border-color: var(--primary) on all three, so hovering any
               card looked the same. Each now tints to its own accent. */
            border-color: var(--flow-accent, var(--primary));
            background: linear-gradient(160deg,
                        color-mix(in srgb, var(--flow-accent, #2563eb) 9%, #fff),
                        #fff 70%);
            transform: translateY(-6px);
            box-shadow: 0 14px 40px color-mix(in srgb, var(--flow-accent, #2563eb) 26%, transparent);
        }

        .flow-box .flow-icon { transition: transform .25s ease; }
        .flow-box:hover .flow-icon { transform: scale(1.14) rotate(-4deg); }
        .flow-box:hover h3 { color: var(--flow-accent, var(--primary)); }
        .flow-box:hover .flow-progress {
            background: var(--flow-accent, var(--primary));
            color: #fff;
        }

        /* .flow-box.highlight sets a gradient background with the same
           specificity as .flow-box:hover and appears after it, so it won and the
           Career card never changed on hover. Two classes plus :hover beats it. */
        .flow-box.highlight:hover {
            border-color: var(--flow-accent, var(--primary));
            background: linear-gradient(135deg,
                        var(--flow-accent, var(--primary)) 0%,
                        color-mix(in srgb, var(--flow-accent, #f59e0b) 72%, #000) 100%);
            box-shadow: 0 14px 40px color-mix(in srgb, var(--flow-accent, #f59e0b) 34%, transparent);
        }
        /* That card's resting text is already light, so keep it light. */
        .flow-box.highlight:hover h3,
        .flow-box.highlight:hover p { color: #fff; }
        .flow-box.highlight:hover .flow-progress {
            background: rgba(255, 255, 255, .22);
            color: #fff;
        }

        @media (prefers-reduced-motion: reduce) {
            .flow-box, .flow-box .flow-icon { transition: none; }
            .flow-box:hover, .flow-box:hover .flow-icon { transform: none; }
        }

        .flow-box.highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-color: var(--primary);
        }

        .flow-box.highlight h4,
        .flow-box.highlight p,
        .flow-box.highlight .flow-progress {
            color: white;
        }

        .flow-box.highlight .flow-icon {
            filter: brightness(10);
        }

        .flow-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .flow-box h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: var(--gx-fs-lg);
        }

        .flow-box p {
            font-size: var(--gx-fs-sm);
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        .flow-progress {
            margin-top: 1rem;
            font-size: var(--gx-fs-xxs);
            font-weight: 700;
            color: var(--accent-ink);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .flow-connector {
            display: flex;
            align-items: center;
            padding: 0 0.5rem;
            color: var(--accent);
            font-size: var(--gx-fs-2xl);
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .internship-flow {
                gap: 1rem;
            }

            .flow-box {
                min-width: 150px;
                max-width: 100%;
                flex: 0 0 calc(50% - 1rem);
            }

            .flow-connector {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .flow-box {
                flex: 0 0 100%;
            }
        }

        /* ===== PLACEMENTS ===== */
        .placement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .placement-card {
            background: white;
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: var(--gx-transition);
        }

        .placement-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        /* ===== INSTITUTE MANAGEMENT ===== */
        .institute-section {
            background: white;
        }

        .institute-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .institute-visual {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            border-radius: var(--gx-r-lg);
            padding: 2rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }

        .institute-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .feature-item h3 {
            color: var(--primary);
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        .feature-item p {
            font-size: var(--gx-fs-sm);
            color: var(--text-secondary);
            margin: 0;
        }

        @media (max-width: 768px) {
            .institute-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .institute-visual {
                min-height: 250px;
                font-size: 3rem;
            }

            .institute-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* ===== SERVICES ===== */
        .services-section {
            background: white;
        }

        .services-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .service-category h3 {
            color: var(--primary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }

        .service-list {
            display: grid;
            gap: 1.25rem;
        }

        .service-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: var(--gx-r);
            background: var(--bg-light);
            transition: var(--gx-transition);
        }

        .service-item:hover {
            background: linear-gradient(135deg, rgba(240, 185, 11, 0.1) 0%, rgba(30, 42, 90, 0.05) 100%);
        }

        .service-bullet {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            border-radius: var(--gx-r-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: var(--gx-fs-sm);
            flex-shrink: 0;
        }

        .service-item h3 {
            color: var(--primary);
            margin-bottom: 0.25rem;
            font-size: var(--gx-fs-base);
        }

        .service-item p {
            font-size: var(--gx-fs-md);
            color: var(--text-secondary);
            margin: 0;
        }

        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* ===== FOUNDER ===== */
        .founder-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
        }
.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: #93c5fd;
}
        .founder-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .founder-image {
            text-align: center;
        }

        .founder-image-placeholder {
            width: 280px;
            height: 280px;
            background: rgba(240, 185, 11, 0.1);
            border: 3px solid var(--accent);
            border-radius: 16px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .founder-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-top: 1rem;
            color: white;
        }

        .founder-title {
            color: var(--accent);
            font-size: var(--gx-fs-base);
        }

        .founder-content h3 {
            color: white;
            margin-top: 0;
        }

        .founder-content p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .founder-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .founder-image-placeholder {
                width: 220px;
                height: 220px;
                font-size: 3rem;
            }
        }

        /* ===== AFFILIATIONS ===== */
        .affiliations-section {
            background: white;
        }

        .affiliations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .affiliation-item {
            text-align: center;
            padding: 1.5rem;
            border: 2px solid var(--border-color);
            border-radius: 16px;
            background: var(--bg-light);
            transition: var(--gx-transition);
        }

        .affiliation-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }

        .affiliation-icon {
            font-size: var(--gx-fs-5xl);
            margin-bottom: 0.75rem;
            display: block;
        }

        .affiliation-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--gx-r);
            margin-bottom: 1rem;
            transition: var(--gx-transition);
        }

        .faq-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            -webkit-user-select: none;
            user-select: none;
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--gx-r-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            margin: 0;
            color: var(--text-secondary);
        }

        /* ===== FINAL CTA ===== */
        .final-cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            text-align: center;
            padding: 4rem 0;
        }

        .final-cta-heading {
            font-size: var(--gx-fs-5xl);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .final-cta-text {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            padding: 1rem 2rem;
        }

        @media (max-width: 768px) {
            .final-cta-heading {
                font-size: var(--gx-fs-3xl);
            }

            .cta-buttons {
                gap: 1rem;
            }

            .cta-buttons .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* ===== CONTACT ===== */
        .contact-section {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background: white;
        }

        .contact-form h2 {
            color: var(--primary);
            margin-top: 0;
        }

        .contact-form p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-group label {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .input-group input,
        .input-group textarea,
        .input-group select {
            padding: 0.875rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--gx-r);
            font-family: inherit;
            font-size: var(--gx-fs-base);
            transition: var(--gx-transition);
            background: white;
        }

        .input-group input:focus,
        .input-group textarea:focus,
        .input-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 42, 90, 0.1);
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            border: none;
            border-radius: var(--gx-r);
            font-weight: 700;
            font-size: var(--gx-fs-base);
            cursor: pointer;
            transition: var(--gx-transition);
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-card {
            background: var(--bg-light);
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .info-card h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .info-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 300px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
        }

        /* ===== UPCOMING MODAL ===== */
        .upcoming-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .upcoming-modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: var(--gx-r-lg);
            padding: 2.5rem;
            max-width: 420px;
            width: 100%;
            text-align: center;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--text-primary);
        }

        .modal-icon {
            font-size: 60px;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .modal-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .modal-content p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
        }

        .modal-actions .btn {
            flex: 1;
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            .modal-content {
                padding: 1.5rem;
            }

            .modal-actions {
                flex-direction: column;
            }
        }

        /* ===== HOMEPAGE VISUAL REFRESH (AUG 2026) ===== */
        .gx-hero.gx-home-hero {
            isolation: isolate;
            /* Fill the screen below the header, the way the reference hero fills
               the whole viewport. 109px = 36px notice bar + 73px nav, which sit
               above this section; without subtracting them a 100vh hero would
               hang 109px below the fold. */
            min-height: calc(100vh - 109px);
            display: grid;
            align-items: center;
            /* Reference: 72px top, 60px bottom. Was up to 124px, which pushed
               the enquiry card's submit button off a 760px laptop screen. */
            padding-block: clamp(2.5rem, 8vh, 4.5rem) clamp(2rem, 6.7vh, 3.75rem);
            background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=2200&q=85');
            background-position: center;
            background-size: cover;
            color: var(--gx-white);
        }
/* ===== HERO CONTACT FORM — FULLY FIXED ===== */
.gx-home-hero__card {
    max-width: 340px;
    width: 100%;
    justify-self: end;
    overflow: hidden;
    padding: 1.25rem 1.25rem 1rem;
    background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 1.5rem;
    box-shadow: 0 28px 60px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gx-home-hero__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.85);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.gx-home-hero__card-top i:last-child {
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    color: var(--gx-brand-dark);
    background: var(--gx-accent);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.gx-home-hero__card-main p {
    font-size: 0.85rem;
    margin: 0.3rem 0 0.6rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}

/* Hero Form — fixed widths and heights */
.gx-hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.gx-hero-form__group {
    width: 100%;
}

.gx-hero-form__group input,
.gx-hero-form__group select {
    width: 100%;
    height: 42px;
    padding: 0 0.85rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 0.6rem;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 0.82rem;
    font-family: inherit;
    transition: border-color 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-sizing: border-box;
}

.gx-hero-form__group input::placeholder {
    color: rgba(255,255,255,.7);
    font-size: 0.78rem;
}
.gx-hero-form__group input:focus,
.gx-hero-form__group select:focus {
    outline: none;
    border-color: var(--gx-accent);
    background: rgba(255,255,255,.18);
}
.gx-hero-form__group select {
    color: #1e293b;
    background: rgba(255,255,255,.85);
    height: 42px;
    appearance: auto;
}
.gx-hero-form__group select option {
    color: #1e293b;
}

.gx-hero-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 42px;
    margin-top: 0.2rem;
    border: none;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, var(--gx-accent), #f59e0b);
    color: var(--gx-brand-dark);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}
.gx-hero-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Mini grid at bottom */
.gx-home-hero__mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.6rem;
}
.gx-home-hero__mini-grid div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 0.7rem;
    background: rgba(15,24,48,.27);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(255,255,255,.8);
}
.gx-home-hero__mini-grid i {
    color: #ffb077;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 800px) {
    .gx-home-hero__card {
        max-width: 100%;
        margin-top: 1.5rem;
    }
}
@media (max-width: 520px) {
    .gx-home-hero__card {
        padding: 1rem 0.8rem;
    }
    .gx-hero-form__group input,
    .gx-hero-form__group select,
    .gx-hero-form__submit {
        height: 38px;
        font-size: 0.78rem;
    }
}
        .gx-home-hero__overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                radial-gradient(circle at 87% 23%, rgba(255, 140, 66, .44), transparent 23rem),
                linear-gradient(90deg, rgba(8, 15, 40, .98) 0%, rgba(15, 24, 48, .91) 44%, rgba(15, 24, 48, .46) 100%);
        }

        .gx-home-hero::before,
        .gx-home-hero::after {
            content: '';
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            pointer-events: none;
        }

        .gx-home-hero::before {
            width: 30rem;
            height: 30rem;
            right: -13rem;
            bottom: -16rem;
            border: 1px solid rgba(255,255,255,.2);
            box-shadow: 0 0 0 3.6rem rgba(255,255,255,.04), 0 0 0 7.2rem rgba(255,255,255,.025);
        }

        .gx-home-hero::after {
            width: .7rem;
            height: .7rem;
            right: 17%;
            top: 23%;
            background: var(--gx-accent);
            box-shadow: 2.8rem 4.5rem 0 rgba(255,255,255,.78), -3rem 13rem 0 rgba(255,140,66,.8);
        }

        .gx-home-hero__grid {
            width: 100%;
            display: grid;
            /* Reference is 1fr 1fr — two equal 568px halves inside a 1200px cap.
               Ours was 1.2fr / .55fr, so the form column came out at 354px
               against the content's 773px and the card had nowhere to breathe. */
            grid-template-columns: 1fr 1fr;
            margin-inline: auto;
            align-items: center;
            gap: 4rem;                        /* 64px, as measured */
        }
        /* .gx-wrap (shared container) caps this at 1280px with the same
           specificity and lands later in the cascade, so the cap has to be
           scoped to the hero to take effect. 1200px is the reference width,
           which is what makes each column 568px instead of 588px. */
        .gx-home-hero .gx-home-hero__grid {
            /* .gx-wrap adds padding-inline: 1.25rem (20px a side) and everything
               here is border-box, so a flat 1200px cap leaves only 1160px of
               content and the columns came out 548px instead of 568px. The
               padding is added back so the CONTENT box is 1200px, matching the
               reference (whose grid carries no padding of its own). */
            max-width: calc(1200px + 2.5rem);
        }

        .gx-home-hero .gx-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            padding: .55rem .9rem;
            margin-bottom: 1.1rem;
            color: #fff0e6;
            font-size: .73rem;
            letter-spacing: .12em;
            background: rgba(255,255,255,.09);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: var(--gx-r-pill);
        }

        .gx-home-hero .gx-eyebrow::before { display: none; }
        .gx-home-hero .gx-eyebrow i { color: var(--gx-accent); }
        .gx-home-hero .gx-hero__title { color: var(--gx-white); max-width: 16ch; text-shadow: 0 10px 30px rgba(0,0,0,.2); }
        .gx-home-hero .gx-hero__title em {
            background: linear-gradient(120deg, #ffb077, #ff8c42 55%, #ffd2b3);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .gx-home-hero .gx-hero__lead { color: rgba(255,255,255,.82); max-width: 57ch; }
        .gx-home-hero .gx-btn { min-height: 3.25rem; align-items: center; padding-inline: 1.35rem; font-weight: 700; }
        .gx-home-hero .gx-btn--primary { box-shadow: 0 12px 28px rgba(255, 140, 66, .29); }
        .gx-home-hero .gx-btn--ghost { color: var(--gx-white); border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.09); }
        .gx-home-hero .gx-btn--ghost:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.72); }

        .gx-home-hero__proof { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 1.8rem; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; }
        .gx-home-hero__proof i { margin-right: .38rem; color: #ffb077; }

        .gx-home-hero__card {
            /* Reference card is 540px with 24px of padding, leaving 492px inside
               — enough for two 240px fields per row. */
            max-width: 540px;
            /* width:100% is what makes max-width mean anything here. With
               `justify-self: end` and no width, a grid item shrinks to its
               content — the card sat at 272px inside a 354px column while 340px
               was allowed, and the privacy note wrapped onto four lines. */
            width: 100%;
            justify-self: end;
            overflow: hidden;
            padding: 1.5rem;                  /* 24px, as measured */
            background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
            border: 1px solid rgba(255,255,255,.3);
            border-radius: 1.5rem;
            box-shadow: 0 28px 60px rgba(0,0,0,.25);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
        }

        .gx-home-hero__card-top { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.78); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
        .gx-home-hero__card-top i { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; color: var(--gx-brand-dark); background: var(--gx-accent); border-radius: 50%; font-size: 1.1rem; }
        .gx-home-hero__card-main { padding: 2.2rem .25rem 1.7rem; }
        .gx-home-hero__card-main strong { display: block; font-size: clamp(3.5rem, 7vw, 5.3rem); line-height: .9; letter-spacing: -.07em; }
        .gx-home-hero__card-main strong span { color: var(--gx-accent); }
        .gx-home-hero__card-main p { max-width: 18ch; margin: .85rem 0 0; color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.45; }
        .gx-home-hero__mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
        .gx-home-hero__mini-grid div { display: flex; align-items: center; gap: .55rem; padding: .75rem; border: 1px solid rgba(255,255,255,.16); border-radius: .8rem; background: rgba(15,24,48,.27); font-size: .72rem; font-weight: 700; line-height: 1.3; }
        .gx-home-hero__mini-grid i { color: #ffb077; font-size: 1.1rem; }

        .gx-stats { position: relative; z-index: 2; margin-top: clamp(-2.3rem, -4vw, -3.75rem); }
        .gx-stat { transition: transform .28s ease, box-shadow .28s ease; }
        .gx-stat:hover { transform: translateY(-6px); box-shadow: var(--gx-card-shadow-lg); }
        .why-card { border: 1px solid transparent; }
        .why-card:hover { border-color: rgba(79,70,229,.17); }
        .course-card { overflow: hidden; border: 1px solid var(--gx-line); box-shadow: var(--gx-card-shadow); }
        .course-card:hover { border-color: rgba(255,140,66,.46); box-shadow: var(--gx-card-shadow-lg); }
        .course-image-wrapper { overflow: hidden; }
        .course-img, .course-img-placeholder { transition: transform .45s ease; }
        .course-card:hover .course-img, .course-card:hover .course-img-placeholder { transform: scale(1.06); }
        .gx-head { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }

        /* Short viewports: the hero padding is clamp(4.75rem, 9vw, 7.75rem), which
           is 124px top and bottom on a wide screen. On a laptop that is only
           760px tall the notice bar and nav already take 109px, so that padding
           pushed the enquiry card 255px down and its submit button off the
           screen. Trimming it here lifts the headline too.

           This does not make the card fit entirely: 109px of header plus a
           647px card is 756px of a 760px screen, so a little scrolling is
           unavoidable at that height. It removes most of it. */


        @media (max-width: 800px) {
            .gx-home-hero { min-height: auto; background-position: 60% center; }
            .gx-home-hero__grid { grid-template-columns: 1fr; }
            /* The reference keeps its enquiry card on a phone (450px wide at a
               500px viewport) and so do we now — it is the main lead capture on
               the page, and hiding it meant phone visitors never saw a form
               until they scrolled to the section further down. */
            .gx-home-hero__card { max-width: 100%; justify-self: stretch; }
            .gx-home-hero__overlay { background: linear-gradient(90deg, rgba(8,15,40,.96), rgba(15,24,48,.8)); }
        }

        @media (max-width: 520px) {
            .gx-home-hero { padding-block: 4.5rem 4rem; }
            .gx-home-hero .gx-hero__title { font-size: clamp(2.4rem, 12vw, 3.25rem); }
            .gx-home-hero .gx-btn { width: 100%; justify-content: center; }
            .gx-home-hero__proof { display: grid; gap: .65rem; }
        }

        /* ===== WHY IGLOBEX: PREMIUM BENEFITS GRID ===== */
        .why-choose { background: linear-gradient(180deg, var(--gx-white), #f8faff); }
        .why-choose .gx-headline span { color: var(--gx-accent-ink); }
        .why-grid--premium {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.15rem;
            max-width: 1120px;
            margin-inline: auto;
        }
        .why-grid--premium .why-card {
            --why-color: #ff8c42;
            --why-tint: #fff1e6;
            min-height: 275px;
            padding: 1.9rem;
            text-align: left;
            overflow: hidden;
            background: var(--gx-white);
            border: 1px solid var(--gx-line);
            border-radius: 1.1rem;
            box-shadow: var(--gx-card-shadow);
        }
        .why-grid--premium .why-card--amber { --why-color: #f59e0b; --why-tint: #fff7df; }
        .why-grid--premium .why-card--blue { --why-color: #5b74f7; --why-tint: #edf1ff; }
        .why-grid--premium .why-card--green { --why-color: #20c77a; --why-tint: #e9fbf2; }
        .why-grid--premium .why-card--violet { --why-color: #bc5ae6; --why-tint: #faedff; }
        .why-grid--premium .why-card--cyan { --why-color: #20aee3; --why-tint: #e8f9ff; }
        .why-grid--premium .why-card--coral { --why-color: #f25b48; --why-tint: #fff0ed; }
        .why-grid--premium .why-card::before {
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            opacity: 1;
            transform: none;
            background: var(--why-color);
        }
        .why-grid--premium .why-card:nth-child(n)::before { background: var(--why-color); }
        .why-grid--premium .why-card:hover {
            transform: translateY(-7px);
            border-color: var(--why-color);
            box-shadow: var(--gx-card-shadow-lg);
        }
        .why-grid--premium .why-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.45rem; }
        .why-grid--premium .why-icon {
            display: grid;
            place-items: center;
            width: 3.25rem;
            height: 3.25rem;
            margin: 0;
            flex: 0 0 auto;
            color: var(--why-color);
            font-size: 1.3rem;
            background: var(--why-tint);
            border-radius: .85rem;
            transition: transform .3s ease, background .3s ease, color .3s ease;
        }
        .why-grid--premium .why-card:hover .why-icon { transform: translateY(-3px) rotate(0); color: var(--gx-white); background: var(--why-color); }
        .why-grid--premium .why-card h3 { max-width: 18ch; margin: 0 0 .28rem; color: var(--gx-brand-dark); font-size: 1.18rem; line-height: 1.25; }
        .why-card__value { display: block; color: var(--why-color); font-size: .78rem; font-weight: 700; }
        .why-card__value i { margin-right: .28rem; }
        .why-grid--premium .why-card p { position: relative; z-index: 1; max-width: 39ch; margin-bottom: 1.35rem; color: var(--gx-text); font-size: .92rem; line-height: 1.62; }
        .why-card__footer { position: relative; z-index: 1; display: flex; align-items: center; gap: .45rem; padding-top: 1rem; color: var(--gx-muted); border-top: 1px solid var(--gx-line-soft); font-size: .78rem; font-weight: 600; }
        .why-card__footer i { color: var(--why-color); }
        .why-card__watermark { position: absolute; z-index: 0; right: -1rem; bottom: -1.85rem; color: var(--why-color); opacity: .07; font-size: 8.5rem; }
        .why-trust {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            max-width: 850px;
            margin: 2.6rem auto 0;
            overflow: hidden;
            background: var(--gx-line);
            border: 1px solid var(--gx-line);
            border-radius: 1rem;
        }
        .why-trust div { padding: 1.05rem 1.25rem; text-align: center; background: var(--gx-white); }
        .why-trust strong { display: block; color: var(--gx-brand-dark); font-size: 1.45rem; line-height: 1.15; }
        .why-trust strong span { color: var(--gx-accent); }
        .why-trust small { display: block; margin-top: .25rem; color: var(--gx-muted); font-size: .78rem; font-weight: 600; }
        @media (max-width: 820px) { .why-grid--premium { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 560px) {
            .why-grid--premium { grid-template-columns: 1fr; }
            .why-grid--premium .why-card { min-height: 0; }
            .why-trust { grid-template-columns: 1fr; gap: 1px; }
        }

        /* ===== POPULAR COURSES: FEATURED CARD LAYOUT ===== */
        .popular-courses-section {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background:
                linear-gradient(rgba(247,250,255,.94), rgba(247,250,255,.97)),
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2200&q=80') center / cover;
        }
        .popular-courses-section::before,
        .popular-courses-section::after { content: ''; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
        .popular-courses-section::before { width: 25rem; height: 25rem; top: 18%; left: -15rem; background: rgba(91,116,247,.1); filter: blur(2px); }
        .popular-courses-section::after { width: 21rem; height: 21rem; right: -11rem; bottom: 4%; background: rgba(255,140,66,.1); }
        .popular-courses-section .gx-headline { color: var(--gx-brand-dark); }
        .popular-courses-section .gx-headline::after { content: ''; display: inline-block; width: .55rem; height: .55rem; margin: 0 0 .4rem .35rem; background: var(--gx-accent); border-radius: 50%; box-shadow: 1rem -.55rem 0 -0.08rem var(--gx-indigo); }
        .popular-course-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; max-width: 1120px; margin-inline: auto; }
        .popular-course-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 420px;
            overflow: visible;
            background: rgba(255,255,255,.96);
            border: 1px solid rgba(30,42,90,.1);
            border-radius: .8rem;
            box-shadow: 0 10px 28px rgba(15,24,48,.09);
        }
        .popular-course-card:hover { transform: translateY(-8px); border-color: rgba(79,70,229,.45); box-shadow: 0 18px 40px rgba(30,42,90,.17); }
        .popular-course-card__media { height: 150px; background: linear-gradient(135deg, #152d77, #081c56); border-radius: .75rem .75rem 0 0; }
        .popular-course-card__media::after { content: ''; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1px); background-size: .55rem .55rem; pointer-events: none; }
        .popular-course-card .course-img { position: relative; z-index: 1; opacity: .63; }
        .popular-course-card .course-img-placeholder { position: relative; z-index: 1; font-size: 3.2rem; background: transparent; }
        .popular-course-card .course-overlay { z-index: 3; top: .7rem; left: .7rem; right: .7rem; }
        .popular-course-card .course-badge { padding: .32rem .7rem; color: #2f2800; background: #ffd51c; box-shadow: none; font-size: .64rem; }
        .popular-course-card .course-badge i { margin-right: .3rem; }
        .popular-course-card .course-body { display: flex; flex: 1; flex-direction: column; padding: 2.15rem 1rem 1rem; text-align: center; }
        .popular-course-card__icon { position: absolute; z-index: 4; top: 125px; left: 50%; display: grid; width: 3.2rem; height: 3.2rem; place-items: center; transform: translateX(-50%); border: 3px solid var(--gx-white); border-radius: 50%; color: var(--gx-white); font-size: 1.45rem; background: linear-gradient(135deg, var(--gx-indigo), #e93d84); box-shadow: 0 .3rem .8rem rgba(30,42,90,.24); }
        .popular-course-card .course-title { min-height: 2.5em; margin-bottom: .35rem; color: var(--gx-brand-dark); font-size: 1rem; line-height: 1.25; }
        .popular-course-card .course-description { display: -webkit-box; overflow: hidden; min-height: 3.85em; margin-bottom: .9rem; color: var(--gx-text); font-size: .76rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
        .popular-course-card .course-meta { gap: .6rem; margin-top: auto; margin-bottom: .9rem; padding: .65rem 0; justify-content: center; border-color: var(--gx-line-soft); }
        .popular-course-card .course-meta span { gap: .3rem; color: var(--gx-text); font-size: .7rem; font-weight: 700; }
        .popular-course-card .course-meta i { display: grid; width: 1.45rem; height: 1.45rem; place-items: center; color: var(--gx-indigo); background: var(--gx-surface-tint); border-radius: 50%; }
        .popular-course-card .course-btn { min-height: 2.65rem; padding: .6rem; color: var(--gx-white); font-size: .78rem; background: linear-gradient(135deg, var(--gx-brand), #10296c); border-radius: .45rem; box-shadow: 0 .35rem .7rem rgba(15,24,48,.16); }
        .popular-course-card:nth-child(2) { border-color: #6e7dff; }
        .popular-course-card:nth-child(2) .popular-course-card__icon,
        .popular-course-card:nth-child(2) .course-btn { background: linear-gradient(135deg, #ff4f91, #e82f76); }
        .popular-course-card:nth-child(3n) .popular-course-card__icon { background: linear-gradient(135deg, #8c5bff, #4b4cf0); }
        @media (max-width: 900px) { .popular-course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 580px) { .popular-course-grid { grid-template-columns: 1fr; max-width: 350px; } .popular-course-card { min-height: 395px; } }

        /* Keep upcoming launches in the same card system, with a distinct launch cue. */
        .upcoming-courses-section { background: var(--gx-white); }
        .upcoming-courses-section .gx-headline { color: var(--gx-brand-dark); }
        .upcoming-course-card { min-height: 410px; }
        .upcoming-course-card .course-badge.coming-soon { color: var(--gx-white); background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 .3rem .7rem rgba(79,70,229,.24); }
        .upcoming-course-card .course-badge.coming-soon i { margin-right: .3rem; }
        .upcoming-course-card .popular-course-card__icon { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
        .upcoming-course-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-top: auto; }
        .upcoming-course-card__actions .btn { display: flex; min-height: 2.65rem; align-items: center; justify-content: center; padding: .55rem; border-radius: .45rem; font-size: .71rem; font-weight: 700; }
        .upcoming-course-card__actions .btn-secondary { color: var(--gx-brand); background: var(--gx-white); border: 1px solid var(--gx-brand); }
        .upcoming-course-card__actions .btn-secondary:hover { color: var(--gx-white); background: var(--gx-brand); }
        .upcoming-course-card__actions .btn-primary { background: linear-gradient(135deg, var(--gx-brand), #10296c); }

        /* ===== LEARNING JOURNEY: PREMIUM TIMELINE ===== */
        .journey-section {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background:
                linear-gradient(rgba(255,255,255,.94), rgba(249,251,255,.97)),
                url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=2200&q=80') center / cover;
        }
        .journey-section::before { content: ''; position: absolute; z-index: -1; top: 8%; right: -8rem; width: 22rem; height: 22rem; border: 2rem solid rgba(79,70,229,.045); border-radius: 50%; }
        .journey-timeline {
            /* Six steps in two rows of three. This was repeat(7, ...) — seven
               tracks for what is now six cards, each about 163px wide holding a
               heading, a sentence and a label. Three per row gives ~420px. */
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            max-width: 1160px;
            margin: 3.25rem auto 0;
            padding-top: .2rem;
        }
        @media (max-width: 900px) {
            .journey-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
        }
        @media (max-width: 560px) {
            .journey-timeline { grid-template-columns: 1fr; gap: 1rem; }
        }
        /* The gradient rail behind the row assumed all the steps sat on one
           line. With 3x2 it cuts across the middle of the first row and
           misses the second, so it is off. The numbered badges carry the
           sequence. */
        .journey-timeline::before { display: none; }
        .journey-step {
            min-height: 260px;
            padding: 1rem .8rem 1.15rem;
            text-align: center;
            border: 1px solid var(--gx-line);
            border-radius: 1rem;
            background: rgba(255,255,255,.94);
            box-shadow: var(--gx-card-shadow);
        }
        .journey-step:hover { transform: translateY(-8px); border-color: rgba(255,140,66,.65); box-shadow: var(--gx-card-shadow-lg); }
        .journey-step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.35rem; }
        .journey-number { width: 1.7rem; height: 1.7rem; margin: 0; color: var(--gx-white); font-size: .72rem; background: var(--gx-brand); }
        .journey-icon { display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--gx-indigo); font-size: 1.15rem; background: var(--gx-surface-tint); border-radius: .85rem; transition: transform .3s ease, color .3s ease, background .3s ease; }
        .journey-step:hover .journey-icon { transform: rotate(-6deg) scale(1.08); color: var(--gx-white); background: var(--gx-indigo); }
        .journey-step h3 { margin: 0 0 .65rem; color: var(--gx-brand-dark); font-size: 1rem; line-height: 1.25; }
        .journey-step p { min-height: 4.6em; margin: 0 0 1rem; color: var(--gx-text); font-size: .78rem; line-height: 1.55; }
        .journey-label { display: inline-block; padding: .36rem .55rem; color: var(--gx-accent-ink); font-size: .65rem; font-weight: 800; line-height: 1.2; background: var(--gx-accent-soft); border-radius: var(--gx-r-pill); }
        .journey-arrow, .journey-step:not(:last-child) .journey-arrow { display: none; }
        .journey-step:nth-child(2) .journey-icon { color: #0d8fd0; background: #e8f8ff; }
        .journey-step:nth-child(3) .journey-icon { color: #b047d2; background: #f9ecff; }
        .journey-step:nth-child(4) .journey-icon { color: #f05b42; background: #fff0ec; }
        .journey-step:nth-child(5) .journey-icon { color: #b47800; background: #fff8df; }
        .journey-step:nth-child(6) .journey-icon { color: #14a466; background: #e8fbf2; }
        .journey-step:nth-child(7) .journey-icon { color: #7c3aed; background: #f2ecff; }
        @media (max-width: 1120px) {
            .journey-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 800px; }
            .journey-timeline::before { display: none; }
        }
        @media (max-width: 680px) {
            .journey-timeline { grid-template-columns: 1fr 1fr; gap: .8rem; max-width: 540px; }
            .journey-step { min-height: 225px; }
        }
        @media (max-width: 420px) {
            .journey-timeline { grid-template-columns: 1fr; max-width: 310px; }
            .journey-step { min-height: 0; }
            .journey-step p { min-height: 0; }
        }

        /* ===== CONTACT: ALIGNED, PREMIUM ENQUIRY AREA ===== */
        .contact-section { background: linear-gradient(135deg, #f7f9fd, #f1f5fb); }
        .contact-grid { align-items: stretch; gap: clamp(1.5rem, 3.5vw, 3.5rem); max-width: 1120px; margin-inline: auto; }
        .contact-form { padding: clamp(1.4rem, 3vw, 2.4rem); background: var(--gx-white); border: 1px solid var(--gx-line); border-radius: 1.1rem; box-shadow: var(--gx-card-shadow); }
        .contact-form__badge { display: inline-flex; align-items: center; gap: .45rem; padding: .38rem .7rem; color: var(--gx-indigo); font-size: .71rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: var(--gx-surface-tint); border-radius: var(--gx-r-pill); }
        .contact-form h2 { margin: .9rem 0 .4rem; color: var(--gx-brand-dark); font-size: clamp(1.6rem, 2.5vw, 2.05rem); }
        .contact-form p { margin-bottom: 1.5rem; font-size: .9rem; }
        .contact-form .form-row { gap: .85rem; margin-bottom: .85rem; }
        .contact-form .input-group { gap: .38rem; margin-bottom: .85rem; }
        .contact-form .input-group label { margin: 0; color: var(--gx-ink-soft); font-size: .76rem; font-weight: 750; }
        .contact-form .input-group input,
        .contact-form .input-group textarea,
        .contact-form .input-group select { padding: .78rem .9rem; border: 1px solid #d8e1ef; border-radius: .55rem; color: var(--gx-ink); font-size: .87rem; }
        .contact-form .input-group textarea { min-height: 105px; resize: vertical; }
        .contact-form .input-group input:focus,
        .contact-form .input-group textarea:focus,
        .contact-form .input-group select:focus { border-color: var(--gx-indigo); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
        .contact-form .form-submit { min-height: 2.9rem; margin: .15rem 0 0; border-radius: .55rem; font-size: .84rem; background: linear-gradient(135deg, var(--gx-brand), var(--gx-indigo)); }
        .contact-form .form-submit:hover { transform: translateY(-2px); box-shadow: 0 .75rem 1.5rem rgba(30,42,90,.25); }
        .contact-info { gap: .9rem; margin-bottom: .9rem; }
        .info-card { min-height: 136px; padding: 1.25rem; background: rgba(255,255,255,.94); border: 1px solid var(--gx-line); border-radius: .9rem; box-shadow: var(--gx-card-shadow); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
        .info-card:hover { transform: translateY(-4px); border-color: rgba(79,70,229,.35); box-shadow: var(--gx-card-shadow-lg); }
        .info-card h3 { display: flex; align-items: center; gap: .55rem; margin-bottom: .7rem; color: var(--gx-brand-dark); font-size: .95rem; text-transform: none; }
        .info-card h3 i { display: grid; width: 1.9rem; height: 1.9rem; place-items: center; color: var(--gx-indigo); font-size: .8rem; background: var(--gx-surface-tint); border-radius: .55rem; }
        .info-card p { color: var(--gx-text); font-size: .78rem; line-height: 1.62; }
        .contact-map { height: 260px; border: 1px solid var(--gx-line); border-radius: .9rem; box-shadow: var(--gx-card-shadow); }
        @media (max-width: 768px) { .contact-form { padding: 1.3rem; } .contact-map { height: 240px; } }
    
