/* ============================================================================
   GA SECTIONS CSS
   ============================================================================
   Styles for Global Access landing page sections imported from ga.html
   These sections use a dark theme with their own color variables
   ============================================================================ */

/* ==========================================================================
   GA-SPECIFIC CSS VARIABLES
   ========================================================================== */

.ga-section {
    --ga-bg-primary: hsl(222, 47%, 11%);
    --ga-bg-card: hsl(217, 33%, 17%);
    --ga-bg-muted: hsl(217, 33%, 23%);
    --ga-text-primary: hsl(213, 31%, 91%);
    --ga-text-muted: hsl(217, 16%, 63%);
    --ga-accent: #FF1495;
    --ga-accent-dark: #D91180;
    --ga-border: hsl(217, 33%, 25%);
}

/* ==========================================================================
   SMOOTH SCROLLING
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* Offset for fixed header when navigating to anchors */
.ga-section {
    scroll-margin-top: 80px;
}

/* ==========================================================================
   GA STICKY HEADER
   ========================================================================== */

.ga-header {
    --ga-accent: #FF1495;
    --ga-accent-dark: #D91180;
    --ga-text-primary: hsl(213, 31%, 91%);
    --ga-text-muted: hsl(217, 16%, 63%);
    --ga-border: hsl(217, 33%, 25%);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hide sticky header when prequiz is not active */
body.postquiz-active .ga-header,
body.thankyou-active .ga-header {
    display: none;
}

.ga-header .ga-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ga-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1rem;
}

.ga-logo,
.ga-logo:hover,
.ga-logo:visited,
.ga-logo:active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.ga-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.ga-logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--ga-text-primary);
}


.ga-nav {
    display: none;
    gap: 2rem;
}

.ga-nav a {
    color: var(--ga-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.ga-nav a:hover {
    color: var(--ga-text-primary);
}

.ga-header-buttons {
    display: flex;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .ga-nav {
        display: flex;
    }
}

/* ==========================================================================
   GA HERO SECTION
   ========================================================================== */

.ga-hero {
    position: relative;
    min-height: 100vh;
    background: transparent;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ga-text-primary);
    line-height: 1.6;
}

.ga-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ga-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.ga-hero-blob-1 {
    top: 25%;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    background: var(--ga-accent);
}

.ga-hero-blob-2 {
    bottom: 25%;
    right: -8rem;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 255, 255, 0.1);
}

.ga-hero-content {
    position: relative;
    padding: 5rem 1rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.ga-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.ga-hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--ga-accent);
}

.ga-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.ga-hero-highlight {
    background: linear-gradient(135deg, #FF1495 0%, var(--ga-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ga-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.ga-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.ga-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.ga-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.ga-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--ga-accent);
}

.ga-stats-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.ga-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ga-stat {
    text-align: center;
}

.ga-stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.ga-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   GA BUTTONS
   ========================================================================== */

.ga-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.ga-btn-hero {
    background: linear-gradient(135deg, var(--ga-accent) 0%, var(--ga-accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(255, 20, 149, 0.4);
}

.ga-btn-hero:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(255, 20, 149, 0.5);
}

.ga-btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.ga-btn-hero-outline {
    background: rgba(255, 20, 149, 0.1);
    color: white;
    border: 2px solid rgba(255, 20, 149, 0.3);
    backdrop-filter: blur(4px);
}

.ga-btn-hero-outline:hover {
    background: rgba(255, 20, 149, 0.2);
    border-color: rgba(255, 20, 149, 0.5);
}

/* ==========================================================================
   GA SECTION BASE STYLES
   ========================================================================== */

.ga-section {
    padding: 4rem 0 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ga-text-primary);
    line-height: 1.6;
}

.ga-section .ga-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.ga-section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 20, 149, 0.1);
    color: var(--ga-accent);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ga-section h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--ga-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.ga-section-description {
    font-size: 1.125rem;
    color: var(--ga-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

/* ==========================================================================
   GA PARTNERS SECTION
   ========================================================================== */

.ga-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.ga-partner-card {
    background: #ffffff;
    border: 1px solid var(--ga-border);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ga-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 20, 149, 0.3);
}

.ga-partner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.ga-partner-card:hover .ga-partner-image {
    transform: scale(1.05);
}

.ga-partners-note {
    text-align: center;
    color: var(--ga-text-muted);
    margin-top: 2rem;
}

/* ==========================================================================
   GA BENEFITS SECTION
   ========================================================================== */

.ga-benefits {
    background: transparent;
}

.ga-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.ga-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.ga-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.ga-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.ga-benefit-card:hover .ga-benefit-icon {
    transform: scale(1.1);
}

.ga-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.ga-benefit-icon-orange { background: rgba(255, 20, 149, 0.1); color: #FF1495; }
.ga-benefit-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.ga-benefit-icon-sky { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.ga-benefit-icon-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.ga-benefit-icon-pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.ga-benefit-icon-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.ga-benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--ga-text-primary);
}

.ga-benefit-description {
    color: var(--ga-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ga-benefit-savings {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 20, 149, 0.1);
    color: var(--ga-accent);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ==========================================================================
   GA DEALS SECTION
   ========================================================================== */

.ga-deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ga-deal-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.ga-deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.ga-deal-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s;
}

.ga-deal-card:hover .ga-deal-image {
    transform: scale(1.05);
}

.ga-deal-content {
    padding: 1.25rem;
}

.ga-deal-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ga-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ga-deal-brand {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--ga-text-primary);
    margin: 0.25rem 0 0.5rem;
}

.ga-deal-offer {
    color: var(--ga-accent);
    font-weight: 600;
}

/* ==========================================================================
   GA CTA SECTION
   ========================================================================== */

.ga-cta {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.ga-cta-content {
    position: relative;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.ga-cta h2 {
    color: white;
}

.ga-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.ga-cta-button {
    margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (min-width: 640px) {
    .ga-hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .ga-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ga-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 768px) {
    .ga-hero h1 {
        font-size: 4rem;
    }

    .ga-partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (min-width: 1024px) {
    .ga-hero h1 {
        font-size: 4.5rem;
    }

    .ga-partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .ga-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ga-deals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
