/* ============================================================
   ElleHost — Professional Stylesheet
   Built on Bootstrap 5 with Ellebyte brand overrides
   ============================================================ */

/* ── CSS Custom Properties (Brand Palette) ──────────── */
:root {
    /* UI UX Pro Max — Vibrant SaaS Palette */
    --el-primary:    #86198f;
    --el-primary-l:  #a21caf;
    --el-primary-d:  #581c87;
    --el-accent:     #d946ef;
    --el-accent-l:   #e879f9;
    --el-cta:        #f97316;
    --el-cta-hover:  #ea6c0b;
    --el-success:    #00c853;
    --el-warning:    #fbbf24;
    --el-danger:     #f44336;
    --el-bg:         #fdf4ff;
    --el-bg-blue:    #fae8ff;
    --el-card:       #ffffff;
    --el-text:       #1e1b4b;
    --el-muted:      #6b7280;
    --el-border:     #e9d5ff;
    --el-radius:     0.75rem;
    --el-shadow-sm:  0 1px 3px rgba(134,25,143,.06);
    --el-shadow:     0 4px 24px rgba(134,25,143,.1);
    --el-shadow-lg:  0 12px 48px rgba(134,25,143,.15);
    --el-transition: .25s cubic-bezier(.4,0,.2,1);
    --el-font:       'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── Base Reset & Typography ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--el-font);
    color: var(--el-text);
    background: var(--el-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--el-primary);
    line-height: 1.2;
    letter-spacing: -.01em;
}

a {
    color: var(--el-accent);
    text-decoration: none;
    transition: color var(--el-transition);
}
a:hover { color: var(--el-accent-l); }

img { max-width: 100%; height: auto; }

