/* CLEAN style.css - Your Original Beautiful Design */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64ffda;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ccd6f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #64ffda;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ccd6f6;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    word-wrap: break-word;
}

.hero .highlight {
    color: #64ffda;
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #8892b0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    word-wrap: break-word;
    max-width: 100%;
}

.hero-note {
    font-size: 1rem;
    color: #8892b0;
    margin-top: 1rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(100, 255, 218, 0.1);
    transition: left 0.3s;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
    transform: translateY(-3px);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0a192f;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #64ffda, #0a192f);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: -2rem auto 3rem;
    line-height: 1.7;
}

.section-intro-light {
    text-align: center;
    font-size: 1.2rem;
    color: #ccd6f6;
    max-width: 700px;
    margin: -2rem auto 3rem;
    line-height: 1.7;
}

.section-intro-dark {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.7;
}

/* ===== STORY SECTION ===== */
.story {
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.story-text .emphasis {
    color: #0a192f;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin: 1rem 0;
}

.story-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.story-visual h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.story-steps {
    list-style: none;
}

.story-steps li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.story-steps li::before {
    content: '✓';
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #64ffda;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #0a192f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

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

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: white;
}

.pricing .section-title {
    color: #ccd6f6;
}

.pricing .section-title::after {
    background: linear-gradient(to right, #64ffda, transparent);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    padding: 2.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #64ffda;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured {
    border-color: #64ffda;
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #64ffda;
    color: #0a192f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.pricing-card > p {
    color: #8892b0;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ccd6f6;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccd6f6;
}

.pricing-features li::before {
    content: '✓ ';
    color: #64ffda;
    font-weight: bold;
}

.pricing-note {
    font-size: 0.95rem;
    color: #8892b0;
    line-height: 1.6;
    margin-top: 1.5rem;
    font-style: italic;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #ccd6f6;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: #0a192f;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

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

/* ===== FORM SECTION ===== */
.form-section {
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0a192f;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #64ffda;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
    background: #0a192f;
    color: #8892b0;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ccd6f6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

/* Add these mobile improvements to the bottom of your style.css */

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #64ffda;
    color: #64ffda;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(10px);
        width: 70%;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 8rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-note {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-intro,
    .section-intro-light,
    .section-intro-dark {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Story Section Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-text .emphasis {
        font-size: 1.1rem;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    /* Form Mobile */
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer Mobile */
    footer {
        padding: 2rem 1rem;
    }
    
    /* Sections Padding Mobile */
    section {
        padding: 3rem 1rem;
    }
    
    /* Affiliate Page Mobile */
    .affiliate-hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .affiliate-hero h1 {
        font-size: 2rem;
    }
    
    .affiliate-hero p {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

/* Landscape mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 2rem 2rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .submit-btn,
    .service-card,
    .pricing-card,
    .faq-item {
        -webkit-tap-highlight-color: rgba(100, 255, 218, 0.2);
    }
    
    /* Make clickable areas larger */
    .nav-links a {
        padding: 1.2rem;
    }
    
    button,
    .cta-button {
        min-height: 44px; /* iOS accessibility guideline */
    }
}