:root {
    --blue: #2563eb;
    --blue-dark: #1e40af;
    --cyan: #0891b2;
    --cyan-soft: #dff8ff;
    --navy: #eaf3ff;
    --navy-dark: #f7fbff;
    --white: #ffffff;
    --header-bg: #ffffff;
    --header-bg-2: #eaf7ff;
    --dark-text: #102a56;
    --text: #14213d;
    --muted: #5c7293;
    --green: #16a34a;
    --orange: #d97706;
    --red: #dc2626;
    --purple: #7c3aed;
    --border: rgba(37, 99, 235, 0.16);
    --border-strong: rgba(37, 99, 235, 0.28);
    --shadow: 0 18px 48px rgba(23, 51, 102, 0.12);
    --shadow-soft: 0 10px 28px rgba(23, 51, 102, 0.08);
    --shadow-blue: 0 16px 38px rgba(37, 99, 235, 0.18);
    --radius: 22px;
}

/* RESET */
* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 8% 10%, rgba(8, 145, 178, 0.12), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.10), transparent 32%),
        radial-gradient(circle at 55% 100%, rgba(124, 58, 237, 0.08), transparent 34%),
        linear-gradient(135deg, #f8fcff 0%, #eef7ff 48%, #f9fbff 100%);
    color: var(--text);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.75;
    z-index: -1;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: var(--cyan);
}

img {
    max-width: 100%;
}

.container {
    width: min(1240px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.main {
    flex: 1;
    padding: 0 0 70px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: linear-gradient(90deg, #ffffff 0%, #f2fbff 55%, #e7f7ff 100%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 8px 22px rgba(16, 42, 86, 0.08);
}

.header-inner {
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    height: 64px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand img {
    height: 46px;
    width: auto;
    max-width: 230px;
    display: block;
    object-fit: contain;
    filter: none;
}

.nav {
    margin-left: auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav a {
    display: inline-flex;
    align-items: center;
    height: 64px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
    text-shadow: none;
}

.nav a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.user-pill {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--dark-text);
    font-size: 12px;
    font-weight: 900;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    white-space: nowrap;
}

/* FOOTER */
.footer {
    margin-top: auto;
    padding: 26px 0;
    background: #ffffff;
    border-top: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--muted);
    font-size: 14px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    box-shadow: 0 24px 58px rgba(37, 99, 235, 0.22);
}

.btn-success {
    color: #fff;
    background: linear-gradient(90deg, #15803d, var(--green));
    box-shadow: 0 18px 42px rgba(22, 163, 74, 0.20);
}

.btn-danger {
    color: #fff;
    background: linear-gradient(90deg, #b91c1c, var(--red));
    box-shadow: 0 18px 42px rgba(220, 38, 38, 0.18);
}

.btn-secondary {
    color: var(--text);
    background: linear-gradient(90deg, #ffffff, #eef8ff);
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 10px 22px rgba(16, 42, 86, 0.08);
}

.btn-secondary:hover {
    color: var(--blue-dark);
    border-color: rgba(8, 145, 178, 0.40);
    background: #e8f6ff;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 13px;
    font-size: 13px;
}

/* HOMEPAGE HERO */
.hero-home {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    height: calc(100svh - 64px);
    min-height: calc(100svh - 64px);
    background:
        linear-gradient(90deg, rgba(14, 44, 92, 0.80) 0%, rgba(30, 64, 175, 0.46) 42%, rgba(255, 255, 255, 0.08) 100%),
        radial-gradient(circle at 72% 46%, rgba(8, 145, 178, 0.20), transparent 28%),
        url("/assets/images/webserverbackdrop.jpg") center right / cover no-repeat;
    border-bottom: 1px solid rgba(37, 99, 235, 0.14);
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.20), transparent 26%),
        radial-gradient(circle at 42% 75%, rgba(8, 145, 178, 0.10), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%);
}

.hero-home::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: 5%;
    bottom: -270px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.22), transparent 70%);
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    width: min(820px, 95%);
    animation: fadeUp 0.9s ease both;
}

.hero-logo {
    display: none !important;
}

.hero-title {
    font-size: clamp(40px, 5vw, 74px);
    line-height: 1.04;
    margin: 0 0 22px;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--cyan), #dff8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: #ecfeff;
    font-size: clamp(18px, 2vw, 28px);
    margin: 0 0 32px;
    max-width: 820px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 760px;
    margin: 34px 0 30px;
}

.hero-feature {
    text-align: center;
    padding: 10px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    animation: fadeUp 0.9s ease both;
}

