/* ===== HOSTHUSET 3.0 - PREMIUM BLACK / WHITE THEME ===== */

:root {
  --bg: #030303;
  --bg-soft: #070707;
  --bg-elevated: #0b0b0b;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --card-solid: #101010;
  --card-solid-2: #151515;

  --text: #ffffff;
  --soft-text: #e5e5e5;
  --muted: #a3a3a3;
  --faint: #737373;

  --accent: #ffffff;
  --accent-2: #d6d6d6;
  --accent-dark: #111111;

  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.24);
  --border-glow: rgba(255, 255, 255, 0.42);

  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 45px rgba(255, 255, 255, 0.12);
  --shadow-white: 0 18px 55px rgba(255, 255, 255, 0.10);

  --radius: 26px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --max-width: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 18% -8%, rgba(255, 255, 255, 0.115), transparent 32%),
    radial-gradient(circle at 90% 2%, rgba(255, 255, 255, 0.07), transparent 30%),
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.055), transparent 38%),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.035), transparent 45%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: white;
  color: black;
}

/* ===== GLOBAL LAYOUT ===== */

.page,
.customer-dashboard,
.ticket-page,
.shop-section,
.order-page,
.contact-page-large,
.contact-faq-wide {
  width: min(var(--max-width), calc(100% - 44px));
  margin-inline: auto;
}

.builder,
.feature-card,
.slider-card,
.product-card,
.config-box,
.summary-box,
.auth-box,
.dashboard-box,
.checkout-box,
.thank-box,
.dash-card,
.dash-section,
.ticket-box,
.contact-form-large,
.contact-extra-info,
.contact-faq-wide,
.faq-item,
.service-card,
.ticket-card,
.checkout-price,
.checkout-summary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.030));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.builder:hover,
.feature-card:hover,
.slider-card:hover,
.product-card:hover,
.config-box:hover,
.summary-box:hover,
.auth-box:hover,
.dashboard-box:hover,
.checkout-box:hover,
.thank-box:hover,
.dash-card:hover,
.dash-section:hover,
.ticket-box:hover,
.contact-form-large:hover,
.contact-extra-info:hover,
.faq-item:hover,
.service-card:hover,
.ticket-card:hover {
  border-color: var(--border-strong);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.09) inset,
    var(--shadow),
    var(--shadow-glow);
}

/* ===== BUTTONS ===== */

.order-btn,
.login-btn,
.register-btn,
.product-btn,
.discount-row button,
.btn,
button[type="submit"] {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
  overflow: hidden;
}

.order-btn::before,
.register-btn::before,
.product-btn::before,
.discount-row button::before,
button[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.order-btn:hover::before,
.register-btn:hover::before,
.product-btn:hover::before,
.discount-row button:hover::before,
button[type="submit"]:hover::before {
  transform: translateX(120%);
}

.register-btn,
.order-btn,
.product-btn,
.discount-row button,
.btn-primary,
button[type="submit"] {
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 45%, #bdbdbd 100%);
  color: #050505;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 16px 45px rgba(255,255,255,0.12);
}

.login-btn,
.btn-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.052);
  border: 1px solid var(--border);
}

.order-btn:hover,
.login-btn:hover,
.register-btn:hover,
.product-btn:hover,
.discount-row button:hover,
.btn:hover,
button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-white);
  border-color: var(--border-glow);
}

.order-btn:disabled,
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== FORMS ===== */

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 15px;
  background: rgba(0,0,0,0.45);
  color: white;
  border: 1px solid rgba(255,255,255,0.13);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.09);
}

input[type="range"] {
  accent-color: white;
}

label {
  color: var(--soft-text);
}

/* ===== ALERTS ===== */

.alert {
  padding: 15px 18px;
  border-radius: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.055);
}

.alert.success {
  color: #bbf7d0;
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
}

.alert.error {
  color: #fecaca;
  border-color: rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.10);
}

/* ===== NAVBAR ===== */

.navbar {
  width: 100%;
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(3,3,3,0.74);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  animation: navDrop 0.55s ease both;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #bdbdbd);
  box-shadow: 0 0 28px rgba(255,255,255,0.18);
  animation: logoPulse 3.2s ease-in-out infinite;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  font-weight: 700;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: white;
  transition: width 0.25s ease;
}

nav a:hover {
  color: white;
  transform: translateY(-1px);
}

nav a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== HERO ===== */

.hero {
  width: min(1450px, calc(100% - 44px));
  min-height: 680px;
  margin-inline: auto;
  padding: 90px clamp(0px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}

.hero-text {
  animation: fadeUp 0.75s ease both;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.65s ease both;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px rgba(255,255,255,0.6);
}

.hero h1 {
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 26px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff, #d0d0d0 48%, #8f8f8f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 680px;
  color: var(--soft-text);
  font-size: 18px;
  line-height: 1.78;
}

.hero-features {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-features div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.052);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-features div:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-white);
}

.hero-features p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}

.hero-card {
  position: relative;
  min-height: 450px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.22), rgba(17,17,17,0.86) 58%, rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: floatBox 5.2s ease-in-out infinite;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 68%);
  filter: blur(6px);
}

.server-box {
  width: min(285px, 72%);
  position: relative;
  z-index: 1;
}

.server-box div {
  height: 74px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    #101010;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 0 34px rgba(255,255,255,0.12);
  animation: glowPulse 2.9s ease-in-out infinite;
}

.server-box div:nth-child(2) { animation-delay: 0.25s; }
.server-box div:nth-child(3) { animation-delay: 0.5s; }

/* ===== SECTIONS ===== */

.builder-section,
.features,
.faq,
.shop-hero,
.auth-page,
.dashboard-page,
.checkout-page,
.thank-page {
  padding: 74px clamp(22px, 4vw, 64px);
}

.builder,
.config-box,
.summary-box,
.contact-form-large,
.contact-extra-info,
.checkout-box,
.thank-box,
.auth-box,
.dashboard-box,
.dash-section,
.ticket-box {
  padding: clamp(26px, 3vw, 38px);
  animation: fadeUp 0.75s ease both;
}

.builder h2,
.features h2,
.faq h2,
.dash-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.builder p,
.shop-hero p,
.auth-box p,
.dashboard-box p,
.checkout-box p,
.thank-box p,
.dash-header p,
.product-desc,
.empty-text {
  color: var(--muted);
  line-height: 1.72;
}

.sliders,
.feature-grid,
.dashboard-grid,
.service-grid {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.sliders { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.dashboard-grid,
.service-grid { grid-template-columns: repeat(3, 1fr); }

.slider-card,
.feature-card,
.service-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.050);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.slider-card:hover,
.feature-card:hover,
.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-white);
}

.slider-card label {
  display: block;
  margin-bottom: 18px;
  color: var(--soft-text);
  font-weight: 800;
}