/* ── Preloader ──────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #86198f, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s;
}
#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navbar ─────────────────────────────────────────── */
.navbar-ellehost {
    background: rgba(253,244,255,.97);
    padding: .6rem 0;
    box-shadow: 0 2px 12px rgba(134,25,143,.08);
    transition: background var(--el-transition), padding var(--el-transition), box-shadow var(--el-transition);
    border-bottom: 1px solid var(--el-border);
}
.navbar-ellehost.scrolled {
    background: rgba(253,244,255,.99);
    padding: .45rem 0;
    box-shadow: 0 4px 20px rgba(134,25,143,.12);
    backdrop-filter: blur(12px);
}
.navbar-ellehost .navbar-brand img {
    height: 38px;
    transition: height var(--el-transition);
}
.navbar-ellehost .navbar-brand-name {
    font-size: .95rem;
    font-weight: 900;
    color: var(--el-primary);
    letter-spacing: -.01em;
    white-space: nowrap;
    background: linear-gradient(135deg, #86198f, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-ellehost.scrolled .navbar-brand img { height: 32px; }
.navbar-ellehost .nav-link {
    color: var(--el-text);
    font-weight: 600;
    padding: .45rem .9rem !important;
    transition: color var(--el-transition);
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.navbar-ellehost .nav-link:hover {
    color: var(--el-accent);
}
.navbar-ellehost .nav-link.active {
    color: var(--el-primary);
    border-bottom: 2px solid var(--el-accent);
}
.navbar-ellehost .navbar-toggler { border: none; outline: none; box-shadow: none; }
.navbar-ellehost .navbar-toggler-icon-custom {
    font-size: 1.25rem;
    color: var(--el-primary);
}
.navbar-ellehost .btn-nav-login {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    color: #fff;
    border: none;
    padding: .42rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all var(--el-transition);
    box-shadow: 0 2px 10px rgba(217,70,239,.3);
}
.navbar-ellehost .btn-nav-login:hover {
    background: linear-gradient(135deg, var(--el-primary), var(--el-primary-d));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(134,25,143,.35);
    color: #fff;
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #86198f 0%, #a21caf 30%, #c026d3 60%, #d946ef 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 9rem;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(249,115,22,.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255,255,255,.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(217,70,239,.2) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(249,115,22,.07);
    pointer-events: none;
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.hero h1 span.highlight {
    color: #fcd34d;
    text-shadow: 0 2px 20px rgba(249,115,22,.4);
}
.hero .hero-subtitle {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    max-width: 480px;
    margin-top: .75rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero .typed-cursor {
    color: rgba(255,255,255,.7);
    font-weight: 100;
}
.hero-img-wrap {
    position: relative;
    text-align: center;
}
.hero-img-wrap img {
    max-height: 680px;
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.25));
    animation: heroFloat 3.5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ── Buttons ────────────────────────────────────────── */
.btn-el-primary {
    background: var(--el-cta);
    color: #fff;
    border: 2px solid var(--el-cta);
    padding: .6rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--el-transition);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.btn-el-primary:hover {
    background: var(--el-cta-hover);
    border-color: var(--el-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,.35);
    color: #fff;
}
.btn-el-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
    padding: .6rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--el-transition);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.btn-el-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}
.btn-el-hero {
    background: var(--el-cta);
    color: #fff;
    border: 2px solid var(--el-cta);
    padding: .7rem 2.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all var(--el-transition);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(249,115,22,.4);
}
.btn-el-hero:hover {
    background: var(--el-cta-hover);
    border-color: var(--el-cta-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(249,115,22,.5);
}

/* ── CTA Button (Orange) ────────────────────────────── */
.btn-el-cta {
    background: var(--el-cta);
    color: #fff;
    border: 2px solid var(--el-cta);
    padding: .6rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--el-transition);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.btn-el-cta:hover {
    background: var(--el-cta-hover);
    border-color: var(--el-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,.35);
    color: #fff;
}

/* ── Section Spacing ────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: .5rem;
    color: var(--el-primary);
    letter-spacing: -.02em;
}
.section-subtitle {
    color: var(--el-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ── Domain Search Section ──────────────────────────── */
.domain-section {
    padding: 3.5rem 0;
    background: #fff;
    position: relative;
    z-index: 2;
}
.domain-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--el-text);
    line-height: 1.2;
}
.domain-section .domain-tagline {
    font-size: .9rem;
    color: var(--el-muted);
    margin-top: .25rem;
}
.domain-search-bar {
    display: flex;
    gap: 0;
    border: 2px solid var(--el-border);
    border-radius: .5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--el-shadow-sm);
    transition: box-shadow var(--el-transition), border-color var(--el-transition);
}
.domain-search-bar:focus-within {
    border-color: var(--el-accent);
    box-shadow: 0 0 0 4px rgba(25,118,210,.1);
}
.domain-search-bar input {
    flex: 1;
    border: none;
    padding: .7rem 1rem;
    font-size: .95rem;
    outline: none;
    color: var(--el-text);
    background: transparent;
}
.domain-search-bar select {
    border: none;
    border-left: 1px solid var(--el-border);
    padding: .7rem .75rem;
    font-size: .9rem;
    background: #f8fafc;
    color: var(--el-text);
    outline: none;
    cursor: pointer;
}
.domain-search-bar .btn-domain-search {
    background: var(--el-cta);
    color: #fff;
    border: none;
    padding: .7rem 1.5rem;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: background var(--el-transition);
    white-space: nowrap;
}
.domain-search-bar .btn-domain-search:hover {
    background: var(--el-cta-hover);
}
.domain-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: .85rem;
}
.domain-prices span {
    font-size: .82rem;
    color: var(--el-muted);
    font-weight: 500;
}
.domain-prices span strong {
    color: var(--el-text);
}
.domain-result {
    margin-top: 1rem;
    border-radius: .6rem;
    padding: .85rem 1.1rem;
    font-size: .925rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideIn .3s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.domain-result.available {
    background: rgba(0,200,83,.08);
    border: 1.5px solid rgba(0,200,83,.3);
    color: #00a846;
}
.domain-result.taken {
    background: rgba(244,67,54,.07);
    border: 1.5px solid rgba(244,67,54,.25);
    color: #c62828;
}
.domain-result.checking {
    background: rgba(25,118,210,.06);
    border: 1.5px solid rgba(25,118,210,.2);
    color: var(--el-accent);
}
.domain-result.uncertain {
    background: rgba(255,152,0,.07);
    border: 1.5px solid rgba(255,152,0,.25);
    color: #e65100;
}
.domain-result .result-domain {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01em;
}
.domain-result .btn-register {
    background: var(--el-success);
    color: #fff;
    border: none;
    padding: .38rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--el-transition);
    white-space: nowrap;
}
.domain-result .btn-register:hover {
    background: #00a846;
    color: #fff;
}

