/* CSS Reset & Variables */
:root {
    --bg-dark: #07070a;
    --bg-darker: #040406;
    --text-main: #f0f0f5;
    --text-muted: #94a3b8;
    --accent-1: #7c3aed;
    --accent-2: #3b82f6;
    --accent-glow: rgba(124, 58, 237, 0.4);
    --glass-bg: rgba(15, 15, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography Options */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pulsing Glow Effect */
@keyframes visual-float {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

.premium-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-card {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: visual-float 4s ease-in-out infinite alternate;
}

.mockup-card .icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.mockup-card .title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-align: center;
}

/* Emphasized Information Box */
.highlight-callout {
    background: rgba(109, 40, 217, 0.15);
    border-left: 4px solid var(--accent-1);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-main);
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

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

.btn-outline:hover {
    background: var(--accent-1);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    padding: 15px 30px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.logo span {
    color: var(--accent-2);
}

.nav-cta {
    padding: 8px 18px;
    font-size: 0.95rem;
}

/* Animated Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-1);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-2);
    top: 30%;
    right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Offset nav */
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-2), #d8b4fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Features */
.features-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 35, 0.8);
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.2);
    border-color: rgba(109, 40, 217, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Requirements */
.requirements-section {
    padding: 60px 0;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.req-text {
    flex: 1;
}

.req-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.req-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--accent-2);
    margin-right: 12px;
    font-weight: bold;
    background: rgba(59, 130, 246, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-image {
    flex: 1;
}

.image-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    background: radial-gradient(circle, rgba(109,40,217,0.1) 0%, rgba(25,25,35,0.6) 100%);
    border: 1px dashed var(--accent-1);
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    text-align: center;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    margin-right: 5px;
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-desc {
    color: var(--accent-2);
    margin-bottom: 30px;
    font-weight: 600;
}

.benefits {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
}

.paypal-container {
    margin-top: auto;
    min-height: 150px;
}

.secure-text {
    margin-top: 20px;
    color: var(--text-muted);
}

/* Footer & Policies */
footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo span { color: var(--accent-2); }

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.copyright {
    color: #666;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Cookie policy page specific */
.policy-container {
    padding: 150px 20px 80px;
    max-width: 800px;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--accent-2);
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 450px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cookie-content a {
    color: var(--accent-2);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.in-view {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* Responsive */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container-flex {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cookie-banner {
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

/* Success Page Enhancements */
.info-box {
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    background: rgba(16, 185, 129, 0.05);
}

/* Copy Link Section */
.copy-link-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--glass-border);
}

.url-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 8px 12px;
    outline: none;
    font-family: monospace;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.manual-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.manual-link:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
    border-color: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px var(--accent-glow);
}

.manual-link span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.manual-link .icon {
    font-size: 1.2rem;
}

.manual-link i {
    color: var(--accent-1);
    font-weight: bold;
    font-size: 0.9rem;
    font-style: normal;
    background: rgba(124, 58, 237, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}
