/* ═══════════════════════════════════════════════════════════════════
   HOTBOX.FI — GLASS PREMIUM DESIGN SYSTEM
   Shared CSS for all pages. Fonts loaded via <link> in each template.
   Google Fonts: Inter (300,400,500,600) + Outfit (200,300,400,500,600,700)
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #e2e8f0;
  background: #0c0c1d;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

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

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --violet: #a78bfa;
  --pink: #f472b6;
  --teal: #5eead4;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --bg-deep: #0c0c1d;
  --bg-mid: #1a1a2e;
  --bg-light: #16213e;
  --section-gap: 120px;
  --container-width: 1200px;
}

/* ═══════════════════════════════════════════
   BACKGROUND & ANIMATED ORBS
   ═══════════════════════════════════════════ */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-light) 100%);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  will-change: transform;
}

.orb--violet {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  top: -10%;
  left: -5%;
  animation: drift-1 25s ease-in-out infinite;
}

.orb--pink {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  top: 40%;
  right: -10%;
  animation: drift-2 30s ease-in-out infinite;
}

.orb--teal {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  bottom: -10%;
  left: 30%;
  animation: drift-3 28s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, 60px) scale(1.05); }
  50% { transform: translate(40px, 120px) scale(0.95); }
  75% { transform: translate(-30px, 50px) scale(1.02); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-70px, -40px) scale(0.97); }
  50% { transform: translate(-120px, 30px) scale(1.04); }
  75% { transform: translate(-50px, -60px) scale(1); }
}

@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -50px) scale(1.03); }
  50% { transform: translate(-40px, -80px) scale(0.96); }
  75% { transform: translate(30px, -30px) scale(1.01); }
}

/* ═══════════════════════════════════════════
   GLASS UTILITY
   ═══════════════════════════════════════════ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

/* ═══════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 29, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: -1;
}

.navbar__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  height: 40px;
}

.navbar__brand svg {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--violet);
  transition: width 0.3s ease;
}

.navbar__link:hover {
  color: var(--text-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link.active {
  color: var(--text-primary);
}

.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 10px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar__cta:hover {
  background: rgba(167, 139, 250, 0.18);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.15);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Language switcher ───────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch__sep {
  color: var(--text-muted);
  user-select: none;
}

.lang-switch__link {
  color: var(--text-muted);
  transition: color 0.3s ease;
  padding: 2px 0;
}

.lang-switch__link:hover {
  color: var(--text-secondary);
}

.lang-switch__link.active {
  color: var(--violet);
}

/* ── Cart badge ──────────────────────────── */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: var(--text-primary);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 100px;
  background: var(--violet);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero__content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(167, 139, 250, 0.06);
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.08));
  color: var(--text-primary);
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(167, 139, 250, 0.15));
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.btn--pink {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.08));
  color: var(--text-primary);
  border: 1px solid rgba(244, 114, 182, 0.3);
  box-shadow: 0 0 30px rgba(244, 114, 182, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--pink:hover {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(244, 114, 182, 0.15));
  border-color: rgba(244, 114, 182, 0.5);
  box-shadow: 0 0 40px rgba(244, 114, 182, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--teal {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.2), rgba(94, 234, 212, 0.08));
  color: var(--text-primary);
  border: 1px solid rgba(94, 234, 212, 0.3);
  box-shadow: 0 0 30px rgba(94, 234, 212, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--teal:hover {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.3), rgba(94, 234, 212, 0.15));
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow: 0 0 40px rgba(94, 234, 212, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 10px;
}

.btn--danger {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn--danger:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__label--violet { color: var(--violet); }
.section__label--pink { color: var(--pink); }
.section__label--teal { color: var(--teal); }

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.feature-card__icon--violet {
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.08);
}

.feature-card__icon--pink {
  background: rgba(244, 114, 182, 0.1);
  color: var(--pink);
  box-shadow: 0 0 30px rgba(244, 114, 182, 0.08);
}

.feature-card__icon--teal {
  background: rgba(94, 234, 212, 0.1);
  color: var(--teal);
  box-shadow: 0 0 30px rgba(94, 234, 212, 0.08);
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.feature-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 0 50px rgba(167, 139, 250, 0.06), 0 0 100px rgba(167, 139, 250, 0.03);
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.pricing-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.pricing-card__currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.pricing-card__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.pricing-card__check--violet {
  background: rgba(167, 139, 250, 0.12);
  color: var(--violet);
}

.pricing-card__check--pink {
  background: rgba(244, 114, 182, 0.12);
  color: var(--pink);
}

.pricing-card__check--teal {
  background: rgba(94, 234, 212, 0.12);
  color: var(--teal);
}

.pricing-card__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════
   TRUST / STATS SECTION
   ═══════════════════════════════════════════ */
.trust {
  padding: var(--section-gap) 0;
}

.trust__panel {
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), transparent);
}