/* ── Domain TLD Suggestions ─────────────────────────── */
.domain-suggestions {
    margin-top: .75rem;
    background: #f8fafc;
    border: 1px solid var(--el-border);
    border-radius: .6rem;
    padding: .7rem .85rem;
    animation: fadeSlideIn .3s ease;
}
.domain-suggestions-title {
    font-size: .73rem;
    font-weight: 700;
    color: var(--el-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}
.domain-suggestions-grid {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.domain-suggest-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .4rem .65rem;
    border-radius: .4rem;
    font-size: .86rem;
    background: #fff;
    border: 1px solid var(--el-border);
    transition: border-color .2s;
}
.domain-suggest-item.available {
    border-color: rgba(0,200,83,.35);
    background: rgba(0,200,83,.04);
}
.domain-suggest-item.taken {
    border-color: rgba(244,67,54,.18);
    background: rgba(244,67,54,.03);
    opacity: .75;
}
.suggest-tld {
    font-weight: 700;
    color: var(--el-accent);
    min-width: 3.2rem;
    font-size: .85rem;
}
.suggest-name {
    flex: 1;
    color: var(--el-text);
    font-weight: 500;
    font-size: .85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.suggest-status {
    font-size: .78rem;
    white-space: nowrap;
    color: var(--el-muted);
}
.suggest-price {
    font-size: .78rem;
    color: var(--el-muted);
    white-space: nowrap;
    min-width: 5rem;
    text-align: right;
}
.btn-suggest-order {
    font-size: .75rem;
    background: var(--el-success);
    color: #fff;
    padding: .18rem .65rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background var(--el-transition);
}
.btn-suggest-order:hover {
    background: #00a846;
    color: #fff;
}

/* ── Pricing Cards ──────────────────────────────────── */
.pricing-section {
    background: #fff;
    background-image: radial-gradient(ellipse at 80% 0%, rgba(217,70,239,.05) 0%, transparent 60%);
}
.pricing-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--el-transition);
    position: relative;
    border: 2px solid var(--el-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--el-shadow-lg);
    border-color: var(--el-accent-l);
}
.pricing-card.featured {
    border-color: var(--el-accent);
    transform: scale(1.03);
    z-index: 1;
    background: linear-gradient(180deg, #fff 0%, rgba(217,70,239,.03) 100%);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    color: #fff;
    padding: .3rem 1.5rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(217,70,239,.35);
}
.pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--el-primary);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.pricing-card.featured .plan-name {
    color: var(--el-accent);
}
.pricing-card.plan-unlimited .plan-name {
    color: var(--el-cta);
}
.pricing-card .plan-price-wrap {
    margin-bottom: .25rem;
}
.pricing-card .plan-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--el-primary);
    vertical-align: top;
    line-height: 1.4;
}
.pricing-card .plan-price-usd {
    font-size: 3rem;
    font-weight: 900;
    color: var(--el-primary);
    line-height: 1;
}
.pricing-card .plan-cycle-text {
    font-size: .85rem;
    font-weight: 500;
    color: var(--el-muted);
}
.pricing-card .plan-price-php {
    font-size: .9rem;
    color: var(--el-muted);
    margin-bottom: 1.5rem;
}
.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    flex: 1;
}
.pricing-card .plan-features li {
    padding: .55rem 0;
    border-bottom: 1px solid var(--el-border);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--el-muted);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card .plan-features .check {
    color: var(--el-success);
    font-size: .8rem;
    flex-shrink: 0;
}
.pricing-card .plan-features .cross {
    color: #cbd5e1;
    font-size: .8rem;
    flex-shrink: 0;
}
.btn-plan-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--el-accent);
    color: var(--el-accent);
    background: rgba(217,70,239,.05);
    font-size: 1.1rem;
    transition: all var(--el-transition);
    text-decoration: none;
    margin-top: 1.25rem;
}
.btn-plan-arrow:hover {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    border-color: var(--el-primary);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(217,70,239,.35);
}
.pricing-card.featured .btn-plan-arrow {
    border-color: var(--el-accent);
    color: var(--el-accent);
    background: rgba(217,70,239,.06);
}
.pricing-card.featured .btn-plan-arrow:hover {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    color: #fff;
}
.pricing-card.plan-unlimited .btn-plan-arrow {
    border-color: var(--el-cta);
    color: var(--el-cta);
}
.pricing-card.plan-unlimited .btn-plan-arrow:hover {
    background: var(--el-cta);
    border-color: var(--el-cta);
    color: #fff;
}

