

/* ---------- HERO SHELL ---------- */
.au-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 76px;
    background:
        radial-gradient(900px 420px at 12% -10%, rgba(119, 78, 255, .14), transparent 60%),
        radial-gradient(820px 420px at 100% 0%, rgba(79, 70, 229, .12), transparent 55%),
        linear-gradient(180deg, #f7f5ff 0%, #ffffff 100%);
}

.au-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 70, 229, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
    pointer-events: none;
}

.au-hero .container {
    position: relative;
    z-index: 1;
}

.au-hero-title {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.au-hero-title .grad {
    background: linear-gradient(120deg, #774eff 0%, #4f46e5 60%, #6342ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-hero-para {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 720px;
    margin: 0 auto 1.9rem;
}

/* ---------- HERO CTA BUTTONS ---------- */
.au-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn-au-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #774eff 0%, #4f46e5 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: 14px !important;
    border: none;
    box-shadow: 0 14px 30px rgba(79, 70, 229, .28);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-au-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 20px 38px rgba(79, 70, 229, .34);
}

.btn-au-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 14px !important;
    border: 1.5px solid var(--border-indigo);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn-au-ghost:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
    border-color: var(--primary-purple);
    box-shadow: 0 14px 28px rgba(79, 70, 229, .14);
}

/* ---------- HERO STATS STRIP ---------- */
.au-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 980px;
    margin: 54px auto 0;
}

.au-stat {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-indigo);
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(78, 49, 173, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.au-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(119, 78, 255, .45);
    box-shadow: 0 20px 40px rgba(119, 78, 255, .15);
}

.au-stat-num {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.01em;
    background: linear-gradient(120deg, #774eff, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-stat-label {
    margin-top: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-body);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .au-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 540px;
    }
}

@media (max-width: 575.98px) {
    .au-hero {
        padding: 56px 0 48px;
    }

    .au-stat {
        padding: 18px 10px;
        border-radius: 14px;
    }

    .au-cta-row .btn-au-primary,
    .au-cta-row .btn-au-ghost {
        width: 100%;
        justify-content: center;
    }
}


/* =====================================================================
   DOMAIN REGISTRATION — DARK SPLIT HERO
   (scoped to .domain-registration so other page-hero.css users are safe)
   ===================================================================== */
.domain-registration .dr-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 88px;
    color: #fff;
    background:
        radial-gradient(720px 480px at 82% 38%, rgba(140, 102, 255, .55), transparent 62%),
        linear-gradient(135deg, #281a63 0%, #392484 50%, #4a2da4 100%);
}

.domain-registration .dr-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .55;
    pointer-events: none;
}

.domain-registration .dr-plus {
    position: absolute;
    color: rgba(255, 255, 255, .22);
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.domain-registration .dr-plus-1 {
    top: 24%;
    left: 52%;
    font-size: 30px;
}

.domain-registration .dr-plus-2 {
    bottom: 16%;
    right: 5%;
    font-size: 42px;
}

.domain-registration .dr-plus-3 {
    top: 12%;
    right: 16%;
    font-size: 24px;
}

.domain-registration .dr-hero .container {
    position: relative;
    z-index: 1;
}

/* badge */
.domain-registration .dr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #e9e4ff;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.domain-registration .dr-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .22);
}

/* heading + sub */
.domain-registration .dr-title {
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 18px;
}

.domain-registration .dr-title .grad {
    display: block;
    color: #fff;
}

.domain-registration .dr-sub {
    max-width: 460px;
    margin-bottom: 26px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
}

/* search bar */
.domain-registration .dr-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 480px;
    padding: 7px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(20, 10, 60, .35);
}

.domain-registration .dr-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa1ac;
    font-size: 14px;
    pointer-events: none;
}

.domain-registration .dr-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 12px 12px 42px;
    font-size: .98rem;
    color: #1f2430;
}

.domain-registration .dr-search-input::placeholder {
    color: #9aa1ac;
}