.hero-feature:nth-child(1) { animation-delay: 0.10s; }
.hero-feature:nth-child(2) { animation-delay: 0.18s; }
.hero-feature:nth-child(3) { animation-delay: 0.26s; }
.hero-feature:nth-child(4) { animation-delay: 0.34s; }
.hero-feature:last-child { border-right: 0; }

.hero-feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    font-size: 26px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(8, 145, 178, 0.20));
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.hero-feature strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.28;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.34s both;
}

.hero-proof {
    margin-top: 40px;
    display: inline-flex;
    gap: 22px;
    flex-wrap: wrap;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    color: #ffffff;
    background: linear-gradient(90deg, rgba(14, 44, 92, 0.64), rgba(37, 99, 235, 0.26));
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08);
    animation: fadeUp 1s ease 0.48s both;
}

.hero-proof span::before {
    content: "✓";
    color: #ffffff;
    margin-right: 8px;
}

/* SECTIONS */
.section-title {
    text-align: center;
    margin: 64px 0 34px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 10px;
    color: var(--text);
    letter-spacing: -1px;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

/* CARDS */
.card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(8, 145, 178, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.94));
    box-shadow: var(--shadow);
    color: var(--text);
    animation: fadeUp 0.75s ease both;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%);
    pointer-events: none;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card:hover {
    border-color: rgba(8, 145, 178, 0.35);
    transform: translateY(-2px);
    transition: 0.25s ease;
}

.card h1,
.card h2,
.card h3 {
    color: var(--text);
}

.plan-card:nth-child(1),
.plan-card:nth-child(2),
.plan-card:nth-child(3) {
    background:
        radial-gradient(circle at top right, rgba(8, 145, 178, 0.10), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
    border-color: rgba(37, 99, 235, 0.16);
}

.plan-card h3 {
    margin: 0 0 8px;
    font-size: 27px;
    color: var(--text);
}

.muted {
    color: var(--muted);
}

.price,
.plan-card:nth-child(1) .price,
.plan-card:nth-child(2) .price,
.plan-card:nth-child(3) .price {
    margin: 22px 0 6px;
    color: var(--blue-dark);
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -1px;
}

.price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.discount-box {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.discount-box div {
    padding: 11px 13px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--muted);
}

.plan-list {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
}

.plan-list li {
    padding: 9px 0;
    color: var(--muted);
}

.plan-list li::before {
    content: "✓";
    color: var(--cyan);
    margin-right: 9px;
}

/* DASHBOARD */
.dashboard-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    margin-top: 34px;
    margin-bottom: 26px;
}

.dashboard-welcome,
.dashboard-logo-card,
.hosting-service-card {
    background:
        radial-gradient(circle at top right, rgba(8, 145, 178, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
    color: var(--text);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: var(--shadow);
}

.dashboard-welcome h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    color: var(--text);
}

.dashboard-logo-card {
    display: grid;
    place-items: center;
    text-align: center;
}

.dashboard-logo-card img {
    width: 150px;
    filter: drop-shadow(0 0 22px rgba(37, 99, 235, 0.16));
    animation: floatLogo 4.5s ease-in-out infinite;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 30px;
}

.stat-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 30px;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.stat-card:nth-child(1) { border-color: rgba(8, 145, 178, 0.30); }
.stat-card:nth-child(1) strong { color: var(--cyan); }
.stat-card:nth-child(2) { border-color: rgba(22, 163, 74, 0.30); }
.stat-card:nth-child(2) strong { color: var(--green); }
.stat-card:nth-child(3) { border-color: rgba(217, 119, 6, 0.30); }
.stat-card:nth-child(3) strong { color: var(--orange); }
.stat-card:nth-child(4) { border-color: rgba(124, 58, 237, 0.30); }
.stat-card:nth-child(4) strong { color: var(--purple); }

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin: 26px 0 15px;
}

.dashboard-section-header h2 {
    margin: 0;
    color: var(--text);
}

.empty-state {
    text-align: center;
    padding: 44px 20px;
}

.empty-state img {
    width: 90px;
    margin-bottom: 16px;
    opacity: 0.95;
}

/* FORMS */
.form-box {
    max-width: 760px;
    margin: 38px auto 0;
}

.form-group {
    margin-bottom: 17px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 850;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 14px;
    outline: none;
    font-size: 15px;
    color: var(--text);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
    transition: 0.22s ease;
}

