/* Global Variables */
:root {
    /* Colors */
    --dark-bg: #000000;
    --dark-surface: #0a0a0a;
    --dark-surface-lighter: #111111;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --gold: hsl(48, 88%, 45%);    /* #FFC300 with 88% saturation, but darker */
    --accent: hsl(43, 88%, 51%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Other */
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

/* Typography */
h1, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white; /* Ensure visibility against starfield */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
    font-weight: 400; /* Changed from bold to regular */
}

.section-subtitle {
    text-align: center;
    color: #D9D9D9; /* Updated to specific color */
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
}

.btn-access {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-access:hover {
    background: rgba(20, 20, 20, 1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.btn-primary:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4) !important;
}

.mobile-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.mobile-buttons .btn-access {
    width: auto;
    min-width: 120px;
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: hsla(48, 88%, 45%, 0.1);
}

.btn-large {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.navbar-links {
    display: none;
}

.navbar-buttons {
    display: none;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Navigation Right Side */
.mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

/* Mobile Try Now Button */
.mobile-try-now {
    display: block;
}

.mobile-try-btn, .try-now-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #000000 !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    height: 36px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.mobile-try-btn:hover, .try-now-btn:hover {
    background-color: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, 
        rgb(54, 41, 8) 0%, 
        rgb(0, 0, 0) 25%, 
        rgb(13, 21, 45) 50%, 
        rgb(0, 0, 0) 75%, 
        rgb(54, 41, 8) 100%);
    overflow: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.active {
    height: auto;
    padding: var(--spacing-lg) 0;
}

.mobile-link {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-align: center;
}

/* Mobile Shop Button Styling */
.mobile-link.shop-btn {
    background: black;
    color: white !important;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0.5rem auto;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-link.shop-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-link.shop-btn.active {
    background: #2a2a2a;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    width: 80%;
}

.mobile-buttons .btn {
    width: 100%;
}

/* Space Background */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999;
    background-color: #000000;
    overflow: hidden;
}

/* Black Hole Effect */
.gold-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vh;
    height: 40vh;
    max-width: 340px;
    max-height: 340px;
    z-index: 1;
    /* Hide gold circle container but keep its positioning for the black hole effect */
    background-color: transparent;
}

.gold-circle::before { /* Black hole center */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background-color: #000000;
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.9);
}

.gold-circle::after { /* Swirling animated ring - hidden */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 88%;
    border-radius: 50%;
    background: transparent;
    border: min(1.5vw, 10px) solid transparent;
    /* Hide the yellow spinning rings */
    border-top: min(1.5vw, 10px) solid transparent;
    border-bottom: min(1.5vw, 10px) solid transparent;
    filter: blur(10px);
    animation: rotate 30s linear infinite;
}

/* Gravitational lens effect */
.gold-circle .lens-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(0, 0, 0, 0.8) 20%, 
                rgba(0, 0, 0, 0.6) 40%, 
                rgba(0, 0, 0, 0.1) 60%,
                rgba(0, 0, 0, 0) 100%);
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Star container - will be populated by JavaScript */
#stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* Individual star styling */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-large {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}


.arrow-icon {
    margin-left: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.3em; /* Slightly larger arrow */
    line-height: 1;
    position: relative;
}

.arrow-icon:after {
    content: '\2197'; /* Up-right arrow (default) */
}

.btn-primary:hover .arrow-icon:after {
    content: '\2192'; /* Right arrow (on hover) */
}

.btn-primary:hover .arrow-icon {
    transform: none; /* No rotation needed, we're swapping the character */
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 5;
    /* Background removed to show stars */
}

.how-it-works .section-container {
    background: transparent;
    /* Ensure this container also stays transparent for stars */
}

/* AI Logo Overlay */
.ai-logo-overlay {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: -2rem;
    z-index: 10;
}

.floating-ai-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