.trust__heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

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

.trust__stat {
  position: relative;
}

.trust__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.trust__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.trust__number--violet { color: var(--violet); }
.trust__number--pink { color: var(--pink); }
.trust__number--teal { color: var(--teal); }

.trust__label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  position: relative;
  padding: 48px 0 40px;
  background: rgba(8, 8, 20, 0.5);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--teal));
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  justify-content: center;
}

.footer__brand svg {
  height: 30px;
  width: auto;
}

.footer__info {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--text-secondary);
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   NEW COMPONENTS — Glass Premium design language
   ═══════════════════════════════════════════════════════════════════ */

/* ── Page Header (non-home pages) ────────── */
.page-header {
  padding: 140px 24px 64px;
  text-align: center;
  position: relative;
}

.page-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-header__label a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.page-header__label a:hover {
  color: var(--violet);
}

.page-header__label .sep {
  opacity: 0.4;
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
}

.page-header__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Product Comparison Table ────────────── */
.product-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

.product-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.product-table thead th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
}

.product-table thead th:first-child { border-radius: 16px 0 0 0; }
.product-table thead th:last-child  { border-radius: 0 16px 0 0; }

.product-table tbody tr {
  transition: background 0.3s ease;
}

.product-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.product-table tbody td {
  padding: 14px 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.product-table tbody tr:last-child td {
  border-bottom: none;
}

.product-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.product-table .check--yes { color: var(--teal); }
.product-table .check--no  { color: var(--text-muted); opacity: 0.5; }

/* ── Cart Item ───────────────────────────── */
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  position: relative;
}

.cart-item + .cart-item {
  border-top: 1px solid var(--glass-border);
}

.cart-item__info {}

.cart-item__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-item__specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item__price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-primary);
  white-space: nowrap;
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-item__remove:hover {
  color: #f87171;
}

/* ── Cart Summary ────────────────────────── */
.cart-summary {
  padding: 28px 28px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.cart-summary__row + .cart-summary__row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-summary__row--discount {
  color: var(--teal);
}

.cart-summary__row--total {
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--glass-border) !important;
  color: var(--text-primary);
}

.cart-summary__row--total .cart-summary__value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cart-summary__label {}

.cart-summary__value {
  font-weight: 500;
}

.cart-summary__btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

/* ── Form Elements ───────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-label .required {
  color: var(--pink);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.08), 0 0 20px rgba(167, 139, 250, 0.06);
  background: rgba(255, 255, 255, 0.05);
}

.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.14);
}

.form-input--error,
.form-select--error {
  border-color: rgba(239, 68, 68, 0.4);
}

.form-input--error:focus,
.form-select--error:focus {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-mid);
  color: var(--text-primary);
}

.form-hint {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-error {
  font-size: 0.74rem;
  color: #f87171;
  margin-top: 4px;
}

/* ── Custom Checkbox ─────────────────────── */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-checkbox__box svg {
  width: 10px;
  height: 10px;
  stroke: var(--violet);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__box {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.1);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.1);
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__box svg {
  opacity: 1;
}

