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

:root {
    --bg-primary: #0D1426;
    --bg-card: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --blue: #2196F3;
    --green: #4CAF50;
    --orange: #FF9800;
    --amber: #FFC107;
    --yellow: #FFEB3B;
    --red: #F44336;
    --deep-red: #D32F2F;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Trial Banner */
.trial-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    animation: slideDown 0.5s ease-out;
    min-height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 100%;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-banner {
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-banner:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: #1e40af;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.banner-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.banner-message {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    flex: 1;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-close {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.trial-banner.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1002;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-icon {
    font-size: 20px;
}

.cookie-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--green), #66BB6A);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(13, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: top 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.logo-text {
    color: white !important;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 15px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.login-link {
    background: linear-gradient(135deg, #1a237e 0%, #d32f2f 100%);
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.login-link::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.5s ease;
}

.login-link:hover::before {
    left: 100%;
}

.login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4), 0 0 0 0 rgba(211, 47, 47, 0.3);
    background: linear-gradient(135deg, #283593 0%, #e53935 100%);
}

.login-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.profile-link {
    transition: all 0.3s ease;
}

.profile-link:hover {
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.mobile-cta-buttons .btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ensure header and banner stay above overlay */
nav {
    z-index: 1000;
}

.trial-banner {
    z-index: 1001;
}

/* Sign Up Section */
.signup-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(33, 150, 243, 0.05) 50%, var(--bg-primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.signup-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1), transparent);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.signup-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Welcome Header */
.welcome-header {
    margin-bottom: 60px;
}

.welcome-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.signup-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.signup-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Funnel Screens */
.funnel-screen {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.funnel-screen.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* User Type Selection */
.user-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 60px 0;
}

.btn-club, .btn-individual {
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid transparent;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-club {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(76, 175, 80, 0.1));
    border-image: linear-gradient(135deg, var(--blue), var(--green)) 1;
}

.btn-individual {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(244, 67, 54, 0.1));
    border-image: linear-gradient(135deg, var(--orange), var(--red)) 1;
}

.btn-club:hover, .btn-individual:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-club:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.25), rgba(76, 175, 80, 0.2));
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(33, 150, 243, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-individual:hover {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(244, 67, 54, 0.2));
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 152, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    transition: all 0.4s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.club-gradient {
    background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
}

.individual-gradient {
    background: linear-gradient(135deg, var(--orange), var(--red), var(--orange));
}

.btn-club:hover .club-gradient,
.btn-individual:hover .individual-gradient {
    opacity: 0.5;
    animation-duration: 1.5s;
}

.btn-icon {
    font-size: 64px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.btn-club:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(33, 150, 243, 0.4));
}

.btn-individual:hover .btn-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 152, 0, 0.4));
}

.btn-content {
    position: relative;
    z-index: 1;
}

.btn-content h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.btn-club:hover .btn-content h3 {
    color: var(--blue);
    text-shadow: 0 3px 6px rgba(33, 150, 243, 0.4);
}

.btn-individual:hover .btn-content h3 {
    color: var(--orange);
    text-shadow: 0 3px 6px rgba(255, 152, 0, 0.4);
}

.btn-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-club:hover .feature-tag {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(76, 175, 80, 0.2));
    border-color: rgba(33, 150, 243, 0.5);
    transform: translateY(-2px);
}

.btn-individual:hover .feature-tag {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(244, 67, 54, 0.2));
    border-color: rgba(255, 152, 0, 0.5);
    transform: translateY(-2px);
}

.btn-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 28px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-club:hover .btn-arrow {
    transform: translateX(8px) scale(1.2);
    opacity: 1;
    color: var(--blue);
    text-shadow: 0 4px 8px rgba(33, 150, 243, 0.4);
}

.btn-individual:hover .btn-arrow {
    transform: translateX(8px) scale(1.2);
    opacity: 1;
    color: var(--orange);
    text-shadow: 0 4px 8px rgba(255, 152, 0, 0.4);
}

/* Signup Benefits */
.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.signup-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 18px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.signup-benefits .benefit-item::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.5s ease;
}

.signup-benefits .benefit-item:hover::before {
    left: 100%;
}

.signup-benefits .benefit-item:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(76, 175, 80, 0.1));
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 
        0 8px 32px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.signup-benefits .benefit-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.signup-benefits .benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.4));
}

.signup-benefits .benefit-item span:last-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.signup-benefits .benefit-item:hover span:last-child {
    color: var(--blue);
    text-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

/* Funnel Header */
.funnel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.back-btn::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.5s ease;
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(76, 175, 80, 0.1));
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(33, 150, 243, 0.3),
        0 0 12px rgba(33, 150, 243, 0.2);
}

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

