/* ============================================
   IDEAL TECH GLOBAL — STYLES
   White canvas, Black type, Purple accent
   ============================================ */

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

:root {
  --bg: #FFFFFF;
  --bg-elevated: #F8F9FA;
  --bg-sunken: #F1F3F5;
  --bg-inverted: #0A0A0B;

  --text: #1A1A2E;
  --text-muted: #4A4A68;
  --text-subtle: #8888A0;

  --accent: #7C5CFF;
  --accent-bright: #A78BFF;
  --accent-deep: #5B3FD6;
  --accent-soft: rgba(124, 92, 255, 0.08);
  --accent-glow: rgba(124, 92, 255, 0.15);
  --accent-glow-strong: rgba(124, 92, 255, 0.25);

  --border: rgba(0, 0, 0, 0.07);
  --border-strong: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);

  --gradient-accent: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-bright) 100%);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 4px 14px var(--accent-glow);
  --shadow-accent-lg: 0 8px 24px var(--accent-glow-strong);

  --success: #22C55E;
  --error: #EF4444;

  --radius: 1rem;
  --radius-sm: 0.625rem;
  --radius-lg: 1.5rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section+section {
  margin-top: 20px;
}

/* --- FOCUS (accessibility) --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- GLASSMORPHISM --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
}

/* --- EYEBROW LABEL --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin: 15px 0;
  width: fit-content;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

/* --- SECTION HEADER --- */
.section-header {
  margin-bottom: 2rem;
  text-align: left;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.75rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}


/* --- MOCKUP DOTS --- */
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dot--red {
  background: #F87171;
}

.mockup-dot--yellow {
  background: #FBBF24;
}

.mockup-dot--green {
  background: #34D399;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 28px;
  width: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__mobile-header {
  display: none !important;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link:hover::after {
  left: 0;
  right: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__toggle span:nth-child(3) {
  display: none;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Nav brand name */
.nav__brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-left: 0.5rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
  background: var(--bg);
  background-image: none;
  z-index: 1;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atmo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}

.atmo-bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.atmo-bloom--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-glow);
  top: -10%;
  right: -5%;
}

.atmo-bloom--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-glow);
  bottom: 10%;
  left: -8%;
  opacity: 0.5;
}

.atmo-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.typed-cursor {
  color: var(--accent);
  animation: blink 0.8s step-end infinite;
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

/* ============================================
   HERO DASHBOARD VISUAL
   ============================================ */
.hero__visual {
  position: relative;
}

.hero__dashboard {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
  margin: 0 auto;
}

.hero__dashboard-ring {
  position: absolute;
  border: 2px dashed var(--border-strong);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-ring 20s linear infinite;
}

.hero__dashboard-ring--outer {
  width: 380px;
  height: 380px;
  opacity: 0.5;
}

.hero__dashboard-ring--inner {
  width: 260px;
  height: 260px;
  opacity: 0.3;
  animation-direction: reverse;
}

@keyframes rotate-ring {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero__dash-card {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero__dash-card--conv {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  text-align: center;
}

.hero__dash-card--sales {
  top: 10%;
  left: 0;
}

.hero__dash-card--visitors {
  top: 5%;
  right: 0;
}

.hero__dash-card--chart {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.hero__dash-card--pulse {
  bottom: 22%;
  right: 5%;
}

.dash-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.dash-card__value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.dash-card__badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--success);
  margin-left: 0.35rem;
}

.dash-card__bar {
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.dash-card__bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.dash-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Mini bar chart */
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin: 0.75rem 0 0.5rem;
}

.dash-chart__bar {
  flex: 1;
  background: #E5E7EB;
  border-radius: 3px 3px 0 0;
  transition: background 0.3s;
}

.dash-chart__bar--active {
  background: var(--accent);
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.logos {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logos__slide {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
}

.logos__word {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-subtle);
  white-space: nowrap;
  letter-spacing: 0.02em;
  opacity: 0.45;
  transition: opacity 0.3s;
}

.logos__word:hover {
  opacity: 0.8;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  position: relative;
  padding: 0rem 0 0;
}

.stats__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 0rem;
}

.stats__text {
  padding-top: 0.5rem;
}

.stats__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.75rem;
  color: var(--text);
}

.stats__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 480px;
}


.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: left;
}

.stat__num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.stat__suffix {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
}

