:root {
  --color-primary: #006fa1;
  --color-primary-light: #0088c7;
  --color-primary-dark: #005a84;
  --color-accent: #00b4d8;
  --color-text: #3d4f5f;
  --color-text-light: #6b7c8a;
  --color-heading: #0f172a;
  --color-bg: #fafbfc;
  --color-bg-alt: #f0f4f8;
  --color-surface: #ffffff;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-free: #22c55e;
  --color-sold: #ef4444;
  --color-reserved: #eab308;
  --color-dark: #0b1120;
  --color-dark-surface: #151d2e;
  --gradient-primary: linear-gradient(135deg, #006fa1 0%, #00b4d8 100%);
  --gradient-hero: linear-gradient(180deg, #f0f7fb 0%, #fafbfc 40%, #ffffff 100%);
  --gradient-dark: linear-gradient(160deg, #0b1120 0%, #132035 50%, #0b1120 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 111, 161, 0.15);
  --shadow-glow: 0 0 80px rgba(0, 180, 216, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-height: 80px;
  --container: 1200px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--color-primary);
  background: rgba(0, 111, 161, 0.06);
}

.navbar__link.active {
  color: var(--color-primary);
  background: rgba(0, 111, 161, 0.08);
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  padding: 4px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
  color: var(--color-text);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 111, 161, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 111, 161, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 111, 161, 0.18);
  top: -150px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 180, 216, 0.14);
  bottom: 0;
  left: -120px;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(0, 111, 161, 0.1);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-free);
  box-shadow: 0 0 8px var(--color-free);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--color-text-light);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero__visual {
  position: relative;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(0, 111, 161, 0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
  transition: var(--transition);
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  border-color: var(--color-primary);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee__track span::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--color-primary);
  opacity: 0.5;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mockup-glow {
  position: absolute;
  inset: 10%;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  filter: blur(60px);
  opacity: 0.25;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.35;
    transform: scale(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 111, 161, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 111, 161, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: #fff;
  border-color: rgba(0, 111, 161, 0.2);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--nav {
  padding: 10px 20px;
  font-size: 0.8rem;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 111, 161, 0.3);
  margin-left: 8px;
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 111, 161, 0.4);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Mockup */
.mockup-window {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  animation: mockupFloat 7s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

.mockup-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid var(--color-border);
}

.mockup-window__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-window__bar span:first-child {
  background: #ff5f57;
}

.mockup-window__bar span:nth-child(2) {
  background: #febc2e;
}

.mockup-window__bar span:nth-child(3) {
  background: #28c840;
}

.mockup-window__url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
}

.mockup-window__body {
  padding: 28px;
  position: relative;
}

.mockup-window__body--screenshot {
  padding: 0;
  aspect-ratio: 16/10;
}

.mockup-stepper {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.mockup-step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--color-border);
}

.mockup-step.active {
  background: var(--gradient-primary);
}

.mockup-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  aspect-ratio: 16/10;
}

.mockup-zone {
  border-radius: 10px;
  transition: var(--transition);
  cursor: default;
  position: relative;
}

.mockup-zone.is-active {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(0, 111, 161, 0.4), 0 8px 24px rgba(0, 111, 161, 0.2);
}

.mockup-tooltip {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-heading);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  animation: tooltipFloat 2.8s ease-in-out infinite;
  white-space: nowrap;
}

.mockup-tooltip__label {
  opacity: 0.7;
}

.mockup-tooltip strong {
  font-weight: 800;
}

