@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
    --bg-main: #050505;
    --text-primary: #ffffff;
    --text-muted: #737373;
    --accent: #ffffff; 
    --card-bg: #0a0a0a;
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Hero */
.hero {
    padding: 160px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.logo-container {
    position: absolute;
    top: 50px;
    left: 5%;
}

.brand-logo { height: 24px; opacity: 0.5; transition: opacity 0.3s; }
.brand-logo:hover { opacity: 1; }

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    max-width: 900px;
}

.hero h1 .gradient-text {
    font-weight: 500;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 450px;
}

/* Pricing Grid */
.pricing { padding: 80px 0 150px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border); /* Creates 1px borders between items */
    border: 1px solid var(--border);
}

.pricing-card {
    background: var(--bg-main);
    padding: 60px 40px;
    transition: background 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: var(--card-bg);
}

.pricing-card.popular {
    background: #0a0a0a; /* Slightly elevated */
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border: 1px solid var(--text-primary);
    color: var(--bg-main);
    background: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 10;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.currency { font-size: 1.2rem; margin-top: 10px; margin-right: 5px; color: var(--text-muted); }
.amount { font-size: 4.5rem; font-weight: 200; line-height: 1; letter-spacing: -0.04em; }

.desc { font-size: 0.9rem; color: var(--text-muted); min-height: 50px; margin-bottom: 40px; }

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features { list-style: none; margin-bottom: 60px; flex: 1; }
.features li { font-size: 0.9rem; color: #a3a3a3; margin-bottom: 16px; display: flex; gap: 12px; }
.features li i, .features li svg { width: 16px; height: 16px; min-width: 16px; opacity: 0.5; margin-top: 3px; flex-shrink: 0; }
.features li.bonus { margin-top: 30px; color: var(--text-primary); }

.card-footer {
    margin-top: auto;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
}

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

.btn-outline:hover { background: var(--text-primary); color: var(--bg-main); }

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-main);
    border: 1px solid var(--text-primary);
}

.btn-primary:hover { background: transparent; color: var(--text-primary); border-color: var(--border); }

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.payment-methods p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.payment-icons i {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Benefits */
.benefits { padding: 100px 0; border-top: 1px solid var(--border); }
.section-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 80px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item h4 { font-size: 1.2rem; font-weight: 400; margin-bottom: 15px; }
.benefit-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.icon-box { margin-bottom: 20px; opacity: 0.5; }

/* Domain */
.domain-info { padding: 100px 0 150px; }
.domain-box {
    border: 1px solid var(--border);
    padding: 80px;
    background: var(--card-bg);
}

.domain-content h3 { font-size: 2rem; font-weight: 300; margin-bottom: 30px; letter-spacing: -0.02em; }
.domain-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; max-width: 700px; }
.domain-content .highlight { margin-top: 40px; font-weight: 400; color: var(--text-primary); }

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; background: transparent; border: none; gap: 20px; }
    .pricing-card { border: 1px solid var(--border); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding-top: 120px; }
    .logo-container { top: 30px; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .pricing-card { padding: 40px 20px; }
    .domain-box { padding: 40px 20px; }
    .benefits-grid { grid-template-columns: 1fr; }
}
