/* ========================================
   KASPER VPS — Main Stylesheet
   Design: Light, premium, purple-blue accent
   Font: Manrope
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #FBFAFF;
  --color-header: rgba(255, 255, 255, 0.92);
  --color-surface: #FFFFFF;
  --color-soft: #F4F0FF;
  --color-lavender: #EEE7FF;
  --color-ink: #111529;
  --color-ink-secondary: #4F566F;
  --color-ink-muted: #777D93;
  --color-purple: #8B4DF6;
  --color-purple-dark: #7435E8;
  --color-blue: #4169FF;
  --color-success: #20B76A;
  --color-danger: #F15C64;
  --color-border: rgba(93, 69, 150, 0.14);
  --color-border-strong: rgba(139, 77, 246, 0.3);
  --gradient-main: linear-gradient(135deg, #9A4FF6 0%, #6F42EF 50%, #4169FF 100%);
  --gradient-main-hover: linear-gradient(135deg, #8a3fe6 0%, #5f32df 50%, #3159ef 100%);

  /* Typography */
  --font-main: 'Manrope', Inter, system-ui, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --container-max: 1440px;
  --container-padding: 56px;
  --section-gap: 112px;
  --card-radius: 26px;
  --btn-radius: 16px;
  --header-radius: 26px;

  /* Shadows */
  --shadow-card: 0 18px 50px rgba(45, 35, 84, 0.10);
  --shadow-card-hover: 0 22px 60px rgba(45, 35, 84, 0.15);
  --shadow-header: 0 4px 32px rgba(45, 35, 84, 0.08);
  --shadow-modal: 0 24px 80px rgba(45, 35, 84, 0.18);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Header */
  --header-height: 90px;
  --header-top-margin: 22px;
}

[data-theme="dark"] {
  --color-bg: #030818;
  --color-header: rgba(7, 13, 32, 0.84);
  --color-surface: #090F28;
  --color-soft: #0D1530;
  --color-lavender: #10183A;
  --color-ink: #F4F6FF;
  --color-ink-secondary: #AEB4C7;
  --color-ink-muted: #7E879E;
  --color-purple: #8B5CF6;
  --color-purple-dark: #A855F7;
  --color-blue: #4169FF;
  --color-success: #12C98A;
  --color-danger: #FF6673;
  --color-border: rgba(124, 104, 255, 0.22);
  --color-border-strong: rgba(139, 92, 246, 0.52);

  --gradient-main: linear-gradient(135deg, #A855F7 0%, #7C3AED 48%, #4169FF 100%);
  --gradient-main-hover: linear-gradient(135deg, #8B5CF6 0%, #6d28d9 48%, #3b82f6 100%);

  --shadow-card: 0 18px 52px rgba(0, 0, 0, 0.24);
  --shadow-card-hover: 0 22px 60px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 20px 70px rgba(0, 0, 0, 0.28);
  --shadow-modal: 0 24px 80px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .light-only { display: none !important; }
[data-theme="light"] .dark-only,
:root:not([data-theme="dark"]) .dark-only { display: none !important; }

/* Theme toggle button styles */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--color-ink-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  margin-left: 12px;
}
.theme-toggle:hover {
  color: var(--color-purple);
  background: var(--color-soft);
}


/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--header-top-margin) + 32px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-purple-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-ink);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utilities --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: 0;
}

.section-title {
  font-size: 48px;
  font-weight: var(--fw-extrabold);
  line-height: 1.12;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-ink-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* --- Background Decoration --- */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 77, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  bottom: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 105, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: var(--header-top-margin);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container-max);
  height: var(--header-height);
  background: var(--color-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--header-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-header);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: all var(--transition-normal);
}

.header.compact {
  height: 72px;
  top: 12px;
  box-shadow: 0 4px 40px rgba(45, 35, 84, 0.12);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  height: 54px;
  width: auto;
}