.mockup-tooltip__status {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mockup-tooltip__status--free {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.mockup-tooltip__status--sold {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.mockup-tooltip__status--reserved {
  background: rgba(234, 179, 8, 0.2);
  color: #fde047;
}

@keyframes tooltipFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.mockup-zone:hover {
  transform: scale(1.06);
  z-index: 1;
}

.mockup-zone--free {
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid var(--color-free);
  box-shadow: inset 0 0 20px rgba(34, 197, 94, 0.1);
}

.mockup-zone--sold {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid var(--color-sold);
}

.mockup-zone--reserved {
  background: rgba(234, 179, 8, 0.2);
  border: 2px solid var(--color-reserved);
}

.mockup-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.legend-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-item--free {
  background: var(--color-free);
}

.legend-item--sold {
  background: var(--color-sold);
}

.legend-item--reserved {
  background: var(--color-reserved);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark .section__label {
  color: var(--color-accent);
}

.section--dark .section__title {
  color: #fff;
}

.section--dark .section__title::after {
  display: none;
}

.section--contact {
  padding: 100px 0 120px;
}

.section--showcase {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

/* Bento showcase */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.bento__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bento__card--main {
  grid-row: span 3;
  padding: 0;
  overflow: hidden;
}

.bento__main-stack {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento__main-shot {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  border-bottom: 1px solid var(--color-border);
}

.bento__main-shot:last-child {
  border-bottom: none;
}

.bento__main-shot .screenshot-container {
  flex: 1;
  min-height: 220px;
}

.bento__card--main .screenshot-container--building .screenshot-img {
  object-fit: contain;
  object-position: center top;
}

.bento__card--screenshot {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento__card--screenshot .bento__card-title {
  padding: 20px 20px 12px;
  margin-bottom: 0;
}

.bento__card--screenshot .screenshot-container {
  flex: 1;
  min-height: 200px;
}

.bento__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.bento__dots {
  display: flex;
  gap: 5px;
}

.bento__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  display: block;
}

.bento__floor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 28px;
  aspect-ratio: 4/3;
}

.bento__apt {
  border-radius: 12px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.bento__apt--free {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--color-free);
}

.bento__apt--sold {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--color-sold);
}

.bento__apt--reserved {
  background: rgba(234, 179, 8, 0.15);
  border-color: var(--color-reserved);
}

.bento__apt--highlight {
  box-shadow: 0 0 0 3px rgba(0, 111, 161, 0.3);
  animation: aptPulse 3s ease-in-out infinite;
}

@keyframes aptPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 111, 161, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 111, 161, 0.15);
  }
}

.bento__card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.bento__pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento__pill {
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.bento__pill--free {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.bento__pill--sold {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.bento__pill--reserved {
  background: rgba(234, 179, 8, 0.12);
  color: #a16207;
}

.bento__lang-toggle {
  display: inline-flex;
  padding: 4px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.bento__lang-toggle span {
  padding: 8px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.bento__lang-toggle span.is-active {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.bento__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bento__stats div {
  text-align: center;
  padding: 12px 8px;
  background: var(--color-bg-alt);
  border-radius: 12px;
}

.bento__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.bento__stats span {
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Client showcase */
.section--client {
  padding: 80px 0 100px;
  background: var(--color-bg);
}

.client-showcase {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.client-showcase__media {
  position: absolute;
  inset: 0;
}

.client-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-showcase:hover .client-showcase__image {
  transform: scale(1.06);
}

.client-showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.55) 0%, rgba(11, 17, 32, 0.82) 55%, rgba(11, 17, 32, 0.92) 100%),
    linear-gradient(135deg, rgba(0, 111, 161, 0.35) 0%, transparent 55%);
}

.client-showcase__glow {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.client-showcase__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  padding: 72px 48px;
  max-width: 760px;
  margin: 0 auto;
}

.client-showcase__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.client-showcase__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.client-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.client-showcase__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 620px;
}

.client-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--color-primary-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.client-showcase__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  background: #fff;
}

.client-showcase__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.client-showcase__link:hover svg {
  transform: translate(2px, -2px);
}

/* CTA banner */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  position: relative;
  max-width: 520px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__title::after {
  display: none;
}

.section__subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section--contact .section__subtitle {
  text-align: left;
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

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

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

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 111, 161, 0.1) 0%, rgba(0, 180, 216, 0.08) 100%);
  border-radius: 14px;
  margin-bottom: 22px;
  color: var(--color-primary);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--color-text-light);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.2;
}

.step {
  position: relative;
  text-align: center;
  padding: 28px 20px;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 111, 161, 0.15);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 111, 161, 0.3);
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-heading);
}

.step__content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Admin */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.admin-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}

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