/* ── Feature Cards ─────────────────────────────────── */
.features-section {
    background: var(--el-bg-blue);
    position: relative;
    overflow: hidden;
}
.features-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 1080,0 1440,40 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}
.feature-card {
    background: #fff;
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--el-transition);
    height: 100%;
    border: 1px solid rgba(217,70,239,.08);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--el-shadow);
    border-color: rgba(217,70,239,.25);
}
.feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(217,70,239,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--el-transition);
}
.feature-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
}
.feature-card .icon-wrap i {
    font-size: 1.5rem;
    color: var(--el-accent);
    transition: color var(--el-transition);
}
.feature-card:hover .icon-wrap i { color: #fff; }
.feature-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .4rem;
    color: var(--el-text);
}
.feature-card p {
    color: var(--el-muted);
    font-size: .875rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ── Promo Banner ───────────────────────────────────── */
.promo-section {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--el-border);
    border-bottom: 1px solid var(--el-border);
}
.promo-section .promo-img {
    max-height: 260px;
    filter: drop-shadow(0 12px 30px rgba(13,71,161,.2));
}
.promo-section h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--el-text);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.75rem;
}
.promo-features li {
    font-size: .9rem;
    color: var(--el-text);
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .3rem 0;
    font-weight: 500;
}
.promo-features li i {
    color: var(--el-accent);
    font-size: .85rem;
}

/* ── Client Reviews ─────────────────────────────────── */
.reviews-section {
    background: var(--el-bg);
    padding: 5rem 0;
}
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(134,25,143,.08);
    border: 1px solid rgba(217,70,239,.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow .25s, transform .25s;
}
.review-card:hover {
    box-shadow: 0 12px 40px rgba(134,25,143,.15);
    transform: translateY(-4px);
    border-color: rgba(217,70,239,.2);
}
.review-stars { color: #ffc107; font-size: 1.1rem; letter-spacing: .08em; }
.review-text {
    font-size: .92rem;
    color: var(--el-text-muted);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}
.review-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-top: auto;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: .03em;
}
.review-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--el-text);
    line-height: 1.3;
}
.review-loc {
    font-size: .78rem;
    color: var(--el-text-muted);
}
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
}
.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(13,71,161,.2);
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}
.review-dot.active {
    background: var(--el-accent);
    transform: scale(1.3);
}

/* ── Support CTA Banner ─────────────────────────────── */
.support-banner {
    background: linear-gradient(135deg, #86198f 0%, #c026d3 50%, #d946ef 100%);
    padding: 3rem 0;
    text-align: center;
}
.support-banner .support-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.support-banner .support-text h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .25rem;
}
.support-banner .support-text p {
    color: rgba(255,255,255,.8);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -.01em;
}
.support-banner .support-img i {
    font-size: 90px;
    color: #fff;
    opacity: .9;
    display: block;
}
.support-banner .support-img-label {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-align: center;
    margin-top: .3rem;
    opacity: .9;
}

/* ── Website Counter Section ────────────────────────── */
/* ── Trusted Clients ────────────────────────────────── */
.clients-section {
    background: #fff;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--el-border);
    border-bottom: 1px solid var(--el-border);
}
.clients-heading {
    font-size: .85rem;
    font-weight: 600;
    color: var(--el-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2rem;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 2.5rem;
}
.client-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: transform .2s;
    width: 100px;
}
.client-badge:hover { transform: translateY(-4px); }
.client-badge img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter .2s;
}
.client-badge:hover img { filter: grayscale(0%); }
.client-initials-badge {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.client-name {
    font-size: .7rem;
    font-weight: 600;
    color: var(--el-text-muted);
    line-height: 1.3;
    text-align: center;
}

.service-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    overflow: hidden;
    transition: all var(--el-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--el-shadow);
}
.service-card .service-icon {
    background: linear-gradient(135deg, var(--el-primary), var(--el-accent));
    padding: 2rem;
    text-align: center;
}
.service-card .service-icon i {
    font-size: 2.5rem;
    color: #fff;
}
.service-card .service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card .service-body h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.service-card .service-body p {
    color: var(--el-muted);
    font-size: .9rem;
    flex: 1;
}

