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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(72, 219, 251, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Header */
header {
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.95) 0%, rgba(32, 58, 67, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(120, 119, 198, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 28px;
    background: linear-gradient(135deg, #48dbfb 0%, #7877c6 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(72, 219, 251, 0.05) 0%, rgba(120, 119, 198, 0.05) 50%, rgba(255, 107, 107, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #7877c6 0%, #48dbfb 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.domain-name {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 50%, #0f2027 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(120, 119, 198, 0.3);
    position: relative;
}

.domain-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7877c6, transparent);
    border-radius: 2px;
}

.tagline {
    font-size: 26px;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #7877c6 0%, #48dbfb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6866b0 0%, #3cc3e0 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.5);
}

.btn-secondary {
    background: white;
    color: #2c5364;
    border: 2px solid #7877c6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2c5364 0%, #0f2027 100%);
    color: white;
    border-color: #2c5364;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 83, 100, 0.4);
}

.btn-large {
    width: 100%;
    padding: 18px 35px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 80px 40px;
}

.features h3 {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #48dbfb, #7877c6, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(120, 119, 198, 0.3);
    box-shadow: 0 20px 50px rgba(120, 119, 198, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 10px;
}

.feature-card p {
    color: #718096;
    font-size: 15px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(72, 219, 251, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-item h4 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #48dbfb 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(72, 219, 251, 0.5);
}

.stat-item p {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.3), transparent);
}

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

.contact-section h3 {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    color: #718096;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-email {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(72, 219, 251, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(120, 119, 198, 0.2);
}

.contact-email a {
    color: #2c5364;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
}

.contact-email a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #48dbfb 100%);
    color: white;
    padding: 2px 8px;
}

.contact-container .btn-large {
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.email-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.email-buttons .btn {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.btn-icon {
    font-size: 20px;
    margin-right: 8px;
}

.btn-outline {
    background: white;
    color: #2c5364;
    border: 2px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #f7fafc;
    border-color: #7877c6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.2);
}

.or-text {
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 25px 0;
    position: relative;
}

.or-text::before,
.or-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.or-text::before {
    left: 0;
}

.or-text::after {
    right: 0;
}

/* Footer */
footer {
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
    color: white;
    border-top: 2px solid rgba(120, 119, 198, 0.2);
}

.footer-content p {
    margin: 10px 0;
}

.footer-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-name {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    header {
        padding: 15px 20px;
    }
    
    .hero,
    .features,
    .contact-section {
        padding: 40px 20px;
    }
    
    .features h3,
    .contact-section h3 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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