.price-box {
  margin-top: 32px;
  padding: 27px;
  border-radius: 22px;
  background: rgba(255,255,255,0.050);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.price-box h3 {
  font-size: 40px;
}

.price-box .order-btn {
  margin-left: auto;
}

/* ===== FAQ ===== */

.faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-white);
}

.faq-item summary {
  position: relative;
  padding: 21px 62px 21px 22px;
  cursor: pointer;
  color: white;
  font-weight: 900;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 23px;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  content: "×";
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #cfcfcf);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.78;
  animation: faqRollDown 0.32s ease both;
}

.faq-item[open] {
  border-color: var(--border-strong);
}

/* ===== SHOP ===== */

.shop-hero {
  text-align: center;
}

.shop-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 16px;
}

.shop-section {
  padding: 38px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.75s ease both;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -160px;
  background: radial-gradient(circle, rgba(255,255,255,0.13), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(-9px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  opacity: 1;
}

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

.product-badge,
.premium-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.product-card h2 {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.product-price {
  margin: 26px 0;
}

.product-price strong {
  font-size: 44px;
}

.product-price span,
.product-price small {
  color: var(--muted);
}

.product-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-features li {
  padding: 13px 0;
  color: var(--soft-text);
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.product-features li::before {
  content: "✓";
  color: white;
  margin-right: 10px;
  font-weight: 900;
}

/* ===== ORDER / CONTACT ===== */

.order-page,
.contact-page-large {
  padding: 76px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.config-box h1,
.contact-form-large h1,
.checkout-box h1,
.thank-box h1,
.auth-box h1,
.dashboard-box h1,
.ticket-box h1 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.config-box label,
.contact-form-large label,
.auth-box label,
.profile-form label,
.ticket-form label,
.ticket-reply-form label {
  display: block;
  color: var(--soft-text);
  font-weight: 800;
  margin: 16px 0 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.summary-row,
.summary-details div,
.summary-extra li,
.checkout-price div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft-text);
  margin-bottom: 12px;
}

.summary-box {
  border-color: rgba(255,255,255,0.22);
}

.summary-box hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 24px 0;
}

.summary-details,
.summary-extra ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-extra ul {
  list-style: none;
}

.total-price {
  font-size: 44px;
  font-weight: 950;
  text-align: center;
  margin: 26px 0;
}

.total-price small {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.contact-extra-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-extra-info div {
  background: rgba(255,255,255,0.050);
  padding: 23px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.contact-faq-wide {
  margin-top: 36px;
  padding: 42px;
}

/* ===== AUTH / CHECKOUT / THANK YOU ===== */

.checkout-page,
.thank-page,
.auth-page,
.dashboard-page {
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-box,
.thank-box {
  width: min(720px, 100%);
}

.auth-box {
  width: min(530px, 100%);
}

.dashboard-box {
  width: min(1120px, 100%);
}

.auth-box form,
.profile-form,
.ticket-form,
.ticket-reply-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-link {
  margin-top: 20px;
  color: var(--muted);
}

.auth-link a,
.table-box th,
.checkout-total strong {
  color: white;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin: 20px 0;
}

.checkout-price,
.checkout-summary {
  padding: 24px;
  margin: 25px 0;
}

.checkout-total {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  font-size: 23px;
  font-weight: 950;
}

.thank-box {
  text-align: center;
}

.thank-box::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 48px;
  border: 2px solid rgba(255,255,255,0.35);
  animation: popIn 0.5s ease both;
}

/* ===== DASHBOARD ===== */

.customer-dashboard {
  padding-block: 76px;
}

.dash-header {
  margin-bottom: 32px;
}

.dash-header h1 {
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.dash-card,
.dash-section,
.ticket-box {
  padding: 27px;
  animation: fadeUp 0.75s ease both;
}

.dash-card,
.service-card {
  color: white;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dash-card:hover,
.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-white);
}

.dash-card h3,
.service-card h3 {
  color: var(--soft-text);
  margin-bottom: 10px;
}

.dash-card p {
  font-size: 34px;
  font-weight: 950;
}

.table-box {
  overflow-x: auto;
}

.table-box table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.table-box th,
.table-box td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.table-box td {
  color: var(--soft-text);
}

/* ===== TICKETS / SUPPORT CHAT ===== */

.ticket-page {
  padding-block: 76px;
}

.ticket-card {
  padding: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-white);
}

.ticket-card p {
  color: var(--muted);
  margin-top: 5px;
}

/* Chat wrapper */
/* ===== Supportchat ===== */

.chat-box{
    background:#090909;
    border:1px solid #222;
    border-radius:22px;
    padding:25px;
    margin:25px 0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.chat-message{
    padding:18px 20px;
    border-radius:20px;
    max-width:75%;
    min-width:180px;
    width:fit-content;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    word-wrap:break-word;
    overflow-wrap:anywhere;
    line-height:1.7;
}

.chat-message strong{
    margin-bottom:10px;
    font-size:18px;
}

.chat-message p{
    margin:0;
    text-align:left;
}

.chat-message small{
    margin-top:14px;
    font-size:13px;
}

/* Kund */

.user-message{
    margin-left:auto;
    background:#ececec;
    color:#111;
}

.user-message small{
    color:#666;
}

/* Support */

.admin-message{
    margin-right:auto;
    background:#15171b;
    color:#fff;
    border:1px solid #2b3038;
}

.admin-message small{
    color:#8b95a7;
}
/* ===== FOOTER ===== */

.footer {
  margin-top: 92px;
  background: rgba(3,3,3,0.92);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 66px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.footer-section h3 {
  margin-bottom: 18px;
}

.footer-section p,
.footer-section a {
  color: var(--muted);
  line-height: 1.85;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-section a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 29px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--faint);
}

/* ===== Logo ===== */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    height: 90px;
    width: auto;
    display: block;
    transition: .3s;
}

.logo img:hover{
    transform: scale(1.03);
}

/* ===== Footer ===== */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 120px; /* ändra till 250px eller 300px om du vill ha den större */
    height: auto;
    transition: 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

.register-page {
    max-width: 1250px;
    margin: auto;
    padding: 70px 25px;
}

.register-container {
    width: 100%;
}

.register-container > h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.register-container > p {
    color: #a3a3a3;
    margin-bottom: 30px;
}

.register-section {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 24px;
}

.register-section h2 {
    font-size: 22px;
    margin-bottom: 24px;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
}

.register-grid input {
    height: 46px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #111;
    border: 1px solid #d4d4d4;
    padding: 0 14px;
}

.register-grid input::placeholder {
    color: #6b7280;
}

.register-grid input:focus {
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.full-width {
    grid-column: 1 / -1;
}

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

.register-submit {
    width: 100%;
    margin-top: 10px;
}

/* ===== Registreringssektioner ===== */

.register-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.register-section h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
}

/* Två kolumner */

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
}

.register-grid .full-width {
    grid-column: 1 / -1;
}

/* Inputs */

.register-grid label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.register-grid div {
    display: flex;
    flex-direction: column;
}

.register-grid input {
    background: #050505;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    height: 54px;
    padding: 0 18px;
    transition: .25s;
}

.register-grid input:focus {
    outline: none;
    border-color: rgba(255,255,255,.25);
    box-shadow:
        0 0 0 3px rgba(255,255,255,.03),
        0 10px 30px rgba(0,0,0,.35);
}

/* Knapp */

.register-grid .order-btn {
    width: 100%;
}

.vps-info-section,
.vps-about-section {
    width: min(1200px, calc(100% - 44px));
    margin: 90px auto;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-heading span,
.vps-about-text span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.section-heading h2,
.vps-about-text h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 10px 0 14px;
    letter-spacing: -0.05em;
}

.section-heading p,
.vps-about-text p {
    color: var(--soft-text);
    font-size: 17px;
    line-height: 1.7;
}

.vps-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vps-feature-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 28px;
    transition: .25s ease;
}

.vps-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.32);
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.vps-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:rgba(37,99,235,.12);
    border:1px solid rgba(37,99,235,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.vps-icon i{
    font-size:22px;
    color:#3b82f6;
}

.vps-feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vps-feature-card p {
    color: var(--soft-text);
    line-height: 1.7;
}

.vps-about-section {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 45px;
    align-items: center;
    padding-top: 70px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.vps-about-text p {
    margin-bottom: 18px;
}

.about-mini-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-mini-grid div {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 18px;
    font-weight: 800;
    text-align: center;
}

.vps-stats-box {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 28px;
}

.vps-stats-box div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    background: rgba(255,255,255,0.055);
    border-radius: 14px;
    margin-bottom: 14px;
}

.vps-stats-box div:last-child {
    margin-bottom: 0;
}

.vps-stats-box span {
    color: var(--soft-text);
}

.vps-stats-box strong {
    color: #ffffff;
}

.vps-about-section.vps-about-full {
    display: block;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vps-about-full .vps-about-text {
    max-width: 100%;
}

/* Dropdown-menyer */
select {
    background: #050505 !important;
    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 16px !important;

    height: 54px;
    padding: 0 18px;

    font-size: 15px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Alternativen i menyn */
select option {
    background: #050505 !important;
    color: #ffffff !important;
}

/* Fokus */
select:focus {
    outline: none;

    border-color: rgba(255,255,255,.25) !important;

    box-shadow:
        0 0 0 3px rgba(255,255,255,.03),
        0 10px 30px rgba(0,0,0,.35);
}

.product-features li.not-included::before {
    content: "✕";
    color: #ef4444;
}

.product-features li.not-included {
    color: #94a3b8;
}

.status-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.status-green {
    background: rgba(34,197,94,.15);
    color: #4ade80;
}

.status-orange {
    background: rgba(251,146,60,.15);
    color: #fb923c;
}

.status-red {
    background: rgba(239,68,68,.15);
    color: #f87171;
}

.status-gray {
    background: rgba(255,255,255,.08);
    color: #d1d5db;
}

.info-box {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    color: #b5b5b5;
    line-height: 1.8;
}

.thank-modern {
    max-width: 760px;
    text-align: center;
}

.thank-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 46px;
    font-weight: 900;
    color: #050505;
    background: linear-gradient(135deg, #ffffff, #cfcfcf);
    box-shadow: 0 18px 55px rgba(255,255,255,.12);
}

.thank-tag {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #bdbdbd;
    margin-bottom: 10px;
}

.thank-text {
    max-width: 560px;
    margin: 0 auto 24px;
    color: #b5b5b5;
    line-height: 1.7;
}

.thank-order-number {
    margin: 28px auto;
    padding: 18px 22px;
    max-width: 420px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
}

.thank-order-number span {
    display: block;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 6px;
}

.thank-order-number strong {
    font-size: 22px;
    letter-spacing: .03em;
}

.thank-steps {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.thank-steps div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
}

.thank-steps span {
    width: 34px;
    height: 34px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    font-weight: 900;
}

.thank-steps p {
    color: #cfcfcf;
    line-height: 1.5;
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== LESS AI / CLEANER HOSTING STYLE ===== */

body {
  background: #060606 !important;
}

body::before,
body::after {
  display: none !important;
}

.builder,
.feature-card,
.slider-card,
.product-card,
.config-box,
.summary-box,
.auth-box,
.dashboard-box,
.checkout-box,
.thank-box,
.dash-card,
.dash-section,
.ticket-box,
.contact-form-large,
.contact-extra-info,
.contact-faq-wide,
.faq-item,
.service-card,
.ticket-card,
.checkout-price,
.checkout-summary,
.vps-feature-card {
  backdrop-filter: none !important;
  background: #111111 !important;
  border: 1px solid #242424 !important;
  box-shadow: none !important;
}

.builder:hover,
.feature-card:hover,
.slider-card:hover,
.product-card:hover,
.config-box:hover,
.summary-box:hover,
.auth-box:hover,
.dashboard-box:hover,
.checkout-box:hover,
.thank-box:hover,
.dash-card:hover,
.dash-section:hover,
.ticket-box:hover,
.contact-form-large:hover,
.contact-extra-info:hover,
.faq-item:hover,
.service-card:hover,
.ticket-card:hover,
.vps-feature-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: #3a3a3a !important;
}

.hero-card {
  background: #111111 !important;
  box-shadow: none !important;
  animation: none !important;
}

.hero-card::before {
  display: none !important;
}

.server-box div {
  background: #181818 !important;
  box-shadow: none !important;
  animation: none !important;
}

.order-btn,
.register-btn,
.product-btn,
.discount-row button,
button[type="submit"] {
  background: #ffffff !important;
  color: #050505 !important;
  box-shadow: none !important;
}

.login-btn {
  background: #151515 !important;
  border: 1px solid #2a2a2a !important;
  box-shadow: none !important;
}

.order-btn:hover,
.login-btn:hover,
.register-btn:hover,
.product-btn:hover,
.discount-row button:hover,
button[type="submit"]:hover {
  transform: none !important;
  box-shadow: none !important;
}

.order-btn::before,
.register-btn::before,
.product-btn::before,
.discount-row button::before,
button[type="submit"]::before {
  display: none !important;
}

.hero h1 span {
  background: none !important;
  color: #ffffff !important;
}

.tag::before,
.logo-icon {
  animation: none !important;
  box-shadow: none !important;
}

* {
  animation-duration: 0.15s !important;
}

/* ===== Support sida utan CSS-krock ===== */

.support-page-clean {
    padding-block: 76px;
}

.support-layout-clean {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.support-panel-clean {
    background: #111111;
    border: 1px solid #242424;
    border-radius: 24px;
    padding: 28px;
}

.support-panel-clean h2 {
    margin-bottom: 8px;
    font-size: 26px;
}

.support-muted-clean {
    color: #a3a3a3;
    margin-bottom: 22px;
}

.support-form-clean {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-form-clean label {
    font-weight: 700;
    color: #e5e5e5;
}

.support-ticket-list-clean {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-ticket-row-clean {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: #0b0b0b;
    border: 1px solid #262626;
    transition: border-color .2s ease, background .2s ease;
}

.support-ticket-row-clean:hover {
    background: #151515;
    border-color: #3a3a3a;
}

.support-ticket-row-clean h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.support-ticket-row-clean p {
    color: #9ca3af;
    font-size: 14px;
}

.support-status-clean {
    white-space: nowrap;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.support-status-green-clean {
    background: rgba(34,197,94,.13);
    color: #4ade80;
}

.support-status-orange-clean {
    background: rgba(251,146,60,.13);
    color: #fb923c;
}

.support-status-gray-clean {
    background: rgba(255,255,255,.08);
    color: #d1d5db;
}

/* ===== Custom service section - bättre version ===== */

.custom-service-section {
    max-width: 1250px;
    margin: 90px auto;
    padding: 0 24px;
}

.custom-service-box{
    background: #131313;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.custom-service-box::before{
    display:none;
}

.custom-service-box > * {
    position: relative;
    z-index: 1;
}

.custom-service-box .tag {
    margin-bottom: 28px;
}

.custom-service-box h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.custom-service-box > p:not(.tag) {
    max-width: 720px;
    margin: 0 auto 44px;
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.75;
}

.custom-service-box .feature-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.custom-service-box .feature-card{
    background: #0f0f0f !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    transition: .2s;
}

.custom-service-box .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.custom-service-box .feature-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

.custom-service-box .feature-card:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.15) !important;
}

.custom-service-box .product-btn {
    margin-top: 38px;
    min-width: 180px;
}

.top-notice{
    width:100%;
    padding:14px 20px 0;
    position:relative;
    z-index:20;
}

.top-notice-inner{
    max-width:1200px;
    margin:0 auto;
    padding:14px 18px;
    border-radius:16px;
    background:#111;
    border:1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    animation: noticeDrop .35s ease both;
}

.top-notice-inner span{
    font-weight:800;
    color:#fff;
}

.top-notice-inner p{
    color:#d4d4d4;
    margin:0;
}

.top-notice-inner a{
    color:#fff;
    font-weight:800;
    text-decoration:underline;
}

/* ===== Hosting style checkout ===== */

.checkout-modern-page {
    padding: 70px 20px 90px !important;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.045), transparent 28%),
        #070707;
}

.checkout-modern-box {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.checkout-modern-header {
    margin-bottom: 28px;
    padding: 26px 30px;
    border-radius: 16px;
    background: #101010;
    border: 1px solid #242424;
}

.checkout-modern-header span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #171717;
    border: 1px solid #2d2d2d;
    color: #d4d4d4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.checkout-modern-header h1 {
    font-size: 38px;
    margin: 0 0 8px;
    letter-spacing: -1px;
}

.checkout-modern-header p {
    color: #b8b8b8;
    margin: 0;
}

.checkout-modern-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: start;
}

.checkout-modern-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.checkout-modern-card h2 {
    margin: 0;
    padding: 20px 24px;
    font-size: 20px;
    border-bottom: 1px solid #242424;
    background: #151515;
}

.checkout-modern-card h2::before {
  display: none;
}

.checkout-muted {
    padding: 18px 24px 0;
    margin: 0;
    color: #a3a3a3;
    font-size: 14px;
}

.checkout-line {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    padding: 16px 24px;
    border-bottom: 1px solid #222;
}

.checkout-line:nth-child(even) {
    background: #0d0d0d;
}

.checkout-line span {
    color: #9ca3af;
    font-size: 14px;
}

.checkout-line strong {
    text-align: right;
    color: #f5f5f5;
}

.checkout-line:first-of-type strong {
    color: #ffffff;
    font-size: 17px;
}

.checkout-discount {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 18px 24px 0;
}

.checkout-discount input {
    background: #090909 !important;
    border: 1px solid #2d2d2d !important;
}

.checkout-price-box {
    margin: 22px 24px 0;
    border: 1px solid #282828;
    border-radius: 14px;
    overflow: hidden;
}

.checkout-price-box div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 15px 18px;
    background: #0c0c0c;
    border-bottom: 1px solid #222;
}

.checkout-price-box div:last-child {
    border-bottom: none;
}

.checkout-price-box span {
    color: #a3a3a3;
}

.checkout-price-box strong {
    color: #fff;
}

.checkout-final {
    background: #161616 !important;
    border: none !important;
}

.checkout-final span {
    color: #d4d4d4;
    font-weight: 700;
}

.checkout-final strong {
    font-size: 25px;
}

.checkout-submit {
    width: calc(100% - 48px);
    margin: 22px 24px 0;
}

.checkout-small {
    margin: 14px 24px 24px;
    padding: 14px;
    border-radius: 12px;
    background: #0b0b0b;
    border: 1px solid #242424;
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== HOSTHUSET DARK CUSTOMER PANEL ===== */

.panel-layout {
    width: min(1320px, calc(100% - 40px));
    margin: 42px auto 80px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 28px;
    align-items: start;
}

.panel-sidebar {
    background: #14161b;
    border: 1px solid #262a31;
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 105px;
}

.panel-sidebar-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #262a31;
}

.panel-sidebar-title h2 {
    color: #ffffff;
    font-size: 23px;
    margin: 0;
}

.panel-sidebar-title p {
    color: #8b95a7;
    margin-top: 5px;
    font-size: 14px;
}

.panel-menu {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.panel-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 15px;
    border-radius: 12px;
    color: #b8c0ce;
    font-weight: 700;
    text-decoration: none;
    transition: .18s ease;
}

.panel-menu a i {
    width: 20px;
    font-size: 16px;
    text-align: center;
    color: #8b95a7;
}

.panel-menu a:hover {
    background: #1c2027;
    color: #ffffff;
}

.panel-menu a:hover i {
    color: #ffffff;
}

.panel-menu a.active {
    background: #2563eb;
    color: #ffffff;
}

.panel-menu a.active i {
    color: #ffffff;
}

.panel-main {
    min-width: 0;
}

.panel-top {
    background: #14161b;
    border: 1px solid #262a31;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.panel-top h1 {
    color: #ffffff;
    font-size: 36px;
    margin: 0 0 6px;
}

.panel-top p {
    color: #8b95a7;
    margin: 0;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.panel-stat-card {
    background: #14161b;
    border: 1px solid #262a31;
    border-radius: 18px;
    padding: 24px;
    text-decoration: none;
    transition: .18s ease;
}

.panel-stat-card:hover {
    border-color: #2563eb;
    background: #171a20;
}

.panel-stat-card span {
    display: block;
    color: #8b95a7;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}

.panel-stat-card strong {
    display: block;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
}

.panel-stat-card small {
    display: block;
    color: #6f7a8d;
    margin-top: 12px;
    font-size: 13px;
}

.panel-stat-card.warning {
    border-color: rgba(245, 158, 11, .45);
    background: rgba(245, 158, 11, .08);
}

.panel-stat-card.warning span,
.panel-stat-card.warning small {
    color: #fbbf24;
}

.panel-section {
    background: #14161b;
    border: 1px solid #262a31;
    border-radius: 18px;
    padding: 28px;
}

.panel-section-header {
    margin-bottom: 22px;
}

.panel-section-header h2 {
    color: #ffffff;
    margin: 0 0 6px;
    font-size: 25px;
}

.panel-section-header p {
    color: #8b95a7;
    margin: 0;
}

.panel-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.panel-shortcut {
    background: #101216;
    border: 1px solid #262a31;
    border-radius: 16px;
    padding: 22px;
    text-decoration: none;
    transition: .18s ease;
}

.panel-shortcut:hover {
    border-color: #2563eb;
    background: #171a20;
}

.panel-shortcut h3 {
    color: #ffffff;
    margin: 0 0 8px;
    font-size: 18px;
}

.panel-shortcut p {
    color: #8b95a7;
    margin: 0;
    line-height: 1.6;
}

.panel-empty {
    padding: 36px;
    border: 1px dashed #343944;
    border-radius: 16px;
    background: #101216;
    text-align: center;
}

.panel-empty h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.panel-empty p {
    color: #8b95a7;
    margin-bottom: 22px;
}

.shop-section {
    width: min(1400px, calc(100% - 44px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 50px auto;
    align-items: stretch;
}

.product-card {
    width: 100%;
    min-width: 0;
}

/* ===== Luxury contact page ===== */

.contact-luxury-hero {
    width: min(1050px, calc(100% - 44px));
    margin: 80px auto 35px;
    text-align: center;
}

.contact-luxury-hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 20px;
}

.contact-luxury-hero > p:not(.tag) {
    max-width: 760px;
    margin: 0 auto;
    color: #b5b5b5;
    font-size: 18px;
    line-height: 1.75;
}

.contact-luxury-page {
    width: min(980px, calc(100% - 44px));
    margin: 0 auto 80px;
}

.contact-luxury-form {
    position: relative;
    overflow: hidden;
    background: #111111;
    border: 1px solid #2b2b2b;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px);
}

.contact-luxury-form::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%),
        radial-gradient(circle at top right, rgba(255,255,255,.07), transparent 34%);
}

.contact-luxury-form > * {
    position: relative;
    z-index: 1;
}

.contact-luxury-head {
    margin-bottom: 28px;
    border-bottom: 1px solid #262626;
    padding-bottom: 24px;
}

.contact-luxury-head span,
.contact-luxury-faq-head span {
    color: #d6d6d6;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.contact-luxury-head h2,
.contact-luxury-faq-head h2 {
    font-size: clamp(30px, 3vw, 42px);
    margin: 8px 0 10px;
    letter-spacing: -0.04em;
}

.contact-luxury-head p,
.contact-luxury-faq-head p {
    color: #a3a3a3;
    line-height: 1.7;
}

.contact-luxury-form label {
    color: #e5e5e5;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.contact-luxury-form input,
.contact-luxury-form textarea,
.contact-luxury-form select {
    background: #070707 !important;
    border: 1px solid #2f2f2f !important;
    border-radius: 14px !important;
}

.contact-luxury-form input:focus,
.contact-luxury-form textarea:focus,
.contact-luxury-form select:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,.07) !important;
}

.contact-luxury-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-luxury-actions {
    margin-top: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-luxury-actions p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.contact-luxury-faq {
    width: min(980px, calc(100% - 44px));
    margin: 40px auto 90px;
}

.contact-luxury-faq-head {
    margin-bottom: 24px;
    text-align: center;
}

/* ===== Contact page clean animations ===== */

.contact-luxury-hero {
    animation: contactFadeUp .55s ease both;
}

.contact-luxury-form {
    animation: contactFadeUp .65s ease both;
    transition: border-color .25s ease, transform .25s ease;
}

.contact-luxury-form:hover {
    border-color: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

.contact-luxury-form input,
.contact-luxury-form textarea,
.contact-luxury-form select {
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        transform .22s ease;
}

.contact-luxury-form input:focus,
.contact-luxury-form textarea:focus,
.contact-luxury-form select:focus {
    transform: translateY(-1px);
}

.contact-luxury-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.contact-luxury-actions .order-btn {
    min-width: 220px;
}

.contact-luxury-actions p {
    margin: 0;
    max-width: 520px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.contact-luxury-faq {
    animation: contactFadeUp .75s ease both;
}

/* ===== New premium home page ===== */

.home-hero-new{
    width:min(1400px, calc(100% - 44px));
    margin:70px auto 90px;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:60px;
    align-items:center;
}

.home-hero-content{
    animation:fadeUp .55s ease both;
}

.home-hero-content h1{
    max-width:760px;
    font-size:clamp(46px, 5.5vw, 78px);
    line-height:.96;
    letter-spacing:-.065em;
    margin-bottom:24px;
}

.home-hero-desc{
    max-width:700px;
    color:#c7c7c7;
    font-size:18px;
    line-height:1.75;
}

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

.home-trust-row{
    margin-top:42px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    max-width:760px;
}

.home-trust-row div{
    background:#111;
    border:1px solid #242424;
    border-radius:16px;
    padding:18px;
}

.home-trust-row strong{
    display:block;
    color:#fff;
    font-size:20px;
    margin-bottom:5px;
}

.home-trust-row span{
    color:#8b95a7;
    font-size:14px;
}

.home-server-preview{
    animation:fadeUp .7s ease both;
}

.server-window{
    background:#111;
    border:1px solid #2a2a2a;
    border-radius:26px;
    padding:28px;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
}

.server-window::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,.22), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.05), transparent 38%);
}

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

.server-window-top{
    display:flex;
    gap:8px;
    padding-bottom:22px;
    border-bottom:1px solid #252525;
    margin-bottom:24px;
}

.server-window-top span{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#3a3a3a;
}

.server-status-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
}

.server-status-row small{
    color:#8b95a7;
}

.server-status-row strong{
    display:block;
    color:#fff;
    font-size:32px;
    margin-top:4px;
}

.server-pill{
    padding:8px 13px;
    border-radius:999px;
    color:#4ade80;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.25);
    font-weight:800;
    font-size:13px;
}

.server-bars{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:28px;
}

.server-bars div{
    display:grid;
    grid-template-columns:55px 1fr;
    align-items:center;
    gap:14px;
}

.server-bars span{
    color:#b8c0ce;
    font-weight:700;
}

.server-bars div::after{
    content:"";
    grid-column:2;
    height:9px;
    border-radius:999px;
    background:#242424;
}

.server-bars b{
    grid-column:2;
    grid-row:1;
    height:9px;
    border-radius:999px;
    background:#2563eb;
    z-index:2;
}

.server-spec-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.server-spec-grid div{
    background:#0b0b0b;
    border:1px solid #242424;
    border-radius:16px;
    padding:18px;
}

.server-spec-grid span{
    display:block;
    color:#8b95a7;
    font-size:13px;
    margin-bottom:6px;
}

.server-spec-grid strong{
    color:#fff;
}

.home-package-preview,
.home-process-section{
    width:min(1200px, calc(100% - 44px));
    margin:90px auto;
}

.home-package-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    margin-top:36px;
}

