        :root {
            --forest: #1B5E20;
            --forest-deep: #0D3B0F;
            --emerald: #2E7D32;
            --gold: #D4A017;
            --gold-light: #F2C94C;
            --cream: #FFF8F0;
            --warm-white: #FEFCF9;
            --sand: #F5E6D3;
            --charcoal: #2D2D2D;
            --text: #3A3A3A;
            --text-light: #6B6B6B;
            --shadow: 0 4px 24px rgba(27, 94, 32, 0.08);
            --shadow-lg: 0 12px 48px rgba(27, 94, 32, 0.12);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            color: var(--text);
            background: var(--warm-white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 252, 249, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(27, 94, 32, 0.08);
            transition: box-shadow 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--forest);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 20px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--forest-deep);
            line-height: 1.2;
        }

        .logo-text span {
            display: block;
            font-size: 0.65rem;
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.92rem;
            letter-spacing: 0.3px;
            transition: color 0.25s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--forest);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--forest) !important;
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--forest-deep) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2.5px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 72px;
            background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 50%, #E8F5E9 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(27, 94, 32, 0.06) 0%, transparent 70%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(27, 94, 32, 0.08);
            border: 1px solid rgba(27, 94, 32, 0.15);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease both;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 4.5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.15;
            color: var(--forest-deep);
            margin-bottom: 20px;
            animation: fadeInUp 0.6s 0.15s ease both;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--gold);
            position: relative;
        }

        .hero h1 em::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(212, 160, 23, 0.2);
            border-radius: 4px;
            z-index: -1;
        }

        .hero p {
            font-size: 1.12rem;
            color: var(--text-light);
            max-width: 480px;
            margin-bottom: 36px;
            animation: fadeInUp 0.6s 0.3s ease both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s 0.45s ease both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Source Sans 3', sans-serif;
        }

        .btn-primary {
            background: var(--forest);
            color: white;
            box-shadow: 0 4px 16px rgba(27, 94, 32, 0.25);
        }

        .btn-primary:hover {
            background: var(--forest-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(27, 94, 32, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--forest);
            border: 2px solid rgba(27, 94, 32, 0.25);
        }

        .btn-outline:hover {
            border-color: var(--forest);
            background: rgba(27, 94, 32, 0.04);
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s 0.3s ease both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(13, 59, 15, 0.2) 100%);
        }

        .hero-float-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .float-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .float-text strong {
            display: block;
            font-size: 0.85rem;
            color: var(--charcoal);
        }

        .float-text span {
            font-size: 0.78rem;
            color: var(--text-light);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ─── STATS ─── */
        .stats {
            background: var(--forest-deep);
            padding: 0;
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .stat {
            text-align: center;
            padding: 12px;
            position: relative;
        }

        .stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, 0.12);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* ─── SECTIONS COMMON ─── */
        .section {
            padding: 100px 24px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }

        .section-tag::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--forest-deep);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 580px;
            margin-bottom: 48px;
        }

        /* ─── ABOUT ─── */
        .about {
            background: var(--warm-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -12px;
            left: -12px;
            right: 12px;
            bottom: 12px;
            border: 2px solid var(--gold);
            border-radius: 20px;
            z-index: -1;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.02rem;
            color: var(--text);
        }

        .about-values {
            display: flex;
            gap: 24px;
            margin-top: 32px;
        }

        .about-value {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--forest);
            font-size: 0.92rem;
        }

        .about-value-icon {
            width: 36px;
            height: 36px;
            background: rgba(27, 94, 32, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        /* ─── PROGRAMMES ─── */
        .programmes {
            background: linear-gradient(180deg, #F1F8E9 0%, var(--warm-white) 100%);
        }

        .programmes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .programme-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 1px solid rgba(27, 94, 32, 0.06);
        }

        .programme-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .programme-header {
            padding: 32px 32px 24px;
            position: relative;
        }

        .programme-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
        }

        .primary .programme-icon {
            background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
        }

        .secondary .programme-icon {
            background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
        }

        .programme-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--forest-deep);
            margin-bottom: 4px;
        }

        .programme-header .grade {
            font-size: 0.88rem;
            color: var(--gold);
            font-weight: 600;
        }

        .programme-body {
            padding: 0 32px 32px;
        }

        .programme-body p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .programme-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .programme-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.92rem;
            color: var(--text);
        }

        .programme-list li::before {
            content: '✓';
            width: 22px;
            height: 22px;
            background: rgba(27, 94, 32, 0.08);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--forest);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ─── WHY CHOOSE US ─── */
        .why-us {
            background: var(--warm-white);
        }

        .why-us .section-subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .why-us .section-tag,
        .why-us .section-title {
            text-align: center;
            display: block;
        }

        .why-us .section-tag::before {
            display: none;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .why-card {
            background: white;
            border-radius: 18px;
            padding: 36px 24px;
            text-align: center;
            border: 1px solid rgba(27, 94, 32, 0.06);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--forest), var(--gold));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .why-card:hover::before {
            opacity: 1;
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .why-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .why-card:nth-child(1) .why-icon {
            background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
        }

        .why-card:nth-child(2) .why-icon {
            background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
        }

        .why-card:nth-child(3) .why-icon {
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
        }

        .why-card:nth-child(4) .why-icon {
            background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
        }

        .why-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--forest-deep);
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        /* ─── CONTACT ─── */
        .contact {
            background: linear-gradient(180deg, #F1F8E9 0%, var(--cream) 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: start;
        }

        .contact-info {
            padding-top: 12px;
        }

        .contact-detail {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(27, 94, 32, 0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-detail h4 {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--forest);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 4px;
        }

        .contact-detail p {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.6;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(27, 94, 32, 0.06);
        }

        .contact-form-wrapper h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--forest-deep);
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 16px;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 1.5px solid #E0E0E0;
            border-radius: 10px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            transition: all 0.25s;
            background: var(--warm-white);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--forest);
            box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.08);
        }

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

        .form-submit {
            width: 100%;
            padding: 14px;
            background: var(--forest);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-submit:hover {
            background: var(--forest-deep);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--forest-deep);
            color: white;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--forest), var(--gold));
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 64px 24px 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.92rem;
            margin-top: 16px;
            max-width: 280px;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--gold-light);
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.25s;
        }

        .footer-col a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.25s;
        }

        .footer-socials a:hover {
            background: var(--gold);
            color: var(--forest-deep);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 968px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-image {
                order: -1;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                order: -1;
            }

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

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

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: white;
                padding: 24px;
                gap: 20px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
                border-bottom: 2px solid var(--gold);
            }

            .mobile-toggle {
                display: flex;
            }

            .stats-inner {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .stat:not(:last-child)::after {
                display: none;
            }

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

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .about-values {
                flex-direction: column;
                gap: 12px;
            }

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

            .section {
                padding: 64px 20px;
            }

            .hero-float-card {
                display: none;
            }
        }