/* Modern AI Tools Grid */
.ai-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* AI Tool Cards */
.ai-tool-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Tool Header */
.tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tool-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.camera-icon {
    background: linear-gradient(135deg, #00000080 0%, #00000077 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.manual-icon {
    background: linear-gradient(135deg, #00000080 0%, #00000077 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tool-badge {
    background: rgba(255, 195, 0, 0.88);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

/* Tool Content */
.tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.tool-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

/* Feature Tags */
.tool-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .ai-tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .ai-tool-card {
        padding: 2.5rem;
    }
    
    .tool-title {
        font-size: 1.75rem;
    }
    
    .tool-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .ai-tools-grid {
        gap: 3rem;
    }
    
    .ai-tool-card {
        padding: 3rem;
    }
}

/* University Section */
.university-section {
    margin-top: 2rem;
    text-align: center;
}

.university-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.university-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.university-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.university-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.university-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

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

.university-badge {
    background: linear-gradient(135deg, #300101, #700404);
    color: rgb(227, 221, 221);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 37, 223, 0.3);
}

.university-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    text-align: center;
}

.vegas-banned {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.university-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* University Responsive Design */

@media (min-width: 768px) {
    .university-header {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .university-title {
        font-size: 2rem;
    }
    
    .university-card {
        padding: 2.5rem;
    }
    
    .university-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .university-card {
        padding: 3rem;
    }
    
    .university-section {
        margin-top: 5rem;
    }
}

/* University Hero Section */
.university-hero {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.university-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.university-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* University Hero Responsive */
@media (min-width: 768px) {
    .university-hero-title {
        font-size: 2.4rem;
    }
    
    .university-hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .university-hero {
        margin-top: 6rem;
    }
    
    .university-hero-title {
        font-size: 2.4rem;
    }
    
    .university-hero-subtitle {
        font-size: 1.3rem;
    }
}

.how-it-works .service-label {
    display: block;
    margin: 0 auto 1rem auto;
    text-align: center;
    width: fit-content;
}

.how-it-works h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-label {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.5) 0%, 
        rgba(218, 165, 32, 0.7) 25%, 
        rgba(65, 105, 225, 0.5) 50%, 
        rgba(65, 105, 225, 0.7) 75%, 
        rgba(218, 165, 32, 0.4) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.step-container {
    background-color: #0D0D0D;
    border-radius: 10px;
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    color: white;
    max-width: 85%;
    margin: 0 auto;
}

.step-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: white;
    font-weight: 400;
}

.step-description {
    color: #D9D9D9;
    margin-bottom: var(--spacing-md);
    max-width: 95%;
    line-height: 1.6;
    font-size: 1.05rem;
}

.step-stats {
    margin-bottom: var(--spacing-md);
}

.stat-item {
    font-size: 0.9rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
}

.stat-item::before {
    content: "✓";
    margin-right: 0.5rem;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.step-image {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-container .step-image:has(img[src="step2.png"]) {
    margin-top: 0;
}

.step-wrapper:nth-child(2) .step-container {
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .step-container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .step-image {
        margin-top: auto;
    }
}

/* Step Wrapper for horizontal alignment */
.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.step-wrapper .service-label {
    margin-bottom: 1.5rem;
    margin-left: 7.5%; /* Align with step-container left edge (since step-container is 85% width, centered) */
}

.step-wrapper .step-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Ensure steps grid maintains proper alignment */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .step-wrapper {
        align-items: center;
    }
    
    .step-wrapper .service-label {
        align-self: center;
    }
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 5;
    text-align: center;
}

.pricing-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-emphasis-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: -0.5rem 0 1.5rem 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.pricing-emphasis-subtitle em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.4);
    letter-spacing: 0.5px;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.5) 0%, 
        rgba(218, 165, 32, 0.7) 25%, 
        rgba(65, 105, 225, 0.5) 50%, 
        rgba(65, 105, 225, 0.7) 75%, 
        rgba(218, 165, 32, 0.4) 100%);
    opacity: 0.6;
    z-index: -1;
    filter: blur(1px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.2);
}

.pricing-badge, .best-value-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), rgba(184, 134, 11, 0.7));
    color: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(248, 202, 70, 0.5);
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.savings-text {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    align-items: center;
}