.home-package-card{
    background:#111;
    border:1px solid #242424;
    border-radius:20px;
    padding:28px;
    transition:.22s ease;
}

.home-package-card:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
    background:#141820;
}

.home-package-card.featured{
    border-color:rgba(37,99,235,.55);
    background:#121722;
}

.home-package-card span{
    color:#8b95a7;
    font-weight:900;
    font-size:13px;
    letter-spacing:.08em;
}

.home-package-card h3{
    color:#fff;
    font-size:26px;
    margin:12px 0 10px;
}

.home-package-card p{
    color:#a3a3a3;
    line-height:1.6;
}

.home-process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:34px;
}

.home-process-grid div{
    background:#111;
    border:1px solid #242424;
    border-radius:20px;
    padding:30px;
}

.home-process-grid span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    font-weight:900;
    margin-bottom:18px;
}

.home-process-grid h3{
    color:#fff;
    margin-bottom:10px;
}

.home-process-grid p{
    color:#a3a3a3;
    line-height:1.7;
}

/* ===== Cleaner home offer box ===== */

.home-hero-simple{
    align-items:center;
}

.home-offer-box{
    background:#111;
    border:1px solid #262626;
    border-radius:22px;
    padding:34px;
    max-width:430px;
    margin-left:auto;
    animation:fadeUp .65s ease both;
}