.header-logo-text {
  font-size: 22px;
  font-weight: var(--fw-extrabold);
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.header-nav a {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--color-ink-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-purple);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-soft);
  border-radius: 10px;
  padding: 4px;
  font-size: 13px;
  font-weight: var(--fw-bold);
}

.lang-switch a,
.lang-switch span {
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-ink-muted);
  transition: all var(--transition-fast);
}

.lang-switch .active {
  background: var(--color-surface);
  color: var(--color-purple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-cabinet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--color-purple);
  border-radius: 12px;
  color: var(--color-purple);
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-cabinet:hover {
  background: var(--color-soft);
  color: var(--color-purple-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  background: var(--gradient-main);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: var(--fw-bold);
  border-radius: var(--btn-radius);
  border: none;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--gradient-main-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 77, 246, 0.3);
  color: #FFFFFF;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 3px;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-primary.btn-sm {
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  background: var(--color-surface);
  color: var(--color-purple-dark);
  font-size: 16px;
  font-weight: var(--fw-bold);
  border-radius: var(--btn-radius);
  border: 1.5px solid var(--color-purple);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-soft);
  transform: translateY(-1px);
  color: var(--color-purple-dark);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 3px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-purple);
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.btn-text:hover {
  color: var(--color-purple-dark);
  border-bottom-color: var(--color-purple-dark);
}

.btn-text:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 3px;
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.burger:hover {
  background: var(--color-soft);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.burger span:nth-child(1) { margin-bottom: 6px; }
.burger span:nth-child(3) { margin-top: 6px; }

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 21, 41, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-inner a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: var(--fw-medium);
  color: var(--color-ink);
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.mobile-menu-inner a:hover {
  background: var(--color-soft);
  color: var(--color-purple);
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-lavender);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: calc(var(--header-height) + var(--header-top-margin) + 64px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg img,
.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-lavender);
  color: var(--color-purple-dark);
  font-size: 12px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 72px;
  font-weight: var(--fw-extrabold);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--color-ink);
}

.hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-ink-secondary);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  height: 60px;
  padding: 0 40px;
  font-size: 17px;
  border-radius: 18px;
}

.hero-microcopy {
  font-size: 14px;
  color: var(--color-ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phones {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-phones img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-phones::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(139, 77, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-auto-card {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  z-index: 3;
  max-width: 240px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-auto-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-lavender);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-auto-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-purple);
}

.hero-auto-card-title {
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
}

.hero-auto-card-text {
  font-size: 13px;
  color: var(--color-ink-secondary);
  line-height: 1.4;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 6px)); }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding-top: 64px;
}

.trust-bar-inner {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 40px rgba(45, 35, 84, 0.06);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--color-lavender);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-purple);
}

.trust-item-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
}

.trust-item-text {
  font-size: 14px;
  color: var(--color-ink-secondary);
  line-height: 1.4;
}

