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

:root {
    --primary-gradient: linear-gradient(135deg, #0066ff 0%, #00ffcc 100%);
    --secondary-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-blue: #0066ff;
    --accent-cyan: #00ffcc;
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--secondary-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.domain-display {
    text-align: right;
}

.domain {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Unified Pricing Section */
.unified-pricing {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.price-display {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.secure-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.secure-button::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;
}

.secure-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.6);
}

.secure-button:hover::before {
    left: 100%;
}

.offer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-glass);
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-proposition {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.value-tag {
    background: var(--primary-gradient);
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.value-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

/* Price Card - Primary CTA */
.price-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card {
    display: block;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px -12px rgba(0, 102, 255, 0.25);
}

.price-card:hover::before {
    opacity: 0.1;
}

.price-card:hover .price-amount {
    transform: scale(1.05);
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.price-details {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tld-badge, .structure-badge {
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.structure-badge {
    background: rgba(0, 255, 204, 0.2);
    border-color: rgba(0, 255, 204, 0.3);
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Features Section */
.features-section {
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-glass);
}

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

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

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

/* Primary Actions Section */
.primary-actions {
    text-align: center;
    margin: 3rem 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 300px;
}

/* Neon glowing effects */
.secure-btn {
    box-shadow: 
        0 0 20px rgba(0, 255, 204, 0.3),
        inset 0 0 20px rgba(0, 255, 204, 0.1);
}

.afternic-secure {
    border-color: rgba(0, 255, 204, 0.5);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 255, 0.1));
}

.afternic-secure:hover {
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 204, 0.6),
        0 0 60px rgba(0, 255, 204, 0.4),
        inset 0 0 30px rgba(0, 255, 204, 0.2);
    transform: translateY(-4px) scale(1.02);
}

.sedo-secure {
    border-color: rgba(255, 165, 0, 0.5);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 165, 0, 0.1));
}

.sedo-secure:hover {
    border-color: #ffa500;
    box-shadow: 
        0 0 30px rgba(255, 165, 0, 0.6),
        0 0 60px rgba(255, 165, 0, 0.4),
        inset 0 0 30px rgba(255, 165, 0, 0.2);
    transform: translateY(-4px) scale(1.02);
}

/* Trust Section */
.trust-section {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.trust-container {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.trust-heading {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.trust-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Offer Section */
.offer-section {
    text-align: center;
}

.offer-container {
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.clickable-offer {
    cursor: pointer;
}

.clickable-offer:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.minimum-offer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offer-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.offer-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Trust Buttons */
.trust-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-button {
    background: var(--primary-gradient);
    border: 2px solid transparent;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.trust-button::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;
}

.trust-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.6);
}

.trust-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    margin-top: 4rem;
    text-align: center;
}

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

.footer-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .domain {
        font-size: 2.5rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .price-card {
        padding: 2rem;
        min-width: 280px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .unified-pricing {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .price-display {
        font-size: 3.5rem;
    }

    .secure-button {
        font-size: 1.1rem;
        padding: 1.3rem 2.5rem;
    }

    .trust-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .trust-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 2rem 1.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .domain {
        font-size: 2rem;
    }
    
    .value-proposition {
        justify-content: center;
    }

    .price-display {
        font-size: 2.8rem;
    }

    .secure-button {
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }
}

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

.hero-text, .price-card {
    animation: fadeInUp 0.8s ease-out;
}

.price-card {
    animation-delay: 0.2s;
}

/* Micro-interactions */
.value-tag, .secondary-btn {
    cursor: pointer;
}

.price-card {
    cursor: pointer;
}

/* Focus states for accessibility */
.secure-button:focus,
.trust-button:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
