/* ═══════════════════════════════════════════════════════════════
   ACBIZ GLOBAL — Store / Pricing Pages Stylesheet v2.0
   ═══════════════════════════════════════════════════════════════ */

:root {
    --blue:       #1d4ed8;
    --blue-l:     #3b82f6;
    --accent:     #06b6d4;
    --dark:       #0a0e1a;
    --white:      #ffffff;
    --radius:     12px;
    --radius-lg:  20px;
    --font-head:  'Syne', sans-serif;
    --font-body:  'DM Sans', sans-serif;
}

/* ── Store Hero ──────────────────────────────────────────────── */
.store-hero {
    position: relative;
    padding: 100px 24px 70px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #060912 0%, #0a0e1a 100%);
}
.store-hero-bg { position: absolute; inset: 0; }
.sh-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.sh-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.sh-orb-1 { width: 500px; height: 500px; background: rgba(29,78,216,0.2); top: -150px; left: -100px; }
.sh-orb-2 { width: 400px; height: 400px; background: rgba(6,182,212,0.1); top: -80px; right: -80px; }

.store-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.sh-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(251,146,60,0.12);
    border: 1px solid rgba(251,146,60,0.25);
    color: #fb923c;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}
.store-hero-inner h1 {
    font-family: var(--font-head);
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 18px;
}
.sh-gradient {
    background: linear-gradient(135deg, #60a5fa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.store-hero-inner > p {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto; margin-right: auto;
}
.sh-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.sh-trust span {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 14px; border-radius: 30px;
}
.sh-trust i { color: #22c55e; font-size: 12px; }

/* ── Tab Navigation ──────────────────────────────────────────── */
.store-tabs-section {
    background: #0d1220;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 68px;
    z-index: 90;
}
.store-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.store-tabs {
    display: flex; gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 0;
}
.store-tabs::-webkit-scrollbar { display: none; }
.store-tab {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 18px;
    font-size: 13.5px; font-weight: 600;
    color: rgba(255,255,255,0.45);
    border-radius: 9px;
    white-space: nowrap;
    transition: background .15s, color .15s;
    border: 1px solid transparent;
}
.store-tab:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.store-tab.active { background: rgba(29,78,216,0.2); color: #93c5fd; border-color: rgba(29,78,216,0.3); }
.store-tab i { font-size: 12px; }

/* ── Billing Toggle ──────────────────────────────────────────── */
.store-billing-toggle { background: #0d1220; padding: 24px 0 8px; }
.store-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.billing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; }
.bt-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.5); transition: color .2s; }
.bt-label.active-label { color: #fff; }
.bt-save {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.25);
    font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px;
    margin-left: 6px;
}
.bt-switch {
    width: 52px; height: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.bt-switch.on { background: linear-gradient(135deg, var(--blue), #2563eb); border-color: transparent; }
.bt-knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.bt-switch.on .bt-knob { transform: translateX(24px); }

/* ── Plans Section ───────────────────────────────────────────── */
.plans-section {
    background: #0d1220;
    padding: 48px 0 80px;
}
.plans-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}
.plans-grid-3 { grid-template-columns: repeat(3, 1fr); }
.plans-grid-4 { grid-template-columns: repeat(4, 1fr); }
.plans-note {
    text-align: center;
    font-size: 13.5px;
    color: rgba(255,255,255,0.35);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Plan Card ───────────────────────────────────────────────── */
.plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.plan-featured {
    background: linear-gradient(160deg, #1e3a8a 0%, #1e1b4b 60%, #0a0e1a 100%);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 20px 60px rgba(29,78,216,0.2);
}

.plan-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--accent));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(29,78,216,0.35);
}

.plan-head { display: flex; flex-direction: column; gap: 10px; }
.plan-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; }
.plan-tagline { font-size: 13px; color: rgba(255,255,255,0.4); }

.plan-price-wrap { display: flex; flex-direction: column; gap: 6px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; }
.plan-currency { font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.8); margin-top: 4px; }
.plan-amount { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.plan-period { font-size: 15px; color: rgba(255,255,255,0.4); margin-left: 2px; }
.plan-billed { font-size: 12px; color: rgba(255,255,255,0.35); }
.plan-was { text-decoration: line-through; color: rgba(255,255,255,0.25); }

.plan-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-weight: 700;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    transition: background .2s, color .2s, transform .15s;
    text-align: center;
}
.plan-btn:hover { background: rgba(255,255,255,0.14); color: #fff; transform: translateY(-1px); }
.plan-btn-featured {
    background: linear-gradient(135deg, var(--blue), #2563eb);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(29,78,216,0.35);
}
.plan-btn-featured:hover { opacity: 0.9; background: linear-gradient(135deg, var(--blue), #2563eb); }

.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pf-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
}
.pf-item i { font-size: 11px; color: #22c55e; width: 14px; flex-shrink: 0; }
.pf-no { opacity: 0.35; }
.pf-no i { color: rgba(255,255,255,0.3) !important; }

/* ── Hosting Features Grid ───────────────────────────────────── */
.hosting-features-section {
    background: var(--dark);
    padding: 80px 0;
}
.hf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hf-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .2s, background .2s;
}
.hf-card:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.hf-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(29,78,216,0.2), rgba(6,182,212,0.12));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--blue-l);
    margin-bottom: 16px;
}
.hf-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hf-card p  { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: #0d1220; padding: 80px 0; }
.faq-grid { display: flex; flex-direction: column; gap: 8px; max-width: 780px; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.open { border-color: rgba(59,130,246,0.3); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    gap: 12px;
    user-select: none;
}
.faq-icon { color: rgba(255,255,255,0.3); font-size: 12px; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--blue-l); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ── Store CTA ───────────────────────────────────────────────── */
.store-cta { position: relative; overflow: hidden; background: var(--dark); padding: 0; }
.scta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f1f3d, #0a0e1a); }
.scta-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.scta-orb-1 { width: 500px; height: 500px; background: rgba(29,78,216,0.18); top: -100px; left: -100px; }
.scta-orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,0.12); bottom: -100px; right: -50px; }
.scta-inner {
    position: relative; z-index: 2;
    text-align: center;
    padding: 90px 24px;
    max-width: 640px; margin: 0 auto;
}
.scta-inner h2 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; }
.scta-inner > p { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 36px; line-height: 1.7; }
.scta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.scta-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: #fff;
    padding: 14px 28px; border-radius: var(--radius);
    font-size: 15px; font-weight: 700;
    box-shadow: 0 8px 28px rgba(29,78,216,0.4);
    transition: transform .2s;
}
.scta-btn-primary:hover { transform: translateY(-2px); }
.scta-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    padding: 14px 28px; border-radius: var(--radius);
    font-size: 15px; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background .2s;
}
.scta-btn-outline:hover { background: rgba(255,255,255,0.1); }
.scta-note { font-size: 13px; color: rgba(255,255,255,0.3); }
.scta-note i { margin-right: 4px; }