/* ========================================
   FEATURES (Why KASPER)
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 36px;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-lavender);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-purple);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: var(--color-ink-secondary);
  line-height: 1.6;
}

.feature-card-image {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  border-radius: 16px;
}

/* ========================================
   PLANS
   ======================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.plan-card.recommended {
  border-color: var(--color-purple);
  border-width: 2px;
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(139, 77, 246, 0.15);
  z-index: 1;
}

.plan-card.recommended:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: var(--fw-bold);
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  margin-top: 8px;
}

.plan-price {
  font-size: 32px;
  font-weight: var(--fw-extrabold);
  color: var(--color-purple);
  margin-bottom: 4px;
}

.plan-price-period {
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--color-ink-muted);
}

.plan-description {
  font-size: 15px;
  color: var(--color-ink-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
  margin-top: 16px;
}

.plan-card .btn-primary,
.plan-card .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* ========================================
   PLATFORMS
   ======================================== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.platform-card {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 30px rgba(45, 35, 84, 0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-purple);
  color: inherit;
}

.platform-icon {
  width: 56px;
  height: 56px;
  background: var(--color-lavender);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-purple);
}

.platform-name {
  font-size: 20px;
  font-weight: var(--fw-bold);
}

.platform-client {
  font-size: 14px;
  color: var(--color-purple);
  font-weight: var(--fw-medium);
}

.platform-subtitle {
  font-size: 14px;
  color: var(--color-ink-secondary);
  line-height: 1.4;
}

.platform-arrow {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-purple);
}

.platform-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.platform-card:hover .platform-arrow svg {
  transform: translateX(4px);
}

.platforms-cta {
  text-align: center;
}

/* ========================================
   HOW TO START
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-number {
  font-size: 56px;
  font-weight: var(--fw-extrabold);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--color-lavender);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-purple);
}

.step-title {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

.step-connector {
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 2px;
  display: flex;
  align-items: center;
}

.step-connector::before {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--color-lavender);
  border-radius: 1px;
}

.step-connector svg {
  width: 16px;
  height: 16px;
  color: var(--color-purple);
  flex-shrink: 0;
}

.step-item:last-child .step-connector {
  display: none;
}

/* ========================================
   EXISTING USERS (Happ/IncY)
   ======================================== */
.existing-users {
  background: var(--color-soft);
  border-radius: var(--card-radius);
  padding: 80px 64px;
  text-align: center;
}

.existing-users .section-title {
  font-size: 36px;
}

.existing-users-text {
  font-size: 18px;
  color: var(--color-ink-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.existing-users-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ========================================
   REFERRAL
   ======================================== */
.referral-banner {
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.referral-banner::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-main);
  border-radius: calc(var(--card-radius) + 2px);
  z-index: -1;
  opacity: 0.3;
}

.referral-banner .section-title {
  font-size: 36px;
}

.referral-text {
  font-size: 18px;
  color: var(--color-ink-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ========================================
   PAYMENTS
   ======================================== */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.payment-card {
  background: var(--color-surface);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-normal);
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 35, 84, 0.08);
}

.payment-icon {
  width: 52px;
  height: 52px;
  background: var(--color-lavender);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.payment-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-purple);
}

.payment-name {
  font-size: 15px;
  font-weight: var(--fw-bold);
}

.payments-note {
  text-align: center;
  font-size: 16px;
  color: var(--color-ink-secondary);
  margin-bottom: 28px;
}

.payments-cta {
  text-align: center;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: 18px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-purple);
  box-shadow: 0 4px 20px rgba(139, 77, 246, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
  min-height: 44px;
}

.faq-question:hover {
  color: var(--color-purple);
}

.faq-question:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: -3px;
  border-radius: 18px;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--color-ink-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--color-ink-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--color-lavender);
  padding-top: 18px;
  margin-top: 0;
}

/* ========================================
   SUPPORT
   ======================================== */
.support-section {
  text-align: center;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.support-text {
  font-size: 18px;
  color: var(--color-ink-secondary);
  margin-bottom: 32px;
}

.support-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-soft) 100%);
  border-top: 1px solid var(--color-lavender);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand-logo img {
  height: 40px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  color: var(--color-ink);
}