.home-offer-top{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:center;
    padding-bottom:20px;
    border-bottom:1px solid #262626;
    margin-bottom:24px;
}

.home-offer-top span{
    color:#8b95a7;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.home-offer-top strong{
    color:#fff;
    font-size:22px;
}

.home-offer-price{
    margin-bottom:24px;
}

.home-offer-price span,
.home-offer-price small{
    color:#8b95a7;
}

.home-offer-price strong{
    color:#fff;
    font-size:48px;
    letter-spacing:-.04em;
    margin:0 6px;
}

.home-offer-box ul{
    list-style:none;
    margin:0 0 28px;
}

.home-offer-box li{
    padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.07);
    color:#d4d4d4;
}

.home-offer-box li::before{
    content:"✓";
    margin-right:10px;
    color:#4ade80;
    font-weight:900;
}

.home-offer-box .product-btn{
    width:100%;
}

.hero-info-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:420px;
}

.hero-info-card{
    background:#111;
    border:1px solid #242424;
    border-radius:18px;
    padding:28px;
    transition:.25s;
}

.hero-info-card:hover{
    border-color:#3a3a3a;
    transform:translateY(-3px);
}

.hero-info-card span{
    display:block;
    color:#8c97a8;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
}

.hero-info-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
}

.hero-info-card p{
    color:#b7bcc8;
    line-height:1.7;
}