/* ── Section commons reused from public.css ──────────────────── */
.section-label {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--blue-l);
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    padding: 5px 14px; border-radius: 20px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.5px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .plans-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
    .plans-grid-3 { grid-template-columns: 1fr; }
    .plans-grid-4 { grid-template-columns: 1fr; }
    .hf-grid { grid-template-columns: 1fr; }
    .store-tabs-section { top: 0; }
    .plan-featured { order: -1; }
}
@media (max-width: 560px) {
    .store-hero { padding: 80px 20px 50px; }
    .sh-trust span { font-size: 11.5px; padding: 4px 10px; }
    .scta-actions { flex-direction: column; align-items: center; }
    .plans-grid { gap: 14px; }
}

/* ════════════════════════════════════════════════════════════
   Domain Pages — Additional Styles
   ════════════════════════════════════════════════════════════ */

/* ── Domain Hero ─────────────────────────────────────────────── */
.domain-hero {
    position: relative;
    padding: 100px 24px 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #060912 0%, #0a0e1a 100%);
}
.domain-hero-inner {
    position: relative; z-index: 2;
    max-width: 860px; margin: 0 auto; text-align: center;
}
.domain-hero-inner h1 {
    font-family: var(--font-head);
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -1px; color: #fff; margin-bottom: 18px;
}
.domain-hero-inner > p {
    font-size: 17px; color: rgba(255,255,255,0.5);
    margin-bottom: 36px; line-height: 1.7;
    max-width: 580px; margin-left: auto; margin-right: auto;
}

