/* ==========================================================================
   1. GLOBAL SYSTEM VARIABLES & CANVAS RESET
   ========================================================================== */
:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #128807;
    --navy: #000080;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-canvas: #f6f9f6;
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    --glass-border: rgba(18, 136, 7, 0.15);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body { 
    background-color: var(--bg-canvas); 
    color: var(--text-dark); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
}

/* Shared Structural Blueprint Containers */
.section-wrapper { 
    max-width: 1240px; 
    margin: 60px auto; 
    padding: 0 20px; 
}

.premium-title-block { 
    text-align: center; 
    margin-bottom: 50px; 
}
.premium-title-block h2 { 
    font-size: 34px; 
    font-weight: 800; 
    color: var(--text-dark); 
    letter-spacing: -0.5px; 
}
.premium-title-block p { 
    color: var(--text-light); 
    font-size: 16px; 
    margin-top: 8px; 
}

/* Shared Component Hero Layouts */
.page-hero {
    background: radial-gradient(circle at top right, #fffdf9 0%, #f0faf4 100%);
    padding: 90px 20px 70px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}
.page-hero h1 { 
    font-size: 44px; 
    font-weight: 800; 
    color: var(--navy); 
    letter-spacing: -1px; 
    margin-bottom: 16px; 
}
.page-hero h1 span { color: var(--saffron); }
.page-hero p { 
    font-size: 18px; 
    color: var(--text-light); 
    max-width: 650px; 
    margin: 0 auto; 
}

/* Shared Grid Layout Arrays */
.modern-feature-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
    margin-bottom: 60px; 
}
.modern-card {
    background: var(--white); 
    border-radius: 16px; 
    padding: 40px 30px; 
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow); 
    transition: all 0.3s ease; 
    position: relative;
}
.modern-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.modern-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--saffron); border-radius: 16px 16px 0 0; }
.modern-card:nth-child(2)::before { background: var(--navy); }
.modern-card:nth-child(3)::before { background: var(--green); }
.card-icon { font-size: 36px; color: var(--navy); margin-bottom: 20px; }
.modern-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.modern-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.6; }
.modern-card a { color: var(--green); font-weight: 700; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; }
.modern-card a:hover { text-decoration: underline; }

/* Global UI Button Framework */
.action-primary-btn {
    background: linear-gradient(135deg, var(--green) 0%, #0d5c05 100%) !important;
    color: var(--white) !important;
    padding: 14px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 10px 20px rgba(18, 136, 7, 0.2) !important;
    transition: all 0.3s !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 15px;
}
.action-primary-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(18, 136, 7, 0.3) !important;
    color: var(--white) !important;
}

/* ==========================================================================
   2. NAVIGATION BAR & 3D WAVING FLAG ANIMATION ENGINE
   ========================================================================== */
.top-bar { 
    background-color: var(--navy); 
    color: var(--white); 
    text-align: center; 
    padding: 8px 10px; 
    font-size: 13px; 
    font-weight: 500; 
}
.top-bar a { 
    color: var(--saffron); 
    text-decoration: none; 
    font-weight: 600; 
    margin-left: 5px; 
}

header { 
    background-color: var(--white); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 3px solid var(--saffron); 
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1260px; 
    margin: 0 auto; 
    padding: 14px 20px; 
}