/* ===== Cleaner home offer box ===== */

.home-hero-simple{
    align-items:center;
}

.home-offer-box{
    background:#111;
    border:1px solid #262626;
    border-radius:22px;
    padding:34px;
    max-width:430px;
    margin-left:auto;
    animation:fadeUp .65s ease both;
}

.home-offer-top{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:center;
    padding-bottom:20px;
    border-bottom:1px solid #262626;
    margin-bottom:24px;
}

.home-offer-top span{
    color:#8b95a7;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.home-offer-top strong{
    color:#fff;
    font-size:22px;
}

.home-offer-price{
    margin-bottom:24px;
}

.home-offer-price span,
.home-offer-price small{
    color:#8b95a7;
}

.home-offer-price strong{
    color:#fff;
    font-size:48px;
    letter-spacing:-.04em;
    margin:0 6px;
}

.home-offer-box ul{
    list-style:none;
    margin:0 0 28px;
}

.home-offer-box li{
    padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.07);
    color:#d4d4d4;
}

.home-offer-box li::before{
    content:"✓";
    margin-right:10px;
    color:#4ade80;
    font-weight:900;
}

.home-offer-box .product-btn{
    width:100%;
}

.center-hero{
    display:flex;
    justify-content:center;
    text-align:center;
    margin:90px auto;
}

