/* ==========================================================================
   MAYDON APP LANDING PAGE STYLESHEET
   Refactored from absolute pixel positioning to modern, responsive Flex/Grid.
   ========================================================================== */

/* 1. DESIGN TOKENS & CUSTOM PROPERTIES */
:root {
    /* Colors */
    --primary: #7B4CFF;
    --primary-hover: #673FD3;
    --primary-light: #F7F4FF;
    --primary-light-hover: #EAE3FF;
    
    --secondary: #1E1A2D;
    --secondary-hover: #2E2942;
    
    --text-dark: #1E1A2D;
    --text-muted: #6C757D;
    --text-light: #FFFFFF;
    
    --bg-light: #FFFFFF;
    --bg-alt: #FAF8FF;
    --bg-dark: #110E1B;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(123, 76, 255, 0.08), 0 4px 6px -2px rgba(123, 76, 255, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(123, 76, 255, 0.15), 0 10px 10px -5px rgba(123, 76, 255, 0.04);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. CSS RESET & GLOBAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Helper Class for Outfit Font */
.font-outfit {
    font-family: var(--font-heading);
}

/* Scroll Lock when Mobile Menu is Active */
.no-scroll {
    overflow: hidden;
}

/* 3. BASE COMPONENTS */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn span {
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(123, 76, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* Badges / Small Labels */
.badge-tag,
.section-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    margin-left: 12px;
}

/* Typography Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 650px;
}

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

/* Form Controls */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-alt);
    border: 1px solid rgba(123, 76, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-light);
    box-shadow: 0 0 0 4px rgba(123, 76, 255, 0.1);
}

.text-area-control {
    resize: vertical;
}

/* 4. HEADER & NAVBAR */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(123, 76, 255, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.85;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    opacity: 1;
}

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

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-mobile-only {
    display: none;
}

/* Mobile Hamburger Trigger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* hamburger active state */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* 5. HERO SECTION */
.hero-section {
    padding-top: calc(var(--header-height) + 40px);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-light);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 6px;
    width: fit-content;
    margin-bottom: 24px;
}

.hero-badge .badge-tag {
    background-color: var(--bg-light);
    margin-bottom: 0;
    padding: 6px 16px;
}

.hero-title {
    font-size: 3.75rem;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Social Proof Card */
.hero-social-proof {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border: 1px solid rgba(123, 76, 255, 0.1);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    width: fit-content;
    gap: 24px;
}

.stat-group,
.rating-group {
    display: flex;
    flex-direction: column;
}

.stat-number,
.rating-score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.stat-label,
.rating-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(123, 76, 255, 0.15);
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin: 4px 0;
}

.star-icon {
    width: 14px;
    height: 14px;
}

.avatar-group {
    display: flex;
    margin-left: 8px;
}

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-light);
    margin-left: -15px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

/* Hero Image Media */
.hero-media {
    display: flex;
    justify-content: center;
}

.hero-mockup {
    max-height: 620px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(123, 76, 255, 0.12));
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 6. ABOUT SECTION */
.about-section {
    background-color: var(--bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    display: flex;
    justify-content: center;
}

.about-mockup {
    max-height: 520px;
    width: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.06));
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.checklist-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.about-btn {
    width: fit-content;
}

/* 7. STEPS SECTION */
.steps-section {
    background-color: var(--bg-light);
}

.steps-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.steps-container {
    position: relative;
}

/* Timeline background visual connector */
.steps-line-wrapper {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    z-index: 1;
    pointer-events: none;
}

.steps-line-img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.step-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(123, 76, 255, 0.1);
    box-shadow: var(--shadow-sm);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 76, 255, 0.3);
}

.step-badge {
    display: inline-flex;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.step-card-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 8. PARTNERSHIP SECTION */
.partnership-section {
    background-color: var(--bg-alt);
}

.partnership-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.partner-feature span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.partnership-media {
    display: flex;
    justify-content: center;
}

.partnership-mockup {
    max-height: 520px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
}

.partnership-btn {
    width: fit-content;
}

/* 9. FEATURES GRID SECTION */
.features-section {
    background-color: var(--bg-light);
    overflow: hidden;
}

/* Absolute background accent */
.features-bg-accent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.features-bg-accent img {
    width: 100%;
    height: auto;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(123, 76, 255, 0.06);
    box-shadow: var(--shadow-sm);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 76, 255, 0.25);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    transform: scale(1.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    filter: brightness(0) invert(1);
}

.feature-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 10. FAQ ACCORDION */
.faq-section {
    background-color: var(--bg-alt);
}

.faq-container-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.faq-intro-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: var(--bg-light);
    border: 1px solid rgba(123, 76, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.faq-accordion-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(123, 76, 255, 0.2);
}

.faq-question-title {
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-question-title::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform var(--transition-normal);
}

.faq-accordion-item[open] .faq-icon {
    transform: rotate(90deg);
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid rgba(123, 76, 255, 0.08);
    padding-top: 18px;
}

.faq-media {
    display: flex;
    justify-content: center;
}

.faq-mockup {
    max-height: 580px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.06));
}

