:root {
    --primary: #ffb347;
    --primary-dark: #cc8e35;
    --accent: #ffcc33;
    --bg-dark: #0f0f0f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Mesh Gradient */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 179, 71, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 204, 51, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 1) 0%, rgba(20, 20, 20, 1) 100%);
    opacity: 0.8;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
#hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 179, 71, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 179, 71, 0.2);
}

.domain-name {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.domain-name span {
    opacity: 0.8;
    font-weight: 300;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 4rem;
}

/* Price Card */
.price-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-5px);
}

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

.price-info {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
    color: var(--primary);
}

.currency {
    font-size: 2rem;
    font-weight: 300;
    margin-right: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    width: 100%;
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 179, 71, 0.2);
    transform: scale(1.02);
}

/* Features Section */
#features {
    padding: 6rem 0;
}

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

.feature-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 179, 71, 0.3);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

/* Trust Section */
#trust {
    padding: 4rem 0 8rem;
}

.trust-content {
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #hero {
        padding: 6rem 0 3rem;
    }
    
    .domain-name {
        font-size: 3.5rem;
    }
    
    .trust-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 179, 71, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.floating-contact:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--accent);
}

.floating-contact svg {
    position: relative;
    z-index: 2;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring 2s cubic-bezier(0.25, 0, 0.2, 1) infinite;
    z-index: 1;
}

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

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
}