.progress-bar {
    width: 240px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
    background-size: 200% 100%;
    border-radius: 8px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 25%;
    position: relative;
    animation: progress-glow 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(33, 150, 243, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-glow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(33, 150, 243, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(33, 150, 243, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes progress-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Funnel Steps */
.funnel-step {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.funnel-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(33, 150, 243, 0.5));
    }
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.step-title {
    flex: 1;
}

.step-title h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.step-title p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Step Visual */
.step-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 12px 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Forms */
.step-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

/* Info Cards */
.step-info {
    margin-top: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.club-id, .user-id {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    margin: 16px 0;
    font-family: 'Courier New', monospace;
}

.info-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Enhanced Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.pricing-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.featured-pricing {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.3);
    position: relative;
    transform: scale(1.05);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.price {
    font-size: 64px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    letter-spacing: -1px;
}

.price span {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span:last-child {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.billable-roles {
    margin-top: 24px;
}

.billable-roles h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.billable-roles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.billable-roles li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Enhanced Feature Highlights */
.feature-highlights {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlights h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.highlight-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.highlight-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Step Actions */
.step-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.step-actions .btn {
    min-width: 220px;
    padding: 20px 36px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 3px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.step-actions .btn:hover::before {
    left: 100%;
}

.step-actions .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-actions .btn:hover::after {
    opacity: 1;
}

.step-actions .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
    background-size: 200% 200%;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 32px rgba(33, 150, 243, 0.4),
        0 0 20px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradient-shift 3s ease-in-out infinite;
}

.step-actions .btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(33, 150, 243, 0.5),
        0 0 30px rgba(33, 150, 243, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation-duration: 1.5s;
}

.step-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: var(--text-primary);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-actions .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: translateY(-6px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-actions .btn-icon {
    font-size: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.step-actions .btn:hover .btn-icon {
    transform: translateX(6px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.step-actions .btn-primary:hover .btn-icon {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.step-actions .btn-secondary:hover .btn-icon {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Enhanced App Screenshots */
.app-screenshot {
    margin: 0;
    display: flex;
    justify-content: center;
}

/* Enhanced Phone Mockup */
.phone-mockup {
    width: 360px;
    height: 720px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 16px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

/* Enhanced Phone Frame */
.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

/* Enhanced Phone Notch */
.phone-notch {
    width: 120px;
    height: 40px;
    background: #000;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Enhanced Phone Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Enhanced Status Bar */
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

/* Enhanced App Screenshot Placeholder */
.app-screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Signup Screen Style */
.signup-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.signup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signup-screen h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signup-screen p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.signup-form-mockup {
    width: 100%;
    max-width: 280px;
}

.form-field {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.signup-button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Profile Screen Styles */
.profile-screen {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    padding: 24px;
    text-align: center;
    color: white;
}

.profile-screen .app-logo {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-screen h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.profile-screen p {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.id-display {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.id-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.id-value {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
    word-break: break-all;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.id-note {
    font-size: 11px;
    opacity: 0.7;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.club-setup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.club-form-mockup {
    width: 100%;
    max-width: 280px;
}

.create-button {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.create-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Carousel Container for Mobile */
.phone-carousel {
    display: flex; /* Show carousel by default */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 0 20px;
}

.phone-carousel::-webkit-scrollbar {
    display: none;
}

.phone-carousel-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 220px;
}

/* Main Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Speaker Grille */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 3;
}

/* Phone Frame */
.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

/* Notch */
.phone-notch {
    width: 100px;
    height: 32px;
    background: #000;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Phone Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.signal-bars {
    display: flex;
    gap: 2px;
}

.signal-bar {
    width: 3px;
    background: white;
    border-radius: 1px;
}

.signal-bar:nth-child(1) { height: 4px; }
.signal-bar:nth-child(2) { height: 6px; }
.signal-bar:nth-child(3) { height: 8px; }
.signal-bar:nth-child(4) { height: 10px; }

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid white;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 0 1px 1px 0;
}

.battery-fill {
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    width: 80%;
    background: white;
    border-radius: 1px;
}

/* App Screenshot Content */
.app-screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.app-screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.screenshot-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.app-screenshot-placeholder h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    max-width: 100%;
    word-wrap: break-word;
}

.app-screenshot-placeholder p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    max-width: 100%;
    word-wrap: break-word;
    font-weight: 500;
}

.app-screenshot-placeholder p:not(:last-child) {
    margin-bottom: 8px;
}

/* Remove old app form styles - these are now just screenshots */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 120px !important;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        scroll-margin-top: 70px;
    }
    
    .hero .container {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .hero-content {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px !important;
        padding-bottom: 140px !important;
        scroll-margin-top: 60px;
    }
    
    .hero .container {
        padding-top: 15px;
        padding-bottom: 120px;
    }

    .hero-content h1 {
        margin-bottom: 1em !important;
    }

    .hero-content p {
        margin-bottom: 2.5em !important;
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #283593, #e53935, #283593);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 auto 36px auto;
    max-width: 600px;
    text-align: center;
}

/* Phone Mockups */
.phone-mockups {
    flex: 1;
    display: none; /* Hide desktop phones by default */
    gap: 32px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 450px;
    padding: 40px 0;
    margin-top: 40px;
}

.phone-mockup {
    animation: fadeInUp 1s ease-out;
}

.phone-left {
    animation-delay: 0.2s;
    transform: translateY(40px);
}

.phone-center {
    animation-delay: 0.4s;
    transform: scale(1.1);
    z-index: 2;
}

.phone-right {
    animation-delay: 0.6s;
    transform: translateY(40px);
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1f35, #0a0e1a);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover .phone-frame {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: #0a0e1a;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(33, 150, 243, 0.15), rgba(244, 67, 54, 0.15));
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 12px;
}

.mockup-placeholder span {
    font-size: 80px;
    margin-bottom: 20px;
}

.mockup-placeholder p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Showcase Section */
.app-showcase {
    background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.05), transparent);
    padding: 40px 0;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.showcase-text {
    flex: 1;
    min-width: 400px;
}

.showcase-text h2 {
    font-size: 40px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.showcase-features {
    list-style: none;
    margin-top: 24px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.showcase-phones {
    flex: 1;
    display: flex;
    gap: 32px;
    justify-content: center;
    min-width: 400px;
}

.showcase-phone {
    animation: float 6s ease-in-out infinite;
}

.showcase-phone:nth-child(2) {
    animation-delay: 1s;
    transform: translateY(40px);
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background: rgba(33, 150, 243, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Key Benefits Section */
.key-benefits {
    background: linear-gradient(180deg, rgba(33, 150, 243, 0.02), transparent);
}

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

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(180deg, transparent, rgba(76, 175, 80, 0.05), transparent);
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 24px;
}

.workflow-step {
    flex: 0 0 280px;
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.step-number {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
}

.workflow-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    position: relative;
    flex-shrink: 0;
}

.workflow-connector::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--orange);
}

/* Feature Highlight Section */
.feature-highlight {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(76, 175, 80, 0.08));
    padding: 40px 0;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.highlight-text {
    flex: 1;
    min-width: 300px;
}

.highlight-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.highlight-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-features {
    list-style: none;
}

.highlight-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.highlight-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--green), #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.highlight-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.mood-circles {
    display: flex;
    gap: 24px;
    align-items: center;
}

.mood-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mood-circle span {
    font-size: 32px;
}

.mood-circle:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Integration Section */
.integration-section {
    background: rgba(244, 67, 54, 0.03);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.integration-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.integration-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.integration-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Comparison Features Section */
.comparison-features-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.comparison-feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.comparison-feature-item .feature-name {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 1.5em;
    letter-spacing: -0.01em;
}

.feature-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
}

.plan-badge {
    display: flex;
    flex-direction: column;
    padding: 1.5em;
    border-radius: 12px;
    gap: 0.8em;
    transition: all 0.3s ease;
}

.plan-badge.free-plan {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.08) 100%);
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.plan-badge.upgrade-plan {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.plan-label {
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.free-plan .plan-label {
    color: rgba(244, 67, 54, 0.95);
}

.upgrade-plan .plan-label {
    color: rgba(76, 175, 80, 0.95);
}

.plan-value {
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1.5;
}

.free-plan .plan-value {
    color: rgba(244, 67, 54, 0.95);
}

.upgrade-plan .plan-value {
    color: rgba(76, 175, 80, 0.95);
}

.plan-badge .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.plan-badge .icon.check {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

.plan-badge .icon.cross {
    color: #F44336;
    background: rgba(244, 67, 54, 0.2);
}


    @media (max-width: 768px) {
        /* Why Upgrade Section - Mobile Optimized */
        .why-upgrade-section {
            padding: 2em 0 !important;
        }

        .why-upgrade-section .section-header {
            margin-top: 0 !important;
            margin-bottom: 1.5em !important;
            padding: 0 16px;
        }

        .why-upgrade-section .section-header h2 {
            font-size: clamp(1.5em, 5vw, 2em) !important;
            margin-bottom: 0.5em !important;
            line-height: 1.2 !important;
        }

        .why-upgrade-section .section-header p {
            font-size: clamp(0.9em, 2.5vw, 1.1em) !important;
            line-height: 1.4 !important;
            margin-bottom: 1em !important;
        }

        .comparison-features-list {
            padding: 0 16px;
            gap: 1.2em;
        }

        .comparison-feature-item {
            padding: 1.5em;
        }

        .comparison-feature-item .feature-name {
            font-size: 1.1em;
            margin-bottom: 1.2em;
        }

        .feature-comparison {
            grid-template-columns: 1fr;
            gap: 1em;
        }

        .plan-badge {
            padding: 1.2em;
        }

        .plan-label {
            font-size: 0.8em;
        }

        .plan-value {
            font-size: 1em;
        }

        .plan-badge .icon {
            width: 20px;
            height: 20px;
            font-size: 14px;
        }

        /* Ensure the "Why Upgrade" section fits in viewport */
        .learn-more-content .section-header[style*="margin-top: 2em"] {
            margin-top: 1em !important;
            margin-bottom: 1em !important;
        }

        .comparison-section {
            padding: 0;
            margin-left: 0;
            margin-right: 0;
            overflow-x: visible;
            margin-top: 1em !important;
            margin-bottom: 2em !important;
        }

        .comparison-section[style*="margin-top: 2em"] {
            margin-top: 1em !important;
        }

        .comparison-section[style*="margin-bottom: 4em"] {
            margin-bottom: 2em !important;
        }

        .comparison-table {
            margin: 0;
            min-width: 0;
            width: 100%;
            max-width: 100%;
        }
        
        .comparison-row {
            padding: 10px 8px !important;
            gap: 8px !important;
            min-height: auto !important;
        }
        
        .comparison-cell {
            font-size: 11px !important;
            word-wrap: break-word;
            line-height: 1.3 !important;
            padding: 2px 0 !important;
        }
        
        .comparison-cell:first-child {
            font-size: 11px !important;
        }

        .comparison-header .comparison-cell {
            font-size: 11px !important;
            font-weight: 700 !important;
        }

        .check-icon, .cross-icon {
            font-size: 14px !important;
            margin-right: 4px !important;
        }

        .learn-more-content {
            padding: 1.5em 0 !important;
        }

        /* Target the specific "Why Upgrade" section to ensure it fits */
        .learn-more-content > .container > .section-header:first-of-type {
            margin-top: 1em !important;
            margin-bottom: 1em !important;
        }

        .learn-more-content .section-header {
            text-align: center !important;
            padding: 0 16px;
            margin-top: 1em !important;
            margin-bottom: 1em !important;
        }

        .learn-more-content .section-header h2 {
            text-align: center !important;
            font-size: clamp(1.5em, 5vw, 2em) !important;
            margin-bottom: 0.5em !important;
            line-height: 1.2 !important;
        }

        .learn-more-content .section-header p {
            text-align: center !important;
            margin-left: auto;
            margin-right: auto;
            font-size: 1em !important;
            line-height: 1.4 !important;
            margin-bottom: 0 !important;
        }

        .benefits-grid {
            padding: 0 16px;
            justify-items: stretch;
            gap: 1.5em;
        }
        
        .benefit-item {
            padding: 2em 1.5em;
        }

        .pricing-grid {
            padding: 0 16px;
            gap: 2em;
        }
        
        .pricing-card {
            padding: 2.5em 1.5em;
        }
        
        /* Ensure pricing cards and buttons are contained and centered on mobile */
        .pricing-card {
            overflow: hidden;
        }
        .pricing-card.featured {
            transform: none;
        }
        .pricing-card .btn {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Prevent next section title from clipping into pricing on mobile */
        .pricing-grid + .section-header {
            margin-top: 2.5em !important;
        }
    }

    @media (max-width: 480px) {
        /* Why Upgrade Section - Extra Small Screens */
        .why-upgrade-section {
            padding: 1.5em 0 !important;
        }

        .why-upgrade-section .section-header {
            margin-bottom: 1em !important;
            padding: 0 12px !important;
        }

        .why-upgrade-section .section-header h2 {
            font-size: clamp(1.3em, 6vw, 1.8em) !important;
            margin-bottom: 0.4em !important;
        }

        .why-upgrade-section .section-header p {
            font-size: clamp(0.85em, 3vw, 1em) !important;
            margin-bottom: 0.8em !important;
        }

        .comparison-features-list {
            padding: 0 12px;
            gap: 1em;
        }

        .comparison-feature-item {
            padding: 1.2em;
        }

        .comparison-feature-item .feature-name {
            font-size: 1em;
            margin-bottom: 1em;
        }

        .feature-comparison {
            grid-template-columns: 1fr;
            gap: 0.8em;
        }

        .plan-badge {
            padding: 1em;
        }

        .plan-label {
            font-size: 0.75em;
        }

        .plan-value {
            font-size: 0.95em;
        }

        .plan-badge .icon {
            width: 18px;
            height: 18px;
            font-size: 12px;
        }

        .comparison-section {
            margin-top: 0.5em !important;
            margin-bottom: 1.5em !important;
        }

        .comparison-section[style*="margin-top: 2em"] {
            margin-top: 0.5em !important;
        }

        .comparison-section[style*="margin-bottom: 4em"] {
            margin-bottom: 1.5em !important;
        }

        .comparison-table {
            border-spacing: 0 !important;
        }

        .comparison-row {
            padding: 6px 4px !important;
            gap: 4px !important;
            border-bottom-width: 1px !important;
        }
        
        .comparison-cell {
            font-size: 9px !important;
            line-height: 1.15 !important;
            padding: 1px 0 !important;
        }
        
        .comparison-cell:first-child {
            font-size: 9px !important;
        }

        .comparison-header .comparison-cell {
            font-size: 9px !important;
            padding: 4px 0 !important;
        }

        .comparison-header {
            padding: 6px 4px !important;
        }

        .check-icon, .cross-icon {
            font-size: 11px !important;
            margin-right: 2px !important;
        }

        .learn-more-content {
            padding: 0.75em 0 !important;
        }

        .learn-more-content > .container > .section-header:first-of-type {
            margin-top: 0.5em !important;
            margin-bottom: 0.75em !important;
        }

        .learn-more-content .section-header {
            margin-top: 0.5em !important;
            margin-bottom: 0.75em !important;
        }

        .learn-more-content .section-header h2 {
            font-size: clamp(1.2em, 6vw, 1.6em) !important;
            margin-bottom: 0.3em !important;
            line-height: 1.15 !important;
        }

        .learn-more-content .section-header p {
            font-size: 0.85em !important;
            line-height: 1.25 !important;
            margin-bottom: 0 !important;
        }
    }

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1.2fr;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-row:not(.comparison-header):hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 rgba(76, 175, 80, 0.4);
}

.comparison-row:not(.comparison-header):hover .comparison-cell:first-child {
    color: #ffffff;
    font-weight: 700;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.25) 0%, rgba(211, 47, 47, 0.25) 100%);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding: 24px 28px;
}

.comparison-header .comparison-cell {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Style Free Starter column */
.comparison-row:not(.comparison-header) .comparison-cell:nth-child(2) {
    color: rgba(244, 67, 54, 0.9);
    font-weight: 500;
    background: rgba(244, 67, 54, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    margin: -8px -12px;
}

/* Style Unrestricted Access column */
.comparison-row:not(.comparison-header) .comparison-cell:nth-child(3) {
    color: rgba(76, 175, 80, 0.95);
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin: -8px -12px;
}

.check-icon {
    color: #4CAF50;
    font-size: 22px;
    margin-right: 10px;
    font-weight: bold;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.4));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.cross-icon {
    color: #F44336;
    font-size: 22px;
    margin-right: 10px;
    font-weight: bold;
    filter: drop-shadow(0 2px 4px rgba(244, 67, 54, 0.4));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(244, 67, 54, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    background: rgba(33, 150, 243, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-width: 280px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--orange), var(--red));
    color: white;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.about-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-card p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 15px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--blue);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--blue), var(--orange), var(--red));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price span {
    font-size: 20px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.security-item {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-item h3 {
    margin-bottom: 12px;
}

.security-item p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.security-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(76, 175, 80, 0.2));
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.stars {
    color: var(--amber);
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 30px;
    margin: 60px 60px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Signup Page - Larger Phone Mockups */
.signup-section .phone-mockup {
    width: 400px;
    height: 800px;
}

.signup-section .phone-mockup::before {
    width: 80px;
    height: 6px;
}

.signup-section .phone-frame {
    width: 100%;
    height: 100%;
    padding: 16px;
}

.signup-section .phone-notch {
    width: 120px;
    height: 40px;
}

.signup-section .status-bar {
    height: 60px;
    padding: 0 30px;
    font-size: 18px;
}

.signup-section .app-screenshot-placeholder {
    padding: 60px 40px;
}

.signup-section .app-screenshot-placeholder h4 {
    font-size: 28px;
    margin-bottom: 20px;
}

.signup-section .app-screenshot-placeholder p {
    font-size: 18px;
}

.signup-section .screenshot-label {
    font-size: 14px;
    padding: 8px 16px;
    top: 30px;
    left: 30px;
}

/* Download Section */
.download-section {
    margin: 40px 0;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.download-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.download-content p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.app-store-badge {
    margin: 20px 0;
    display: inline-block;
}

.app-store-link {
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    justify-content: center;
    gap: 12px;
}

.app-store-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
}

.app-store-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-icon svg {
    width: 20px;
    height: 20px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-label {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1;
}

.app-store-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.app-store-badge img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-store-badge img:hover {
    transform: scale(1.05);
}

/* Show desktop phones on larger screens */
@media (min-width: 1024px) {
    .phone-mockups {
        display: flex;
    }
    
    .phone-carousel {
        display: none;
    }
}

/* Club Subscription Page Styles */
.club-subscription-section {
    min-height: calc(100vh - 200px);
    background: var(--bg-primary);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.club-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.subscription-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.subscription-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}

.subscription-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.subscription-header p {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.subscription-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subscription-form-container {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.form-help {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-style: italic;
}

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

.card-input-container {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.card-icon {
    font-size: 16px;
    opacity: 0.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.05);
}

.checkbox-custom:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-label a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--green);
}

.pricing-summary {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.pricing-summary h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pricing-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-breakdown {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 3px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 20px auto 0;
    width: 100%;
    max-width: 400px;
}

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

.btn-large:hover::before {
    left: 100%;
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subscription-info .info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.subscription-info .info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.subscription-info .info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.subscription-info .info-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subscription-info .info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscription-info .info-card li {
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subscription-info .info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Club Subscription Responsive */
@media (max-width: 768px) {
    .club-subscription-section {
        padding: 100px 0 60px;
    }

    .subscription-header h1 {
        font-size: 36px;
    }

    .subscription-header p {
        font-size: 18px;
    }

    .subscription-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .subscription-form-container {
        padding: 24px;
    }

    .form-card {
        padding: 24px;
    }

    .form-header h2 {
        font-size: 24px;
    }

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

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }

    .btn-large {
        padding: 18px 24px;
        font-size: 16px;
    }

    .subscription-info .info-card {
        padding: 24px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .trial-banner {
        min-height: 60px;
        padding: 12px 0;
    }
    
    nav {
        top: 0;
        padding: 12px 0;
    }
    
    .hero {
        padding-top: 70px !important;
        scroll-margin-top: 60px;
    }

    .hero .container {
        padding-top: 10px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        margin-bottom: 1em !important;
    }

    .hero-content p {
        margin-bottom: 2.5em !important;
    }

    .signup-section {
        padding: 100px 0 60px;
    }

    .signup-content h1 {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
    }

    .signup-content p {
        font-size: 20px;
        line-height: 1.6;
        font-weight: 500;
    }

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

    .user-type-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .btn-club, .btn-individual {
        min-height: 260px;
        padding: 36px 28px;
    }

    .btn-icon {
        font-size: 56px;
    }

    .btn-content h3 {
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
    }

    .btn-content p {
        font-size: 17px;
        line-height: 1.6;
        font-weight: 500;
    }

    .btn-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 13px;
        padding: 8px 14px;
        font-weight: 700;
    }

    .signup-benefits {
        gap: 24px;
        margin-top: 36px;
    }

    .signup-benefits .benefit-item {
        padding: 16px 24px;
    }

    .signup-benefits .benefit-icon {
        font-size: 22px;
    }

    .signup-benefits .benefit-item span:last-child {
        font-size: 14px;
    }

/* Extra skinny phone mode - very small screens */
@media (max-width: 480px) {
    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .phone-frame {
        padding: 10px;
    }

    .phone-notch {
        width: 60px;
        height: 20px;
    }

    .status-bar {
        padding: 8px 12px;
    }

    .status-bar span {
        font-size: 12px;
    }

    .signal-bars {
        gap: 2px;
    }

    .signal-bar {
        width: 2px;
        height: 6px;
    }

    .battery {
        width: 20px;
        height: 10px;
    }

    .profile-screen {
        padding: 16px;
    }

    .profile-screen .app-logo {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .profile-screen h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .profile-screen p {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .id-display {
        padding: 12px;
        margin-top: 10px;
    }

    .id-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .id-value {
        font-size: 12px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .id-note {
        font-size: 9px;
    }

    .step-visual {
        gap: 24px;
    }

    .step-header {
        gap: 16px;
    }

    .step-title h2 {
        font-size: 28px;
    }

    .step-title p {
        font-size: 16px;
    }
}

    .progress-bar {
        width: 180px;
        height: 10px;
    }

    .step-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .step-icon {
        font-size: 64px;
    }

    .step-title h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
    }

    .step-title p {
        font-size: 19px;
        line-height: 1.6;
        font-weight: 500;
    }

    .step-visual {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .phone-frame {
        padding: 12px;
    }

    .phone-notch {
        width: 80px;
        height: 28px;
    }

    .status-bar {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }

    .app-screenshot-placeholder {
        padding: 40px 30px;
    }

    .app-logo {
        font-size: 20px;
    }

    .signup-screen h4,
    .club-setup-screen h4 {
        font-size: 24px;
    }

    .signup-screen p,
    .club-setup-screen p {
        font-size: 14px;
    }

    .form-field {
        padding: 16px;
        font-size: 15px;
        font-weight: 600;
    }

    .profile-screen {
        padding: 20px;
    }

    .profile-screen .app-logo {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .profile-screen h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .profile-screen p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .id-display {
        padding: 16px;
        margin-top: 12px;
    }

    .id-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .id-value {
        font-size: 14px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }

    .id-note {
        font-size: 10px;
    }

    .pricing-section {
        padding: 24px;
    }

    .pricing-header h3 {
        font-size: 28px;
        font-weight: 800;
    }

    .price {
        font-size: 48px;
        font-weight: 800;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-actions .btn {
        min-width: 240px;
        padding: 16px 24px;
    }

    .funnel-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .progress-bar {
        width: 150px;
    }

    .step-content h2 {
        font-size: 28px;
    }

    .step-content p {
        font-size: 16px;
    }

    .step-form {
        gap: 12px;
    }

    .form-input {
        padding: 12px;
        font-size: 14px;
    }

    .pricing-section {
        padding: 24px;
    }

    .price {
        font-size: 36px;
    }

    .step-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Mobile Carousel - Show carousel, hide individual phones */
    .app-screenshot {
        display: none;
    }

    .phone-carousel {
        display: flex;
        margin: 40px 0;
    }

    /* Mobile Phone Mockups - Smaller for carousel */
    .phone-carousel .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .phone-carousel .phone-mockup::before {
        width: 40px;
        height: 3px;
    }

    .phone-carousel .phone-frame {
        width: 100%;
        height: 100%;
        padding: 10px;
    }

    .phone-carousel .phone-notch {
        width: 60px;
        height: 20px;
    }

    .phone-carousel .status-bar {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }

    .phone-carousel .app-screenshot-placeholder {
        padding: 40px 25px;
    }

    .phone-carousel .app-screenshot-placeholder h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .phone-carousel .app-screenshot-placeholder p {
        font-size: 14px;
    }

    .phone-carousel .screenshot-label {
        font-size: 10px;
        padding: 5px 10px;
        top: 18px;
        left: 18px;
    }

    .phone-carousel .signal-bar {
        width: 2px;
    }

    .phone-carousel .signal-bar:nth-child(1) { height: 3px; }
    .phone-carousel .signal-bar:nth-child(2) { height: 4px; }
    .phone-carousel .signal-bar:nth-child(3) { height: 5px; }
    .phone-carousel .signal-bar:nth-child(4) { height: 6px; }

    .phone-carousel .battery {
        width: 18px;
        height: 9px;
    }

    .download-section {
        padding: 30px 15px;
        margin: 30px 0;
    }

    .download-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .download-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .app-store-link {
        padding: 10px 16px;
        min-width: 180px;
        gap: 10px;
    }

    .app-store-icon svg {
        width: 18px;
        height: 18px;
    }

    .app-store-label {
        font-size: 11px;
    }

    .app-store-name {
        font-size: 14px;
    }

    .banner-content {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-text {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .banner-message {
        font-size: 14px;
        line-height: 1.3;
    }

    .banner-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .banner-actions {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .btn-banner {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .banner-close {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-message {
        font-size: 13px;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        max-width: 120px;
    }

    nav {
        top: 0;
        padding: 12px 0;
    }

    section {
        padding: 60px 0;
    }

    .stats-section {
        padding: 50px 0;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 60px !important;
        scroll-margin-top: 60px;
    }

    .hero .container {
        padding-top: 10px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        margin-bottom: 1em !important;
        font-size: clamp(2em, 8vw, 3em) !important;
    }

    .hero-content p {
        margin-bottom: 2em !important;
        font-size: clamp(1em, 4vw, 1.2em) !important;
    }

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

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

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    .hero-content {
        min-width: unset;
        text-align: center;
        max-width: 100%;
    }

    .hero-content .cta-buttons {
        justify-content: center;
    }

    .phone-mockups {
        min-width: unset;
        gap: 16px;
        padding: 30px 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .phone-frame {
        width: 100%;
        height: 100%;
        padding: 10px;
        border-radius: 28px;
    }

    .phone-notch {
        width: 60px;
        height: 20px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .mockup-placeholder span {
        font-size: 64px;
    }

    .mockup-placeholder p {
        font-size: 14px;
    }

    .phone-center {
        transform: scale(1.1);
        z-index: 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: center;
    }

    .benefit-item {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 32px;
    }

    .workflow-connector {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }

    .workflow-connector::after {
        content: '↓';
        right: -8px;
        top: 20px;
    }

    .highlight-content {
        flex-direction: column;
        gap: 40px;
    }

    .highlight-text h2 {
        font-size: 28px;
    }

    .mood-circles {
        gap: 16px;
    }

    .mood-circle {
        width: 90px;
        height: 90px;
    }

    .mood-circle span {
        font-size: 28px;
    }

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

    .comparison-table {
        font-size: 13px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 16px 12px;
        gap: 12px;
        min-width: 600px;
        scroll-snap-align: start;
    }

    .comparison-cell {
        font-size: 12px;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .comparison-cell:first-child {
        text-align: left;
        font-size: 13px;
    }

    .check-icon, .cross-icon {
        font-size: 16px;
        margin-right: 4px;
    }

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

    .faq-item {
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 17px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .app-showcase {
        padding: 60px 0;
    }

    .showcase-content {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-text {
        min-width: unset;
    }

    .showcase-text h2 {
        font-size: 32px;
    }

    .showcase-phones {
        min-width: unset;
        gap: 24px;
        justify-content: center;
    }

    .showcase-phones .phone-frame {
        width: 100%;
        height: 100%;
        padding: 8px;
        border-radius: 24px;
    }

    .showcase-phones .phone-notch {
        width: 65px;
        height: 20px;
    }

    .showcase-phones .phone-screen {
        border-radius: 18px;
    }

    .showcase-phones .mockup-placeholder span {
        font-size: 48px;
    }

    .showcase-phones .mockup-placeholder p {
        font-size: 12px;
    }

    .section-header {
        margin-bottom: 48px;
        text-align: center !important;
    }

    .section-header h2 {
        font-size: 32px;
        text-align: center !important;
    }

    .section-header p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .about-card, .feature-card, .security-item, .testimonial-card {
        padding: 28px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 40px;
        max-width: 140px;
    }

    .logo-text {
        font-size: 20px;
        color: white !important;
    }

    .btn-nav {
        padding: 8px 12px;
        font-size: 13px;
    }

    .cta-section {
        margin: 40px 32px;
        padding: 60px 40px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .btn-nav {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-cta-buttons {
        gap: 6px;
    }

    .phone-mockups {
        gap: 12px;
        padding: 20px 0;
    }

    .phone-frame {
        width: 100%;
        height: 100%;
        padding: 8px;
        border-radius: 24px;
    }

    .phone-notch {
        width: 50px;
        height: 18px;
    }

    .phone-screen {
        border-radius: 18px;
    }

    .mockup-placeholder span {
        font-size: 56px;
    }

    .mockup-placeholder p {
        font-size: 12px;
    }

    .phone-center {
        transform: scale(1.08);
    }

    .showcase-phones {
        gap: 16px;
    }

    .showcase-phones .phone-frame {
        width: 100%;
        height: 100%;
        padding: 6px;
        border-radius: 20px;
    }

    .showcase-phones .phone-notch {
        width: 55px;
        height: 18px;
    }

    .showcase-phones .phone-screen {
        border-radius: 16px;
    }

    .showcase-phones .mockup-placeholder span {
        font-size: 40px;
    }

    .showcase-phones .mockup-placeholder p {
        font-size: 11px;
    }
}

/* Progress Bar Animation */
.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

/* Extra small screens */
@media (max-width: 480px) {
    .trial-banner {
        min-height: 56px;
        padding: 10px 0;
    }
    
    nav {
        top: 0;
        padding: 10px 0;
    }
    
    .hero {
        padding-top: 50px !important;
        padding-bottom: 60px !important;
        scroll-margin-top: 50px;
    }

    .hero .container {
        padding-top: 5px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        margin-bottom: 0.8em !important;
        font-size: clamp(1.8em, 9vw, 2.5em) !important;
    }

    .hero-content p {
        margin-bottom: 1.8em !important;
        font-size: clamp(0.95em, 4.5vw, 1.1em) !important;
    }

    .hero-login-btn {
        font-size: clamp(1em, 5vw, 1.3em) !important;
        padding: 1.2em 2.5em !important;
    }

    .signup-section {
        padding: 80px 0 40px;
    }

    .signup-content h1 {
        font-size: 28px;
    }

    .signup-content p {
        font-size: 16px;
    }

    .banner-content {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .banner-text {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }

    .banner-message {
        font-size: 12px;
        line-height: 1.2;
    }

    .banner-icon {
        font-size: 16px;
        width: 28px;
        height: 28px;
        padding: 4px;
    }
    
    .banner-actions {
        gap: 6px;
        margin-top: 4px;
    }
    
    .btn-banner {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .banner-close {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .logo-img {
        height: 32px;
        max-width: 120px;
    }

    .logo-text {
        font-size: 18px;
        color: white !important;
    }

    .logo {
        gap: 6px;
    }

    .logo-link {
        gap: 6px;
    }
}