.domain-registration .dr-search-btn {
    flex-shrink: 0;
    border: 0;
    border-radius: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #7c4dff, #5b3fd6);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: filter .2s ease, transform .2s ease;
}

.domain-registration .dr-search-btn:hover {
    color: #fff;
    filter: brightness(1.07);
}

/* tld chips */
.domain-registration .dr-tlds {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.domain-registration .dr-tld {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
}

.domain-registration .dr-tld-tag {
    font-style: normal;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    background: #22c55e;
    color: #04220f;
    padding: 2px 6px;
    border-radius: 4px;
}

.domain-registration .dr-viewall {
    color: #c9beff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.domain-registration .dr-viewall:hover {
    color: #fff;
    text-decoration: underline;
}

/* usp row */
.domain-registration .dr-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 30px;
}

.domain-registration .dr-usp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-registration .dr-usp-ic {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, .10);
    color: #c9beff;
    font-size: 15px;
}

.domain-registration .dr-usp strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2;
}

.domain-registration .dr-usp span {
    /* display: block; */
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

/* browser mockup */
.domain-registration .dr-window {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(15, 8, 50, .45);
    animation: dr-float 6s ease-in-out infinite;
}

.domain-registration .dr-window-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: #f3f4f8;
    border-bottom: 1px solid #eceef3;
}

