        /* ========================================
           HOW TO APPLY PAGE - CUSTOM VARIABLES
           Emerald/Green Theme for Application Journey
           ======================================== */
        :root {
            --hta-deep: #0f2922;
            --hta-primary: #1a4d3e;
            --hta-secondary: #2d6a5a;
            --hta-accent: #3d8b74;
            --hta-light: #5aab8e;
            --hta-gold: #d4a854;
            --hta-gold-light: #e8c88a;
            --hta-cream: #faf8f5;
            --hta-sand: #f5f2ed;
            --hta-text: #2c3e3a;
            --hta-text-light: #5a6d68;
        }

        /* ========================================
           HERO SECTION - How to Apply
           ======================================== */
        .hta-hero {
            position: relative;
            min-height: 720px;
            /* background: linear-gradient(155deg, var(--hta-deep) 0%, var(--hta-primary) 40%, var(--hta-secondary) 100%); */
            background: linear-gradient(155deg, var(--er-deep) 0%, var(--er-navy) 40%, var(--er-teal) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hta-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(90, 171, 142, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hta-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(212, 168, 84, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Grid Pattern */
        .hta-hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Decorative Elements */
        .hta-hero-decor {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .hta-step-float {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            opacity: 0.08;
            animation: htaFloat 6s ease-in-out infinite;
        }

        .hta-step-float-1 { top: 15%; right: 12%; background: var(--hta-gold); color: var(--hta-deep); animation-delay: 0s; }
        .hta-step-float-2 { top: 35%; right: 8%; background: #fff; color: var(--hta-primary); animation-delay: 1s; }
        .hta-step-float-3 { top: 55%; right: 15%; background: var(--hta-light); color: #fff; animation-delay: 2s; }
        .hta-step-float-4 { top: 75%; right: 10%; background: var(--hta-gold-light); color: var(--hta-deep); animation-delay: 3s; }

        @keyframes htaFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Connecting Lines */
        .hta-connect-line {
            position: absolute;
            width: 2px;
            background: linear-gradient(180deg, rgba(212, 168, 84, 0.3) 0%, rgba(90, 171, 142, 0.3) 100%);
            animation: htaPulse 3s ease-in-out infinite;
        }

        .hta-connect-line-1 { top: 18%; right: 13%; height: 120px; }
        .hta-connect-line-2 { top: 42%; right: 11%; height: 100px; }
        .hta-connect-line-3 { top: 62%; right: 14%; height: 100px; }

        @keyframes htaPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hta-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hta-hero-content {
            max-width: 640px;
        }

        /* Badge */
        .hta-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }

        .hta-hero-badge svg {
            width: 18px;
            height: 18px;
            color: var(--hta-gold);
        }

        .hta-hero-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Hero Title */
        .hta-hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(42px, 5vw, 62px);
            font-weight: 700;
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 24px;
        }

        .hta-hero-title .accent {
            color: var(--hta-gold);
            font-style: italic;
        }

        .hta-hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            max-width: 560px;
        }

        /* Hero Highlights */
        .hta-hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hta-hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .hta-hero-highlight svg {
            width: 18px;
            height: 18px;
            color: var(--hta-gold);
        }

        /* Hero CTAs */
        .hta-hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none !important;
            padding: 16px 32px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--hta-gold) 0%, var(--hta-gold-light) 100%) !important;
            color: var(--hta-deep) !important;
            box-shadow: 0 4px 20px rgba(212, 168, 84, 0.35);
            transition: all 0.3s ease;
            border: none;
        }

        .hta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 168, 84, 0.45);
        }

        .hta-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .hta-btn-primary:hover svg {
            transform: translateX(4px);
        }

        .hta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none !important;
            padding: 16px 32px;
            border-radius: 12px;
            background: transparent !important;
            color: #ffffff !important;
            border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
            transition: all 0.3s ease;
        }

        .hta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            transform: translateY(-2px);
        }

        .hta-btn-secondary svg {
            width: 18px;
            height: 18px;
        }

        /* Hero Visual */
        .hta-hero-visual {
            position: relative;
        }

        .hta-journey-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hta-journey-step {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .hta-journey-step:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(8px);
        }

        .hta-journey-num {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .hta-journey-num.gold { background: var(--hta-gold); color: var(--hta-deep); }
        .hta-journey-num.light { background: var(--hta-light); color: #fff; }
        .hta-journey-num.accent { background: var(--hta-accent); color: #fff; }
        .hta-journey-num.white { background: rgba(255,255,255,0.15); color: #fff; }

        .hta-journey-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .hta-journey-text p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .hta-hero-floating-stat {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: linear-gradient(135deg, var(--hta-gold) 0%, var(--hta-gold-light) 100%);
            padding: 20px 28px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(212, 168, 84, 0.3);
            text-align: center;
        }

        .hta-hero-floating-stat h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--hta-deep);
            margin-bottom: 4px;
        }

        .hta-hero-floating-stat p {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--hta-primary);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Hero Responsive */
        @media (max-width: 1024px) {
            .hta-hero { padding: 120px 40px 80px; min-height: auto; }
            .hta-hero-container { grid-template-columns: 1fr; gap: 40px; }
            .hta-hero-visual { display: none; }
        }

        @media (max-width: 768px) {
            .hta-hero { padding: 100px 24px 60px; }
            .hta-hero-title { font-size: 36px; }
            .hta-hero-ctas { flex-direction: column; }
            .hta-btn-primary, .hta-btn-secondary { width: 100%; justify-content: center; }
            .hta-hero-highlights { flex-direction: column; }
        }

        /* ========================================
           SECTION 1: Application Steps
           ======================================== */
        .hta-section-1 {
            background: var(--hta-cream);
            padding: 100px 60px;
        }

        .hta-section-1-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hta-s1-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .hta-s1-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 100%);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s1-badge svg {
            width: 16px;
            height: 16px;
            color: var(--hta-gold);
        }

        .hta-s1-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #ffffff;
        }

        .hta-s1-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 16px;
        }

        .hta-s1-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: var(--hta-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Steps Grid */
        .hta-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
        }

        .hta-steps-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 16.66%;
            right: 16.66%;
            height: 3px;
            background: linear-gradient(90deg, var(--hta-gold) 0%, var(--hta-accent) 50%, var(--hta-primary) 100%);
            border-radius: 2px;
            z-index: 0;
        }

        .hta-step-card {
            position: relative;
            z-index: 1;
            background: #ffffff;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: all 0.3s ease;
        }

        .hta-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .hta-step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 20px;
            position: relative;
        }

        .hta-step-num::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px dashed currentColor;
            opacity: 0.3;
        }

        .hta-step-card:nth-child(1) .hta-step-num { background: var(--hta-gold); color: var(--hta-deep); }
        .hta-step-card:nth-child(2) .hta-step-num { background: var(--hta-accent); color: #fff; }
        .hta-step-card:nth-child(3) .hta-step-num { background: var(--hta-primary); color: #fff; }
        .hta-step-card:nth-child(4) .hta-step-num { background: var(--hta-light); color: #fff; }
        .hta-step-card:nth-child(5) .hta-step-num { background: var(--hta-secondary); color: #fff; }
        .hta-step-card:nth-child(6) .hta-step-num { background: var(--hta-deep); color: var(--hta-gold); }

        .hta-step-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            color: var(--hta-accent);
        }

        .hta-step-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--hta-deep);
            margin-bottom: 12px;
        }

        .hta-step-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--hta-text-light);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hta-step-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hta-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hta-step-link:hover {
            color: var(--hta-primary);
            gap: 10px;
        }

        .hta-step-link svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 1024px) {
            .hta-steps-grid { grid-template-columns: repeat(2, 1fr); }
            .hta-steps-grid::before { display: none; }
        }

        @media (max-width: 768px) {
            .hta-section-1 { padding: 60px 24px; }
            .hta-steps-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 2: Country-Specific Requirements
           ======================================== */
        .hta-section-2 {
            background: linear-gradient(180deg, var(--hta-sand) 0%, #ffffff 100%);
            padding: 100px 60px;
        }

        .hta-section-2-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hta-s2-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .hta-s2-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--hta-secondary) 0%, var(--hta-accent) 100%);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s2-badge svg {
            width: 16px;
            height: 16px;
            color: #fff;
        }

        .hta-s2-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #ffffff;
        }

        .hta-s2-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 16px;
        }

        .hta-s2-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: var(--hta-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Region Tabs */
        .hta-region-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .hta-region-tab {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--hta-text);
            background: #ffffff;
            border: 1.5px solid rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hta-region-tab:hover {
            border-color: var(--hta-accent);
            color: var(--hta-accent);
        }

        .hta-region-tab.active {
            background: var(--hta-primary);
            color: #ffffff;
            border-color: var(--hta-primary);
        }

        .hta-region-tab svg {
            width: 18px;
            height: 18px;
        }

        /* Countries Grid */
        .hta-countries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .hta-country-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none !important;
            display: block;
        }

        .hta-country-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            border-color: var(--hta-accent);
        }

        .hta-country-flag {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: var(--hta-sand);
        }

        .hta-country-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--hta-deep);
            margin-bottom: 8px;
        }

        .hta-country-link {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--hta-accent);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .hta-country-link svg {
            width: 14px;
            height: 14px;
        }

        .hta-s2-more {
            text-align: center;
            margin-top: 40px;
        }

        .hta-s2-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--hta-primary);
            background: transparent;
            border: 2px solid var(--hta-primary);
            text-decoration: none !important;
            transition: all 0.3s ease;
        }

        .hta-s2-more-btn:hover {
            background: var(--hta-primary);
            color: #ffffff;
        }

        .hta-s2-more-btn svg {
            width: 18px;
            height: 18px;
        }

        @media (max-width: 1024px) {
            .hta-countries-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .hta-section-2 { padding: 60px 24px; }
            .hta-countries-grid { grid-template-columns: repeat(2, 1fr); }
            .hta-region-tabs { gap: 8px; }
            .hta-region-tab { padding: 10px 16px; font-size: 0.85rem; }
        }

        @media (max-width: 480px) {
            .hta-countries-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 3: Documents Required
           ======================================== */
        .hta-section-3 {
            background: var(--hta-deep);
            padding: 100px 60px;
            position: relative;
            overflow: hidden;
        }

        .hta-section-3::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(90, 171, 142, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hta-section-3-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hta-s3-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .hta-s3-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s3-badge svg {
            width: 16px;
            height: 16px;
            color: var(--hta-gold);
        }

        .hta-s3-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.9);
        }

        .hta-s3-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .hta-s3-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Documents Grid */
        .hta-docs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .hta-doc-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .hta-doc-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .hta-doc-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .hta-doc-icon svg {
            width: 28px;
            height: 28px;
        }

        .hta-doc-icon.gold { background: var(--hta-gold); color: var(--hta-deep); }
        .hta-doc-icon.light { background: var(--hta-light); color: #fff; }
        .hta-doc-icon.accent { background: var(--hta-accent); color: #fff; }
        .hta-doc-icon.secondary { background: var(--hta-secondary); color: #fff; }
        .hta-doc-icon.primary { background: var(--hta-primary); color: #fff; }
        .hta-doc-icon.white { background: rgba(255,255,255,0.15); color: #fff; }

        .hta-doc-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .hta-doc-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hta-doc-tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hta-doc-tag.required { background: rgba(212, 168, 84, 0.2); color: var(--hta-gold); }
        .hta-doc-tag.optional { background: rgba(90, 171, 142, 0.2); color: var(--hta-light); }
        .hta-doc-tag.conditional { background: rgba(255, 255, 255, 0.1); color: rgba(255,255,255,0.7); }

        @media (max-width: 1024px) {
            .hta-docs-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hta-section-3 { padding: 60px 24px; }
            .hta-docs-grid { grid-template-columns: 1fr; }
        }

        .hta-s3-more {
            text-align: center;
            margin-top: 50px;
        }

        .hta-s3-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--hta-gold);
            color: var(--hta-deep);
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 168, 84, 0.3);
        }

        .hta-s3-more-btn:hover {
            background: var(--hta-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 168, 84, 0.4);
        }

        .hta-s3-more-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .hta-s3-more-btn:hover svg {
            transform: translateX(4px);
        }

        /* ========================================
           SECTION 4: Year-Long Admissions
           ======================================== */
        .hta-section-4 {
            background: #ffffff;
            padding: 100px 60px;
        }

        .hta-section-4-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hta-s4-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .hta-s4-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--hta-gold) 0%, var(--hta-gold-light) 100%);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s4-badge svg {
            width: 16px;
            height: 16px;
            color: var(--hta-deep);
        }

        .hta-s4-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--hta-deep);
        }

        .hta-s4-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 16px;
        }

        .hta-s4-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: var(--hta-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Year-Long Layout */
        .hta-yearlong-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Circular Calendar Visual */
        .hta-yearlong-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hta-calendar-circle {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            position: relative;
            background: linear-gradient(135deg, var(--hta-sand) 0%, #ffffff 100%);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .hta-calendar-circle::before {
            content: '';
            position: absolute;
            inset: 15px;
            border-radius: 50%;
            border: 3px dashed var(--hta-accent);
            opacity: 0.3;
            animation: spin 60s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hta-calendar-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 100%);
            width: 160px;
            height: 160px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(26, 77, 62, 0.3);
        }

        .hta-calendar-center h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .hta-calendar-center p {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .hta-month-dot {
            position: absolute;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--hta-primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: default;
        }

        .hta-month-dot:hover {
            transform: scale(1.15);
            background: var(--hta-gold);
            color: var(--hta-deep);
        }

        .hta-month-dot.highlight {
            background: var(--hta-gold);
            color: var(--hta-deep);
            width: 52px;
            height: 52px;
            font-size: 0.7rem;
        }

        /* Position months around circle */
        .hta-month-dot:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
        .hta-month-dot:nth-child(2) { top: 12%; right: 18%; }
        .hta-month-dot:nth-child(3) { top: 32%; right: 2%; }
        .hta-month-dot:nth-child(4) { top: 55%; right: 2%; }
        .hta-month-dot:nth-child(5) { top: 75%; right: 18%; }
        .hta-month-dot:nth-child(6) { bottom: 5%; left: 50%; transform: translateX(-50%); }
        .hta-month-dot:nth-child(7) { top: 75%; left: 18%; }
        .hta-month-dot:nth-child(8) { top: 55%; left: 2%; }
        .hta-month-dot:nth-child(9) { top: 32%; left: 2%; }
        .hta-month-dot:nth-child(10) { top: 12%; left: 18%; }

        /* Benefits Grid */
        .hta-yearlong-content {
            max-width: 500px;
        }

        .hta-yearlong-intro {
            margin-bottom: 32px;
        }

        .hta-yearlong-intro h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 12px;
        }

        .hta-yearlong-intro p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--hta-text-light);
            line-height: 1.7;
            margin: 0;
        }

        .hta-yearlong-benefits {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hta-yearlong-benefit {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            background: var(--hta-sand);
            border-radius: 16px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .hta-yearlong-benefit:hover {
            transform: translateX(8px);
            border-left-color: var(--hta-accent);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .hta-yearlong-benefit:nth-child(1) { border-left-color: var(--hta-gold); }
        .hta-yearlong-benefit:nth-child(2) { border-left-color: var(--hta-accent); }
        .hta-yearlong-benefit:nth-child(3) { border-left-color: var(--hta-secondary); }
        .hta-yearlong-benefit:nth-child(4) { border-left-color: var(--hta-primary); }

        .hta-benefit-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hta-benefit-icon svg {
            width: 24px;
            height: 24px;
        }

        .hta-yearlong-benefit:nth-child(1) .hta-benefit-icon { background: rgba(212, 168, 84, 0.15); color: var(--hta-gold); }
        .hta-yearlong-benefit:nth-child(2) .hta-benefit-icon { background: rgba(61, 139, 116, 0.15); color: var(--hta-accent); }
        .hta-yearlong-benefit:nth-child(3) .hta-benefit-icon { background: rgba(45, 106, 90, 0.15); color: var(--hta-secondary); }
        .hta-yearlong-benefit:nth-child(4) .hta-benefit-icon { background: rgba(26, 77, 62, 0.15); color: var(--hta-primary); }

        .hta-benefit-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--hta-deep);
            margin-bottom: 4px;
        }

        .hta-benefit-text p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--hta-text-light);
            margin: 0;
            line-height: 1.5;
        }

        /* Stats Row */
        .hta-yearlong-stats {
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 100%);
            border-radius: 20px;
            padding: 40px;
        }

        .hta-yearlong-stat {
            text-align: center;
            padding: 16px;
            position: relative;
        }

        .hta-yearlong-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.2);
        }

        .hta-yearlong-stat h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--hta-gold);
            margin-bottom: 6px;
        }

        .hta-yearlong-stat p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        /* CTA Button */
        .hta-s4-cta {
            text-align: center;
            margin-top: 40px;
        }

        .hta-s4-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--hta-gold);
            color: var(--hta-deep);
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hta-s4-cta-btn:hover {
            background: var(--hta-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 168, 84, 0.3);
        }

        .hta-s4-cta-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .hta-s4-cta-btn:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 1024px) {
            .hta-yearlong-stats { grid-template-columns: repeat(2, 1fr); }
            .hta-yearlong-stat:nth-child(2)::after { display: none; }
        }

        @media (max-width: 768px) {
            .hta-section-4 { padding: 60px 24px; }
            .hta-yearlong-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; }
            .hta-yearlong-stat::after { display: none; }
        }

        @media (max-width: 480px) {
            .hta-yearlong-stats { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 5: What Happens After You Apply
           ======================================== */
        .hta-section-5 {
            background: var(--hta-sand);
            padding: 100px 60px;
        }

        .hta-section-5-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hta-s5-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hta-s5-content {
            max-width: 540px;
        }

        .hta-s5-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--hta-accent) 0%, var(--hta-light) 100%);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s5-badge svg {
            width: 16px;
            height: 16px;
            color: #fff;
        }

        .hta-s5-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #ffffff;
        }

        .hta-s5-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 20px;
        }

        .hta-s5-desc {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--hta-text-light);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        /* Process Steps */
        .hta-process-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hta-process-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: #ffffff;
            padding: 20px 24px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--hta-accent);
            transition: all 0.3s ease;
        }

        .hta-process-step:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .hta-process-step:nth-child(1) { border-left-color: var(--hta-gold); }
        .hta-process-step:nth-child(2) { border-left-color: var(--hta-accent); }
        .hta-process-step:nth-child(3) { border-left-color: var(--hta-secondary); }
        .hta-process-step:nth-child(4) { border-left-color: var(--hta-primary); }

        .hta-process-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hta-process-icon svg {
            width: 24px;
            height: 24px;
        }

        .hta-process-step:nth-child(1) .hta-process-icon { background: rgba(212, 168, 84, 0.15); color: var(--hta-gold); }
        .hta-process-step:nth-child(2) .hta-process-icon { background: rgba(61, 139, 116, 0.15); color: var(--hta-accent); }
        .hta-process-step:nth-child(3) .hta-process-icon { background: rgba(45, 106, 90, 0.15); color: var(--hta-secondary); }
        .hta-process-step:nth-child(4) .hta-process-icon { background: rgba(26, 77, 62, 0.15); color: var(--hta-primary); }

        .hta-process-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--hta-deep);
            margin-bottom: 6px;
        }

        .hta-process-text p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--hta-text-light);
            margin: 0;
            line-height: 1.5;
        }

        /* Visual Side */
        .hta-s5-visual {
            position: relative;
        }

        .hta-s5-image {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .hta-s5-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .hta-s5-stat {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: linear-gradient(135deg, var(--hta-gold) 0%, var(--hta-gold-light) 100%);
            padding: 24px 32px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(212, 168, 84, 0.3);
            text-align: center;
        }

        .hta-s5-stat h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--hta-deep);
            margin-bottom: 4px;
        }

        .hta-s5-stat p {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--hta-primary);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (max-width: 1024px) {
            .hta-s5-layout { grid-template-columns: 1fr; gap: 40px; }
            .hta-s5-visual { order: -1; }
        }

        @media (max-width: 768px) {
            .hta-section-5 { padding: 60px 24px; }
            .hta-s5-image img { height: 300px; }
            .hta-s5-stat { position: relative; bottom: auto; left: auto; margin-top: 20px; }
        }

        /* ========================================
           SECTION 6: Need Help?
           ======================================== */
        .hta-section-6 {
            background: #ffffff;
            padding: 100px 60px;
        }

        .hta-section-6-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hta-s6-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .hta-s6-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 100%);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .hta-s6-badge svg {
            width: 16px;
            height: 16px;
            color: var(--hta-gold);
        }

        .hta-s6-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #ffffff;
        }

        .hta-s6-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--hta-deep);
            margin-bottom: 16px;
        }

        .hta-s6-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: var(--hta-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Help Cards */
        .hta-help-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .hta-help-card {
            background: var(--hta-sand);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none !important;
            display: block;
            border: 2px solid transparent;
        }

        .hta-help-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--hta-accent);
        }

        .hta-help-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hta-help-icon svg {
            width: 32px;
            height: 32px;
        }

        .hta-help-card:nth-child(1) .hta-help-icon { background: linear-gradient(135deg, var(--hta-gold) 0%, var(--hta-gold-light) 100%); color: var(--hta-deep); }
        .hta-help-card:nth-child(2) .hta-help-icon { background: linear-gradient(135deg, var(--hta-accent) 0%, var(--hta-light) 100%); color: #fff; }
        .hta-help-card:nth-child(3) .hta-help-icon { background: linear-gradient(135deg, var(--hta-secondary) 0%, var(--hta-accent) 100%); color: #fff; }
        .hta-help-card:nth-child(4) .hta-help-icon { background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 100%); color: #fff; }

        .hta-help-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--hta-deep);
            margin-bottom: 10px;
        }

        .hta-help-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--hta-text-light);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hta-help-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hta-accent);
        }

        .hta-help-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .hta-help-card:hover .hta-help-link svg {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .hta-help-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hta-section-6 { padding: 60px 24px; }
            .hta-help-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .hta-cta {
            background: linear-gradient(135deg, var(--hta-primary) 0%, var(--hta-secondary) 50%, var(--hta-accent) 100%);
            padding: 60px 60px;
            position: relative;
            overflow: hidden;
        }

        .hta-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 168, 84, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hta-cta-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hta-cta-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .hta-cta-desc {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hta-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .hta-cta .hta-btn-secondary {
            background: rgba(255, 255, 255, 0.1) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
        }

        .hta-cta .hta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2) !important;
        }

        @media (max-width: 768px) {
            .hta-cta { padding: 60px 24px; }
            .hta-cta-buttons { flex-direction: column; }
            .hta-cta-buttons .hta-btn-primary,
            .hta-cta-buttons .hta-btn-secondary { width: 100%; justify-content: center; }
        }