.admin-card__visual {
  height: 140px;
  background: linear-gradient(135deg, #f0f7fb 0%, #e8f4f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 70px;
}

.mini-chart__bar {
  width: 18px;
  background: var(--gradient-primary);
  border-radius: 6px 6px 0 0;
  animation: barGrow 0.8s ease-out forwards;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.mini-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.mini-expense {
  width: 75%;
}

.mini-expense__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mini-expense__row span:first-child {
  display: block;
  width: 65%;
  height: 10px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 6px;
}

.mini-expense__row span:last-child {
  display: block;
  width: 22%;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 6px;
  opacity: 0.6;
}

.mini-roles {
  display: flex;
  gap: 14px;
}

.mini-role {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.mini-role--admin {
  background: var(--gradient-primary);
}

.mini-role--dev {
  background: #6366f1;
}

.admin-card h3,
.admin-card p {
  padding: 0 28px;
}

.admin-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--color-heading);
}

.admin-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  padding-bottom: 28px;
}

/* Standalone Quote Section */
.section--quote {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section--quote .quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-left: 4px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-accent);
}

.section--quote .quote p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: 24px;
}

.section--quote .quote footer {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Real Screenshot Placeholders */
.screenshot-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.screenshot-container:hover .screenshot-img {
  transform: scale(1.03);
}

.screenshot-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* Bento Brand Card */
.bento__card--brand {
  background: var(--color-surface);
}

.bento__brand-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.bento__domain-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-text);
}

.bento__domain-bar span:first-child {
  color: var(--color-primary);
  font-weight: 600;
}

.feature-card__outcome {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(0, 111, 161, 0.08);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Workflow section */
.section--workflow {
  background: var(--color-surface);
}

.workflow {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.workflow::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  opacity: 0.25;
}

.workflow__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.workflow__time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.workflow__content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.workflow__content p {
  color: var(--color-text-light);
  line-height: 1.65;
}

/* Compare section */
.section--compare {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.compare__col {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.compare__col--before {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.compare__col--after {
  background: linear-gradient(160deg, #f0f9ff 0%, #fff 100%);
  border-color: rgba(0, 111, 161, 0.2);
  box-shadow: var(--shadow-md);
}

.compare__head {
  margin-bottom: 24px;
}

.compare__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.compare__tag--bad {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.compare__tag--good {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.compare__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
}

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.compare__col--before .compare__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.compare__col--after .compare__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__divider span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.compare__divider span svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Impact strip */
.impact {
  padding: 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.impact__card {
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  padding: 40px 28px;
  text-align: center;
  color: #fff;
}

.impact__card > strong,
.impact__card > .impact__suffix {
  display: inline;
}

.impact__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.8;
}

.impact__card p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-wrap__text .section__label,
.contact-wrap__text .section__title {
  text-align: left;
}

.contact-wrap__text .section__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-heading);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item__value:hover {
  color: var(--color-primary);
}

.contact-cta {
  width: 100%;
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  text-align: left;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__top-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.footer__top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer__top-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer__top-btn svg {
  width: 18px;
  height: 18px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.hero .reveal {
  opacity: 0;
  transform: translateY(32px);
}

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

@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;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

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

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

  .steps::before {
    display: none;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-wrap__text .section__label,
  .contact-wrap__text .section__title,
  .section--contact .section__subtitle {
    text-align: center;
  }

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

  .bento__card--main {
    grid-row: auto;
  }

  .bento__card--screenshot .screenshot-container {
    min-height: 250px;
    height: 250px;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .compare__divider {
    padding: 8px 0;
  }

  .compare__divider span {
    transform: rotate(90deg);
  }

  .client-showcase,
  .client-showcase__content {
    min-height: 360px;
  }

  .client-showcase__content {
    padding: 56px 24px;
  }

  .client-showcase__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .client-showcase__link {
    width: 100%;
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: var(--nav-height);
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .navbar__nav.open {
    transform: translateY(8px);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__lang {
    margin-left: 0;
    margin-top: 12px;
    align-self: center;
  }

  .btn--nav {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    max-width: 280px;
  }

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

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

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 72px 0;
  }

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

  .workflow::before {
    left: 20px;
  }

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

  .workflow__time {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
}