.form-checkbox:hover .form-checkbox__box {
  border-color: rgba(167, 139, 250, 0.3);
}

.form-checkbox__label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-checkbox__label a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Tag / Pill ──────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: default;
}

.tag--violet {
  color: var(--violet);
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.2);
}

.tag--pink {
  color: var(--pink);
  background: rgba(244, 114, 182, 0.06);
  border-color: rgba(244, 114, 182, 0.2);
}

.tag--teal {
  color: var(--teal);
  background: rgba(94, 234, 212, 0.06);
  border-color: rgba(94, 234, 212, 0.2);
}

a.tag:hover {
  border-color: var(--glass-border-hover);
  color: var(--text-secondary);
}

/* ── Blog Card ───────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.blog-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
  background: var(--bg-mid);
}

.blog-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(244, 114, 182, 0.05));
  border-radius: 12px 12px 0 0;
  color: var(--text-muted);
  font-size: 2rem;
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: var(--violet);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card__read {
  color: var(--violet);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__read {
  opacity: 0.8;
}

/* ── Blog Article ────────────────────────── */
.blog-article {
  max-width: 740px;
  margin: 0 auto;
}

.blog-article__header {
  margin-bottom: 40px;
}

.blog-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-article__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 200;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.blog-article__meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.blog-article__cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 48px;
  object-fit: cover;
  max-height: 480px;
  display: block;
  border: 1px solid var(--glass-border);
}

/* ── Blog Content (Markdown rendered) ───── */
.blog-content {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.blog-content h1 { font-size: 2rem; }
.blog-content h2 { font-size: 1.5rem; padding-bottom: 8px; border-bottom: 1px solid var(--glass-border); }
.blog-content h3 { font-size: 1.2rem; }
.blog-content h4 { font-size: 1rem; font-weight: 500; }
.blog-content h5 { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.blog-content h6 { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

.blog-content p {
  margin-bottom: 1.4em;
}

.blog-content a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(167, 139, 250, 0.4);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.blog-content a:hover {
  color: #c4b5fd;
  text-decoration-color: rgba(167, 139, 250, 0.8);
}

.blog-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.blog-content em {
  color: var(--text-primary);
  font-style: italic;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.4em;
  padding-left: 1.6em;
}

.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }

.blog-content li {
  margin-bottom: 0.4em;
}

.blog-content ul li::marker { color: var(--violet); }
.blog-content ol li::marker { color: var(--violet); }

.blog-content hr {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 2.5em 0;
}

.blog-content blockquote {
  margin: 1.6em 0;
  padding: 16px 20px 16px 24px;
  border-left: 2px solid var(--violet);
  background: rgba(167, 139, 250, 0.04);
  border-radius: 0 10px 10px 0;
  color: var(--text-secondary);
  font-style: italic;
}

.blog-content blockquote p { margin: 0; }

.blog-content code {
  font-family: 'Fira Code', 'Fira Mono', 'Cascadia Code', monospace;
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--teal);
}

.blog-content pre {
  margin: 1.6em 0;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.7;
}

.blog-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #39ff14;
  font-size: 1em;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}

.blog-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.6em 0;
  border: 1px solid var(--glass-border);
  display: block;
}

.blog-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.6em 0;
  font-size: 0.88rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.blog-content table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.blog-content table td {
  padding: 10px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-content table tr:last-child td {
  border-bottom: none;
}

.blog-content table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── Alert Messages ──────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.alert--success {
  border-color: rgba(94, 234, 212, 0.25);
  background: rgba(94, 234, 212, 0.05);
  color: var(--teal);
}

.alert--error {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.05);
  color: #f87171;
}

.alert--warning {
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.05);
  color: #fbbf24;
}

.alert--info {
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.05);
  color: var(--violet);
}

/* ── Cookie Banner ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: calc(100% - 48px);
  max-width: 640px;
  background: rgba(12, 12, 29, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner--hidden {
  display: none;
}

/* ── VPS Configurator ────────────────────── */
.configurator {
  padding: 32px;
}