.center-hero .home-hero-content{
    max-width:900px;
}

.center-hero h1{
    font-size:clamp(52px,6vw,82px);
    line-height:.95;
    letter-spacing:-0.05em;
    margin-bottom:30px;
}

.center-hero .home-hero-desc{
    max-width:700px;
    margin:auto;
    color:#b8c0ce;
    font-size:18px;
    line-height:1.8;
}

.center-hero .home-hero-actions{
    justify-content:center;
}

.center-hero .home-trust-row{
    max-width:800px;
    margin:50px auto 0;
}

/* ===== Service shop with VPS + game servers ===== */

.service-shop-hero{
    padding-bottom:28px;
}

.service-category-section{
    width:min(1200px, calc(100% - 44px));
    margin:10px auto 70px;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
}

.service-category-card{
    background:#111;
    border:1px solid #242424;
    border-radius:22px;
    padding:26px;
    display:grid;
    grid-template-columns:64px 1fr;
    gap:20px;
    align-items:start;
}

.service-category-card.active{
    border-color:rgba(37,99,235,.55);
    background:#121722;
}

.service-category-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(37,99,235,.12);
    border:1px solid rgba(37,99,235,.22);
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-category-icon i{
    color:#3b82f6;
    font-size:26px;
}

.service-category-card span,
.service-section-title span,
.game-server-top span{
    color:#8b95a7;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.service-category-card h2{
    color:#fff;
    margin:4px 0 8px;
    font-size:26px;
}

.service-category-card p{
    color:#a3a3a3;
    line-height:1.7;
}

.service-section-title{
    width:min(1200px, calc(100% - 44px));
    margin:0 auto 26px;
}

