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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #2D1B69;
    --accent-color: #FFB800;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #8E8E93;
    --bg-light: #F8F8FF;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E7;
    --success-color: #10B981;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8F65 100%);
    --gradient-secondary: linear-gradient(135deg, #2D1B69 0%, #4C3A8A 100%);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    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;
}

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

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

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    max-width: 200px;
    animation: float 8s ease-in-out infinite;
}

.recipe-card {
    top: 10%;
    right: -20%;
    animation-delay: -4s;
}

.scan-card {
    bottom: 20%;
    left: -20%;
    animation-delay: -2s;
}

.floating-card h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cook-time, .confidence {
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.what-is {
    background: var(--bg-white);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Who For Section */
.who-for {
    background: var(--bg-light);
}

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

.persona-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.persona-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.persona-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.persona-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.persona-benefits li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Creator Program Section - Enhanced */
.creator-program {
    background: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.creator-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
}

.creator-program .container {
    position: relative;
    z-index: 1;
}

.creator-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.creator-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.creator-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Revenue Model */
.revenue-model {
    margin-bottom: 4rem;
}

.revenue-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.revenue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.revenue-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.revenue-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.revenue-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.revenue-card h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
    min-height: 3.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revenue-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    min-height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revenue-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.revenue-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 4.5rem;
}

.revenue-features .feature {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.revenue-example {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.875rem;
    color: white;
    margin-top: auto;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Unit Economics */
.unit-economics {
    margin-bottom: 4rem;
}

.economics-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.economics-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.economics-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.scenario {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scenario:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.scenario h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
}

.view-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.view-count {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.conversion-rate {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.scenario-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 2rem;
}

.stat-row:last-of-type:not(.total) {
    margin-bottom: 1rem;
}

.stat-row.total {
    border-bottom: none;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
    font-size: 1.125rem;
    min-height: auto;
}

.stat-row span:first-child {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    flex: 1;
    line-height: 1.3;
}

.stat-row strong {
    color: white;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    margin-left: 1rem;
    line-height: 1.3;
}

.stat-row.total strong {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.growth-note {
    margin-top: 1rem;
    padding: 0.875rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Compound Growth Explanation */
.compound-explanation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.compound-explanation h4 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.compound-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.compound-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.compound-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.compound-card.featured {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 107, 53, 0.2));
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.3);
}

.compound-card.featured::before {
    content: "🚀 BETTER CHOICE";
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.compound-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.4);
}

.compound-card h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.compound-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.compound-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.compound-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Success Stories */
.success-stories {
    margin-bottom: 4rem;
}

.success-stories h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.story-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.story-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.story-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.story-earnings {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.story-quote {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.5;
}

/* Creator Tools */
.creator-tools {
    margin-bottom: 4rem;
}

.creator-tools h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.tool-card h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Creator CTA */
.creator-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.creator-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.creator-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* New Landing Page Elements */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: pulse-badge 2s infinite;
}

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

.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.5); }
}

.spots-left {
    color: #ff4444;
    font-weight: 600;
}

.users-online {
    color: #666;
}

.countdown-timer {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.timer-label {
    font-size: 0.875rem;
    color: #666;
    margin-right: 0.5rem;
}

.timer-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4444;
    font-family: monospace;
}

