        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

        :root {
            --color-primary-red: #C2211A;
            --color-primary-yellow: #E5D226;
            --color-primary-green: #49B170;
            --color-dark-gray: #1A1A1A;

            --sg-red: var(--color-primary-red);
            --sg-red-dark: #9E1912;
            --sg-yellow: var(--color-primary-yellow);
            --sg-yellow-light: #F2E365;
            --sg-green: var(--color-primary-green);
            --sg-dark: var(--color-dark-gray);
            --sg-dark-elevated: #242424;
            --sg-white: #FFFFFF;
            --sg-surface: #F9FAFB;
            --sg-border: rgba(26, 26, 26, 0.08);
            --sg-text-muted: #64748b;

            --sg-font: 'Montserrat', sans-serif;
            --sg-ease: cubic-bezier(0.16, 1, 0.3, 1);
            --sg-radius-sm: 8px;
            --sg-radius-md: 16px;
            --sg-radius-lg: 24px;
            --red: #820514;
            --red-dark: #5a0310;
            --red-light: #a0061a;
            --green: #2c703e;
            --green-light: #3a8f50;
            --sand: #d8c7a0;
            --sand-light: #ede4cc;
            --sand-dark: #c4ae82;
            --white: #ffffff;
            --off-white: #faf8f4;
            --dark: #121212;
            --gray: #4b5563;
            --gray-light: #f3f4f6;

            --gold-gradient: linear-gradient(135deg, #c4ae82 0%, #ede4cc 50%, #c4ae82 100%);
            --red-gradient: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
            --green-gradient: linear-gradient(135deg, #164723 0%, var(--green) 50%, var(--green-light) 100%);
            --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        body {
            overflow-x: hidden;
            width: 100%;
        }

        main {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        body,
        h1,
        h2,
        h3,
        h4,
        h5,
        p,
        a,
        span,
        button {
            font-family: var(--sg-font);
        }

        @keyframes premiumFadeUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatEffect {

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

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

        @keyframes glowAnimation {

            0%,
            100% {
                box-shadow: 0 20px 45px rgba(44, 112, 62, 0.35);
            }

            50% {
                box-shadow: 0 20px 55px rgba(44, 112, 62, 0.55);
            }
        }

        .glow-blob {
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(130, 5, 20, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
            z-index: 1;
        }

        .glow-blob-1 {
            top: 15%;
            left: -150px;
        }

        .glow-blob-2 {
            bottom: 20%;
            right: -150px;
        }

        /* ── ULTRA-PREMIUM EFFECTS ── */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .shimmer-btn {
            position: relative;
            overflow: hidden;
        }

        .shimmer-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            20% {
                left: 200%;
            }

            100% {
                left: 200%;
            }
        }

        .section-divider {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, rgba(216, 199, 160, 0.4), transparent);
            margin: 0;
            border: none;
        }

        .counter-value {
            display: inline-block;
        }

        .sg-hero {
            position: relative;
            background: var(--sg-dark);
            overflow: hidden;
            min-height: 92vh;
            display: flex;
        }

        .sg-hero .swiper {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
        }

        .sg-slide-inner {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }

        .sg-slide-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(194, 33, 26, 0.2) 100%);
        }

        .sg-slide-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(229, 210, 38, 0.12), transparent 45%);
            pointer-events: none;
        }

        .sg-hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .sg-hero-max {
            max-width: 850px;
        }

        .sg-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 24px;
            background: rgba(229, 210, 38, 0.08);
            border: 1px solid rgba(229, 210, 38, 0.25);
            border-radius: 50px;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
            animation: premiumFadeUp 1.2s 0.1s var(--sg-ease) both;
        }

        .sg-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--sg-yellow);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--sg-yellow);
        }

        .sg-badge-text {
            color: var(--sg-yellow);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .sg-hero-title {
            color: var(--sg-white);
            font-size: clamp(3.2rem, 5.5vw, 6rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
            animation: premiumFadeUp 1.2s 0.2s var(--sg-ease) both;
        }

        .sg-hero-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 48px;
            font-weight: 400;
            max-width: 650px;
            animation: premiumFadeUp 1.2s 0.3s var(--sg-ease) both;
        }

        .sg-btn-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: premiumFadeUp 1.2s 0.4s var(--sg-ease) both;
        }

        .sg-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 64px;
            padding: 0 48px;
            font-size: 0.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: var(--sg-radius-sm);
            transition: all 0.4s var(--sg-ease);
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .sg-btn-primary {
            background: var(--sg-red);
            color: var(--sg-white);
            border: none;
        }

        .sg-btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s var(--sg-ease);
        }

        .sg-btn-primary:hover::after {
            left: 100%;
        }

        .sg-btn-primary:hover {
            background: var(--sg-red-dark);
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(194, 33, 26, 0.3);
            color: var(--sg-white);
        }

        .sg-btn-outline {
            background: rgba(255, 255, 255, 0.03);
            color: var(--sg-white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .sg-btn-outline:hover {
            border-color: var(--sg-yellow);
            color: var(--sg-yellow);
            transform: translateY(-4px);
            background: rgba(229, 210, 38, 0.05);
        }

        .landing-section {
            padding: 9rem 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
            position: relative;
            z-index: 5;
        }

        .bg-grid-pattern {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 1;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 11px;
            font-weight: 850;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 1.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(130, 5, 20, 0.05);
            border-radius: 100px;
            border: 1px solid rgba(130, 5, 20, 0.03);
        }

        .section-title {
            font-size: clamp(2.5rem, 5.5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1.8px;
            margin-bottom: 1.75rem;
            color: var(--dark);
        }

        .section-sub {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.85;
            max-width: 700px;
            font-weight: 400;
        }

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

        .section-header .section-sub {
            margin: 0 auto;
        }

        .premium-card-border {
            background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(130, 5, 20, 0.08), rgba(216, 199, 160, 0.35)) border-box;
            border: 1px solid transparent;
            transition: var(--transition-premium);
        }

        .premium-card-border:hover {
            background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--red), var(--sand)) border-box;
            border-color: transparent;
        }

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

        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 8rem;
            align-items: center;
        }

        .about-img-wrap {
            position: relative;
        }

        .about-img-frame-back {
            position: absolute;
            inset: 2.25rem -2.25rem -2.25rem 2.25rem;
            border: 2px solid var(--sand);
            border-radius: 28px;
            z-index: 1;
            pointer-events: none;
        }

        .about-img-block {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 28px;
            overflow: hidden;
            background: var(--red-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 35px 70px -20px rgba(130, 5, 20, 0.25);
            position: relative;
            z-index: 2;
        }

        .img-placeholder {
            color: rgba(255, 255, 255, 0.15);
            font-size: 7rem;
            text-align: center;
            animation: floatEffect 6s ease-in-out infinite;
        }

        .img-placeholder p {
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--sand-light);
            margin-top: 1.5rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        .about-badge-float {
            position: absolute;
            bottom: -1rem;
            right: -1rem;
            background: var(--gold-gradient);
            color: var(--red-dark);
            padding: 2.25rem 2.5rem;
            border-radius: 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 3;
            animation: floatEffect 5.5s ease-in-out infinite alternate, glowAnimation 6s infinite;
        }

        .about-badge-float strong {
            display: block;
            font-size: 3rem;
            font-weight: 950;
            line-height: 0.95;
            letter-spacing: -1px;
        }

        .about-badge-float span {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.95;
            display: block;
            margin-top: 0.5rem;
        }

        .about-text p {
            color: var(--gray);
            line-height: 1.95;
            margin-bottom: 1.75rem;
            font-size: 1.15rem;
        }

        .about-vals {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .about-val {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            font-size: 15px;
            font-weight: 800;
            color: var(--dark);
            padding: 1.25rem 1.5rem;
            background: white;
            border-radius: 18px;
            box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.015);
            transition: var(--transition-premium);
        }

        .about-val:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 24px 40px -10px rgba(130, 5, 20, 0.08);
            border-color: rgba(130, 5, 20, 0.12);
        }

        .about-val::before {
            content: '✓';
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 6px 14px rgba(130, 5, 20, 0.25);
        }

        .pillars {
            background: white;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .pillar-card {
            border-radius: 28px;
            padding: 4rem 2.5rem;
            cursor: default;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.03);
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition-premium);
            transform-origin: left;
        }

        .pillar-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 35px 70px -20px rgba(130, 5, 20, 0.15);
        }

        .pillar-card:hover::before {
            transform: scaleX(1);
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            background: var(--red-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.75rem;
            font-size: 36px;
            box-shadow: 0 12px 30px rgba(130, 5, 20, 0.22);
            transition: var(--transition-premium);
        }

        .pillar-card:hover .pillar-icon {
            transform: scale(1.15) rotate(6deg);
            background: var(--gold-gradient);
            color: var(--red-dark);
            box-shadow: 0 12px 30px rgba(216, 199, 160, 0.35);
        }

        .pillar-card h3 {
            font-size: 1.4rem;
            font-weight: 900;
            margin-bottom: 1.25rem;
            color: var(--dark);
            letter-spacing: -0.7px;
        }

        .pillar-card p {
            font-size: 0.98rem;
            color: var(--gray);
            line-height: 1.8;
        }

        .life {
            background: var(--off-white);
        }

        .life-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 2rem;
        }

        .life-cell {
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 2.5rem;
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            transition: var(--transition-premium);
            cursor: pointer;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .life-cell:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 70px rgba(130, 5, 20, 0.25);
        }

        .life-cell:nth-child(1) {
            grid-column: span 2;
        }

        .life-cell:nth-child(4) {
            grid-column: span 2;
        }

        .life-cell:nth-child(2) {
            background: var(--green-gradient);
        }

        .life-cell:nth-child(2):hover {
            box-shadow: 0 35px 70px rgba(44, 112, 62, 0.35);
        }

        .life-cell:nth-child(3) {
            background: linear-gradient(135deg, #2a1b1f, var(--red-dark));
        }

        .life-cell:nth-child(4) {
            background: linear-gradient(135deg, var(--green-light), #10381b);
        }

        .life-cell:nth-child(4):hover {
            box-shadow: 0 35px 70px rgba(16, 56, 27, 0.35);
        }

        .life-cell:nth-child(5) {
            background: linear-gradient(135deg, #4d020a, var(--red-dark));
        }

        .life-cell-inner {
            color: white;
            position: relative;
            z-index: 2;
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px);
            padding: 1.5rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .life-cell-inner span {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            opacity: 0.85;
            color: var(--sand);
        }

        .life-cell-inner strong {
            display: block;
            font-size: 1.45rem;
            font-weight: 900;
            margin-top: 0.5rem;
            letter-spacing: -0.6px;
        }

        .life-cell-bg {
            position: absolute;
            inset: 0;
            opacity: 0.18;
            font-size: 10rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-premium);
            pointer-events: none;
        }

        .life-cell:hover .life-cell-bg {
            transform: scale(1.2) rotate(10deg);
            opacity: 0.32;
        }

        .achievements {
            background: white;
        }

        .ach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .ach-card {
            border-radius: 28px;
            padding: 3.5rem 2.5rem;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
        }

        .ach-card:hover {
            box-shadow: 0 35px 70px -25px rgba(130, 5, 20, 0.15);
            transform: translateY(-10px);
        }

        .ach-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(130, 5, 20, 0.06);
            color: var(--red);
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 850;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 2.25rem;
            border: 1px solid rgba(130, 5, 20, 0.05);
        }

        .ach-card h3 {
            font-size: 1.4rem;
            font-weight: 900;
            margin-bottom: 1.25rem;
            color: var(--dark);
            line-height: 1.35;
            letter-spacing: -0.7px;
        }

        .ach-card p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.8;
        }

        .ach-year {
            margin-top: 2rem;
            font-size: 13px;
            font-weight: 850;
            color: var(--green);
            letter-spacing: 1px;
            text-transform: uppercase;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 1.5rem;
        }

        .character {
            background: linear-gradient(135deg, var(--green) 0%, #102d18 100%);
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.3);
        }

        .character::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px, transparent 0, transparent 50%);
            background-size: 32px 32px;
        }

        .character .container {
            position: relative;
            z-index: 5;
        }

        .character .section-tag {
            color: var(--sand-light);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .character .section-title {
            color: white;
        }

        .character-body {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 8rem;
            align-items: center;
        }

        .character-text p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.95;
            font-size: 1.18rem;
            margin-bottom: 3rem;
        }

        .character-values {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .char-val {
            display: flex;
            align-items: center;
            gap: 1.75rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            padding: 1.75rem 2.25rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition-premium);
        }

        .char-val:hover {
            transform: translateX(15px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
        }

        .char-val-icon {
            font-size: 30px;
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .char-val-text strong {
            display: block;
            font-size: 1.2rem;
            font-weight: 900;
            color: white;
            letter-spacing: -0.4px;
        }

        .char-val-text span {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.78);
            display: block;
            margin-top: 0.25rem;
        }

        .levels {
            background: var(--off-white);
        }

        .levels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .level-card {
            border-radius: 32px;
            overflow: hidden;
            background: white;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
            transition: var(--transition-premium);
        }

        .level-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.09);
        }

        .level-img {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5.5rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-premium);
        }

        .level-card:nth-child(1) .level-img {
            background: linear-gradient(135deg, #fcebeb, #f5bebe);
        }

        .level-card:nth-child(2) .level-img {
            background: linear-gradient(135deg, #e7edf0, #b7dbb2);
        }

        .level-card:nth-child(3) .level-img {
            background: linear-gradient(135deg, #e9eef5, #abc1e3);
        }

        .level-body {
            padding: 3.5rem 2.75rem;
        }

        .level-tag {
            font-size: 10px;
            font-weight: 850;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .level-body h3 {
            font-size: 1.55rem;
            font-weight: 900;
            margin-bottom: 1.25rem;
            color: var(--dark);
            letter-spacing: -0.6px;
        }

        .level-body p {
            font-size: 1.02rem;
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 2.25rem;
        }

        .btn-link {
            color: var(--red);
            font-size: 14px;
            font-weight: 900;
            text-decoration: none;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition-premium);
            position: relative;
        }

        .btn-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: var(--transition-premium);
        }

        .btn-link:hover::after {
            width: 100%;
        }

        .btn-link:hover {
            gap: 0.9rem;
            color: var(--red-dark);
        }

        .testimonials {
            background: white;
        }

        .testi-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .testi-card {
            border-radius: 28px;
            padding: 3.5rem 2.75rem;
            border-top: 6px solid var(--red);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.015);
            position: relative;
        }

        .testi-card:hover {
            box-shadow: 0 40px 85px rgba(0, 0, 0, 0.08);
            background: white;
            transform: translateY(-8px);
        }

        .testi-stars {
            color: #d8a735;
            font-size: 16px;
            margin-bottom: 1.75rem;
            letter-spacing: 3px;
        }

        .testi-text {
            font-size: 1.08rem;
            color: var(--dark);
            line-height: 1.9;
            font-style: italic;
            margin-bottom: 2.75rem;
            position: relative;
            z-index: 2;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 1.75rem;
        }

        .testi-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(130, 5, 20, 0.25);
        }

        .testi-name strong {
            display: block;
            font-size: 1.08rem;
            font-weight: 900;
            color: var(--dark);
        }

        .testi-name span {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 0.2rem;
            display: block;
        }

        .admissions-cta {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #c4142a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.3);
            border-radius: 36px;
            margin: 0 2.5rem 7rem;
        }

        .admissions-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 0, transparent 50%);
            background-size: 26px 26px;
        }

        .admissions-cta .container {
            position: relative;
            z-index: 5;
        }

        .admissions-cta .section-tag {
            color: var(--sand-light);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .admissions-cta .section-title {
            color: white;
        }

        .admissions-cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            margin-bottom: 4rem;
            line-height: 1.9;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btns {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-sand {
            background: var(--sand);
            color: var(--red-dark);
            padding: 1.4rem 4rem;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 900;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: var(--transition-premium);
            border: none;
            box-shadow: 0 12px 30px rgba(216, 199, 160, 0.35);
        }

        .btn-sand:hover {
            background: var(--sand-dark);
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(216, 199, 160, 0.55);
        }

        .btn-outline-white {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 1.4rem 4rem;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 900;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: var(--transition-premium);
            border: 2px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: white;
            transform: translateY(-5px);
        }

        @media(max-width: 1024px) {
            .pillars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .testi-slider {
                grid-template-columns: repeat(2, 1fr);
            }

            .testi-slider .testi-card:last-child {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 4.5rem;
            }

            .about-img-wrap {
                max-width: 450px;
                margin: 0 auto;
            }

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

            .character-body {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .admissions-cta {
                margin: 0 1.5rem 5rem;
            }
        }

        @media(max-width: 768px) {
            .pillars-grid,
            .levels-grid,
            .ach-grid,
            .life-grid,
            .testi-slider,
            .values-grid {
                grid-template-columns: 1fr;
            }

            .life-cell:nth-child(1),
            .life-cell:nth-child(4) {
                grid-column: span 1;
            }

            .life-grid {
                grid-template-rows: auto;
                height: auto;
            }

            .life-cell {
                height: 240px;
            }

            .hero-stats {
                gap: 2rem;
                justify-content: center;
            }

            .hero-btns,
            .cta-btns {
                flex-direction: column;
            }

            .about-badge-float {
                right: 0;
                bottom: -1rem;
            }

            .about-vals {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 2rem;
            }

            .about-text .sg-btn, .character-text .btn-sand, .admissions-cta .btn-sand {
                width: 100%;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* Responsive Hero Adjustments */
            .sg-hero {
                min-height: 85vh;
            }
            .sg-hero-title {
                font-size: 2.5rem !important;
                line-height: 1.15;
                margin-bottom: 1.5rem;
                letter-spacing: -1px;
            }

            .sg-hero-desc {
                font-size: 1rem;
                margin-bottom: 2rem;
                line-height: 1.6;
            }

            .sg-btn-group {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .sg-btn {
                width: 100%;
                text-align: center;
                padding: 0 20px;
                height: 56px;
                font-size: 0.85rem;
            }

            .sg-badge {
                padding: 8px 16px;
                margin-bottom: 1.5rem;
            }
            
            .sg-badge-text {
                font-size: 0.7rem;
            }

            .section-title {
                font-size: 2.2rem !important;
                margin-bottom: 1rem;
            }

            .section-sub {
                font-size: 1rem;
                line-height: 1.6;
            }

            .landing-section {
                padding: 5rem 0;
            }

            .about-grid {
                gap: 3rem;
            }
            
            .sg-stats-bar .container > div {
                gap: 2rem !important;
                flex-direction: column;
            }
            
            .sg-stats-bar span:first-child {
                font-size: 2.2rem !important;
            }
        }