.footer-brand-description {
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.footer-group-title {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-group a {
  font-size: 14px;
  color: var(--color-ink-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-group a:hover {
  color: var(--color-purple);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--color-lavender);
  font-size: 13px;
  color: var(--color-ink-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a,
.footer-bottom-links button {
  font-size: 13px;
  color: var(--color-ink-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: var(--color-purple);
}

/* ========================================
   MODALS
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 20, 60, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-surface);
  border-radius: 30px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 10;
  border: none;
}

.modal-close:hover {
  background: var(--color-lavender);
}

.modal-close:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 2px;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--color-ink-secondary);
}

.modal-header {
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-platform-icon {
  width: 56px;
  height: 56px;
  background: var(--color-lavender);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-platform-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-purple);
}

.modal-title {
  font-size: 26px;
  font-weight: var(--fw-extrabold);
}

.modal-body {
  padding: 28px 40px 40px;
}

.modal-download-btn {
  margin-bottom: 32px;
}

.modal-download-btn .btn-primary {
  width: 100%;
}

.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-lavender);
}

.modal-step:last-child {
  border-bottom: none;
}

.modal-step-number {
  width: 32px;
  height: 32px;
  background: var(--color-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-purple);
  flex-shrink: 0;
}

.modal-step-text {
  font-size: 15px;
  color: var(--color-ink-secondary);
  line-height: 1.5;
  padding-top: 4px;
}

.modal-step-text a {
  color: var(--color-purple);
  font-weight: var(--fw-medium);
}

.modal-warning {
  margin-top: 24px;
  padding: 16px 20px;
  background: #FFF8E5;
  border-radius: 14px;
  border: 1px solid #F0E0B0;
  font-size: 14px;
  color: #7A6520;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.modal-screenshot {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-lavender);
}

.modal-screenshot img {
  width: 100%;
}

.modal-help {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--color-ink-muted);
}

.modal-help a {
  color: var(--color-purple);
  font-weight: var(--fw-medium);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 800px;
  background: var(--color-surface);
  border-radius: 22px;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 56px rgba(45, 35, 84, 0.14);
  padding: 28px 32px;
  z-index: 3000;
  display: none;
}

.cookie-banner.visible {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-text {
  font-size: 14px;
  color: var(--color-ink-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-text a {
  color: var(--color-purple);
}

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

.cookie-actions .btn-primary {
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
}

.cookie-actions .btn-secondary {
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
}

.cookie-actions .btn-text {
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-settings-modal .modal {
  max-width: 520px;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-lavender);
}

.cookie-setting-row:last-of-type {
  border-bottom: none;
}

.cookie-setting-info h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
}

.cookie-setting-info p {
  font-size: 13px;
  color: var(--color-ink-secondary);
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-lavender);
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--color-surface);
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.toggle input:checked + .toggle-slider {
  background: var(--color-purple);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle input:focus-visible + .toggle-slider {
  outline: 3px solid var(--color-purple);
  outline-offset: 2px;
}

/* ========================================
   DOWNLOAD PAGE
   ======================================== */
.download-page {
  padding-top: calc(var(--header-height) + var(--header-top-margin) + 64px);
}

.download-page .section-title {
  font-size: 48px;
  margin-bottom: 12px;
}

.download-existing {
  margin-top: 64px;
  background: var(--color-soft);
  border-radius: var(--card-radius);
  padding: 48px;
  text-align: center;
}

.download-existing h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.download-existing p {
  font-size: 16px;
  color: var(--color-ink-secondary);
  margin-bottom: 24px;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-auto-card {
    animation: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ========================================
   RESPONSIVE — Tablet (768-1023)
   ======================================== */
@media (max-width: 1439px) {
  :root {
    --container-padding: 40px;
  }

  .hero-title {
    font-size: 58px;
  }
}

@media (max-width: 1023px) {
  :root {
    --container-padding: 32px;
    --section-gap: 80px;
  }

  .header-nav {
    display: none;
  }

  .btn-cabinet {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-auto-card {
    display: none;
  }

  .section-title {
    font-size: 38px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }

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

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

  .plan-card.recommended {
    transform: none;
    order: -1;
  }

  .plan-card.recommended:hover {
    transform: translateY(-4px);
  }

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

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

  .step-connector {
    display: none;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ========================================
   RESPONSIVE — Mobile (480-767)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
    --section-gap: 64px;
  }

  .header {
    width: calc(100% - 32px);
    height: 72px;
    padding: 0 20px;
    top: 12px;
  }

  .header-logo img {
    height: 40px;
  }

  .header-logo-text {
    font-size: 18px;
  }

  .header .btn-primary.btn-sm {
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero {
    padding-top: calc(72px + 12px + 40px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

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

  .hero-description {
    font-size: 16px;
    max-width: none;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-primary {
    width: 100%;
    height: 56px;
  }

  .hero-microcopy {
    justify-content: center;
  }

  .hero-phones {
    max-width: 400px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
  }

  .trust-item-title {
    font-size: 16px;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .existing-users {
    padding: 48px 28px;
  }

  .existing-users .section-title {
    font-size: 28px;
  }

  .existing-users-ctas {
    flex-direction: column;
  }

  .existing-users-ctas .btn-primary,
  .existing-users-ctas .btn-secondary {
    width: 100%;
  }

  .referral-banner {
    padding: 40px 24px;
  }

  .referral-banner .section-title {
    font-size: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Modal — Bottom Sheet */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    max-width: 100%;
  }

  .modal-overlay.open .modal {
    transform: translateY(0);
  }

  .modal-header {
    padding: 32px 24px 0;
  }

  .modal-body {
    padding: 20px 24px 32px;
  }

  .modal-title {
    font-size: 22px;
  }

  /* Cookie Banner */
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 24px;
    border-radius: 18px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-actions .btn-primary,
  .cookie-actions .btn-secondary {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVE — Small Mobile (320-479)
   ======================================== */
@media (max-width: 479px) {
  :root {
    --container-padding: 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .payment-card {
    padding: 20px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .plan-name {
    font-size: 20px;
  }

  .plan-price {
    font-size: 28px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }
}

/* ========================================
   FOCUS VISIBLE
   ======================================== */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible {
  outline-offset: 4px;
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .header, .cookie-banner, .modal-overlay, .mobile-menu {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}


[data-theme="dark"] body::after {
  content: '';
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  height: 100vh;
  background: url('../images/page-lines.svg') repeat-y center top;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}


/* Enhance platform cards in dark theme */
[data-theme="dark"] .platform-card {
  background: var(--color-soft);
  border: 1px solid var(--color-border-strong);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .platform-card:hover {
  background: var(--color-lavender);
  border-color: var(--color-purple-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}





/* Fix header overflow on very small screens */
@media (max-width: 420px) {
  .header-logo-text {
    display: none !important;
  }
  .header-actions {
    gap: 8px !important;
  }
}

/* Swap Download and Cabinet buttons on mobile */
@media (max-width: 900px) {
  .header-actions .btn-primary {
    display: none !important;
  }
  .header-actions .btn-cabinet {
    display: inline-flex !important;
    padding: 8px !important;
    font-size: 0 !important; /* Hide text */
    justify-content: center;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
  }
  .header-actions .btn-cabinet svg {
    margin: 0 !important;
    width: 20px;
    height: 20px;
  }
}

/* Improve Cabinet button and Header spacing on mobile */
@media (max-width: 900px) {
  .header-actions .btn-cabinet {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: none !important;
    background: rgba(139, 92, 246, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .header-actions .btn-cabinet:hover {
    background: rgba(139, 92, 246, 0.2) !important;
  }
  .header-actions .btn-cabinet svg {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }
  .header {
    width: calc(100% - 16px) !important;
    padding: 0 16px !important;
  }
}

/* Final comprehensive mobile header fix */
@media (max-width: 900px) {
  /* Hide logo text on ALL mobile screens to free up space (not just 420px) */
  .header-logo-text {
    display: none !important;
  }
  
  /* Restore normal header width and spacing */
  .header {
    width: calc(100% - 32px) !important;
    padding: 0 16px !important;
  }

  /* Ensure actions don't shrink */
  .header-actions {
    gap: 12px !important;
    flex-shrink: 0 !important;
  }

  /* Force perfect circular cabinet button and prevent squishing */
  .header-actions .btn-cabinet {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: none !important;
    background: rgba(139, 92, 246, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .header-actions .btn-cabinet svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin: 0 !important;
  }
}
