/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Valtori Brand Variables */
:root {
    --gold: #D4AF37;
    --light-gold: #F7E27C;
    --black: #111111;
    --dark-gray: #1A1A1A;
    --off-white: #F5F5F5;
    --emerald: #28A745;
    --muted-red: #E63946;
    
    --font-display: 'Playfair Display', serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--off-white);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 1rem;
}

/* Buttons */
.primary-button {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--black);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.primary-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.primary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.secondary-button {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.secondary-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.secondary-button.large {
    padding: 18px 38px;
    font-size: 1.1rem;
}

.cta-button {
    background: var(--emerald);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--off-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--off-white);
    font-family: var(--font-ui);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
}

.cta-subtext {
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

.social-proof {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--emerald);
}

/* Hero Image - Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-container:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 15px;
    font-size: 0.8rem;
    color: var(--off-white);
}

.status-icons {
    display: flex;
    gap: 5px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
}

.call-timer {
    color: var(--emerald);
    font-weight: 600;
}

.prospect-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.prospect-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.prospect-details h4 {
    color: var(--off-white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.prospect-details p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.difficulty-badge {
    background: var(--gold);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.live-coaching {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--emerald);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.coaching-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.9rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.coaching-message p {
    color: var(--off-white);
    font-size: 0.85rem;
    line-height: 1.4;
}

.suggestions {
    margin-bottom: 20px;
}

.suggestion-header {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.suggestion-pills {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pill {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn.mute {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.control-btn.notes {
    background: rgba(245, 245, 245, 0.1);
    color: var(--off-white);
}

.control-btn.end {
    background: var(--muted-red);
    color: white;
}

.control-btn:hover {
    transform: scale(1.1);
}

/* Problem Section - Redesigned */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(17, 17, 17, 0.9));
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem-text {
    max-width: 500px;
}

.problem h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.problem-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-ui);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    margin-top: 0.5rem;
    max-width: 120px;
}

.problem-description {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.challenge-card {
    background: rgba(17, 17, 17, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.challenge-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(17, 17, 17, 0.8);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.challenge-card h3 {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.8rem;
    font-family: var(--font-ui);
    font-weight: 600;
}

.challenge-card p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Solution Section - With Sticky Content */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(26, 26, 26, 0.8));
    position: relative;
    min-height: 100vh; /* Ensure enough height for sticky behavior */
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.3), transparent);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.solution-text {
    max-width: 500px;
    position: sticky;
    top: 120px; /* Adjust based on your navbar height */
    align-self: start;
    z-index: 10;
}

.solution h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.solution-benefits {
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.9);
}

.benefit i {
    color: var(--emerald);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit span {
    font-size: 1.05rem;
    line-height: 1.4;
}

.success-metric {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.metric-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald);
    font-family: var(--font-ui);
    line-height: 1;
}

.metric-text {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-top: 0.5rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-bottom: 0px; /* Add some bottom padding */
}

.feature-card {
    background: rgba(40, 167, 69, 0.08);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(40, 167, 69, 0.4);
    background: rgba(40, 167, 69, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--emerald);
    margin-bottom: 0.8rem;
    font-family: var(--font-ui);
    font-weight: 600;
}

.feature-card p {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced sticky behavior with smooth transitions */
.solution-text {
    transition: all 0.3s ease;
}

/* Add a subtle shadow when sticky */
.solution-text.is-sticky {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive - Disable sticky on mobile */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .solution-text {
        position: static; /* Disable sticky on mobile */
        max-width: 100%;
        text-align: center;
    }
    
    .solution h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-benefits {
        max-width: 400px;
        margin: 0 auto 2.5rem;
    }
    
    .benefit {
        justify-content: center;
        text-align: center;
    }
    
    .solution {
        min-height: auto; /* Remove min-height on mobile */
    }
}

@media (max-width: 480px) {
    .solution {
        padding: 60px 0;
    }
    
    .solution h2 {
        font-size: 1.8rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}


/* Demo Section */
.demo {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.5);
}

.demo-subtitle {
    text-align: center;
    color: rgba(245, 245, 245, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--light-gold);
}

.video-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--off-white);
}

.video-overlay h3 {
    margin-bottom: 0.5rem;
}

.video-overlay p {
    color: rgba(245, 245, 245, 0.8);
}

#demoVideo {
    width: 100%;
    height: 450px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(17, 17, 17, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial p {
    color: rgba(245, 245, 245, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info strong {
    color: var(--off-white);
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}

/* Features */
.features {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: rgba(245, 245, 245, 0.7);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    color: rgba(245, 245, 245, 0.9);
}

.pricing-card li:has-text("✅") {
    color: var(--emerald);
}

.pricing-card li:has-text("❌") {
    color: rgba(245, 245, 245, 0.5);
}

.pricing-card li:has-text("⚠️") {
    color: #ffc107;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.5);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 2rem;
}

.guarantee {
    color: var(--emerald);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(245, 245, 245, 0.7);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: rgba(245, 245, 245, 0.6);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(245, 245, 245, 0.6);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* Modal Styles - Fixed Positioning */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Allow scrolling if needed */
    padding: 20px 0; /* Add padding for small screens */
}

.modal-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.95));
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    
    /* Fixed positioning in center */
    position: relative;
    margin: 5vh auto; /* 5% from top and centered horizontally */
    max-height: 90vh; /* Maximum height */
    overflow-y: auto; /* Allow scrolling within modal if needed */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 25px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        margin: 2vh auto; /* Less margin on very small screens */
    }
}



.close {
    color: rgba(245, 245, 245, 0.6);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: rgba(245, 245, 245, 0.8);
}

#signupForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#signupForm input,
#signupForm select {
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.8);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#signupForm input:focus,
#signupForm select:focus {
    outline: none;
    border-color: var(--gold);
}

#signupForm input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.modal-subtext {
    text-align: center;
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--gold);
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.loading-spinner p {
    font-size: 1.2rem;
    color: var(--off-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .pain-points,
    .solution-points,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .primary-button.large,
    .secondary-button.large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 15% auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFD700;
        --off-white: #FFFFFF;
        --black: #000000;
    }
}
