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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f5f7fa;
    color: #111827;
    line-height: 1.6;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background:
        radial-gradient(circle at top right, rgba(30, 64, 175, 0.12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(220, 38, 38, 0.08), transparent 35%),
        #ffffff;
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.domain {
    font-size: clamp(58px, 11vw, 125px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -5px;
    color: #111827;
    margin-bottom: 25px;
}

.domain span {
    color: #dc2626;
}

.hero h1 {
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    max-width: 720px;
    margin: 0 auto 35px;
    font-size: 18px;
    color: #64748b;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.20);
}

.cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.section {
    padding: 90px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: #64748b;
    font-size: 17px;
}

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

.card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #64748b;
    font-size: 15px;
}

.highlight-section {
    padding: 90px 20px;
    background: #111827;
    color: #ffffff;
}

.highlight-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.highlight-box h2 {
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight-box p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    font-size: 17px;
}

.domain-box {
    display: inline-block;
    margin: 10px 0 35px;
    padding: 18px 30px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    font-size: 28px;
    font-weight: 700;
}

/* DOMAIN + WEBSITE PACKAGE SECTION */

#packages {
    background: #ffffff;
}

.packages-cards .package-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.packages-cards .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.package-features {
    list-style: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.package-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #334155;
}

.package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
}

.packages-note {
    max-width: 780px;
    margin: 45px auto 0;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-style: italic;
}

.packages-cta-wrap {
    text-align: center;
    margin-top: 35px;
}

.contact-section {
    padding: 90px 20px;
    background: #ffffff;
    text-align: center;
}

.contact-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.contact-section p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #64748b;
}

.company {
    margin-top: 45px;
    color: #94a3b8;
    font-size: 14px;
}

.company strong {
    color: #111827;
}

.company-link {
    color: #64748b;
    text-decoration: none;
    font-size: 1.2rem;
    transition: font-weight 0.15s ease;
}

footer {
    padding: 25px 20px;
    text-align: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 13px;
}

@media (max-width: 800px) {

    .cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 65px 20px;
    }

    .highlight-section {
        padding: 65px 20px;
    }

    .domain {
        letter-spacing: -3px;
    }
}

@media (max-width: 480px) {

    .hero {
        min-height: 80vh;
    }

    .domain {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .domain-box {
        font-size: 21px;
        padding: 15px 20px;
    }
}
