* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2454d6;
    --primary-dark: #163f9f;
    --secondary: #1da1ff;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #f5f9ff;
    --white: #ffffff;
    --border: #dbe7ff;
    --green: #22c55e;
    --yellow: #ffd24d;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* PROMO BAR */

.promo-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
}

.promo-flex {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-flex strong {
    color: var(--yellow);
}

.promo-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-right a {
    color: #fff;
    font-weight: 700;
}

.promo-right a:first-child {
    background: #fff;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 8px;
}

/* HEADER */

.main-header {
    background: #fff;
    padding: 22px 0 24px;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    z-index: 999;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    white-space: nowrap;
}

.brand-logo span:last-child {
    color: var(--secondary);
}

.logo-icon {
    color: var(--primary) !important;
    font-size: 26px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-menu > a,
.menu-item > a {
    color: #42526e;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    height: 48px;
}

.main-menu > a:hover,
.menu-item > a:hover {
    color: var(--primary);
}

/* DROPDOWN */

.menu-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 54px;
    left: 0;
    width: 310px;
    background: #ffffff;
    border: 1px solid #e5edff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .14);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: all .25s ease;
    z-index: 9999;
}

.menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 14px;
    border-radius: 12px;
    transition: .2s ease;
}

.dropdown a:hover {
    background: #f3f7ff;
}

.dropdown strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 3px;
}

.dropdown span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* HEADER BUTTON */

.get-started-btn {
    background: var(--primary);
    color: #fff;
    padding: 13px 22px;
    border-radius: 9px;
    font-weight: 800;
    transition: .3s ease;
    white-space: nowrap;
}

.get-started-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* DOMAIN SEARCH TOP */

.header-search {
    margin-top: 38px;
    display: flex;
    justify-content: center;
}

.top-domain-search {
    width: min(840px, 100%);
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(37, 84, 214, .08);
}

.top-domain-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 17px;
    color: var(--text);
}

.top-domain-search input::placeholder {
    color: #aeb8c8;
}

.ai-btn {
    background: #fff;
    color: #8a94b8;
    border: 1px solid #d7ddec;
    border-radius: 22px;
    padding: 10px 16px;
    font-weight: 800;
    margin-right: 10px;
}

.top-domain-search button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 26px;
    padding: 13px 28px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s ease;
}

.top-domain-search button[type="submit"]:hover {
    background: var(--primary-dark);
}

/* HERO */

.hero {
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, #dbeafe 0, #eef6ff 30%, #ffffff 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}

.hero-tag,
.hero-badge {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--dark);
    max-width: 650px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 650px;
}

/* SEARCH BOX */

.search-box,
.domain-search {
    display: flex;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(15, 23, 42, .10);
    margin-bottom: 25px;
    max-width: 680px;
}

.search-box input,
.domain-search input {
    flex: 1;
    border: none;
    padding: 22px;
    font-size: 16px;
    outline: none;
    color: var(--text);
}

.search-box button,
.domain-search button {
    border: none;
    background: var(--primary);
    color: #fff;
    padding: 0 35px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.search-box button:hover,
.domain-search button:hover {
    background: var(--primary-dark);
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn,
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 800;
    display: inline-block;
    transition: .3s ease;
}

.primary-btn:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-btn,
.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 800;
    display: inline-block;
    background: #fff;
    transition: .3s ease;
}

.secondary-btn:hover,
.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* HOSTING CARD */

.hosting-card,
.hero-card {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    transition: .3s ease;
}

.hosting-card:hover,
.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
}

.hosting-card span,
.hero-card span {
    color: var(--muted);
    font-weight: 600;
}

.hosting-card h2,
.hero-card h2 {
    font-size: 46px;
    color: var(--primary-dark);
    margin: 15px 0 25px;
    letter-spacing: -1px;
}

.hosting-card ul,
.hero-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.hosting-card li,
.hero-card li {
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--dark);
}

.hosting-card li::before,
.hero-card li::before,
.price-card li::before,
.pricing-card li::before {
    content: "✓";
    color: var(--green);
    margin-right: 10px;
    font-weight: 900;
}

.full-btn {
    width: 100%;
    text-align: center;
}

/* FEATURES */

.features,
.trust-section {
    padding: 42px 0;
    background: #fff;
}

.features-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box,
.trust-box {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
    border: 1px solid #edf3ff;
    transition: .3s ease;
}

.feature-box:hover,
.trust-box:hover {
    transform: translateY(-6px);
}

.feature-box h3,
.trust-box h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-box p,
.trust-box p {
    color: var(--muted);
}

/* SERVICES */

.services,
.services-section {
    padding: 90px 0;
    background: #fff;
}

.section-title,
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-title span,
.section-heading span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.section-title h2,
.section-heading h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin: 10px 0;
    color: var(--dark);
    line-height: 1.15;
}

.section-title p,
.section-heading p {
    font-size: 18px;
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
    border: 1px solid #edf3ff;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .10);
}

.service-card.active {
    border: 2px solid var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--dark);
}

.service-card p {
    color: var(--muted);
}

/* PRICING */

.pricing,
.pricing-section {
    padding: 90px 0;
    background: #eef5ff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.price-card,
.pricing-card {
    background: #fff;
    padding: 38px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 14px 45px rgba(15, 23, 42, .07);
    border: 1px solid #edf3ff;
    transition: .3s ease;
}

.price-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
}

.price-card.popular,
.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.price-card.popular:hover,
.pricing-card.popular:hover {
    transform: translateY(-16px);
}

.popular-badge,
.popular-label {
    position: absolute;
    top: -14px;
    left: 30px;
    background: var(--primary);
    color: #fff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
}

.price-card h3,
.pricing-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
    color: var(--dark);
}

.price {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.price small {
    font-size: 16px;
    color: var(--muted);
}

.price-card ul,
.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li,
.pricing-card li {
    margin-bottom: 14px;
    color: var(--dark);
}

/* CTA */

.cta-section {
    padding: 90px 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 32px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-box span {
    color: #bfdbfe;
    font-weight: 900;
}

.cta-box h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    margin: 8px 0;
}

.cta-box p {
    color: #dbeafe;
}

.cta-btn {
    background: #fff;
    color: var(--primary);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 900;
    white-space: nowrap;
}

/* FOOTER */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 12px;
}

.footer a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.footer p {
    color: #cbd5e1;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #94a3b8;
}

/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    z-index: 9999;
}

/* SIMPLE PAGE */

.simple-page {
    padding: 120px 0;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .hero-grid,
    .pricing-grid,
    .services-grid,
    .features-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular,
    .pricing-card.popular,
    .price-card.popular:hover,
    .pricing-card.popular:hover {
        transform: none;
    }
}

@media (max-width: 900px) {
    .promo-flex,
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-right {
        flex-wrap: wrap;
        gap: 14px;
    }

    .main-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item > a,
    .main-menu > a {
        height: auto;
        padding: 8px 0;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 1px solid #edf3ff;
        margin-top: 8px;
        display: none;
    }

    .menu-item:hover .dropdown {
        display: block;
    }

    .top-domain-search {
        flex-direction: column;
        border-radius: 18px;
        align-items: stretch;
    }

    .ai-btn,
    .top-domain-search button[type="submit"] {
        margin: 6px 0 0;
        width: 100%;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .search-box,
    .domain-search {
        flex-direction: column;
    }

    .search-box button,
    .domain-search button {
        padding: 18px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}