input::placeholder,
textarea::placeholder {
    color: #8aa0bf;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

textarea {
    min-height: 110px;
}

option {
    color: var(--text);
}

.radio-card {
    display: block;
    margin-bottom: 12px;
    padding: 15px;
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: #ffffff;
    color: var(--text);
    transition: 0.22s ease;
}

.radio-card:hover {
    border-color: rgba(8, 145, 178, 0.38);
    background: #f2fbff;
    transform: translateX(3px);
}

.radio-card input {
    width: auto;
    margin-right: 10px;
}

.radio-card.selected {
    border-color: rgba(37, 99, 235, 0.55);
    background: linear-gradient(135deg, #eef7ff, #ffffff);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

/* ALERTS */
.alert {
    margin-top: 24px;
    margin-bottom: 18px;
    padding: 15px 17px;
    border-radius: 15px;
    border: 1px solid transparent;
    animation: fadeDown 0.45s ease both;
}

.alert-success {
    color: #14532d;
    background: #ecfdf3;
    border-color: #bbf7d0;
}

.alert-danger {
    color: #7f1d1d;
    background: #fff1f2;
    border-color: #fecdd3;
}

.alert-warning {
    color: #78350f;
    background: #fffbeb;
    border-color: #fde68a;
}

/* TABLES */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #ffffff;
    overflow: hidden;
}

.table th,
.table td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.10);
    text-align: left;
    color: var(--text);
    vertical-align: middle;
}

.table th {
    color: var(--dark-text);
    background: #eef7ff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tr {
    transition: 0.22s ease;
}

.table tbody tr:hover {
    background: #f5fbff;
}

.table input,
.table select {
    min-width: 170px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.table td .btn {
    white-space: nowrap;
}

.table td form {
    margin: 0;
}

.table td form + form {
    margin-top: 8px;
}

.premium-table-wrap {
    border-color: rgba(37, 99, 235, 0.16);
}

.table-wrap:hover,
.card:has(table):hover {
    transform: none;
}

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    color: var(--text);
    background: #eef4ff;
    text-transform: capitalize;
    white-space: nowrap;
}

.badge-paid,
.badge-active {
    color: #14532d;
    background: #dcfce7;
}

.badge-pending_payment,
.badge-pending,
.badge-suspended {
    color: #78350f;
    background: #fef3c7;
}

.badge-cancelled,
.badge-failed,
.badge-deleted,
.badge-expired {
    color: #7f1d1d;
    background: #fee2e2;
}

.badge-none {
    color: #475569;
    background: #e2e8f0;
}

/* ADMIN */
.admin-menu {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-menu a {
    padding: 10px 14px;
    border-radius: 13px;
    color: var(--text);
    font-weight: 850;
    background: #ffffff;
    border: 1px solid var(--border);
}

.admin-menu a:hover {
    border-color: rgba(8, 145, 178, 0.34);
    background: #eef8ff;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.actions form {
    margin: 0;
}

/* PAYMENT STATUS */
.status-panel {
    max-width: 780px;
    margin: 34px auto 0;
    text-align: center;
}

.status-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    font-size: 42px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(8, 145, 178, 0.10));
    border: 1px solid rgba(8, 145, 178, 0.24);
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.14);
}

/* PREMIUM DASHBOARD + DNS UI */
.eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-actions-mini {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.premium-cloud-card strong {
    margin-top: 10px;
    color: var(--text);
    font-size: 20px;
}

.cloud-orb {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(8, 145, 178, 0.10));
    border: 1px solid rgba(8, 145, 178, 0.24);
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.14);
}

.cloud-orb img {
    width: 84px;
    animation: none;
}

.hosting-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hosting-service-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--border);
}

.hosting-service-card:hover {
    border-color: rgba(8, 145, 178, 0.35);
    transform: translateY(-2px);
    transition: 0.25s ease;
}

.service-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    top: -130px;
    border-radius: 50%;
    background: rgba(8, 145, 178, 0.12);
    filter: blur(12px);
    pointer-events: none;
}

.service-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.server-icon {
    width: 58px;
    height: 58px;
    display: grid;
    gap: 5px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(8, 145, 178, 0.24);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(8, 145, 178, 0.10));
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.10);
}

.server-icon span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0.9;
}

.service-heading h3 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    letter-spacing: -0.4px;
}

.service-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.service-alert {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
}

.service-alert.warning {
    color: #78350f;
    border: 1px solid #fde68a;
    background: #fffbeb;
}