.time-unit {
    background: rgba(255, 68, 68, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: 0 0.25rem;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Simplified Earnings Preview */
.scenario-stats.simple {
    text-align: center;
    padding: 2rem;
}

.big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Simple Comparison */
.simple-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.comparison-item.highlighted {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-item h5 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.comparison-item li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.typical-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.vs-divider {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.faq-column h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.limited-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.download-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
    padding: 0.75rem;
    background: rgba(0, 128, 0, 0.1);
    border: 1px solid rgba(0, 128, 0, 0.2);
    border-radius: 8px;
}

/* Download Section */
.download {
    background: var(--bg-light);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-features .feature {
    color: var(--success-color);
    font-weight: 600;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.download-btn img {
    height: 60px;
    display: block;
    border-radius: 8px;
}

.download-btn.apple img {
    width: 155px;
    object-fit: contain;
}

.download-btn.google img {
    width: 175px;
    object-fit: contain;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-stats .stat {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rating {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .creator-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title,
    .creator-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .creator-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .revenue-title,
    .economics-title,
    .success-stories h3,
    .creator-tools h3 {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .download-features,
    .download-buttons,
    .download-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn img {
        height: 50px;
    }
    
    .download-btn.apple img {
        width: 130px;
    }
    
    .download-btn.google img {
        width: 145px;
    }
}

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Page-specific styles */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    line-height: 1.7;
}

.page-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-primary);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.data-types {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.data-types h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.data-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.data-item.kept {
    border-left-color: var(--accent-color);
}

.data-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.data-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.alert-box {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--secondary-color);
}

/* Creator Growth Section */
.creator-growth-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.creator-growth-section h4 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.growth-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.growth-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.growth-month {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.growth-month:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.growth-month.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid #10b981;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.growth-month.featured::before {
    content: "🚀 GOAL";
    position: absolute;
    top: -12px;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.month-label {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.month-earnings {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.month-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.annual-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.annual-total {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 107, 53, 0.15));
    border: 1px solid var(--accent-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.annual-total h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.annual-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.annual-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.growth-highlight {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: #22c55e;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .annual-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .growth-timeline {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 107, 53, 0.03) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.workflow-step {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.workflow-step:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.workflow-step.featured {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 107, 53, 0.08));
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25);
    transform: scale(1.02);
}

.workflow-step.featured:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.35);
}

.workflow-step.featured::before {
    content: "💰 PROFIT";
    position: absolute;
    top: -15px;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border: 3px solid white;
    z-index: 3;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    line-height: 1;
}

.workflow-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
}

.workflow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

.workflow-arrow {
    display: none; /* Hide arrows on desktop for cleaner look */
}

.workflow-cta {
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.workflow-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 800;
}

.workflow-cta p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .workflow-step {
        min-height: 300px;
        padding: 2rem 1.25rem;
    }
    
    .workflow-step h3 {
        font-size: 1.25rem;
    }
    
    .workflow-step p {
        font-size: 0.9rem;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 400px;
    }
    
    .workflow-step {
        min-height: 280px;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .workflow-step.featured {
        transform: none;
    }
    
    .workflow-step.featured:hover {
        transform: translateY(-8px);
    }
    
    .step-icon {
        font-size: 3.5rem;
    }
    
    .workflow-step h3 {
        font-size: 1.3rem;
    }
    
    .workflow-step p {
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .workflow-cta {
        padding: 3rem 2rem;
    }
    
    .workflow-cta h3 {
        font-size: 1.8rem;
    }
    
    .workflow-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .workflow-grid {
        gap: 2.5rem;
        max-width: 320px;
    }
    
    .workflow-step {
        min-height: 260px;
        padding: 1.75rem 1.25rem;
        max-width: 300px;
    }
    
    .step-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .workflow-step h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .workflow-step p {
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .workflow-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .workflow-cta h3 {
        font-size: 1.6rem;
    }
    
    .workflow-cta p {
        font-size: 1rem;
    }
}

/* Revenue Calculator Styles */
.revenue-calculator-section {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.revenue-calculator-section h4 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.control-group {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.slider-container {
    position: relative;
    margin: 1.5rem 0;
}

.calc-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
    border: 2px solid white;
}

.calc-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

.slider-value {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* New Metrics Box */
.calc-metrics-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
}

.calc-metrics-box h5 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.metric-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.metric-content {
    flex: 1;
}

.metric-value {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.calc-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.calc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.calc-card.cookcam {
    border: 2px solid #FFB800;
    background: rgba(255, 184, 0, 0.15);
}

.calc-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFB800, #FFC107);
    color: #2D1B69;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-card h5 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.calc-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: #FF6B6B;
    transition: all 0.5s ease;
    text-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.calc-amount.cookcam-color {
    color: #4ECDC4;
    text-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.calc-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.calc-multiplier {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-footer.cookcam-footer {
    border-top: 1px solid rgba(255, 184, 0, 0.3);
}

.payment-type {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-note {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.6;
    margin-top: 3rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-calculator-section {
        padding: 2rem;
    }
    
    .calc-amount {
        font-size: 2.5rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