.domain-registration .dr-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.domain-registration .dr-dot-r { background: #ff5f57; }
.domain-registration .dr-dot-y { background: #febc2e; }
.domain-registration .dr-dot-g { background: #28c840; }

.domain-registration .dr-url {
    flex: 1;
    margin-left: 8px;
    padding: 6px 12px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid #e6e8ef;
    font-size: .8rem;
    color: #6b7280;
}

.domain-registration .dr-window-body {
    padding: 16px;
}

.domain-registration .dr-available {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 11px 14px;
    border-radius: 10px;
    background: #e9faf0;
    border: 1px solid #c7f0d6;
    color: #0f9d58;
    font-size: .9rem;
    font-weight: 600;
}

.domain-registration .dr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border: 1px solid #eef0f5;
    border-radius: 10px;
}

.domain-registration .dr-row:last-child {
    margin-bottom: 0;
}

.domain-registration .dr-row-tld {
    flex: 1;
    color: #1f2430;
    font-size: .95rem;
    font-weight: 700;
}

.domain-registration .dr-row-price {
    color: #6b7280;
    font-size: .85rem;
}

.domain-registration .dr-row-add {
    padding: 6px 16px;
    border-radius: 7px;
    background: linear-gradient(135deg, #7c4dff, #5b3fd6);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
}

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

/* ---- responsive ---- */
@media (max-width: 991.98px) {
    .domain-registration .dr-hero {
        padding: 60px 0 64px;
        text-align: center;
    }

    .domain-registration .dr-sub,
    .domain-registration .dr-search {
        margin-left: auto;
        margin-right: auto;
    }

    .domain-registration .dr-tlds,
    .domain-registration .dr-usps {
        justify-content: center;
    }

    .domain-registration .dr-window {
        margin: 6px auto 0;
    }

    .domain-registration .dr-plus {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .domain-registration .dr-usps {
        gap: 16px;
    }

    .domain-registration .dr-search-btn {
        padding: 12px 18px;
    }

    .domain-registration .dr-usp {
        flex: 1 1 100%;
        justify-content: center;
    }
}


/* =====================================================================
   DOMAIN REGISTRATION — "WHY YOUSTABLE" + STATS GRID
   ===================================================================== */
.domain-registration .dr-why {
    padding: 80px 0;
    background: #f5f6fa;
}

.domain-registration .dr-why-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-purple);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.domain-registration .dr-why-title {
    margin-bottom: 26px;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--text-main);
}

.domain-registration .dr-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-registration .dr-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.5;
}

.domain-registration .dr-why-list li:last-child {
    margin-bottom: 0;
}

.domain-registration .dr-why-check {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(124, 77, 255, .12);
    color: #7c4dff;
    font-size: 11px;
}

.domain-registration .dr-why-list a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

.domain-registration .dr-why-list a:hover {
    text-decoration: underline;
}

/* stats grid */
.domain-registration .dr-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.domain-registration .dr-stat {
    padding: 28px 26px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ececf3;
    box-shadow: 0 10px 30px rgba(30, 20, 70, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.domain-registration .dr-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(124, 77, 255, .12);
}

.domain-registration .dr-stat-num {
    margin-bottom: 8px;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.01em;
    background: linear-gradient(120deg, #7c4dff, #5b3fd6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.domain-registration .dr-stat-label {
    color: var(--text-body);
    font-size: .92rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .domain-registration .dr-why {
        padding: 56px 0;
    }
}

@media (max-width: 575.98px) {
    .domain-registration .dr-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .domain-registration .dr-stat {
        padding: 22px 20px;
    }
}


/* =====================================================================
   DOMAIN REGISTRATION — "LIVE IN THREE SIMPLE STEPS" CARD
   ===================================================================== */
.domain-registration .dr-steps {
    padding: 30px 0 80px;
    background: #fff;
}

.domain-registration .dr-steps-card {
    position: relative;
    overflow: hidden;
    padding: 56px 48px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(600px 320px at 80% 8%, rgba(140, 102, 255, .42), transparent 60%),
        linear-gradient(135deg, #281a63 0%, #3a2484 55%, #4a2da4 100%);
}

.domain-registration .dr-steps-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

.domain-registration .dr-steps-head {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 38px;
}

.domain-registration .dr-steps-title {
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
}

.domain-registration .dr-steps-sub {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
}

.domain-registration .dr-steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.domain-registration .dr-step {
    padding: 26px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .25s ease, background .25s ease;
}

.domain-registration .dr-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .10);
}

.domain-registration .dr-step-num {
    display: block;
    margin-bottom: 16px;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    color: #b9a4ff;
}

.domain-registration .dr-step-title {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.domain-registration .dr-step-text {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .66);
}

@media (max-width: 991.98px) {
    .domain-registration .dr-steps-card {
        padding: 44px 26px;
    }

    .domain-registration .dr-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .domain-registration .dr-steps {
        padding: 20px 0 56px;
    }

    .domain-registration .dr-steps-card {
        padding: 36px 20px;
        border-radius: 20px;
    }
}


/* =====================================================================
   DOMAIN REGISTRATION — POPULAR EXTENSIONS & PRICES
   ===================================================================== */
.domain-registration .dr-pricing {
    padding: 80px 0;
    background: #fff;
}

.domain-registration .dr-pricing-head {
    margin-bottom: 40px;
}

.domain-registration .dr-pricing-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-purple);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.domain-registration .dr-pricing-title {
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text-main);
}

.domain-registration .dr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: start;
}

.domain-registration .dr-price-card {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 22px 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ececf3;
    box-shadow: 0 8px 24px rgba(30, 20, 70, .04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    height: 100%;
}

.domain-registration .dr-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 77, 255, .35);
    box-shadow: 0 16px 36px rgba(124, 77, 255, .14);
}

.domain-registration .dr-price-tld {
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
}

.domain-registration .dr-price-old {
    font-size: .82rem;
    font-weight: 500;
    color: #9aa1ac;
    text-decoration: line-through;
}

.domain-registration .dr-price-now {
    margin-top: 2px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #5b3fd6;
}

.domain-registration .dr-price-now .dr-yr {
    font-size: .72rem;
    font-weight: 600;
    color: #9aa1ac;
}

.domain-registration .dr-price-sale {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(124, 77, 255, .12);
    color: #5b3fd6;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .06em;
}

@media (max-width: 1199.98px) {
    .domain-registration .dr-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    .domain-registration .dr-pricing {
        padding: 56px 0;
    }

    .domain-registration .dr-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .domain-registration .dr-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
