/* ===== CSS Variables ===== */
:root {
    /* Colors - Experian Theme */
    --primary: #FFB300;
    --primary-dark: #FF8F00;
    --primary-light: #FFCA28;
    --secondary: #1565C0;
    --secondary-dark: #0D47A1;
    --accent: #FFB300;
    --dark: #0A0F29;
    --dark-light: #1E223E;
    --light: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #8A94A6;
    --gray-dark: #64748B;
    --border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
    --gradient-dark: linear-gradient(135deg, #0A0F29 0%, #1E223E 100%);
    --gradient-accent: linear-gradient(135deg, #FFB300 0%, #1565C0 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 179, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(255, 179, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(255, 179, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(255, 179, 0, 0.25);
    
    /* Border Radius - ROUNDED CORNERS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 24px;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--gradient-accent);
    color: white;
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 1100;
}

.announcement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.announcement-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.announcement-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    margin-top: 5px;
}

.announcement-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.announcement-bar p {
    margin: 0;
    max-width: 800px;
    line-height: 1.4;
}

/* Coming Soon Badges */
.badge-coming-soon {
    background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%) !important;
    color: white !important;
    font-size: 10px !important;
    padding: 3px 10px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    animation: badgePulse 2s infinite !important;
    border: none !important;
}

.badge-coming-soon::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 12px rgba(255, 179, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4); }
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== Typography ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 179, 0, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(21, 101, 192, 0.05);
    transform: translateY(-3px);
}

/* ===== Header & Navigation ===== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: var(--transition);
    border-radius: 8px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta-custom {
    padding: 8px 20px !important;
    font-size: 14px !important;
    margin-left: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(21, 101, 192, 0.05);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.03) 0%, rgba(255, 179, 0, 0.03) 100%);
    border-radius: 0 0 0 100px;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.dashboard-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.dashboard-badges {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.badge.verified {
    background: rgba(255, 179, 0, 0.1);
    color: var(--secondary);
}

.badge.active {
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary);
}

.metric {
    margin-bottom: 25px;
}

.metric-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.metric-progress {
    height: 8px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.partners {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.partners-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    gap: 12px;
}

.partner-logo {
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-dark);
}

/* ===== Trust Indicator ===== */
.trust-indicator {
    background: var(--gradient-dark);
    color: white;
    padding: 20px 0;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 20px;
}

/* ===== Sections ===== */
.section {
    padding: var(--section-padding) 0;
}

/* Problem Section */
.problem-section {
    background: var(--light-gray);
    position: relative;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.problem-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(21, 101, 192, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.problem-icon i {
    color: white;
    font-size: 28px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.problem-stats {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(21, 101, 192, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--primary);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-features {
    list-style: none;
    margin-top: 20px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 14px;
}

.solution-features i {
    color: var(--secondary);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    display: none;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding: 0 40px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-time {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.audience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Why Section */
.why-section {
    background: var(--dark);
    color: white;
}

.why-section .section-title,
.why-section .section-subtitle {
    color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 24px;
}

/* MVP Notice */
.mvp-notice {
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.mvp-icon {
    font-size: 48px;
}

.mvp-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.mvp-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.mvp-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.cta-features i {
    color: var(--primary);
}

.cta-form {
    max-width: 800px;
    margin: 0 auto 60px;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
}

.form-group input {
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.contact-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    margin-right: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: var(--radius-full);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    flex: 1;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.6;
    max-width: 800px;
}

.footer-credit {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

.footer-credit a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .stats-container { justify-content: center; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    header { padding: 15px 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2.5rem; }
    .form-group { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .announcement-bar { font-size: 12px; }
}

/* ===== Enhanced Download Buttons ===== */
.download-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    will-change: transform, box-shadow;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}

.download-btn:hover::before {
    opacity: 1;
}

.download-btn:active {
    transform: translateY(-2px);
}

.android-btn:hover {
    box-shadow: 0 12px 32px rgba(61, 220, 132, 0.5) !important;
}

.ios-btn:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

/* Responsive adjustments for download buttons */
@media (max-width: 768px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}