/* ── Stats Counter ──────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #86198f 0%, #a21caf 50%, #c026d3 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,.15) 0%, transparent 60%);
    pointer-events: none;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .25rem;
    letter-spacing: -.01em;
}
.stat-item .stat-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .65;
    font-weight: 500;
}

/* ── Testimonials ───────────────────────────────────── */
.testimonial-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    padding: 2rem;
    box-shadow: var(--el-shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--el-accent);
    opacity: .15;
    position: absolute;
    top: .5rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .tc-text {
    font-style: italic;
    color: var(--el-muted);
    margin-bottom: 1.25rem;
    font-size: .95rem;
}
.testimonial-card .tc-author {
    font-weight: 700;
    font-size: .9rem;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
    background: #fcf4ff;
    color: var(--el-muted);
    padding: 4rem 0 0;
    border-top: 2px solid var(--el-border);
}
.footer h6 {
    color: var(--el-text);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.footer a {
    color: var(--el-muted);
    font-size: .875rem;
    transition: color var(--el-transition);
    display: block;
    padding: .2rem 0;
}
.footer a:hover { color: var(--el-accent); }
.footer .footer-bottom {
    border-top: 1px solid var(--el-border);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: .82rem;
    color: var(--el-muted);
}
.footer .footer-logo img { height: 36px; margin-bottom: 1rem; }
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--el-bg);
    margin-right: .4rem;
    transition: all var(--el-transition);
    padding: 0;
}
.footer .social-links a:hover {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    transform: translateY(-2px);
}
.footer .social-links a i { font-size: .85rem; color: var(--el-muted); }
.footer .social-links a:hover i { color: #fff; }
.footer-subscribe .input-group {
    max-width: 280px;
}
.footer-subscribe .form-control {
    border-radius: .5rem 0 0 .5rem;
    font-size: .875rem;
}
.footer-subscribe .btn-subscribe {
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    color: #fff;
    border: none;
    border-radius: 0 .5rem .5rem 0;
    padding: .5rem .85rem;
    transition: all var(--el-transition);
}
.footer-subscribe .btn-subscribe:hover {
    background: linear-gradient(135deg, var(--el-primary), var(--el-primary-d));
    transform: none;
}

/* ── Auth Pages ─────────────────────────────────────── */
/* ── Auth Split Layout ──────────────────────────────── */
.auth-split {
    display: flex;
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Left photo panel */
.auth-panel-left {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    overflow: hidden;
}
/* Vertical wave divider between photo and form */
.auth-wave-divider {
    position: absolute;
    left: calc(50% - 30px);
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.auth-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}
.auth-wave-divider path {
    fill: #f0f4f8;
}
.auth-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(134,25,143,.85) 0%, rgba(88,28,135,.78) 100%);
    z-index: 0;
}
.auth-panel-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
.auth-panel-logo img {
    height: 42px;
    filter: brightness(0) invert(1);
}
.auth-panel-content h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .85rem;
}
.auth-panel-content p {
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    max-width: 340px;
    line-height: 1.65;
    margin: 0 auto 1.5rem;
}
.auth-panel-features {
    display: inline-flex;
    flex-direction: column;
    gap: .55rem;
    text-align: left;
}
.auth-panel-features div {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .875rem;
    color: rgba(255,255,255,.88);
    font-weight: 500;
}
.auth-panel-features div i {
    color: #69f0ae;
    font-size: .85rem;
    flex-shrink: 0;
}
.auth-photo-credit {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    font-size: .72rem;
    color: rgba(255,255,255,.4);
}
.auth-photo-credit a {
    color: rgba(255,255,255,.55);
    text-decoration: underline;
}
.auth-photo-credit a:hover { color: #fff; }

/* Right form panel */
.auth-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--el-bg);
    overflow-y: auto;
}
.auth-form-wrap {
    width: 100%;
    max-width: 420px;
}
.auth-form-logo { height: 40px; }
.auth-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--el-primary);
    margin-bottom: .25rem;
}
.auth-form-subtitle {
    color: var(--el-muted);
    font-size: .9rem;
    margin-bottom: 0;
}
.btn-auth-submit {
    padding: .7rem 1.5rem;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    border-radius: 50px;
}

/* Mobile: stack vertically */
@media (max-width: 991.98px) {
    .auth-split { flex-direction: column; min-height: auto; }
    .auth-panel-left { display: none !important; }
    .auth-panel-right {
        min-height: calc(100vh - 80px);
        background: var(--el-bg);
    }
}

/* Legacy auth-wrapper (kept for any other usages) */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #86198f 0%, #581c87 100%);
}
.auth-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-lg);
    padding: 3rem;
    width: 100%;
    max-width: 460px;
}
.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-card .auth-logo img { height: 48px; }
.auth-card h3 {
    text-align: center;
    font-weight: 800;
    margin-bottom: .25rem;
}
.auth-card .auth-subtitle {
    text-align: center;
    color: var(--el-muted);
    margin-bottom: 2rem;
    font-size: .95rem;
}

/* ── Forms ──────────────────────────────────────────── */
.form-control, .form-select {
    border-radius: .5rem;
    border-color: var(--el-border);
    padding: .65rem 1rem;
    font-size: .925rem;
    transition: border-color var(--el-transition), box-shadow var(--el-transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--el-accent);
    box-shadow: 0 0 0 3px rgba(217,70,239,.15);
}
.form-label {
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: .35rem;
    color: var(--el-text);
}
.input-group-text {
    background: var(--el-bg);
    border-color: var(--el-border);
}

