/* Stats Section - Enhanced Split Design */
.stats-section {
    padding: 60px 0;
    background: transparent;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #00C851);
    transform: scaleX(0);
    transform-origin: left;
}
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0cfea5;
    --primary-dark: #0ad893;
    --primary-light: #4ffeb8;
    --accent: #0cfea5;
    --accent-dark: #0ad893;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F7;
    --gray-200: #E5E5EA;
    --gray-300: #D1D1D6;
    --gray-500: #8E8E93;
    --gray-600: #636366;
    --gray-800: #1D1D1F;
    --gray-900: #000000;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-intense: 0 12px 60px rgba(0, 0, 0, 0.15);
}

/* Static Colorful Background - No Animation */
body {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(12, 254, 165, 0.08) 0%, rgba(12, 254, 165, 0.04) 30%, transparent 70%),
        radial-gradient(ellipse 700px 500px at 80% 20%, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.03) 30%, transparent 70%),
        radial-gradient(ellipse 600px 800px at 30% 80%, rgba(168, 85, 247, 0.05) 0%, rgba(168, 85, 247, 0.02) 30%, transparent 70%),
        radial-gradient(ellipse 500px 600px at 90% 70%, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.03) 30%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        conic-gradient(from 0deg at 25% 25%, transparent 0deg, rgba(12, 254, 165, 0.04) 90deg, transparent 180deg, rgba(59, 130, 246, 0.03) 270deg, transparent 360deg),
        conic-gradient(from 180deg at 75% 75%, transparent 0deg, rgba(168, 85, 247, 0.03) 90deg, transparent 180deg, rgba(245, 158, 11, 0.04) 270deg, transparent 360deg);
    z-index: -1;
    pointer-events: none;
}

/* Clean section backgrounds */
.hero {
    padding: 40px 0 20px;
    text-align: center;
    background: transparent;
}

.carriers-section {
    padding: 20px 0 40px;
    background: transparent;
}

.stats-section {
    padding: 60px 0;
    background: transparent;
}

.features {
    padding: 80px 0;
    background: transparent;
}

.faq {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.3);
}

footer {
    background: rgba(240, 244, 248, 0.6);
    padding: 60px 0 40px;
}

/* Keep security section dark */
.security {
    background: var(--gray-900) !important;
}

/* Enhanced text contrast */
.hero h1,
.carriers-title,
.features h2,
.faq h2 {
    color: var(--gray-900);
}