.logo-container { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.logo { 
    font-size: 26px; 
    font-weight: 800; 
    color: var(--navy); 
    text-decoration: none; 
    letter-spacing: -0.5px; 
}
.logo span.kart { color: var(--green); }

/* Flag Node Container Module */
.flag-mast { 
    display: flex; 
    align-items: stretch; 
    height: 28px; 
    margin-left: 8px; 
}
.flag-pole { 
    width: 3px; 
    background: linear-gradient(to right, #777, #ccc, #444); 
    border-radius: 2px 0 0 2px; 
    position: relative; 
}
.flag-pole::before { 
    content: ''; 
    position: absolute; 
    top: -4px; 
    left: -2px; 
    width: 7px; 
    height: 7px; 
    background: #d4af37; 
    border-radius: 50%; 
}

.flying-seller-flag {
    position: relative; 
    background: linear-gradient(to bottom, var(--saffron) 33.3%, var(--white) 33.3%, var(--white) 66.6%, var(--green) 66.6%);
    color: var(--navy); 
    font-size: 11px; 
    font-weight: 900; 
    padding: 4px 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    letter-spacing: 1.2px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
    overflow: hidden; 
    transform-origin: left center;
    animation: realisticWave 2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.flying-seller-flag::after {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; width: 200%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 25%, rgba(0,0,0,0.15) 50%, rgba(255,255,255,0.25) 75%, rgba(0,0,0,0) 100%);
    pointer-events: none; 
    animation: shadowShift 2s linear infinite;
}

@keyframes realisticWave {
    0% { transform: perspective(400px) rotateY(5deg) rotateX(2deg) skewY(-2deg) scaleX(0.96); }
    50% { transform: perspective(400px) rotateY(-12deg) rotateX(-3deg) skewY(3deg) scaleX(1.02); }
    100% { transform: perspective(400px) rotateY(5deg) rotateX(2deg) skewY(-2deg) scaleX(0.96); }
}
@keyframes shadowShift { 0% { transform: translateX(-50%); } 100% { transform: translateX(0%); } }

.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 15px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

.nav-btn-group { display: flex; align-items: center; gap: 12px; }
.btn-login { border: 2px solid var(--navy); color: var(--navy); padding: 9px 22px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.3s; }
.btn-login:hover { background-color: var(--navy); color: var(--white); }
.btn-start { background: linear-gradient(135deg, var(--green) 0%, #0d5c05 100%); color: var(--white); padding: 11px 24px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 14px; box-shadow: 0 4px 12px rgba(18, 136, 7, 0.2); }

.mobile-hamburger { display: none; font-size: 24px; color: var(--navy); cursor: pointer; background: none; border: none; outline: none; }

/* ==========================================================================
   3. LANDING / SUB-PAGES COMPONENT STYLES
   ========================================================================== */
.premium-hero { background: radial-gradient(circle at top left, #fffbf2 0%, #f0faf0 50%, #e6f4e6 100%); padding: 90px 20px 120px 20px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(18, 136, 7, 0.1); }
.premium-hero::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 8px; background: linear-gradient(to right, var(--saffron) 33.3%, var(--white) 33.3%, var(--white) 66.6%, var(--green) 66.6%); }
.hero-wrapper { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 153, 51, 0.1); border: 1px solid rgba(255, 153, 51, 0.3); color: #d87000; padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-headline { font-size: 46px; font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -1px; margin-bottom: 24px; }
.hero-headline span.highlight { color: var(--green); }
.hero-para { font-size: 18px; color: var(--text-light); line-height: 1.6; margin-bottom: 35px; max-width: 580px; }
.cta-action-row { display: flex; gap: 16px; flex-wrap: wrap; }
.graphic-shell { background: var(--white); border-radius: 20px; padding: 24px; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06); border: 1px solid rgba(0,0,0,0.04); }

.performance-metrics-grid { max-width: 1200px; margin: -50px auto 70px auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 20px; position: relative; z-index: 20; }
.metric-glow-card { background: var(--white); border-radius: 14px; padding: 30px 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); border: 1px solid #eef3ee; text-align: center; transition: transform 0.3s; }
.metric-glow-card:hover { transform: translateY(-4px); }
.metric-glow-card h2 { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.5px; }
.metric-glow-card:nth-child(3) h2 { color: var(--saffron); }
.metric-glow-card p { font-size: 14px; color: var(--text-light); font-weight: 600; }

.modern-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.modern-pillar-card { background: var(--white); border-radius: 16px; padding: 35px; border: 1px solid rgba(0, 0, 0, 0.03); display: flex; gap: 24px; align-items: flex-start; box-shadow: 0 4px 15px rgba(0,0,0,0.01); transition: box-shadow 0.3s; }
.modern-pillar-card:hover { box-shadow: 0 12px 25px rgba(0,0,0,0.04); }
.card-icon-frame { background: #f0fdf4; color: var(--green); width: 56px; height: 56px; min-width: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.modern-pillar-card:nth-child(even) .card-icon-frame { background: #fff7ed; color: var(--saffron); }
.card-body-content h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.card-body-content p { font-size: 14.5px; color: var(--text-light); line-height: 1.6; }

.app-journey-wrapper { background-color: var(--white); padding: 80px 20px; border-top: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; }
.modern-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 50px; }
.track-node { background: var(--bg-canvas); padding: 30px 20px; border-radius: 12px; text-align: center; border: 1px solid #e2e8f0; }
.node-badge { width: 40px; height: 40px; background: var(--navy); color: var(--white); font-weight: 700; font-size: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; box-shadow: 0 4px 10px rgba(0, 0, 128, 0.2); }
.track-node h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.track-node p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

.utility-flex-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.utility-glass-card { background: var(--white); border-radius: 16px; padding: 35px; border: 1px solid #eef3ee; display: flex; flex-direction: column; justify-content: space-between; }
    .utility-glass-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.utility-glass-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; }
.utility-glass-card a { color: var(--green); font-weight: 700; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

.premium-help-desk-panel { background: var(--bg-canvas); padding: 90px 20px; }
.glassmorphism-card-form { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: 20px; padding: 45px; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08); border: 1px solid var(--glass-border); position: relative; }
.glassmorphism-card-form::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--saffron), var(--green)); border-radius: 20px 20px 0 0; }
.interactive-row { margin-bottom: 24px; }
.interactive-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.premium-input-box { width: 100%; padding: 14px 18px; border: 1.5px solid #e2e8f0; background: #fdfdfd; border-radius: 8px; font-size: 15px; color: var(--text-dark); outline: none; transition: all 0.2s ease; }
.premium-input-box:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 4px rgba(18, 136, 7, 0.1); }
.global-submit-action-btn { width: 100%; background: linear-gradient(135deg, var(--saffron) 0%, #e07b16 100%); color: var(--white); border: none; padding: 16px; font-size: 16px; font-weight: 700; border-radius: 8px; cursor: pointer; box-shadow: 0 8px 20px rgba(255, 153, 51, 0.25); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; }
.response-alert-banner { padding: 16px; border-radius: 8px; font-size: 14.5px; font-weight: 500; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.response-alert-banner.success { background-color: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.response-alert-banner.error { background-color: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

.pricing-highlight-card { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--card-shadow); border: 1px solid rgba(18, 136, 7, 0.15); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.pricing-highlight-card::before { content: ''; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: var(--green); }
.pricing-details h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
.pricing-details p { color: var(--text-light); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; }
.pricing-badge-box { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border: 2px dashed var(--green); border-radius: 16px; padding: 40px 20px; text-align: center; }
.pricing-badge-box .fee-amount { font-size: 64px; font-weight: 900; color: var(--green); line-height: 1; }
.pricing-badge-box .fee-label { font-size: 16px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }
.comparison-table-wrapper { overflow-x: auto; margin-top: 30px; }
table.matrix-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 15px; }
table.matrix-table th { background-color: #f8fafc; padding: 16px 20px; font-weight: 700; color: var(--text-dark); border-bottom: 2px solid #e2e8f0; }
table.matrix-table td { padding: 18px 20px; border-bottom: 1px solid #edf2f7; color: var(--text-dark); }
table.matrix-table tr.highlight-row { background-color: #f0fdf4; font-weight: 600; }
.calculator-widget { background: linear-gradient(135deg, var(--navy) 0%, #000044 100%); color: var(--white); border-radius: 20px; padding: 45px; margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.calc-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 15px; color: var(--saffron); }
.calc-info p { color: #cbd5e1; font-size: 15px; line-height: 1.6; }
.calc-display-box { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 25px; }
.calc-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 15px; }
.calc-row.total-profit { font-size: 20px; font-weight: 700; color: #4ade80; }

.focus-block { background: var(--white); border-radius: 20px; padding: 50px; border: 1px solid #e2e8f0; box-shadow: var(--card-shadow); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.focus-content h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.5px; }
.focus-content p { font-size: 16px; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; }
.bullet-list { list-style: none; padding: 0; margin-bottom: 30px; }
.bullet-list li { font-size: 15px; font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.bullet-list li i { color: var(--green); }
.stats-shell { background: #fafcfa; border: 2px solid rgba(18, 136, 7, 0.15); border-radius: 14px; padding: 35px; text-align: center; }
.stats-shell h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--text-light); letter-spacing: 1px; }
.stats-num { font-size: 56px; font-weight: 900; color: var(--green); line-height: 1.1; margin: 10px 0; }
.stats-shell p { font-size: 14px; color: var(--text-dark); font-weight: 600; }
.cta-grow-banner { background: linear-gradient(135deg, var(--navy) 0%, #000044 100%); color: var(--white); border-radius: 20px; padding: 50px; text-align: center; margin-top: 60px; }
.cta-grow-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-grow-banner p { color: #cbd5e1; font-size: 16px; max-width: 600px; margin: 0 auto 30px auto; }

/* ==========================================================================
   4. GLOBAL SPECIFIC DESIGN FOOTER MAP
   ========================================================================== */
footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 80px 20px 40px 20px;
    position: relative;
    border-top: 5px solid var(--green);
}
footer::before {
    content: ''; position: absolute; top: -5px; left: 0; width: 50%; height: 5px; background-color: var(--saffron); z-index: 10;
}
.footer-container {
    max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-column h3 {
    font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--saffron); margin-bottom: 24px;
}
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column ul li { margin-bottom: 14px; }
.footer-column ul li a {
    color: #94a3b8; text-decoration: none; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s ease;
}
.footer-column ul li a:hover { color: var(--white); transform: translateX(4px); }
.social-icons-row { display: flex; gap: 12px; margin-top: 5px; }
.social-btn {
    width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all 0.3s ease;
}
.social-btn:hover { background: var(--white); color: #0f172a; transform: translateY(-3px); }
.footer-bottom { max-width: 1260px; margin: 0 auto; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { font-size: 13.5px; color: #64748b; font-weight: 500; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #64748b; text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }
.btn-to-top {
    position: absolute; top: -22px; right: 40px; background-color: var(--navy); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.2s; border: 2px solid var(--white); cursor: pointer;
}
.btn-to-top:hover { transform: translateY(-3px); background-color: var(--saffron); }

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS ENGINE
   ========================================================================== */
@media (max-width: 992px) {
    .mobile-hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1); flex-direction: column; align-items: flex-start; padding: 90px 30px 30px 30px; gap: 20px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: 1050;
    }
    .nav-links.active { right: 0; }
    .nav-links a { width: 100%; font-size: 18px; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
    .nav-btn-group { margin-right: 40px; }
    
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-headline { font-size: 36px; }
    .hero-para { margin: 0 auto 30px auto; }
    .cta-action-row { justify-content: center; }
    .performance-metrics-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; margin-bottom: 30px; }
    .modern-pillar-grid { grid-template-columns: 1fr; }
    .utility-flex-row { grid-template-columns: 1fr; }
    .modern-track { grid-template-columns: 1fr; gap: 20px; }
    .pricing-highlight-card { grid-template-columns: 1fr; gap: 30px; }
    .calculator-widget { grid-template-columns: 1fr; gap: 30px; }
    .focus-block { grid-template-columns: 1fr; gap: 40px; padding: 35px; }
    .modern-feature-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 480px) {
    .navbar { padding: 12px 15px; }
    .logo { font-size: 22px; }
    .flag-mast { height: 24px; }
    .flying-seller-flag { font-size: 9px; padding: 2px 10px; letter-spacing: 0.8px; }
    .btn-login { display: none; }
    .btn-start { padding: 8px 16px; font-size: 13px; }
    .premium-hero { padding: 50px 15px 80px 15px; }
    .hero-headline { font-size: 28px; }
    .cta-action-row { flex-direction: column; gap: 12px; width: 100%; }
    .performance-metrics-grid { grid-template-columns: 1fr; gap: 12px; }
    .metric-glow-card { padding: 20px; }
    .glassmorphism-card-form { padding: 25px 20px; }
    .premium-title-block h2 { font-size: 24px; }
    .pricing-highlight-card { padding: 25px 20px; }
    .pricing-details h2 { font-size: 22px; }
    .pricing-badge-box { padding: 25px 15px; }
    .pricing-badge-box .fee-amount { font-size: 48px; }
    .calculator-widget { padding: 25px 20px; }
    .focus-block { padding: 25px 20px; }
    .focus-content h2 { font-size: 24px; }
    .stats-num { font-size: 42px; }
    .cta-grow-banner { padding: 30px 20px; }
    .cta-grow-banner h2 { font-size: 24px; }
    .page-hero h1 { font-size: 28px; }
    footer { padding: 60px 15px 30px 15px; }
    .footer-container { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-column ul li a { justify-content: center; }
    .footer-column ul li a:hover { transform: none; }
    .social-icons-row { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    .footer-bottom-links { justify-content: center; gap: 16px; }
    .btn-to-top { right: 50%; transform: translateX(50%); top: -22px; }
    .btn-to-top:hover { transform: translateX(50%) translateY(-3px); }
}

/* ==========================================================================
   PREMIUM SHINING FOOTER WITH MOBILE COMPACT MATRIX & HEART PULSE
   ========================================================================== */
.premium-shining-footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 80px 20px 40px 20px;
    position: relative;
    border-top: 5px solid var(--green);
    overflow: hidden;
}

/* Metallic Light Reflection Shine Wave Effect */
.premium-shining-footer::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    animation: metallicShine 6s infinite linear;
}

.premium-shining-footer::before {
    content: ''; position: absolute; top: -5px; left: 0; width: 50%; height: 5px; background-color: var(--saffron); z-index: 10;
}

@keyframes metallicShine {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.footer-container {
    max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h3 {
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--saffron); margin-bottom: 20px;
}

.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a {
    color: #94a3b8; text-decoration: none; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s ease;
}
.footer-column ul li a:hover { color: var(--white); transform: translateX(4px); }

.social-icons-row { display: flex; gap: 12px; margin-top: 5px; }
.social-btn {
    width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all 0.3s ease;
}
.social-btn:hover { background: var(--white); color: #0f172a; transform: translateY(-3px); }

/* Bottom Panel Layout Setup */
.footer-bottom {
    max-width: 1260px; margin: 0 auto; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-copyright-block p { font-size: 13px; color: #64748b; font-weight: 500; line-height: 1.5; }
.footer-copyright-block .branding-text { color: #94a3b8; font-size: 13.5px; margin-top: 4px; }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #64748b; text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* Blinking Heart Beats Code Engine */
.patriotic-pulse-panel { color: #94a3b8; font-size: 14px; font-weight: 500; }
.festive-heart-pulse {
    color: #ef4444;
    animation: liveHeartbeat 1.2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
    display: inline-block;
    margin-left: 2px;
}

@keyframes liveHeartbeat {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(239, 68, 68, 0); }
    30% { transform: scale(1.25); text-shadow: 0 0 10px rgba(239, 68, 68, 0.6); }
    45% { transform: scale(1.1); text-shadow: 0 0 5px rgba(239, 68, 68, 0.4); }
    60% { transform: scale(1.3); text-shadow: 0 0 12px rgba(239, 68, 68, 0.7); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(239, 68, 68, 0); }
}

.btn-to-top {
    position: absolute; top: -22px; right: 40px; background-color: var(--navy); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.2s; border: 2px solid var(--white); cursor: pointer; z-index: 50;
}
.btn-to-top:hover { transform: translateY(-3px); background-color: var(--saffron); }

/* ==========================================================================
   CORE MOBILE & TABLET LAYOUT ENGINE OVERRIDES (PREVENTS EXTRA LONG RESPONSES)
   ========================================================================== */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 580px) {
    .premium-shining-footer { padding: 50px 16px 30px 16px; }
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important; /* Forces 2 compact grids instead of 1 long column */
        gap: 24px 16px;
        padding-bottom: 30px;
    }
    .footer-column h3 { font-size: 13px; margin-bottom: 14px; }
    .footer-column ul li { margin-bottom: 8px; }
    .footer-column ul li a { font-size: 13px; }
    .footer-column:nth-child(4) {
        grid-column: span 2; /* Social media handles center stretch bar */
        text-align: center;
        margin-top: 5px;
    }
    .social-icons-row { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; padding-top: 20px; }
    .footer-bottom-links { justify-content: center; gap: 20px; }
    .btn-to-top { right: 20px; top: -22px; }
}