.service-details-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.service-detail {
    padding: 13px;
    border-radius: 17px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.service-detail small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-detail strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.service-detail.highlight {
    border-color: rgba(22, 163, 74, 0.20);
    background: rgba(22, 163, 74, 0.08);
}

.service-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-actions .btn {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 14px;
}

.service-note {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 13px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    cursor: pointer;
}

.toggle-row small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.toggle-input {
    display: none;
}

.toggle-ui {
    width: 54px;
    height: 30px;
    flex-shrink: 0;
    position: relative;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.32);
    border: 1px solid rgba(37, 99, 235, 0.14);
    transition: 0.22s ease;
}

.toggle-ui::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 4px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: 0.22s ease;
}

.toggle-input:checked + .toggle-ui {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.toggle-input:checked + .toggle-ui::after {
    transform: translateX(23px);
}

.mini-toggle {
    width: 48px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.mini-toggle input {
    display: none;
}

.mini-toggle span {
    width: 48px;
    height: 28px;
    position: relative;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.28);
    border: 1px solid rgba(37, 99, 235, 0.14);
}

.mini-toggle span::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 4px;
    border-radius: 50%;
    background: #fff;
    transition: 0.22s ease;
}

.mini-toggle input:checked + span {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mini-toggle input:checked + span::after {
    transform: translateX(19px);
}

/* DOMAIN CHECKOUT */
.domain-availability-box {
    margin: 16px 0 24px;
    padding: 18px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f4fbff);
    box-shadow: 0 14px 34px rgba(23, 51, 102, 0.08);
}

.domain-check-result {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}

.domain-check-result.success,
.domain-check-result.error {
    padding: 14px;
    border-radius: 16px;
    white-space: normal;
}

.domain-check-result.success {
    color: #14532d;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
}

.domain-check-result.error {
    color: #7f1d1d;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.domain-check-result.loading {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    color: var(--muted);
    font-weight: 850;
}

.domain-check-result.loading::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px solid rgba(37, 99, 235, 0.16);
    border-top-color: var(--blue);
    animation: spin 0.8s linear infinite;
}

.domain-check-result.loading::after {
    content: "";
    width: 28px;
    overflow: hidden;
    white-space: nowrap;
    animation: loadingDots 1.2s steps(4, end) infinite;
}

.domain-suggestions {
    margin-top: 18px;
}

.domain-suggestions h4 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 15px;
}

.domain-suggestion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.domain-suggestion-card {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: #ffffff;
    display: grid;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(23, 51, 102, 0.07);
}

.domain-suggestion-card strong {
    color: var(--blue-dark);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.domain-suggestion-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.domain-suggestion-card .btn,
.use-suggestion {
    min-height: 40px;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.42;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.12);
    }
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingDots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
    100% { content: ""; }
}

/* RESPONSIVE */
@media (min-width: 980px) {
    .form-box {
        max-width: 760px;
        padding: 32px;
    }

    .domain-suggestion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .hero-home {
        height: auto;
        min-height: calc(100svh - 64px);
        padding: 56px 0;
        background-position: center right;
    }

    .hero-content {
        height: auto;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .hosting-service-grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .service-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .header {
        height: auto;
    }

    .header-inner {
        height: auto;
        min-height: 64px;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
        gap: 8px;
    }

    .brand {
        height: auto;
    }

    .brand img {
        height: 40px;
        width: auto;
    }

    .nav {
        width: 100%;
        height: auto;
        justify-content: flex-start;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav a {
        height: auto;
        font-size: 13px;
        padding: 4px 0;
    }

    .hero-home {
        min-height: calc(100svh - 64px);
        padding: 46px 0;
        background:
            linear-gradient(180deg, rgba(14, 44, 92, 0.76), rgba(37, 99, 235, 0.38)),
            url("/assets/images/webserverbackdrop.jpg") center / cover no-repeat;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-feature:nth-child(2) {
        border-right: 0;
    }

    .hero-feature {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

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

    .dashboard-section-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .form-box {
        max-width: 100%;
        margin-top: 22px;
        padding: 22px;
    }

    .domain-suggestion-grid,
    .service-details-grid,
    .stat-grid,
    .hosting-service-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .service-top {
        grid-template-columns: 52px 1fr;
    }

    .service-top .badge {
        grid-column: 1 / -1;
        width: fit-content;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions-mini {
        display: grid;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        height: 36px;
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-feature {
        border-right: 0;
    }

    .hero-proof {
        display: grid;
        width: 100%;
    }

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

    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .actions .btn,
    .actions a {
        width: 100%;
    }

    .table {
        min-width: 760px;
    }
}