/* ── Dashboard Layout ───────────────────────────────── */
.dashboard-sidebar {
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, #86198f 0%, #6b21a8 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    transition: transform var(--el-transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.dashboard-sidebar .sidebar-brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.dashboard-sidebar .sidebar-brand img { height: 36px; }
.dashboard-sidebar .sidebar-nav {
    padding: 1rem 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
}
.dashboard-sidebar .sidebar-nav a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1.5rem;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--el-transition);
    border-left: 3px solid transparent;
}
.dashboard-sidebar .sidebar-nav a:hover,
.dashboard-sidebar .sidebar-nav a.active {
    color: #fff;
    background: rgba(255,255,255,.08);
    border-left-color: var(--el-cta);
}
.dashboard-sidebar .sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: .9rem;
}
.dashboard-sidebar .sidebar-section {
    padding: .5rem 1.5rem;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.3);
    margin-top: .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: color var(--el-transition);
}
.dashboard-sidebar .sidebar-section:hover {
    color: rgba(255,255,255,.55);
}
.sidebar-section-arrow {
    font-size: .6rem;
    transition: transform .25s ease;
}
.sidebar-group.collapsed .sidebar-section-arrow {
    transform: rotate(-90deg);
}
.sidebar-group-items {
    overflow: hidden;
    max-height: 600px;
    transition: max-height .28s ease, opacity .2s ease;
    opacity: 1;
}
.sidebar-group.collapsed .sidebar-group-items {
    max-height: 0;
    opacity: 0;
}

.dashboard-content {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--el-bg);
}
.dashboard-topbar {
    background: var(--el-card);
    padding: .9rem 1.5rem;
    box-shadow: var(--el-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.dashboard-topbar .topbar-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--el-primary);
}
.dashboard-topbar .topbar-user {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.dashboard-topbar .topbar-user .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--el-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}
.dashboard-body { padding: 1.75rem; }

/* Dashboard cards */
.dash-stat-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    padding: 1.5rem;
    box-shadow: var(--el-shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--el-transition);
}
.dash-stat-card:hover {
    box-shadow: var(--el-shadow);
    transform: translateY(-2px);
}
.dash-stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.dash-stat-card .stat-info h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}
.dash-stat-card .stat-info span {
    font-size: .82rem;
    color: var(--el-muted);
}

/* ── Tables ─────────────────────────────────────────── */
.table-el {
    border-collapse: separate;
    border-spacing: 0;
}
.table-el thead th {
    background: var(--el-bg);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--el-muted);
    border-bottom: 2px solid var(--el-border);
    padding: .85rem 1rem;
}
.table-el tbody td {
    padding: .85rem 1rem;
    font-size: .9rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--el-border);
}
.table-el tbody tr:hover {
    background: rgba(26,115,232,.02);
}