.configurator__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.configurator__subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.configurator__section {
  margin-bottom: 28px;
}

.configurator__section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.configurator__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.configurator__row:last-child {
  border-bottom: none;
}

.configurator__row-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.configurator__row-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* OS selector tabs */
.os-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.os-tab {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.os-tab:hover {
  border-color: var(--glass-border-hover);
  color: var(--text-secondary);
}

.os-tab.active {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.08);
  color: var(--violet);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.08);
}

/* ── Disk / Range Slider ─────────────────── */
.disk-slider {
  width: 100%;
}

.disk-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.disk-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.disk-slider input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
  transform: scale(1.1);
}

.disk-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
  cursor: pointer;
}

.disk-slider input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
}

.disk-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.disk-slider__value {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--violet);
  margin-top: 6px;
}

/* ── Pagination ──────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: all 0.3s ease;
}

.pagination__link:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  color: var(--text-primary);
}

.pagination__link.active {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.08);
}

.pagination__link--prev,
.pagination__link--next {
  gap: 4px;
}

.pagination__ellipsis {
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 0 4px;
  line-height: 36px;
}

/* ── Checkout Item ───────────────────────── */
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item__info {}

.checkout-item__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.checkout-item__detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.checkout-item__price {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ── Gradient text utility ───────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--teal {
  background: linear-gradient(135deg, var(--teal), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ─────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
  margin: 24px 0;
}

/* ── Two-column layout helper ────────────── */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.layout-2col--wide {
  grid-template-columns: 1fr 400px;
}

/* ── 4-column pricing variant (product pages & home) ─────────── */
.pricing__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* ── 2-column content grid (e.g. about page company details) ─── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ── 2-column form row (e.g. city / postcode) ────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing__grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  /* 4-col grids: all cards equal — cancel the last-child centering trick */
  .pricing__grid--4col .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .trust__stat:nth-child(2)::after {
    display: none;
  }

  .trust__stat::after {
    display: none;
  }

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

  .layout-2col {
    grid-template-columns: 1fr;
  }

  .layout-2col--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(12, 12, 29, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__link,
  .navbar__cta {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }

  .navbar__cta {
    margin-top: 8px;
    padding: 12px 24px;
  }

  .navbar__toggle {
    display: flex;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing__grid .pricing-card:last-child {
    max-width: 100%;
  }

  .trust__stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .trust__panel {
    padding: 40px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* New component responsive */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .grid-2col,
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Allow comparison table to shrink — wrapper already handles overflow scroll */
  .product-table {
    min-width: 480px;
  }

  .configurator {
    padding: 20px;
  }

  .cart-item {
    padding: 16px;
  }

  .cart-summary {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .trust__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card__amount {
    font-size: 2.2rem;
  }

  .page-header {
    padding: 120px 20px 48px;
  }

  .product-table thead th,
  .product-table tbody td {
    padding: 12px 16px;
  }

  .pagination__link {
    min-width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .blog-article__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .blog-article__meta-sep {
    display: none;
  }

  .os-tabs {
    flex-direction: column;
  }

  .os-tab {
    width: 100%;
    text-align: center;
  }
}

/* ── Billing Cycle Toggle ── */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.billing-toggle__btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.billing-toggle__btn:hover {
  color: var(--text-primary);
}
.billing-toggle__btn.active {
  background: rgba(139,92,246,0.15);
  color: var(--violet);
}
.billing-toggle__discount {
  font-size: 0.75rem;
  color: var(--teal);
  margin-left: 4px;
}
@media (max-width: 640px) {
  .billing-toggle {
    flex-wrap: wrap;
  }
  .billing-toggle__btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}
.tag--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Blog posts: Quill code blocks (stored as <pre class="ql-syntax">) */
.blog-content pre.ql-syntax {
    background: #0f0f1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e8890c;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 14px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