/* 11. CTA BANNER SECTION */
.cta-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.cta-banner {
    background: linear-gradient(135deg, #7B4CFF 0%, #5E2EE6 100%);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: visible; /* To allow football overlapping */
    color: var(--text-light);
    box-shadow: 0 30px 60px rgba(123, 76, 255, 0.25);
}

.cta-tag {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-title {
    color: var(--text-light);
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    gap: 16px;
}

.store-badge-img {
    height: 48px;
    width: auto;
    transition: var(--transition-fast);
}

.store-badge-img:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}

.cta-banner-media {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-footballer-img {
    position: absolute;
    bottom: -60px;
    height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* 12. CONTACT SECTION */
.contact-section {
    background-color: var(--bg-alt);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.contact-container {
    max-width: 800px;
}

.contact-form {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(123, 76, 255, 0.08);
}

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

.submit-btn {
    padding: 16px 40px;
    font-size: 1.05rem;
    margin-top: 12px;
}

/* 13. FOOTER SECTION */
.footer {
    background-color: #FAF8FF;
    border-top: 1px solid rgba(123, 76, 255, 0.08);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 38px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-app-download {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Custom App Store & Play Store Buttons */
.custom-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid transparent;
}

.custom-store-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.apple-store-btn {
    background-color: #1e293b;
    color: #ffffff !important;
}

.apple-store-btn:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.15);
}

.play-store-btn {
    background-color: #f4f4f5;
    color: #18181b !important;
    border: 1px solid #e4e4e7;
}

.play-store-btn:hover {
    background-color: #e4e4e7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Footer Help Support Card */
.footer-support-card {
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.support-card-bg {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.support-bg-graphic {
    width: 100%;
    height: auto;
}

.support-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.support-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.support-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.support-desc {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 24px;
}

.support-contact-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.phone-icon-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-emails,
.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-emails a,
.contact-phones a {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.contact-emails a:hover,
.contact-phones a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(123, 76, 255, 0.06);
    padding: 30px 24px;
    display: flex;
    justify-content: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}


/* ==========================================================================
   14. RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */

/* Tablet viewports (max 1024px) */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.35rem;
    }
    
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-container,
    .partnership-container {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .faq-container-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .faq-media {
        display: none; /* Hide illustrative side phone mockup on tablet/mobile */
    }
    
    .cta-banner {
        padding: 50px;
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-footballer-img {
        height: 340px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile landscape and Portrait viewports (max 768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation Drawer Menu */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-light);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 28px;
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
    }
    
    .btn-desktop-only {
        display: none;
    }
    
    .btn-mobile-only {
        display: inline-flex;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Hero section layouts stacking */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .hero-social-proof {
        align-self: center;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 16px;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .avatar-group {
        margin-left: 0;
    }
    
    .hero-media {
        order: -1; /* Display app mockup on top in mobile viewports */
    }
    
    .hero-mockup {
        max-height: 420px;
    }
    
    /* About section stack */
    .about-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-media {
        order: -1;
    }
    
    .about-mockup {
        max-height: 380px;
    }
    
    /* Steps wizard timeline stack */
    .steps-line-wrapper {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        padding: 30px 24px;
    }
    
    /* Partnership stack */
    .partnership-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .partnership-media {
        order: -1;
    }
    
    .partnership-mockup {
        max-height: 380px;
    }
    
    /* Features card list */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    /* Call-To-Action banner layout */
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-badges {
        justify-content: center;
    }
    
    .cta-banner-media {
        display: none; /* Hide the overlapping image in small screen widths */
    }
    
    /* Contact Form Layout */
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Micro sizing for small devices (max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-support-card {
        padding: 24px 20px;
    }
}