/* ── Status Badges ──────────────────────────────────── */
.badge-status {
    padding: .35rem .75rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.badge-active   { background: rgba(0,200,83,.1);  color: #00c853; }
.badge-pending  { background: rgba(255,171,0,.1);  color: #e69500; }
.badge-paid     { background: rgba(0,200,83,.1);  color: #00c853; }
.badge-unpaid   { background: rgba(255,171,0,.1);  color: #e69500; }
.badge-overdue  { background: rgba(255,23,68,.1);  color: #ff1744; }
.badge-suspended{ background: rgba(255,23,68,.1);  color: #ff1744; }
.badge-closed   { background: rgba(100,116,139,.1);color: #64748b; }
.badge-open     { background: rgba(26,115,232,.1); color: #1a73e8; }

/* ── Toast Notifications ────────────────────────────── */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 99998;
}
.toast-el {
    background: var(--el-card);
    border-radius: .5rem;
    box-shadow: var(--el-shadow-lg);
    padding: 1rem 1.5rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 300px;
    max-width: 420px;
    animation: slideInRight .3s ease;
    border-left: 4px solid var(--el-accent);
}
.toast-el.toast-success { border-left-color: var(--el-success); }
.toast-el.toast-danger  { border-left-color: var(--el-danger); }
.toast-el.toast-warning { border-left-color: var(--el-warning); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── Knowledge Base ─────────────────────────────────── */
.kb-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    padding: 2rem;
    text-align: center;
    transition: all var(--el-transition);
    height: 100%;
}
.kb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--el-shadow);
}
.kb-card i {
    font-size: 2rem;
    color: var(--el-accent);
    margin-bottom: 1rem;
}
.kb-card h6 { font-weight: 700; }
.kb-card p {
    color: var(--el-muted);
    font-size: .85rem;
    margin-bottom: 0;
}

/* ── Back-to-Top ────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--el-accent), var(--el-primary));
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(217,70,239,.35);
    opacity: 0;
    visibility: hidden;
    transition: all var(--el-transition);
    z-index: 9999;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 991.98px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }
    .dashboard-sidebar.show {
        transform: translateX(0);
    }
    .dashboard-content {
        margin-left: 0;
    }
    .hero { min-height: 480px; padding: 6rem 0 7rem; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 767.98px) {
    .hero h1 { font-size: 1.85rem; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.75rem; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .auth-card { padding: 2rem 1.5rem; }
    .stat-item .stat-number { font-size: 2rem; }
    .support-banner .support-text p { font-size: 1.3rem; }
    .counter-section .counter-number { font-size: 1.8rem; }
}

@media (max-width: 575.98px) {
    .dashboard-body { padding: 1rem; }
    .pricing-card { padding: 2rem 1.25rem; }
    .domain-search-bar { flex-direction: column; border-radius: .5rem; }
    .domain-search-bar select { border-left: none; border-top: 1px solid var(--el-border); }
    .domain-search-bar .btn-domain-search { border-radius: 0 0 .45rem .45rem; padding: .75rem; }
}

/* ── Utility Animations ─────────────────────────────── */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-in"] { opacity: 0; }
[data-aos="fade-in"].aos-animate { opacity: 1; }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ══════════════════════════════════════════════════════
   ORDER PAGE
   ══════════════════════════════════════════════════════ */
.order-page { margin-top: 80px; }

/* ── Progress Steps ─────────────────────────────────── */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1rem 0;
}
.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}
.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--el-border);
    color: var(--el-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    transition: all .3s ease;
}
.step-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--el-muted);
    transition: color .3s ease;
}
.step-line {
    flex: 1;
    max-width: 100px;
    height: 3px;
    background: var(--el-border);
    margin: 0 .5rem;
    margin-bottom: 1.5rem;
    border-radius: 3px;
    transition: background .3s ease;
}
.order-step.active .step-circle {
    background: var(--el-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217,70,239,.35);
}
.order-step.active .step-label { color: var(--el-accent); }
.order-step.completed .step-circle {
    background: var(--el-success, #00c853);
    color: #fff;
}
.order-step.completed .step-label { color: var(--el-success, #00c853); }
.order-step.completed + .step-line,
.order-step.active ~ .step-line { background: var(--el-accent); }

/* ── Order Cards ────────────────────────────────────── */
.order-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    overflow: hidden;
}
.order-card-header {
    padding: 1rem 1.25rem;
    background: var(--el-bg);
    border-bottom: 1px solid var(--el-border);
}
.order-card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--el-primary);
}
.order-card-body { padding: 1.25rem; }

/* ── Domain Selected Display ─────────────────────────── */
.domain-selected {
    background: rgba(0,200,83,.06);
    border: 1px solid rgba(0,200,83,.2);
    border-radius: .5rem;
    padding: .85rem 1rem;
    margin-bottom: 1rem;
}

/* ── Hosting Plan Options ────────────────────────────── */
.hosting-plan-option {
    background: var(--el-card);
    border: 2px solid var(--el-border);
    border-radius: var(--el-radius);
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    text-align: center;
    height: 100%;
}
.hosting-plan-option:hover {
    border-color: var(--el-accent);
    box-shadow: 0 4px 16px rgba(26,115,232,.1);
    transform: translateY(-2px);
}
.hosting-plan-option.selected {
    border-color: var(--el-accent);
    background: rgba(26,115,232,.03);
    box-shadow: 0 4px 20px rgba(26,115,232,.15);
}
.hosting-plan-option.featured {
    border-color: rgba(26,115,232,.3);
}
.plan-option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--el-accent);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .2rem .6rem;
    border-radius: 50px;
    white-space: nowrap;
}
.plan-option-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--el-primary);
    margin-bottom: .5rem;
}
.plan-option-price {
    margin-bottom: .15rem;
}
.plan-option-price .price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--el-accent);
}
.plan-option-price .price-cycle {
    font-size: .8rem;
    color: var(--el-muted);
}
.plan-option-price-php {
    font-size: .78rem;
    color: var(--el-muted);
    margin-bottom: .75rem;
}
.plan-option-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: .8rem;
}
.plan-option-features li {
    padding: .2rem 0;
    color: var(--el-text);
}
.plan-option-features li i {
    width: 18px;
    text-align: center;
    font-size: .75rem;
    color: var(--el-accent);
    margin-right: .25rem;
}
.plan-option-check {
    position: absolute;
    top: .75rem;
    right: .75rem;
    font-size: 1.2rem;
    color: var(--el-accent);
    opacity: 0;
    transition: opacity .2s ease;
}
.hosting-plan-option.selected .plan-option-check { opacity: 1; }