.service-section-title h2{
    color:#fff;
    font-size:clamp(34px, 4vw, 48px);
    letter-spacing:-.04em;
    margin:8px 0;
}

.service-section-title p{
    color:#a3a3a3;
    max-width:720px;
    line-height:1.7;
}

.shop-section-three{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    width:min(1400px, calc(100% - 44px));
    max-width:1400px;
}

.game-title{
    margin-top:80px;
}

.game-server-grid{
    width:min(1400px, calc(100% - 44px));
    margin:0 auto 90px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
}

.game-server-card{
    background:#111;
    border:1px solid #242424;
    border-radius:24px;
    padding:30px;
    transition:.22s ease;
}

.game-server-card:hover{
    border-color:#3a3a3a;
    transform:translateY(-4px);
}

.game-server-card.minecraft{
    border-color:rgba(34,197,94,.25);
}

.game-server-card.rust{
    border-color:rgba(245,158,11,.25);
}

.game-server-top{
    display:flex;
    gap:16px;
    align-items:center;
    margin-bottom:22px;
}

.game-server-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#0b0b0b;
    border:1px solid #2a2a2a;
    display:flex;
    align-items:center;
    justify-content:center;
}

.game-server-icon i{
    color:#fff;
    font-size:23px;
}

.game-server-top h3{
    color:#fff;
    font-size:25px;
    margin-top:4px;
}

.game-server-card > p{
    color:#a3a3a3;
    line-height:1.7;
    margin-bottom:20px;
}

.game-server-card ul{
    list-style:none;
    margin-bottom:24px;
}

.game-server-card li{
    padding:12px 0;
    color:#d4d4d4;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.game-server-card li::before{
    content:"✓";
    color:#4ade80;
    font-weight:900;
    margin-right:10px;
}

.game-server-price{
    margin-bottom:24px;
}

.game-server-price span,
.game-server-price small{
    color:#8b95a7;
}

.game-server-price strong{
    color:#fff;
    font-size:40px;
    letter-spacing:-.04em;
    margin:0 5px;
}

.game-server-card .product-btn{
    width:100%;
}

/* ===== Unified hosting cards + dedicated servers ===== */

.hosting-product-grid{
    margin-bottom:90px;
}

.featured-hosting-card{
    border-color:rgba(37,99,235,.45);
    background:#121722;
}

.dedicated-server-section{
    width:min(1200px, calc(100% - 44px));
    margin:90px auto;
}

.dedicated-server-box{
    background:#111;
    border:1px solid #242424;
    border-radius:26px;
    padding:42px;
    display:grid;
    grid-template-columns:92px 1fr;
    gap:28px;
    align-items:center;
}

.dedicated-server-icon{
    width:92px;
    height:92px;
    border-radius:24px;
    background:rgba(37,99,235,.12);
    border:1px solid rgba(37,99,235,.24);
    display:flex;
    align-items:center;
    justify-content:center;
}

.dedicated-server-icon i{
    font-size:38px;
    color:#3b82f6;
}

.dedicated-server-content span{
    color:#8b95a7;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.dedicated-server-content h2{
    color:#fff;
    font-size:clamp(32px, 4vw, 48px);
    letter-spacing:-.04em;
    margin:8px 0 14px;
}

.dedicated-server-content p{
    color:#a3a3a3;
    max-width:850px;
    line-height:1.8;
    margin-bottom:26px;
}

.game-hosting-section{
    width:min(var(--max-width),calc(100% - 44px));
    margin:90px auto;
}

.game-hosting-box{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:50px;
    align-items:center;
}

.game-hosting-text span{
    display:inline-block;
    color:#38bdf8;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:12px;
}

.game-hosting-text h2{
    font-size:clamp(34px,5vw,54px);
    line-height:1.05;
    color:#fff;
    margin-bottom:24px;
}

.game-hosting-text p{
    color:#94a3b8;
    line-height:1.9;
    margin-bottom:18px;
    max-width:700px;
}

.game-hosting-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}

.game-hosting-list{
    display:grid;
    gap:18px;
}

.game-row{
    display:grid;
    grid-template-columns:64px 1fr auto;
    gap:20px;
    align-items:center;

    background:rgba(15,23,42,.75);
    border:1px solid rgba(255,255,255,.07);
    border-radius:24px;

    padding:24px;

    transition:.25s;
}

.game-row:hover{
    transform:translateY(-4px);
    border-color:rgba(56,189,248,.25);
    background:#101b31;
}

.game-icon{
    width:64px;
    height:64px;

    display:grid;
    place-items:center;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    color:#38bdf8;
    font-size:24px;
}

.game-row h3{
    margin-bottom:6px;
    color:#fff;
    font-size:18px;
}

.game-row p{
    color:#94a3b8;
    line-height:1.7;
    font-size:14px;
    margin:0;
}

.game-row strong{
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.about-clean-hero,
.about-clean-section,
.about-split-section,
.about-values-clean,
.about-final-cta {
  width: min(var(--max-width), calc(100% - 44px));
  margin-inline: auto;
}

.about-clean-hero {
  padding: 82px 0 44px;
}

.about-clean-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: #60a5fa;
}

.about-clean-text h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2.4px;
  color: #fff;
}

.about-clean-text p {
  max-width: 690px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.85;
}

.about-clean-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-clean-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
  padding: 24px;
  min-height: 360px;
}

.about-clean-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  filter: blur(10px);
}

.about-panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 54px;
}

.about-panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.about-panel-content {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.about-panel-content div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.about-panel-content small {
  color: #94a3b8;
  font-size: 13px;
}

.about-panel-content strong {
  color: #fff;
  font-size: 15px;
  text-align: right;
}

.about-clean-section,
.about-split-section,
.about-values-clean,
.about-final-cta {
  padding: 58px 0;
}

.about-clean-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.about-clean-heading h2 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.about-clean-heading p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 16px;
}

.about-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-clean-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.13);
  transition: 0.25s ease;
}

.about-clean-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(15, 23, 42, 0.92);
}

.about-clean-card i {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  font-size: 19px;
  margin-bottom: 28px;
}

.about-clean-card h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 20px;
}

.about-clean-card p {
  color: #94a3b8;
  line-height: 1.75;
  margin: 0;
}

.about-split-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.about-split-left h2 {
  color: #fff;
  margin: 14px 0 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -1.4px;
}

.about-split-left p {
  color: #cbd5e1;
  line-height: 1.85;
  margin: 0 0 14px;
}

.about-steps {
  display: grid;
  gap: 14px;
}

.about-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.about-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(96, 165, 250, 0.13);
  color: #60a5fa;
  font-weight: 800;
}

.about-step h3 {
  color: #fff;
  margin: 0 0 6px;
}

