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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a33;
    background: #ffffff;
    overflow-x: hidden;
}

/* PopDay Design System Variables */
:root {
    /* Primary Colors from PopDay Design System */
    --primary-purple: #786CE3;
    --primary-pink: #EB59A8;
    --primary-blue: #40A6F2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #786CE3 0%, #EB59A8 100%);
    --gradient-card: linear-gradient(135deg, rgba(64, 166, 242, 0.1) 0%, rgba(120, 108, 227, 0.1) 100%);
    --gradient-background: linear-gradient(135deg, #ffffff 0%, #f8f8ff 100%);
    
    /* Neutral Colors */
    --text-primary: #1a1a33;
    --text-secondary: #666680;
    --text-light: #9999b3;
    
    --card-background: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --background-secondary: #f7f7fa;
    
    /* Border Colors */
    --border-primary: #e5e5eb;
    --border-secondary: #d9d9de;
    
    /* Accent Colors */
    --success: #33c77c;
    --warning: #ffc208;
    --danger: #f54336;
    
    /* Premium Colors */
    --premium-gold: #ffd700;
    --premium-gradient: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    
    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-backdrop: blur(20px);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-purple: 0 10px 30px -5px rgba(120, 108, 227, 0.3);
    --shadow-pink: 0 10px 30px -5px rgba(235, 89, 168, 0.3);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.nav-logo-link {
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link-active {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 30%, #f8f9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(120, 108, 227, 0.1) 0deg, rgba(235, 89, 168, 0.05) 120deg, rgba(64, 166, 242, 0.08) 240deg, rgba(120, 108, 227, 0.1) 360deg);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(235, 89, 168, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(120, 108, 227, 0.1) 0%, rgba(235, 89, 168, 0.1) 100%);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-purple);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px solid rgba(120, 108, 227, 0.2);
    box-shadow: 0 8px 32px rgba(120, 108, 227, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-badge::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;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-button-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-purple);
}

.hero-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-purple);
}

.hero-button-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.hero-button-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

.hero-app-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-large {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(120, 108, 227, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.app-icon-large:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 35px 70px -12px rgba(120, 108, 227, 0.6);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.7;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation: orbit 8s linear infinite;
}

.particle-2 {
    top: 20%;
    right: 20%;
    animation: orbit 8s linear infinite 2s;
}

.particle-3 {
    bottom: 20%;
    left: 20%;
    animation: orbit 8s linear infinite 4s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation: orbit 8s linear infinite 6s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.25;
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(120, 108, 227, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(120, 108, 227, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

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

.card-icon {
    font-size: 24px;
    line-height: 1;
    color: var(--primary-purple);
}

.card-icon i {
    width: 24px;
    height: 24px;
}

.card-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.card-1 {
    top: 15%;
    left: 10%;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 15%;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

.card-3 {
    bottom: 35%;
    left: 8%;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 2.4s;
}

.card-4 {
    bottom: 20%;
    right: 25%;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 3.6s;
}

.card-5 {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 4.8s;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(1deg); 
    }
}

.card-5 {
    animation: floatCardCenter 6s ease-in-out infinite;
    animation-delay: 4.8s;
}

@keyframes floatCardCenter {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateX(-50%) translateY(-20px) rotate(2deg); 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px) rotate(-1deg); 
    }
    75% { 
        transform: translateX(-50%) translateY(-15px) rotate(1deg); 
    }
}


/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

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

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

/* Core Features Overview */
.core-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Desktop/Mobile visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.core-feature {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.core-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.core-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.core-feature-icon i,
.core-feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 1.5;
}

.core-feature-icon svg {
    stroke: white;
    fill: none;
}

.core-feature h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

/* Comparison Section */
.comparison-section {
    margin-bottom: 80px;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.comparison-header > div {
    padding: 24px 20px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
}

.comparison-header i {
    width: 20px;
    height: 20px;
}

.comparison-header > div:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.feature-column {
    text-align: left !important;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-primary);
    background: white;
}

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

.comparison-row:nth-child(even) {
    background: rgba(248, 249, 255, 0.5);
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.feature-name i {
    width: 24px;
    height: 24px;
    color: white;
    background: var(--gradient-primary);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.free-value, .premium-value {
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    min-height: 60px;
}

.free-value {
    color: var(--text-secondary);
    background: linear-gradient(135deg, rgba(64, 166, 242, 0.1) 0%, rgba(64, 166, 242, 0.05) 100%);
    border-left: 4px solid var(--primary-blue);
}

.premium-value {
    color: var(--success);
    background: linear-gradient(135deg, rgba(51, 199, 124, 0.1) 0%, rgba(51, 199, 124, 0.05) 100%);
    border-left: 4px solid var(--success);
}

/* Mobile Comparison Cards */
.comparison-mobile {
    display: none;
    gap: 30px;
}

.comparison-mobile-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.comparison-mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comparison-mobile-card.premium {
    border-color: var(--premium-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-primary);
}

.mobile-card-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.mobile-card-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-card-badge.free {
    background: rgba(64, 166, 242, 0.1);
    color: var(--primary-blue);
}

.mobile-card-badge.premium {
    background: var(--premium-gradient);
    color: black;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mobile-feature i {
    width: 20px;
    height: 20px;
    color: white;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 32px;
    padding: 50px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.9);
}

.feature-free {
    border-left: 4px solid var(--primary-blue);
}

.feature-premium {
    border-left: 4px solid var(--premium-gold);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--premium-gradient);
    color: black;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-header {
    margin-bottom: 30px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.feature-icon i,
.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 1.5;
}

.feature-icon svg {
    stroke: white;
    fill: none;
}

.premium-icon {
    background: var(--premium-gradient);
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.feature-content {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.feature-list i {
    width: 20px;
    height: 20px;
    color: white;
    background: var(--success);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: var(--background-secondary);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-background);
    border-radius: 32px;
    padding: 50px;
    border: 2px solid var(--border-primary);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

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

.pricing-premium {
    border-color: var(--premium-gold);
    transform: scale(1.05);
}

.pricing-annual {
    border-color: var(--primary-purple);
    position: relative;
    background: linear-gradient(135deg, rgba(120, 108, 227, 0.05) 0%, rgba(235, 89, 168, 0.05) 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--premium-gradient);
    color: black;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-purple);
}

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

.pricing-annual {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.annual-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.annual-savings {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

.pricing-savings {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(51, 199, 124, 0.1);
    border-radius: 12px;
    text-align: center;
}

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

.savings-amount {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
    justify-content: flex-start;
}

.pricing-list i {
    width: 20px;
    height: 20px;
    color: white;
    background: var(--success);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-action {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.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;
}

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

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

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

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

/* Technical Specs Section */
.tech-specs {
    padding: 100px 20px;
    background: var(--background-secondary);
}

.tech-specs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-specs-header {
    text-align: center;
    margin-bottom: 80px;
}

.tech-specs-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.tech-specs-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.tech-spec-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-spec-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.tech-spec-icon i,
.tech-spec-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 1.5;
}

.tech-spec-icon svg {
    stroke: white;
    fill: none;
}

.tech-spec-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

/* Pricing Notes */
.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
    padding: 0 20px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-note i {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-purple);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
    background: white;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.discord-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 20px 40px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 38px;
    }
    
    .hero-visual {
        order: 1;
        height: 500px;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-app-icon {
        order: 1;
    }
    
    .floating-card {
        display: none;
    }
    
    .card-1, .card-2, .card-3, .card-4, .card-5 {
        display: block;
        position: static;
        transform: none;
        animation: none;
        margin: 10px;
    }
    
    .hero-graphics {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .core-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile comparison */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .comparison-mobile {
        display: flex;
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-header {
        font-size: 16px;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 16px 12px;
    }
    
    .tech-specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .pricing-premium {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-element {
        display: none;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .features-title,
    .pricing-title {
        font-size: 32px;
    }
    
    .feature-card,
    .pricing-card {
        padding: 24px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
.btn:focus,
.hero-button:focus,
.cta-button:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
        --text-secondary: #000;
    }
}