/* ── Billing Cycle Toggle ────────────────────────────── */
.billing-option {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.2rem;
    border: 2px solid var(--el-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s ease;
    font-size: .88rem;
    font-weight: 600;
}
.billing-option input { display: none; }
.billing-option.selected {
    border-color: var(--el-accent);
    background: rgba(26,115,232,.06);
    color: var(--el-accent);
}
.billing-save {
    background: var(--el-success, #00c853);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .1rem .4rem;
    border-radius: 50px;
}

/* ── Order Summary Sidebar ───────────────────────────── */
.order-summary-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    border: 1px solid var(--el-border);
    overflow: hidden;
}
.order-summary-header {
    padding: .85rem 1.25rem;
    background: var(--el-primary);
    color: #fff;
}
.order-summary-header h6 { margin: 0; font-weight: 700; }
.order-summary-body { padding: 1.25rem; }
.summary-item {
    padding: .6rem 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.summary-item:last-child { border-bottom: none; }

/* ── Auth Tabs on Order Page ─────────────────────────── */
.order-auth-tabs {
    display: flex;
    gap: .5rem;
    border-bottom: 2px solid var(--el-border);
    padding-bottom: 0;
}
.order-auth-tabs .nav-link {
    border-radius: .5rem .5rem 0 0;
    font-weight: 600;
    font-size: .88rem;
    color: var(--el-muted);
    border: 1px solid transparent;
    border-bottom: none;
    padding: .6rem 1.25rem;
}
.order-auth-tabs .nav-link.active {
    color: var(--el-accent);
    background: var(--el-card);
    border-color: var(--el-border);
    border-bottom-color: var(--el-card);
    margin-bottom: -2px;
}

/* ── Auth User Avatar ────────────────────────────────── */
.auth-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--el-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Payment Method Cards ─────────────────────────────── */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.payment-method-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 1rem;
    border: 2px solid var(--el-border);
    border-radius: .6rem;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s;
    margin: 0;
}
.payment-method-option input[type="radio"] { display: none; }
.payment-method-option:hover {
    border-color: var(--el-accent);
    background: rgba(25,118,210,.03);
}
.payment-method-option.selected {
    border-color: var(--el-accent);
    background: rgba(25,118,210,.06);
}
.pm-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .4rem;
    background: var(--el-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.pm-info { flex: 1; }
.pm-label {
    font-weight: 700;
    font-size: .92rem;
    color: var(--el-text);
}
.pm-sub {
    font-size: .77rem;
    color: var(--el-muted);
    margin-top: .1rem;
}
.pm-check {
    color: var(--el-border);
    font-size: 1.1rem;
    transition: color .2s;
}
.payment-method-option.selected .pm-check { color: var(--el-accent); }

/* ── Order Success Card ──────────────────────────────── */
.order-success-card {
    background: var(--el-card);
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-sm);
    padding: 2rem;
    border: 1px solid rgba(0,200,83,.2);
}

/* ── Voucher Field ───────────────────────────────────── */
#voucherCodeInput {
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
}
#voucherCodeInput::placeholder {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}
#voucherResult .text-success { font-weight: 500; }

/* ── Review Table Breakdown Rows ─────────────────────── */
#reviewDiscountRow td { border-top: none; }
#reviewVat + tr td, #reviewSubtotal + tr td { border-top: none; }
.table tfoot tr:last-child td { padding-top: .5rem; }

/* ── Order Page Responsive ───────────────────────────── */
@media (max-width: 767.98px) {
    .order-steps { gap: 0; }
    .step-line { max-width: 40px; }
    .step-label { font-size: .7rem; }
    .step-circle { width: 32px; height: 32px; font-size: .8rem; }
    .hosting-plan-option { padding: 1rem .75rem; }
    .plan-option-price .price-amount { font-size: 1.2rem; }
}
@media (max-width: 575.98px) {
    .order-page { margin-top: 70px; }
    .billing-option { padding: .45rem .8rem; font-size: .82rem; }
}