/* Dashboard feature items (AI tools and university sections) */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing feature items (pricing section tags) */
.pricing-feature-item {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 0.3rem 0;
    text-align: center;
    display: inline-block;
    width: fit-content;
    position: relative;
}

.pricing-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Language tooltip styles */
.language-info-icon {
    color: var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.language-info-icon:hover {
    opacity: 1;
}

.language-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    margin-left: -100px;
    width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.language-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-content {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tooltip-content strong {
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.price-crossed {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.pricing-btn, .featured-btn {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border: 1px solid var(--gold);
    color: var(--dark-bg);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-btn::before, .featured-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;
}

.pricing-btn:hover::before, .featured-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover, .featured-btn:hover {
    background: linear-gradient(135deg, #f4d03f, var(--gold));
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Contact Section */
.contact {
    background-color: var(--dark-surface);
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 5;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--dark-surface-lighter);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form .btn {
    width: 100%;
}

/* New Contact Form Styles */
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #ffd700);
  color: var(--dark-blue);
  padding: 13px 5px;
  border-radius: 0.375rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--dark-surface-lighter);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    z-index: 5;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-logo {
    text-align: center;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

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

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.social-link:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== SHOP PAGE STYLES ===== */

/* Shop Hero Section - Mobile First */
.shop-hero {
    position: relative;
    padding: 100px 0 20px;
    background: var(--dark-bg);
    text-align: center;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.shop-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.shop-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.shop-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Product Cards - Based on pricing card design */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.2s; }
.product-card:nth-child(2) { animation-delay: 0.4s; }
.product-card:nth-child(3) { animation-delay: 0.6s; }
.product-card:nth-child(4) { animation-delay: 0.8s; }

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.3) 0%, 
        rgba(218, 165, 32, 0.5) 25%, 
        rgba(65, 105, 225, 0.3) 50%, 
        rgba(65, 105, 225, 0.5) 75%, 
        rgba(218, 165, 32, 0.2) 100%);
    opacity: 0.4;
    z-index: -1;
    filter: blur(1px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.product-card:hover::before {
    opacity: 0.8;
    filter: blur(0px);
}

/* Product Image */
.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.1) 0%, 
        rgba(65, 105, 225, 0.1) 100%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-card:hover .product-placeholder {
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.2) 0%, 
        rgba(65, 105, 225, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Product Info */
.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.product-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

/* Coming Soon Section */
.coming-soon {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.coming-soon .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.coming-soon h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.coming-soon p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .shop-hero {
        padding: 70px 0 20px;
        min-height: auto;
    }
    
    .shop-title {
        font-size: 2.5rem;
    }
    
    .shop-subtitle {
        font-size: 1.2rem;
    }
    
    .products-section {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .product-name {
        font-size: 1.4rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .coming-soon {
        padding: 80px 0;
    }
    
    .coming-soon h2 {
        font-size: 2.5rem;
    }
    
    .coming-soon p {
        font-size: 1.1rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .shop-hero {
        padding: 80px 0 25px;
        min-height: auto;
    }
    
    .shop-title {
        font-size: 3rem;
    }
    
    .shop-subtitle {
        font-size: 1.3rem;
    }
    
    .products-section {
        padding: 100px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 900px;
        margin: 2rem auto 0;
    }
    
    .product-card {
        padding: 2.5rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 1.05rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .coming-soon {
        padding: 100px 0;
    }
    
    .coming-soon h2 {
        font-size: 3rem;
    }
    
    .coming-soon p {
        font-size: 1.2rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
    
    .shop-hero .container {
        max-width: 900px;
    }
}

.nav-link.active {
    color: var(--gold) !important;
}

/* Desktop Navigation Styles */
@media (min-width: 769px) {
    .navbar-container {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        gap: 2rem;
        padding: 1rem 2rem;
    }
    
    .navbar-logo {
        justify-self: start;
        flex-shrink: 0;
    }
    
    .navbar-links {
        display: flex;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
    }
    
    .navbar-buttons {
        display: flex;
        gap: 1rem;
        justify-self: end;
        position: relative;
        z-index: 10;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav-right {
        display: none;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: var(--gold);
    }
    
    /* Shop Button Styling */
    .nav-link.shop-btn {
        background: black;
        color: white !important;
        padding: 0.2rem 0.7rem;
        border-radius: 12px;
        font-weight: 500;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-link.shop-btn:hover {
        background: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        color: white !important;
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .nav-link.shop-btn.active {
        background: #2a2a2a;
        color: white !important;
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        flex-wrap: nowrap;
        width: 100%;
    }

    .navbar-logo {
        flex-shrink: 0;
        order: 1;
    }

    .navbar-links {
        display: none;
    }

    .navbar-buttons {
        display: none;
    }
    
    .mobile-nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 3;
    }
}

/* Tablet Navigation Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .navbar-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Large Mobile Navigation */
@media (min-width: 481px) and (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }
    
    .navbar-logo {
        font-size: 1.4rem;
    }
}

/* Small Mobile Navigation */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0.8rem 1rem;
    }
    
    .navbar-logo {
        font-size: 1.3rem;
    }
    
    .mobile-try-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Hero Content Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        flex-direction: row;
        padding: 120px 5% 80px;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
        padding-right: var(--spacing-xl);
    }
    
    .hero-image {
        flex: 1;
        margin: 0;
        max-width: 400px;
    }
    
    /* Desktop Footer Centering */
    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        gap: var(--spacing-lg);
        margin: 0;
    }
    
    .footer-social {
        display: flex;
        gap: var(--spacing-md);
    }
    
    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .pricing-title {
        font-size: 4.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1200px;
    }
    
    .pricing-card {
        padding: 3.5rem 3rem;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
}

/* Individual Step Boxes */
.individual-step-box {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.individual-step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.individual-step-box .service-label {
    margin-bottom: 1.5rem;
}

.individual-step-box .step-container {
    text-align: center;
}

.individual-step-box .step-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.individual-step-box .step-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.individual-step-box .step-stats {
    margin-bottom: 2rem;
}

.individual-step-box .stat-item {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.individual-step-box .step-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments for individual step boxes */
@media (max-width: 768px) {
    .individual-step-box {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .individual-step-box .step-title {
        font-size: 1.5rem;
    }
}

/* Fade-in animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLL ANIMATIONS ========== */

/* Base animation styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-up.animate-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for containers */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ENHANCED HOVER EFFECTS ========== */

/* Enhanced card hover effects */
.ai-tool-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.ai-tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 195, 0, 0.15), 0 0 30px rgba(255, 195, 0, 0.1);
}

/* Enhanced pricing card hover */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 195, 0, 0.2), 0 0 40px rgba(255, 195, 0, 0.15);
}

/* Enhanced button hover with ripple effect */
.btn-primary {
    background: #FFC300 !important;
    border: none !important;
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4) !important;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating:nth-child(2) {
    animation-delay: -1s;
}

.floating:nth-child(3) {
    animation-delay: -2s;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 195, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 195, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Gradient animation for backgrounds */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #000000, #0a0a0a, #111111, #000000);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

/* Parallax background */
.parallax-bg {
    will-change: transform;
}

/* ========== RESPONSIVE ANIMATION ADJUSTMENTS ========== */

@media (max-width: 768px) {
    .animate-on-scroll {
        transform: translateY(20px);
    }
    
    .slide-in-left,
    .slide-in-right {
        transform: translateY(20px);
    }
    
    .ai-tool-card:hover,
    .pricing-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .slide-in-left,
    .slide-in-right,
    .scale-up,
    .stagger-item {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .floating,
    .pulse,
    .animated-gradient {
        animation: none;
    }
}

/* Affiliation Section */
.affiliation-section {
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 5;
    text-align: center;
}

.affiliation-section .service-label {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.5) 0%, 
        rgba(218, 165, 32, 0.7) 25%, 
        rgba(65, 105, 225, 0.5) 50%, 
        rgba(65, 105, 225, 0.7) 75%, 
        rgba(218, 165, 32, 0.4) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliation-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.affiliation-video-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.affiliation-video-frame {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    border-radius: 10px;
    border: 1px solid rgba(248, 202, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.affiliation-video-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(248, 202, 70, 0.5);
}

.affiliation-video-frame .video-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.affiliation-video-frame .play-icon {
    width: 60px;
    height: 60px;
    stroke: var(--gold);
    fill: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.affiliation-video-frame:hover .play-icon {
    transform: scale(1.05);
    stroke: var(--gold);
    opacity: 1;
}

.affiliation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.affiliation-feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.affiliation-feature-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.affiliation-feature-tag .feature-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliation-feature-tag .feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    letter-spacing: 0.2px;
}

/* Center text in first feature tag */
.affiliation-feature-tag:first-child .feature-text {
    text-align: center;
}

.affiliation-cta {
    margin-top: 3rem;
}

.affiliation-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.affiliation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 202, 70, 0.4);
}

.affiliation-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Affiliation Section */
@media (min-width: 768px) {
    .affiliation-features {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .affiliation-title {
        font-size: 2.4rem;
    }
    
    .affiliation-video-frame {
        max-width: 550px;
    }
}

@media (min-width: 1024px) {
    .affiliation-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .affiliation-title {
        font-size: 2.4rem;
    }
    
    .affiliation-video-frame {
        max-width: 600px;
    }
}

/* Pricing Section Styling */
.section-subtitle em,
.section-subtitle strong {
    background: linear-gradient(135deg, #FFEB3B 0%, #FFB74D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-shadow: 0 1px 2px rgba(255, 235, 59, 0.15) !important;
    letter-spacing: 0.2px !important;
    position: relative !important;
}

/* ========== DISCOUNT WHEEL SECTION ========== */
.wheel-section {
    padding: 80px 0 40px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    margin: 0;
}


.wheel-header {
    text-align: center;
    margin-bottom: 60px;
}

.wheel-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wheel-container-main {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wheel-caption {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
}

.wheel-game-area {
    position: relative;
    display: inline-block;
    margin: 0 auto 40px auto;
}

.spin-wheel {
    position: relative;
    width: 420px;
    height: 420px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

.spin-wheel:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.spin-wheel:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.wheel-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.slice {
    stroke: #000;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.win-slice {
    fill: #00ff00;
}

.lose-slice {
    fill: #ff3b30;
}

.slice-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    pointer-events: none;
}

.win-text {
    fill: #000;
}

.lose-text {
    fill: #fff;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tap-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.result-banner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0;
    transition: all 0.5s ease;
}

.result-banner.show {
    opacity: 1;
}

.result-banner.win {
    background: transparent;
    color: #ffffff;
    border: none;
}

.result-banner.lose {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
    color: #fff;
}

.modal-description {
    font-size: 1rem;
    color: #a1a1a1;
    text-align: center;
    margin-bottom: 30px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-email-input {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-email-input::placeholder {
    color: #a1a1a1;
}

.modal-email-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
}

.modal-submit-btn {
    padding: 18px 36px;
    background: #ffd700;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

.modal-submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ffd700;
    cursor: pointer;
}

.consent-checkbox label {
    color: #a1a1a1;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.modal-privacy {
    color: #a1a1a1;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #a1a1a1;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinning {
    animation: spin 6s cubic-bezier(0.1, 0.9, 0.25, 1) forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wheel-header h2 {
        font-size: 2.5rem;
    }
    
    .wheel-caption {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .spin-wheel {
        width: 300px;
        height: 300px;
    }
    
    .wheel-center {
        width: 85px;
        height: 85px;
    }
    
    .tap-text {
        font-size: 0.8rem;
    }
    
    .slice-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .wheel-header h2 {
        font-size: 2rem;
    }
    
    .wheel-caption {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .spin-wheel {
        width: 260px;
        height: 260px;
    }
    
    .wheel-center {
        width: 70px;
        height: 70px;
    }
    
    .tap-text {
        font-size: 0.7rem;
    }
    
    .slice-text {
        font-size: 10px;
    }
    
    .modal-content {
        padding: 30px;
        margin: 20px;
    }
}