.hero p,
.carriers-section p,
.features p,
.faq > .container > p {
    color: var(--gray-700);
}
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--gray-800);
    -webkit-font-smoothing: antialiased;
}
a, a:visited, a:link {
    text-decoration: none;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
header {
    position: sticky;
    top: 16px;
    z-index: 100;
    padding: 0 24px;
    margin-bottom: 20px;
}

/* Floating navigation card - Force styles */
nav {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: auto !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

nav:hover {
    backdrop-filter: blur(24px) saturate(160%) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Logo styling - smaller like GambleID */
.logo {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--gray-900) !important;
    text-decoration: none !important;
    letter-spacing: -0.3px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.logo:hover .logo-image {
    transform: scale(1.02) !important;
}

/* Navigation links */
.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-links li {
    margin: 0 !important;
}

.nav-links a {
    text-decoration: none !important;
    color: var(--gray-600) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.nav-links a:hover {
    color: var(--gray-900) !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.nav-links a.active {
    color: var(--gray-900) !important;
    font-weight: 600 !important;
    background: rgba(12, 254, 165, 0.1) !important;
}

/* Logo styling - Force smaller size */
.logo-image {
    height: 28px !important;
    width: auto !important;
    max-width: 160px !important;
    transition: all 0.3s ease !important;
}

/* Hero Section */
.hero {
    padding: 40px 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Carriers Section */
.carriers-section {
    padding: 20px 0 40px;
    background: transparent;
}

.carriers-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.carrier-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.carrier-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Individual carrier hover colors */
.carrier-card:nth-child(1):hover {
    border-color: #f7901e; /* Boost Mobile */
}

.carrier-card:nth-child(2):hover {
    border-color: #45176f; /* Metro by T-Mobile */
}

.carrier-card:nth-child(3):hover {
    border-color: #61a631; /* Cricket Wireless */
}

.carrier-card:nth-child(4):hover {
    border-color: #e10074; /* T-Mobile Prepaid */
}

.carrier-card:nth-child(5):hover {
    border-color: #0d9bd7; /* AT&T Prepaid */
}

.carrier-card:nth-child(6):hover {
    border-color: #ed1c24; /* Verizon Prepaid */
}

.carrier-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: transparent;
}

.carrier-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.carrier-card:hover .carrier-logo-img {
    transform: scale(1.05);
}

.carrier-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.2px;
}

.carrier-card:hover h3 {
    color: var(--gray-900);
}

/* Stats Section - Enhanced Split Design */
.stats-section {
    padding: 60px 0;
    background: transparent;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #036342;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    color: var(--accent);
}

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

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 1px;
}

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

.cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-subtext {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Enhanced CTA Button - Solid Green */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--gray-900);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(12, 254, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(12, 254, 165, 0.4);
}

.button-icon {
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: scale(1.1);
}

.button-text {
    transition: all 0.3s ease;
}

/* Animation delays for stat cards */
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

/* Features Section */
.features {
    padding: 80px 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.feature-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
    letter-spacing: -1.5px;
}

.feature-content p {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--gray-800);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(12, 254, 165, 0.3);
}

.feature-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(12, 254, 165, 0.5);
}

.feature-visual {
    background: transparent;
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* iPhone Mockup */
.iphone-mockup {
    width: 200px;
    height: 350px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.iphone-screen {
    width: 180px;
    height: 330px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    border-radius: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
    overflow: hidden;
}

.dynamic-island {
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: islandPulse 3s ease-in-out infinite;
}

.island-activity {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: activityPulse 2s ease-in-out infinite;
}

.screen-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.app-header {
    text-align: center;
    margin-bottom: 20px;
}

.app-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.carrier-name {
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
}

.phone-number {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 12px 0;
    text-align: center;
}

.phone-display {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-family: 'SF Mono', monospace;
}

.amount-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
    margin: 16px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.amount-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-bottom: 4px;
}

.amount-value {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.pay-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin: 16px 0;
    animation: buttonPulse 3s ease-in-out infinite;
}

.pay-text {
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 600;
}

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 16px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
}

.status-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-top: 8px;
    animation: statusChange 3s ease-in-out infinite;
}

/* Enhanced Security Section */
.security {
    padding: 80px 0;
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
}

.security h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.security p {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.security-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.security-item:hover::before {
    left: 100%;
}

.security-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.2);
    border-color: var(--primary);
    background: rgba(0, 122, 255, 0.1);
}

.security-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.security-item:hover .security-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 8px 20px rgba(0, 122, 255, 0.5));
}

.security-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    transition: all 0.3s ease;
}

.security-item:hover h4 {
    color: var(--primary-light);
}

.security-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.security-item:hover p {
    color: var(--gray-300);
}

/* Floating Card Footer - Add to styles.css */

/* Replace your existing footer styles with this */
footer {
    padding: 0 24px 32px;
    background: transparent;
    margin-top: 60px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #00C851, var(--primary));
    opacity: 0.6;
}

.footer-card:hover {
    backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 28px;
    width: auto;
    max-width: 160px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--gray-900);
    background: rgba(12, 254, 165, 0.08);
    transform: translateY(-1px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 70%;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(229, 231, 235, 0.3);
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

/* Dark mode support */
body.dark-mode .footer-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(58, 58, 58, 0.3);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(58, 58, 58, 0.3);
    color: var(--gray-400);
}

body.dark-mode .footer-links a {
    color: var(--gray-400);
}