/* ── Domain Search Box ───────────────────────────────────────── */
.domain-search-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.dsb-tabs {
    display: flex; gap: 6px; margin-bottom: 18px;
}
.dsb-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 13.5px; font-weight: 600;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s;
}
.dsb-tab:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.dsb-tab.active { background: rgba(29,78,216,0.25); color: #93c5fd; border-color: rgba(29,78,216,0.4); }

.dsb-search-row {
    display: flex; gap: 10px;
}
.dsb-input-wrap {
    flex: 1;
    display: flex; align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.dsb-input-wrap:focus-within {
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.dsb-icon { padding: 0 14px; color: rgba(255,255,255,0.3); font-size: 15px; flex-shrink: 0; }
.dsb-input-wrap input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 14px 0; font-size: 15px; color: #fff; font-family: var(--font-body);
}
.dsb-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }

.dsb-tld-picker {
    display: flex; gap: 4px; padding-right: 8px; flex-shrink: 0;
}
.tld-pick {
    padding: 5px 10px; border-radius: 7px;
    font-size: 12.5px; font-weight: 700;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    cursor: pointer; font-family: var(--font-body);
    transition: all .15s;
    white-space: nowrap;
}
.tld-pick:hover { background: rgba(255,255,255,0.1); color: #fff; }
.tld-pick.active { background: rgba(29,78,216,0.3); color: #93c5fd; border-color: rgba(29,78,216,0.4); }

.dsb-search-btn {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: #fff; border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: var(--font-body);
    transition: opacity .2s, transform .1s;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(29,78,216,0.35);
    flex-shrink: 0;
}
.dsb-search-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.dsb-popular {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; margin-top: 14px;
    font-size: 13px; color: rgba(255,255,255,0.35);
}
.pop-tld {
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 10px; border-radius: 6px;
    font-weight: 700; font-size: 12.5px;
    transition: all .15s;
}
.pop-tld:hover { background: rgba(255,255,255,0.1); color: #fff; }
.pop-price { font-size: 12px; color: rgba(255,255,255,0.3); margin-right: 4px; }
.pop-all { color: #60a5fa; font-size: 12.5px; margin-left: 4px; }
.pop-all:hover { text-decoration: underline; }

/* ── Search Results ───────────────────────────────────────────── */
.domain-results {
    max-width: 720px;
    margin: 0 auto 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}
.dr-inner { display: flex; flex-direction: column; }
.dr-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background .15s;
}
.dr-row:last-child { border-bottom: none; }
.dr-row:hover { background: rgba(255,255,255,0.03); }
.dr-domain { flex: 1; font-size: 16px; font-weight: 700; color: #fff; }
.dr-ext { color: rgba(255,255,255,0.4); font-weight: 400; }
.dr-avail { font-size: 12.5px; font-weight: 600; }
.dr-avail.avail  { color: #22c55e; }
.dr-avail.taken  { color: #ef4444; }
.dr-avail.check  { color: rgba(255,255,255,0.3); }
.dr-price { font-size: 15px; font-weight: 700; color: #fff; }
.dr-btn {
    padding: 8px 18px;
    border-radius: 8px; font-size: 13px; font-weight: 700;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: #fff; border: none; cursor: pointer;
    font-family: var(--font-body);
    transition: opacity .2s;
}
.dr-btn:hover { opacity: 0.9; }
.dr-btn-taken {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: default;
}
.dr-loader { text-align: center; padding: 24px; color: rgba(255,255,255,0.4); font-size: 14px; }
.dr-loader i { margin-right: 8px; }

/* ── Domain Trust ─────────────────────────────────────────────── */
.domain-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px;
}
.domain-trust span {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.4);
}
.domain-trust i { color: #22c55e; font-size: 12px; }

/* ── TLD Grid ─────────────────────────────────────────────────── */
.tld-section { background: #0d1220; padding: 80px 0; }
.tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.tld-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    position: relative;
    transition: border-color .2s, transform .2s;
}
.tld-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.tld-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 700; padding: 2px 10px;
    border-radius: 20px; border: 1px solid; white-space: nowrap;
}
.tld-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.tld-ext { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; }
.tld-price { display: flex; flex-direction: column; gap: 3px; }
.tld-reg { font-size: 15px; font-weight: 700; color: #fff; }
.tld-reg small { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4); }
.tld-renew { font-size: 11px; color: rgba(255,255,255,0.3); }
.tld-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 8px;
    font-size: 12.5px; font-weight: 600;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    cursor: pointer; font-family: var(--font-body);
    transition: background .15s, color .15s;
    width: 100%; justify-content: center;
}
.tld-btn:hover { background: rgba(29,78,216,0.3); color: #93c5fd; border-color: rgba(29,78,216,0.4); }
.tld-all-link { text-align: center; }
.tld-all-link a { font-size: 14px; color: #60a5fa; font-weight: 600; transition: color .2s; }
.tld-all-link a:hover { color: #93c5fd; }

/* ── Domain Features ──────────────────────────────────────────── */
.domain-features-section { background: var(--dark); padding: 80px 0; }
.df-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.df-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 28px;
    transition: border-color .2s;
}
.df-card:hover { border-color: rgba(255,255,255,0.12); }
.df-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(29,78,216,0.18), rgba(6,182,212,0.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--blue-l);
    margin-bottom: 16px;
}
.df-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.df-card p  { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Transfer Section ────────────────────────────────────────── */
.transfer-section { background: #0d1220; padding: 80px 0; }
.ts-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.ts-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ts-step {
    display: flex; gap: 16px; align-items: flex-start;
}
.ts-step-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}
.ts-step h4 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.ts-step p  { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.ts-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: #fff; padding: 13px 26px;
    border-radius: 12px; font-size: 15px; font-weight: 700;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 18px rgba(29,78,216,0.3);
}
.ts-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.ts-info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px;
}
.ts-info-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ts-info-head h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; }
.ts-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.ts-info-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.65);
}
.ts-info-item i { color: #22c55e; font-size: 12px; }
.ts-info-note {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 10px; padding: 12px 14px;
    font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6;
    display: flex; gap: 8px;
}
.ts-info-note i { color: #60a5fa; flex-shrink: 0; margin-top: 2px; }

/* ── Domain Pricing Table ─────────────────────────────────────── */
.dp-filter {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
}
.dp-search-wrap {
    position: relative; flex: 1; min-width: 200px;
}
.dp-search-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.3); font-size: 14px;
}
.dp-search {
    width: 100%; padding: 11px 14px 11px 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; font-size: 14px;
    color: #fff; font-family: var(--font-body); outline: none;
    transition: border-color .2s;
}
.dp-search:focus { border-color: rgba(59,130,246,0.4); }
.dp-search::placeholder { color: rgba(255,255,255,0.3); }

.dp-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.dp-cat {
    padding: 7px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    cursor: pointer; font-family: var(--font-body);
    transition: all .15s;
}
.dp-cat:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.dp-cat.active { background: rgba(29,78,216,0.2); color: #93c5fd; border-color: rgba(29,78,216,0.35); }

.dp-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); }
.dp-table { width: 100%; border-collapse: collapse; }
.dp-table thead tr { background: rgba(255,255,255,0.04); }
.dp-table th {
    text-align: left; padding: 14px 18px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.7px;
    color: rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
}
.dp-table td { padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: rgba(255,255,255,0.65); }
.dp-table tr:last-child td { border-bottom: none; }
.dp-table tr:hover td { background: rgba(255,255,255,0.02); }
.dp-table tr.hidden { display: none; }

.dp-ext { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: #fff; }
.dp-cat-tag {
    font-size: 11px; font-weight: 700; padding: 2px 10px;
    border-radius: 20px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
}
.dp-free { color: #22c55e; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.dp-na   { color: rgba(255,255,255,0.25); font-size: 13px; }
.dp-register-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    background: rgba(29,78,216,0.15);
    border: 1px solid rgba(29,78,216,0.3);
    color: #93c5fd;
    border-radius: 8px; font-size: 12.5px; font-weight: 600;
    transition: background .15s;
}
.dp-register-btn:hover { background: rgba(29,78,216,0.3); }

/* ── Section sub-heading ──────────────────────────────────────── */
.section-sub {
    font-size: 16px; color: rgba(255,255,255,0.45);
    margin-bottom: 48px; max-width: 520px; line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ts-grid { grid-template-columns: 1fr; gap: 36px; }
    .df-grid  { grid-template-columns: 1fr 1fr; }
    .tld-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 640px) {
    .df-grid { grid-template-columns: 1fr; }
    .dsb-search-row { flex-direction: column; }
    .dsb-search-btn { width: 100%; justify-content: center; }
    .dsb-tld-picker { display: none; }
    .domain-hero { padding: 80px 20px 50px; }
    .dp-filter { flex-direction: column; align-items: stretch; }
}

/* ════════════════════════════════════════════════════════════
   SaaS, Software, Professional & Payments — Additional Styles
   ════════════════════════════════════════════════════════════ */

/* ── SaaS Products ───────────────────────────────────────────── */
.saas-products-section { background: #0d1220; padding: 48px 0 80px; }
.saas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.saas-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.saas-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.saas-card.hidden { display: none; }
.saas-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
    color: #fff; font-size: 11px; font-weight: 700; padding: 3px 16px;
    border-radius: 20px; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}
.saas-card-head { display: flex; gap: 14px; align-items: flex-start; }
.saas-icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.saas-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.saas-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }
.saas-price-wrap { display: flex; flex-direction: column; gap: 4px; }
.saas-price { display: flex; align-items: baseline; gap: 1px; }
.saas-curr   { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.7); margin-top: 4px; }
.saas-amount { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: #fff; }
.saas-period { font-size: 14px; color: rgba(255,255,255,0.35); margin-left: 2px; }
.saas-billed { font-size: 12px; color: rgba(255,255,255,0.3); }
.saas-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.saas-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.saas-features i { font-size: 11px; color: #22c55e; flex-shrink: 0; }
.saas-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 12px; border-radius: 11px;
    font-size: 14px; font-weight: 700;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    transition: background .2s, color .2s, transform .15s;
    margin-top: auto;
}
.saas-btn:hover { background: var(--c, #1d4ed8); border-color: transparent; color: #fff; transform: translateY(-1px); }

/* ── Software Systems ─────────────────────────────────────────── */
.sw-section { background: #0d1220; padding: 80px 0; }
.sw-system-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    margin-bottom: 28px;
    overflow: hidden;
}
.sw-sys-left {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sw-sys-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.sw-sys-left h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.sw-sys-left p  { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.sw-sys-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sw-modules { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,0.06); }
.sw-mod-head { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.sw-mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sw-mod-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.sw-mod-item i { color: #22c55e; font-size: 11px; flex-shrink: 0; }
.sw-plans { padding: 24px 28px; display: flex; gap: 12px; align-items: stretch; }
.sw-plan {
    flex: 1; display: flex; flex-direction: column; gap: 8px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 13px; padding: 16px; position: relative;
    transition: border-color .2s;
}
.sw-plan:hover { border-color: rgba(255,255,255,0.14); }
.sw-plan-featured { background: rgba(29,78,216,0.12); border-color: rgba(59,130,246,0.35); }
.sw-plan-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
    color: #fff; font-size: 10px; font-weight: 700; padding: 2px 12px;
    border-radius: 20px; white-space: nowrap;
}
.sw-plan-name  { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); margin-top: 4px; }
.sw-plan-price { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; }
.sw-plan-price::before { content: '$'; font-size: 14px; vertical-align: super; margin-right: 1px; color: rgba(255,255,255,0.6); }
.sw-plan-for   { font-size: 11.5px; color: rgba(255,255,255,0.35); line-height: 1.5; flex: 1; }
.sw-plan-btn {
    display: block; text-align: center;
    padding: 8px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    transition: background .2s, color .2s;
}
.sw-plan-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.sw-plan-btn-f { background: linear-gradient(135deg, #1d4ed8, #2563eb); border-color: transparent; color: #fff; box-shadow: 0 4px 14px rgba(29,78,216,0.3); }
.sw-plan-btn-f:hover { opacity: 0.9; background: linear-gradient(135deg, #1d4ed8, #2563eb); }

/* Delivery / Process Steps */
.sw-process-section { background: var(--dark, #0a0e1a); padding: 80px 0; }
.sw-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.sw-step { display: flex; flex-direction: column; gap: 12px; }
.sw-step-num { font-family: var(--font-head); font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.sw-step-icon {
    width: 48px; height: 48px; border-radius: 13px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,0.5);
}
.sw-step h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; }
.sw-step p  { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Professional Services ───────────────────────────────────── */
.pro-section { background: var(--dark, #0a0e1a); padding: 80px 0; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 26px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .25s, border-color .25s;
}
.pro-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.pro-card-top { display: flex; align-items: center; justify-content: space-between; }
.pro-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.pro-from { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.35); }
.pro-from::before { content: 'from '; font-weight: 400; }
.pro-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; }
.pro-card > p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.pro-items { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pro-items li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.6); }
.pro-items i { font-size: 11px; color: #22c55e; flex-shrink: 0; }
.pro-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px; border-radius: 11px;
    font-size: 14px; font-weight: 700;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    transition: background .2s, color .2s, border-color .2s;
    margin-top: auto;
}
.pro-btn:hover { background: var(--pc, #1d4ed8); border-color: transparent; color: #fff; }

/* ── Payments Page ───────────────────────────────────────────── */
.pay-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pay-opt-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .2s, border-color .2s;
}
.pay-opt-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.14); }
.pay-opt-featured { background: linear-gradient(160deg, rgba(29,78,216,0.2), rgba(6,182,212,0.08)); border-color: rgba(59,130,246,0.35); }
.pay-opt-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.06); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #60a5fa; }
.pay-opt-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; }
.pay-opt-card p  { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.pay-opt-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pay-opt-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.pay-opt-list i  { font-size: 11px; color: #22c55e; }
.pay-opt-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 12px; border-radius: 11px; font-size: 14.5px; font-weight: 700;
    background: linear-gradient(135deg, var(--blue,#1d4ed8), #2563eb);
    color: #fff; border: none;
    box-shadow: 0 4px 16px rgba(29,78,216,0.3);
    transition: opacity .2s;
}
.pay-opt-btn:hover { opacity: 0.9; }
.pay-opt-btn-outline {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
    box-shadow: none;
}
.pay-opt-btn-outline:hover { background: rgba(255,255,255,0.12); opacity: 1; }

.pay-advance-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.pay-adv-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.pay-adv-step { display: flex; gap: 16px; align-items: flex-start; }
.pay-adv-num {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; font-size: 14px; color: #fff;
    box-shadow: 0 4px 12px rgba(29,78,216,0.3);
}
.pay-adv-step strong { display: block; font-size: 14.5px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.pay-adv-step span   { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }
.pay-adv-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff; padding: 13px 26px; border-radius: 12px;
    font-size: 15px; font-weight: 700;
    box-shadow: 0 4px 18px rgba(29,78,216,0.3);
    transition: opacity .2s;
}
.pay-adv-btn:hover { opacity: 0.9; }
.pay-adv-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 24px;
}
.pac-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pac-head i { font-size: 22px; color: #22c55e; }
.pac-head h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; }
.pac-items { display: flex; flex-direction: column; gap: 16px; }
.pac-item { display: flex; gap: 14px; align-items: flex-start; }
.pac-item > i { font-size: 16px; color: #60a5fa; margin-top: 2px; flex-shrink: 0; width: 20px; text-align: center; }
.pac-item strong { display: block; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
.pac-item span   { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .saas-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-grid  { grid-template-columns: repeat(2, 1fr); }
    .sw-sys-body { grid-template-columns: 1fr; }
    .sw-modules { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .pay-advance-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 800px) {
    .saas-grid  { grid-template-columns: 1fr; }
    .pro-grid   { grid-template-columns: 1fr; }
    .sw-process-grid { grid-template-columns: 1fr 1fr; }
    .pay-options-grid { grid-template-columns: 1fr; }
    .sw-plans { flex-direction: column; }
    .sw-mod-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .sw-process-grid { grid-template-columns: 1fr; }
}