.about-step p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.65;
  font-size: 14px;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.55);
}

.about-values-row div {
  padding: 26px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.about-values-row div:last-child {
  border-right: 0;
}

.about-values-row strong {
  display: block;
  color: #60a5fa;
  margin-bottom: 28px;
  font-size: 13px;
}

.about-values-row h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 18px;
}

.about-values-row p {
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

.about-final-cta {
  padding-bottom: 90px;
}

.about-final-cta > div {
  text-align: center;
  padding: 48px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(96, 165, 250, 0.18), transparent 40%),
    rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.about-final-cta .about-eyebrow {
  justify-content: center;
}

.about-final-cta h2 {
  max-width: 720px;
  margin: 16px auto 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
}

.about-final-cta p {
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-final-cta .about-clean-actions {
  justify-content: center;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
}

.cookie-content {
    max-width: 880px;
    margin: auto;
    padding: 22px 24px;
    background: rgba(12, 14, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.cookie-text h3 {
    margin: 0 0 6px;
    color: #f8fafc;
    font-size: 17px;
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
    max-width: 620px;
}

.cookie-content .order-btn {
    background: #f8fafc;
    color: #050505;
    border: 1px solid #f8fafc;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: none;
}

.cookie-content .order-btn:hover {
    background: #e5e7eb;
    border-color: #e5e7eb;
    transform: translateY(-1px);
}

.thank-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
}

.thank-step{
    background:#111317;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:30px;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;

    min-height:230px;
}

.step-number{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#1f2937;
    color:white;
    font-size:20px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.thank-step h3{
    margin:0 0 15px;
    color:#fff;
    font-size:20px;
}

.thank-step p{
    color:#a1a1aa;
    line-height:1.7;
    margin:0;

    display:flex;
    align-items:center;
    flex:1;
}

/* Discord i footern */

.footer-social{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-discord{
    width: 45px;
    height: 45px;

    border-radius: 50%;
    background: rgba(88,101,242,.12);
    border: 1px solid rgba(88,101,242,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #5865F2;
    text-decoration: none;
    font-size: 26px;

    transition: .2s ease;
}

.footer-discord:hover{
    background: #5865F2;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width:900px){

    .thank-steps{
        grid-template-columns:1fr;
    }

}

@media (max-width: 768px) {
    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .cookie-content .order-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 950px) {
  .about-clean-inner,
  .about-clean-grid,
  .about-split-box,
  .about-values-row {
    grid-template-columns: 1fr;
  }

  .about-values-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .about-values-row div:last-child {
    border-bottom: 0;
  }

  .about-clean-panel {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .about-clean-hero {
    padding-top: 52px;
  }

  .about-clean-text h1 {
    font-size: 42px;
    letter-spacing: -1.4px;
  }

  .about-split-box {
    padding: 24px;
  }

  .about-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .game-hosting-box {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .game-row {
    grid-template-columns: 48px 1fr;
  }

  .game-row strong {
    grid-column: 2;
  }
}

@media(max-width:760px){
    .dedicated-server-box{
        grid-template-columns:1fr;
    }
}

@media(max-width:1100px){
    .shop-section-three,
    .game-server-grid{
        grid-template-columns:repeat(2, 1fr) !important;
    }

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

@media(max-width:760px){
    .shop-section-three,
    .game-server-grid{
        grid-template-columns:1fr !important;
    }

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

@media(max-width:1000px){
    .home-offer-box{
        max-width:100%;
        margin-left:0;
    }
}

@media(max-width:1000px){

    .hero-info-cards{
        width:100%;
    }

}

@media(max-width:1000px){
    .home-offer-box{
        max-width:100%;
        margin-left:0;
    }
}

@media(max-width:1000px){
    .home-hero-new{
        grid-template-columns:1fr;
    }

    .home-package-grid,
    .home-process-grid,
    .home-trust-row{
        grid-template-columns:1fr;
    }
}

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media(max-width: 760px) {
    .contact-luxury-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-luxury-actions .order-btn {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .shop-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .shop-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1050px) {
    .panel-layout {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        position: static;
    }

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

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

@media (max-width: 650px) {
    .panel-layout {
        width: min(100% - 24px, 1320px);
        margin-top: 24px;
    }

    .panel-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-menu,
    .panel-stats,
    .panel-shortcuts {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 900px) {
    .checkout-modern-grid {
        grid-template-columns: 1fr;
    }

    .checkout-line {
        grid-template-columns: 1fr;
    }

    .checkout-line strong {
        text-align: left;
    }

    .checkout-discount {
        grid-template-columns: 1fr;
    }
}

@keyframes noticeDrop{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:700px){
    .top-notice-inner{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }
}

@media(max-width: 900px) {
    .custom-service-box {
        padding: 46px 24px;
    }

    .custom-service-box .feature-grid {
        grid-template-columns: 1fr;
    }

    .custom-service-box .feature-card {
        text-align: center;
    }
}

@media(max-width: 900px) {
    .support-layout-clean {
        grid-template-columns: 1fr;
    }

    .support-ticket-row-clean {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 800px) {
    .thank-steps {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 900px) {
    .vps-feature-grid,
    .vps-about-section,
    .about-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:800px){

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

    .register-grid .full-width{
        grid-column:auto;
    }

}

@media(max-width: 800px) {
    .register-grid,
    .billing-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

@media (max-width: 800px) {
    .register-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .register-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ANIMATIONS ===== */

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50% { filter: drop-shadow(0 0 14px rgba(255,255,255,0.48)); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255,255,255,0.12); }
  50% { box-shadow: 0 0 50px rgba(255,255,255,0.30); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqRollDown {
  from { opacity: 0; transform: translateY(-8px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 500px; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.65) rotate(-12deg); }
  70% { transform: scale(1.08) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1080px) {
  .hero,
  .order-page,
  .contact-page-large {
    grid-template-columns: 1fr;
  }

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

  .sliders,
  .dashboard-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .price-box .order-btn {
    margin-left: 0;
  }

  .hero-card {
    min-height: 370px;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 74px;
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  nav {
    display: none;
  }

  .nav-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    width: min(100% - 36px, 1450px);
    padding: 52px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-features,
  .feature-grid,
  .dash-grid,
  .shop-section,
  .footer-container,
  .form-row {
    grid-template-columns: 1fr;
  }

  .builder-section,
  .features,
  .faq,
  .shop-hero,
  .auth-page,
  .dashboard-page,
  .checkout-page,
  .thank-page {
    padding: 44px 22px;
  }

  .shop-section,
  .order-page,
  .contact-page-large,
  .customer-dashboard {
    width: min(100% - 36px, var(--max-width));
    padding-left: 0;
    padding-right: 0;
  }

  .discount-row {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 100%;
  }

  .ticket-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    padding: 46px 24px;
  }

  .price-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