.stat__label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================
   BEFORE / AFTER — SCROLL REVEAL
   ============================================ */
.comparison {
  padding: 2rem 0 0;
}

.comparison .section-header {
  margin-bottom: 0.5rem;
}

.comparison__scroll-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.comparison__frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border);

}

.comparison__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.comparison__before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  border-radius: var(--radius-lg);
}

.comparison__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.comparison__handle-line {
  width: 2px;
  flex: 1;
  background: var(--accent);
}

.comparison__handle-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -4px;
  flex-shrink: 0;
}

.comparison__handle-dot svg {
  width: 18px;
  height: 18px;
}

.comparison__tag {
  position: absolute;
  bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  z-index: 5;
}

.comparison__tag--before {
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
}

.comparison__tag--after {
  right: 1rem;
  background: var(--accent);
  color: #fff;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 0.5rem 0;
  overflow: hidden;
}

.portfolio__marquee {
  margin-bottom: 1.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.portfolio__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.portfolio__track--right {
  animation: scroll-right 40s linear infinite;
}

.portfolio__track--left {
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.portfolio__card {
  width: 330px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.portfolio__card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.3);
}

.portfolio__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 3.5rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.3);
  box-shadow: var(--shadow-accent);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Code editor mock */
.code-editor {
  background: #1a1a2e;
  border-radius: 0.75rem;
  border: 1px solid #2a2a3e;
  overflow: hidden;
}

.code-editor__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #2a2a3e;
}

.code-editor__file {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: #8888a0;
}

.code-editor__body {
  padding: 1rem 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #ffffff;
  overflow-x: auto;
  height: 180px;
  overflow-y: hidden;
}

.code-editor__body.typing::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
  color: #ffffff;
  font-weight: 100;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.code-kw {
  color: #ff6b6b;
}

.code-var {
  color: #e0e0e0;
}

.code-prop {
  color: #51cf66;
}

.code-str {
  color: #ffd43b;
}

.code-num {
  color: #4dabf7;
}

/* ============================================
   PROCESS
   ============================================ */

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 3.5rem 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.25);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.06);
  transform: scale(1.04);
  box-shadow: var(--shadow-accent);
}

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

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.pricing-card__price {
  margin: 1rem 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__currency {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-card__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card__amount--custom {
  font-size: 2.25rem;
}

.pricing-card__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-card__list {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card__btn {
  width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 3.5rem 0;
  background: var(--bg-sunken);
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.25);
}

.testimonial-card__quote {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card__role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background: #fff;
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta__bloom {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-glow);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  pointer-events: none;
}

.cta__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta__content {
  margin-bottom: 2.5rem;
}

.cta__content .eyebrow {
  margin: 0 auto 1rem;
}

.cta__content .section-title {
  margin-bottom: 1rem;
}

.cta__sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.cta__form {
  width: 100%;
}

.cta__input-wrap {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0.35rem;
}

.cta__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  min-width: 0;
}

.cta__input::placeholder {
  color: var(--text-subtle);
}

.cta__input:focus {
  box-shadow: inset 0 0 0 2px var(--accent-glow);
  border-radius: var(--radius-sm);
}

.cta__submit {
  flex-shrink: 0;
  border-radius: calc(var(--radius-sm) - 2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 0 3rem;
}

.footer__card {
  background: #fff;
  border-radius: 24px;
  padding: 3.5rem 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 28px;
  width: auto;
}

.footer__brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

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

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
}

.whatsapp__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}

.whatsapp__btn:hover {
  transform: scale(1.08);
}

.whatsapp__card {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 280px;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s var(--ease);
  background: #fff;
}

.whatsapp__card.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.whatsapp__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp__brand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.whatsapp__brand span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.whatsapp__close {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1;
}

.whatsapp__msg {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.whatsapp__chat {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.7rem 1rem;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 4rem 0;
}

.section-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 560px;
  text-align: left;
  line-height: 1.6;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-us__card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.08);
}

.why-us__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-us__card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.why-us__card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}


/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  padding: 4rem 0;
}

.comparison-table__wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comparison-table__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.875rem;
}

.comparison-table__table thead th {
  padding: 1.25rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.comparison-table__table thead th:first-child {
  text-align: left;
}

.comparison-table__table tbody td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table__feature {
  text-align: left !important;
  font-weight: 600;
  color: var(--text) !important;
}

.comparison-table__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-style: italic;
  cursor: help;
  margin-left: 0.25rem;
}