body.dark-mode .footer-links a:hover {
    color: var(--gray-100);
    background: rgba(12, 254, 165, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    footer {
        padding: 0 16px 24px;
        margin-top: 40px;
    }
    
    .footer-card {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 12px;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .footer-logo {
        height: 24px;
        max-width: 140px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Animation for footer entrance */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-card {
    animation: footerSlideUp 0.6s ease-out;
}
/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonPulse {
    0%, 30% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes progressFill {
    0%, 30% { width: 0%; }
    70% { width: 100%; }
    100% { width: 100%; }
}

@keyframes statusChange {
    0%, 30% { opacity: 1; }
    31% { opacity: 0; }
    32% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes islandPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes activityPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: transparent;
}

.faq h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -1.5px;
}

.faq > .container > p {
    font-size: 20px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.15s ease;
    font-family: inherit;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.2s ease;
    transform-origin: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg) translateZ(0);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
    background: var(--gray-50);
    transform: translateZ(0);
}

.faq-answer.active {
    height: auto;
    min-height: 60px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 4px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.faq-answer.active p {
    opacity: 1;
}

/* Animation for FAQ items */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.carrier-card:nth-child(1) { animation-delay: 0.1s; }
.carrier-card:nth-child(2) { animation-delay: 0.2s; }
.carrier-card:nth-child(3) { animation-delay: 0.3s; }

.security-item:nth-child(1) { animation-delay: 0.1s; }
.security-item:nth-child(2) { animation-delay: 0.2s; }
.security-item:nth-child(3) { animation-delay: 0.3s; }
.security-item:nth-child(4) { animation-delay: 0.4s; }
.security-item:nth-child(5) { animation-delay: 0.5s; }
.security-item:nth-child(6) { animation-delay: 0.6s; }

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .carriers-title {
        font-size: 20px;
    }

    .carriers-grid {
        gap: 8px;
    }

    .carrier-card {
        padding: 20px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-item {
        padding: 20px 16px;
    }
}
/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
    transform-origin: center;
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay - Modern Card Style */
#mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#mobileNav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 24px 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 280px;
    max-width: 90vw;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mobileNav.active .mobile-nav-content {
    transform: scale(1) translateY(0);
}

.mobile-nav-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
}

.mobile-nav-logo {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

/* Force override all logo styles in mobile nav */
#mobileNav img,
#mobileNav .mobile-nav-logo-img,
.mobile-nav .mobile-nav-logo-img,
.mobile-nav-content .mobile-nav-logo-img {
    height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transform: none !important;
}

/* Reset any logo-image styles that might be interfering */
#mobileNav .logo-image {
    height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    padding: 16px 20px;
    color: var(--gray-800);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.mobile-nav-links a:hover {
    background: var(--primary);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 254, 165, 0.4);
    border-color: var(--primary);
}

.mobile-nav-links a:active {
    transform: translateY(0);
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header - Floating card style */
    header {
        top: 12px;
        padding: 0 16px;
    }
    
    nav,
    nav.container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        max-width: 350px;
        padding: 10px 20px;
        margin: 0 auto;
        border-radius: 18px;
        backdrop-filter: blur(20px) saturate(150%);
    }
    
    /* Hide desktop nav, show hamburger */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }
    
    /* Center logo */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-image {
        height: 24px;
        max-width: 140px;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 24px;
    }
    
    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    /* Carriers */
    .carriers-section {
        padding: 24px 0 32px;
    }
    
    .carriers-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .carriers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    .carrier-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .carrier-logo {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .carrier-card h3 {
        font-size: 16px;
    }
    
    /* Stats */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats-grid {
        order: 2;
    }
    
    .cta-section {
        order: 1;
    }
    
    .cta-section::before {
        display: none;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-subtext {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .feature-content p {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .feature-list li {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .feature-visual {
        height: 250px;
        border-radius: 16px;
    }
    
    /* iPhone mockup mobile */
    .iphone-mockup {
        width: 140px;
        height: 240px;
        border-radius: 30px;
    }
    
    .iphone-screen {
        width: 128px;
        height: 228px;
        border-radius: 22px;
        top: 6px;
        left: 6px;
    }
    
    .dynamic-island {
        width: 60px;
        height: 18px;
        border-radius: 15px;
        top: 12px;
    }
    
    .island-activity {
        width: 6px;
        height: 6px;
    }
    
    .screen-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    
    .app-header {
        margin-bottom: 12px;
    }
    
    .app-title {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .carrier-name {
        font-size: 8px;
    }
    
    .phone-number {
        padding: 6px 8px;
        margin: 8px 0;
    }
    
    .phone-display {
        font-size: 8px;
    }
    
    .amount-section {
        padding: 8px;
        margin: 10px 0;
    }
    
    .amount-label {
        font-size: 7px;
        margin-bottom: 2px;
    }
    
    .amount-value {
        font-size: 12px;
    }
    
    .pay-button {
        padding: 8px;
        margin: 10px 0;
    }
    
    .pay-text {
        font-size: 8px;
    }
    
    .progress-bar {
        margin: 10px 0;
    }
    
    .status-text {
        font-size: 7px;
        margin-top: 6px;
    }
    
    /* Security */
    .security {
        padding: 60px 0;
    }
    
    .security h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .security p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .security-item {
        padding: 24px 20px;
    }
    
    .security-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .security-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .security-item p {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .faq > .container > p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
        transition: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    .faq-question:active {
        background: var(--gray-50);
    }
    
    .faq-icon {
        font-size: 20px;
        transition: transform 0.15s ease;
    }
    
    .faq-answer {
        transition: height 0.2s ease;
    }
    
    .faq-answer.active {
        padding: 0 24px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
        transition: opacity 0.15s ease 0.05s;
    }
    
    .faq-item:hover {
        box-shadow: none;
        border-color: var(--gray-200);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .carriers-title {
        font-size: 20px;
    }

    .carriers-grid {
        gap: 8px;
    }

    .carrier-card {
        padding: 20px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-item {
        padding: 20px 16px;
    }
}

/* MOBILE NAVIGATION FIX - FORCE HIDE DESKTOP NAV */

/* Force hide desktop nav on mobile with stronger selectors */
@media (max-width: 768px) {
    .nav-links,
    nav .nav-links,
    header .nav-links,
    nav.container .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    /* Force floating nav layout */
    nav,
    nav.container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        max-width: 350px !important;
        padding: 10px 20px !important;
        margin: 0 auto !important;
        border-radius: 18px !important;
        backdrop-filter: blur(20px) saturate(150%) !important;
    }
    
    /* Logo on left side of mobile nav */
    .logo {
        position: relative !important;
        left: auto !important;
        transform: none !important;
    }
    
    .logo-image {
        height: 24px !important;
        max-width: 140px !important;
    }
}

/* Desktop Navigation Active State on Scroll */
.nav-links a.active {
    color: var(--gray-900) !important;
    font-weight: 600 !important;
    background: rgba(12, 254, 165, 0.1) !important;
}

/* Mobile Nav Modal - Make sure this exists */
#mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#mobileNav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    padding: 40px 28px 32px;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(0.7) translateY(40px) rotateX(10deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 300px;
    max-width: 90vw;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#mobileNav.active .mobile-nav-content {
    transform: scale(1) translateY(0) rotateX(0deg);
}

.mobile-nav-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(12, 254, 165, 0.1);
    width: 100%;
    text-align: center;
    position: relative;
}

.mobile-nav-logo {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    text-align: center;
}

.mobile-nav-logo-img {
    height: 32px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mobile-nav-links a {
    padding: 18px 24px;
    color: var(--gray-800);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    overflow: hidden;
    letter-spacing: -0.2px;
}

.mobile-nav-links a:hover {
    background: var(--primary);
    color: var(--gray-900);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(12, 254, 165, 0.4),
        0 0 0 1px rgba(12, 254, 165, 0.2);
    border-color: var(--primary);
}