.comparison-table__highlight {
  background: rgba(124, 92, 255, 0.04);
  font-weight: 600;
  color: var(--text) !important;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.comparison-table__table thead .comparison-table__highlight {
  background: rgba(124, 92, 255, 0.08);
  border-top: 2px solid var(--accent);
}

.comparison-table__table tbody tr:last-child .comparison-table__highlight {
  border-bottom: 2px solid var(--accent);
}

.comparison-table__check {
  color: #16a34a;
  font-weight: 700;
  font-size: 1.25rem;
}

.comparison-table__cross {
  color: #ef4444;
  font-size: 1.25rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 4rem 0;
}

.faq__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.faq__tab {
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq__tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.faq__tab--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.faq__tab--active .faq__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.faq__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-sunken);
  font-size: 0.75rem;
  font-weight: 600;
}

.faq__list {
  width: 100%;
}

.faq__item {
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__item.faq__item--hidden {
  display: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.faq__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
}

.faq__icon {
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 1.5rem 1.5rem 4.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .service-card--wide {
    grid-column: span 2;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stats__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  section+section {
    margin-top: 15px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    transition: opacity 0.4s var(--ease);
  }

  .nav__backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.active {
    opacity: 0;
    pointer-events: none;
  }

  .nav__mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav__mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__mobile-logo {
    height: 24px;
    width: auto;
  }

  .nav__mobile-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
  }

  .nav__close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }

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

  .hero {
    min-height: auto;
    padding: 5rem 0 2rem;
  }

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

  .hero__visual {
    display: none !important;
  }

  .comparison__handle-dot {
    width: 40px;
    height: 40px;
  }

  .comparison__handle-dot svg {
    width: 16px;
    height: 16px;
  }

  .comparison__tag {
    font-size: 0.625rem;
    padding: 0.3rem 0.75rem;
  }

  .hero__title {
    font-size: clamp(2.9rem, 9vw, 4rem);
  }

  .stats {
    padding: 0rem 0;
  }

  .comparison {
    padding: 0;
  }

  .portfolio {
    padding: 2.5rem 0;
  }

  .services {
    padding: 2.5rem 0;
  }

  .process {
    padding: 2.5rem 0;
  }

  .pricing {
    padding: 2.5rem 0;
  }

  .testimonials {
    padding: 2.5rem 0;
  }

  .cta {
    padding: 2.5rem 0;
  }

  .stats {
    padding: 0rem 0 2rem;
  }

  .stats__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat {
    text-align: left;
  }

  .footer__card {
    padding: 2.5rem 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    text-align: left;
  }

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

  .service-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .service-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  .code-editor {
    font-size: 0.65rem;
  }

  .portfolio__card {
    width: 190px;
    height: 120px;
  }

  .portfolio__cta {
    padding: 1.5rem 1.5rem 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    text-align: center;
  }

  .cta__input-wrap {
    flex-direction: column;
  }

  .cta__submit {
    width: 100%;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .comparison-table__table {
    font-size: 0.8125rem;
  }

  .comparison-table__table thead th,
  .comparison-table__table tbody td {
    padding: 0.875rem 1rem;
  }

  .faq__tabs {
    gap: 0.5rem;
  }

  .faq__tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .faq__question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq__answer p {
    padding: 0 1.25rem 1.25rem 3.75rem;
    font-size: 0.875rem;
  }

  .section-header,
  .section-sub,
  .why-us .section-header,
  .comparison-table .section-header,
  .faq .section-header {
    text-align: center;
  }

  .section-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .footer__card {
    padding: 2rem 1.25rem 1rem;
    border-radius: 12px;
  }

  .comparison__handle-dot {
    width: 36px;
    height: 36px;
  }

  .comparison__handle-dot svg {
    width: 14px;
    height: 14px;
  }

  .why-us__card {
    padding: 1.5rem;
  }

  .comparison-table__wrap {
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .faq__question {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .faq__num {
    min-width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .faq__answer p {
    padding: 0 1rem 1rem 3.25rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-sub {
    font-size: 0.875rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logos__track {
    animation: none;
  }

  .portfolio__track--right,
  .portfolio__track--left {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- SELECTION --- */
::selection {
  background: rgba(124, 92, 255);
  color: #fff;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}