/* ========================================
   EMIKO — V4 CONVERSION-FOCUSED
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-50: #eef6ff;
  --blue-100: #d9ecff;
  --blue-200: #b3d9ff;
  --blue-400: #38b6ff;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --blue-900: #0c2d48;
  --blue-950: #061a2e;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --dark: #060e1a;
  --dark-card: #0b1627;
  --dark-border: rgba(56, 182, 255, 0.08);
  --glass: rgba(11, 22, 39, 0.55);
  --glass-border: rgba(56, 182, 255, 0.1);
  --text: #c8d6e5;
  --text-muted: #8899aa;
  --white: #f0f4f8;
  --white-pure: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --focus-ring: 0 0 0 2px var(--dark), 0 0 0 4px var(--blue-400);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- Focus states --- */
a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }

.section__tag {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan-400);
  margin-bottom: 14px;
  text-align: center;
}

.section__title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 44px;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--blue-500);
  color: var(--white-pure);
  padding: 12px 28px;
  white-space: nowrap;
  position: relative;
}

.btn:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.28);
}

.btn--lg {
  padding: 15px 38px;
  font-size: 1.02rem;
  border-radius: 11px;
}

.btn--sm { padding: 10px 22px; font-size: 0.84rem; }

.btn--glow {
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.2), 0 0 64px rgba(14, 165, 233, 0.06);
}

.btn--glow:hover {
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.38), 0 0 90px rgba(14, 165, 233, 0.12), 0 0 4px rgba(56, 182, 255, 0.5);
}

.btn--white {
  background: var(--white-pure);
  color: var(--blue-600);
}

.btn--white:hover {
  background: var(--blue-50);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15), 0 0 60px rgba(14, 165, 233, 0.08);
}

.btn--sticky {
  background: var(--blue-400);
  color: var(--dark);
  font-weight: 700;
}

.btn--sticky:hover {
  background: var(--cyan-300);
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.3);
}

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 14, 26, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--glass-border);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  height: 72px;
  gap: 12px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}

.nav__logo-img {
  height: 34px;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.nav__logo-text {
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.nav__links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav__links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  line-height: 1;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--cyan-400);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.nav__links a:hover { color: var(--white); }

.nav__links a:hover::after {
  width: 100%;
  left: 0;
}

.nav__phone {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__phone:hover {
  color: var(--cyan-400);
}

.nav__phone--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.28);
  background: rgba(11, 22, 39, 0.55);
  color: var(--cyan-400);
}

.nav__phone--icon svg {
  width: 16px;
  height: 16px;
}


.nav__call-mobile {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.28);
  background: rgba(11, 22, 39, 0.62);
  color: var(--cyan-400);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav__call-mobile:hover {
  border-color: rgba(56, 182, 255, 0.46);
  background: rgba(14, 165, 233, 0.16);
  color: var(--white);
}

.nav__call-mobile svg {
  width: 17px;
  height: 17px;
}
.nav__inner > .btn {
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--dark-border);
}

.nav__mobile a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
}

.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { margin-top: 8px; text-align: center; }

.nav__mobile-phone {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.26);
  background: rgba(11, 22, 39, 0.6);
  color: var(--cyan-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 4px 0 8px;
}

.nav__mobile-phone svg {
  width: 18px;
  height: 18px;
}

.nav__mobile-phone:hover {
  color: var(--white);
  border-color: rgba(56, 182, 255, 0.45);
  background: rgba(14, 165, 233, 0.16);
}

/* ==========================================
   STICKY CTA
   ========================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(56, 182, 255, 0.12);
  padding: 12px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sticky-cta__text {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================
   HERO — V4 RADIAL
   ========================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }
}

/* Background layers */
.hero__glow {
  position: absolute;
  pointer-events: none;
}

.hero__glow--primary {
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, rgba(6, 182, 212, 0.03) 45%, transparent 72%);
  animation: glowDrift 16s ease-in-out infinite alternate;
}

.hero__glow--secondary {
  top: 10%;
  left: 50%;
  transform: translateX(-40%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 65%);
  animation: glowDrift2 18s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-48%) translateY(-20px); }
}

@keyframes glowDrift2 {
  0% { transform: translateX(-40%) translateY(0); }
  100% { transform: translateX(-42%) translateY(15px); }
}

.hero__grid-bg {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(rgba(56, 182, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 182, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 42%, black 15%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 42%, black 15%, transparent 68%);
  pointer-events: none;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(72px, 72px); }
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 24px 8px;
}

/* --- Radial wheel --- */
.radial {
  --wheel-size: 395px;
  --seg-radius: 162px;
  position: relative;
  width: var(--wheel-size);
  height: var(--wheel-size);
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* SVG ring */
.radial__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.radial__track {
  fill: none;
  stroke: rgba(56, 182, 255, 0.08);
  stroke-width: 1.2;
}

.radial__arc {
  fill: none;
  stroke: rgba(56, 182, 255, 0.2);
  stroke-width: 2.5;
  stroke-dasharray: 201 804;
  stroke-linecap: round;
  animation: arcSpin 10s linear infinite;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.3s ease, stroke-width 0.3s ease;
}

@keyframes arcSpin {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1005; }
}

.radial__arc.arc--hover {
  animation-play-state: paused;
  stroke: rgba(56, 182, 255, 0.4);
  stroke-width: 3;
}

/* Center logo */
.radial__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  display: block;
  animation: logoFloat 6s ease-in-out infinite;
}

.radial__center .radial__logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-5px); }
}

.radial__halo {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 212, 241, 0.2) 0%, rgba(63, 123, 255, 0.13) 42%, rgba(63, 123, 255, 0) 74%);
  pointer-events: none;
  animation: haloPulse 5s ease-in-out infinite;
}

@keyframes haloPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.75; transform: translate(-50%, -50%) scale(1.04); }
}

.radial__logo {
  position: relative;
  z-index: 1;
  display: block;
  height: 120px;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.5));
  transform: translateY(-1px);
}

.radial__center .radial__brand,
.hero__mobile-logo .radial__brand {
  display: none;
}

/* Segment buttons */
.radial__seg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--seg-radius))) rotate(calc(-1 * var(--angle)));
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 22, 39, 0.75);
  border: 1px solid rgba(56, 182, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--cyan-400);
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}

.radial__seg:hover,
.radial__seg:focus-visible,
.radial__seg.seg--active {
  border-color: rgba(56, 182, 255, 0.3);
  background: rgba(14, 165, 233, 0.12);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.15), 0 0 40px rgba(14, 165, 233, 0.05);
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--seg-radius))) rotate(calc(-1 * var(--angle))) scale(1.1);
}

.radial__seg--cta {
  border-color: rgba(14, 165, 233, 0.18);
}

.radial__seg--cta:hover {
  border-color: rgba(56, 182, 255, 0.4);
  background: rgba(14, 165, 233, 0.18);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.2), 0 0 48px rgba(14, 165, 233, 0.08);
}

.radial__seg-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.radial__seg-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%) translateY(-3px);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.radial__seg:hover .radial__seg-label,
.radial__seg:focus-visible .radial__seg-label,
.radial__seg.seg--active .radial__seg-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Info card */
.radial__card {
  max-width: 320px;
  width: 100%;
  background: var(--glass);
  border: 1px solid rgba(56, 182, 255, 0.12);
  border-radius: 14px;
  padding: 0 28px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.22, 1, 0.36, 1), margin 0.3s ease;
  margin-bottom: 0;
  position: relative;
}

.radial__card.card--visible {
  max-height: 200px;
  opacity: 1;
  padding: 22px 28px;
  margin-bottom: 24px;
}

.radial__card-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.2s ease;
}

.radial__card-close:hover { color: var(--white); }

.radial__card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.radial__card-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Mobile logo (hidden on desktop) */
.hero__mobile-logo {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  position: relative;
}

/* Mobile pills (hidden on desktop) */
.radial__pills {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.radial__pill {
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(11, 22, 39, 0.7);
  border: 1px solid rgba(56, 182, 255, 0.1);
  border-radius: 100px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.radial__pill:hover,
.radial__pill.pill--active {
  border-color: rgba(56, 182, 255, 0.25);
  color: var(--white);
  background: rgba(14, 165, 233, 0.08);
}

.radial__pill--cta {
  border-color: rgba(14, 165, 233, 0.18);
  color: var(--cyan-400);
  display: inline-flex;
  align-items: center;
}

.radial__pill--cta:hover {
  border-color: rgba(56, 182, 255, 0.35);
  color: var(--white);
  background: rgba(14, 165, 233, 0.12);
}

/* Hero text */
.hero__title {
  font-size: clamp(2.5rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--white-pure);
  margin-bottom: 16px;

  max-width: 700px;
  letter-spacing: -0.02em;
  min-height: 3.2em;
}

.hero__sub {
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.55;
  min-height: 3.2em;
}

.hero__cta-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__trust { display: none !important; }

/* --- Hero Proof Strip --- */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-proof__item {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(11, 22, 39, 0.6);
  border: 1px solid rgba(56, 182, 255, 0.08);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
}

/* --- Live Status Rail --- */
.status-rail {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #0b1627;
  border: 1px solid rgba(34, 197, 94, 0.4);
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: none;
}

.status-rail__item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.status-rail__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-rail__dot--live {
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7), 0 0 24px rgba(34, 197, 94, 0.4);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(34, 197, 94, 0.7), 0 0 24px rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 16px rgba(34, 197, 94, 0.9), 0 0 32px rgba(34, 197, 94, 0.5); }
}

.status-rail__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-rail__value {
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d058;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(34, 208, 88, 0.3);
}

.status-rail__sep {
  width: 1px;
  height: 14px;
  background: rgba(56, 182, 255, 0.12);
  flex-shrink: 0;
}

.status-rail__scan {
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 182, 255, 0.04), transparent);
  animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
  0% { left: -60px; }
  100% { left: calc(100% + 60px); }
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
}

/* ==========================================
   PIPELINE / HOW IT WORKS
   ========================================== */
.pipeline {
  position: relative;
  padding-top: 36px;
  padding-bottom: 40px;
}

.pipeline__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
}

.pipeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 200px;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.pipeline__node:hover,
.pipeline__node.active {
  border-color: rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 32px rgba(14, 165, 233, 0.06), inset 0 0 0 1px rgba(14, 165, 233, 0.06);
  transform: translateY(-3px);
}

.pipeline__node-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.07);
  border: 1px solid rgba(14, 165, 233, 0.1);
  color: var(--cyan-400);
  margin-bottom: 14px;
  transition: var(--transition);
}

.pipeline__node:hover .pipeline__node-icon,
.pipeline__node.active .pipeline__node-icon {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.18);
}

.pipeline__node-icon svg { width: 22px; height: 22px; }

.pipeline__node-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.pipeline__node-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Connectors */
.pipeline__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  position: relative;
}

.pipeline__connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(56, 182, 255, 0.12);
  transform: translateY(4px);
}

.pipeline__connector-chevron {
  position: relative;
  width: 8px;
  height: 12px;
  color: rgba(56, 182, 255, 0.3);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ==========================================
   KPI STRIP
   ========================================== */
.kpi {
  padding: 48px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.kpi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.kpi__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.kpi__number {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: var(--white-pure);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.kpi__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* KPI progress tracks */
.kpi__track {
  width: 64px;
  height: 3px;
  background: rgba(56, 182, 255, 0.08);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.kpi__track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.kpi__track-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease 1.4s;
}

.kpi__track-fill.kpi__track-fill--active::after {
  opacity: 1;
}

/* ==========================================
   SERVICES / CARDS
   ========================================== */
.services {
  background: linear-gradient(180deg, var(--dark) 0%, rgba(11, 22, 39, 0.4) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 800px;
}

.card {
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.card:hover {
  border-color: rgba(56, 182, 255, 0.18);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.08), 0 0 0 1px rgba(56, 182, 255, 0.06);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--cyan-400);
}

.card__icon svg { width: 22px; height: 22px; }

.card__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.card__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.card__more {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.82rem;
  color: #b7c8da;
  line-height: 1.45;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.card__hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #79cfff;
  opacity: 0.82;
}

.card__hint::after {
  content: " +";
}

.card--open {
  border-color: rgba(56, 182, 255, 0.26);
  box-shadow: 0 14px 56px rgba(14, 165, 233, 0.14), 0 0 0 1px rgba(56, 182, 255, 0.09);
}

.card--open .card__more {
  margin-top: 10px;
  max-height: 90px;
  opacity: 1;
}

.card--open .card__hint::after {
  content: " -";
}

/* ==========================================
   TIMELINE — WHAT YOU GET IN 30 DAYS
   ========================================== */
.timeline {
  background: var(--dark);
}

.timeline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 800px;
}

.timeline__block {
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  text-align: center;
}

.timeline__block:hover {
  border-color: rgba(56, 182, 255, 0.18);
  box-shadow: 0 8px 36px rgba(14, 165, 233, 0.06), 0 0 0 1px rgba(56, 182, 255, 0.06);
}

.timeline__week {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-400);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.timeline__block-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.timeline__block-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   FIT — IS THIS FOR YOUR COMPANY?
   ========================================== */
.fit {
  background: linear-gradient(180deg, var(--dark) 0%, rgba(11, 22, 39, 0.4) 100%);
}

.fit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 800px;
}

.fit__chip {
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  text-align: center;
}

.fit__chip:hover {
  border-color: rgba(56, 182, 255, 0.18);
  box-shadow: 0 8px 36px rgba(14, 165, 233, 0.06), 0 0 0 1px rgba(56, 182, 255, 0.06);
}

.fit__chip-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.fit__chip-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   WHY EMIKO
   ========================================== */
.why { background: var(--dark); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  perspective: 800px;
}

.why__item {
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.why__item:hover {
  border-color: rgba(56, 182, 255, 0.18);
  box-shadow: 0 8px 36px rgba(14, 165, 233, 0.06), 0 0 0 1px rgba(56, 182, 255, 0.06);
}

.why__item-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.why__item-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.why__reassurance {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cyan-400);
  letter-spacing: 0.01em;
}

/* ==========================================
   CLIENT EXPERIENCE
   ========================================== */
.client-exp {
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(11, 22, 39, 0.4) 100%);
}

.client-exp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  perspective: 800px;
}

.client-exp__card {
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.client-exp__card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.08);
}

.client-exp__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

  color: var(--blue-400);
}

.client-exp__icon svg {
  width: 32px;
  height: 32px;
}

.client-exp__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.client-exp__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================
   CTA
   ========================================== */
.cta {
  position: relative;
  text-align: center;
  padding: 88px 0;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner { position: relative; }

.cta__title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 700;
  color: var(--white-pure);
  line-height: 1.15;
  margin-bottom: 16px;

}

.cta__sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta__actions { margin-bottom: 12px; }

.cta__note {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;

}

.cta__trust {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 16px;

}

.cta__contact {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.cta__contact a {
  color: var(--blue-400);
  transition: color var(--transition);
}

.cta__contact a:hover { color: var(--cyan-300); }

 .cta__phone {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: rgba(6, 14, 26, 0.95);
  border-top: 1px solid var(--dark-border);
  padding: 44px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer__logo {
  height: 36px;
  width: auto;
  background: transparent;
  border: none;
  padding: 0;
  object-fit: contain;
  box-shadow: none;
}

.footer__logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer__brand p {
  font-size: 0.8rem;
  color: #ffffff;
  margin-top: 6px;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.74rem;
  color: #ffffff;
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sticky-cta { transition: none; }

.radial__center { animation: none; }
  .radial__logo { animation: none; transform: none; }
  .radial__halo { animation: none; }
  .radial__arc { animation: none; }
  .hero__glow--primary,
  .hero__glow--secondary { animation: none; }
  .hero__grid-bg { animation: none; }
  .status-rail__dot--live { animation: none; }
  .status-rail__scan { animation: none; display: none; }

  .radial__seg { transition: none; }
  .radial__card { transition: none; }

  .pipeline__node,
  .card,
  .why__item,
  .client-exp__card,
  .timeline__block,
  .fit__chip,
  .btn { transition: none; }
  .card__more { transition: none; max-height: none; opacity: 1; margin-top: 10px; }
  .card__hint { display: none; }

  .pipeline__node:hover,
  .pipeline__node.active,
  .card:hover,
  .client-exp__card:hover,
  .timeline__block:hover,
  .fit__chip:hover,
  .btn:hover { transform: none; }

  .kpi__track-fill { transition: none; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .fit__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__grid { grid-template-columns: repeat(3, 1fr); }

  .pipeline__flow { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .pipeline__connector { display: none; }
  .pipeline__node { width: 46%; }

  .kpi__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  .radial { --wheel-size: 340px; --seg-radius: 140px; }
  .radial__logo { height: 96px; }
  .radial__halo { width: 185px; height: 185px; }
  .radial__center .radial__logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
  .radial__center .radial__brand {
  position: absolute;
  left: 50%;
  top: calc(50% + 18px);
  transform: translateX(-50%);
  margin: 0;
  width: max-content;
  text-align: center;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(56, 182, 255, 0.25), 0 1px 8px rgba(0, 0, 0, 0.5);
}
  .radial__seg { width: 50px; height: 50px; margin: -25px 0 0 -25px; }
  .radial__seg-icon { width: 20px; height: 20px; }
  .radial__seg-label { font-size: 0.62rem; }

  .nav__links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
  min-width: 0;
}
  .nav__links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  line-height: 1;
}
}

@media (max-width: 768px) {
  .section { padding: 44px 0; }

  .radial { --wheel-size: 380px; --seg-radius: 156px; }
  .radial__logo { height: 130px !important; }
  .radial__halo { width: 200px !important; height: 200px !important; }

  .nav__links,
  .nav > .nav__inner > .btn,
  .nav > .nav__inner > .lang-switch,
  .nav__phone { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__mobile--open { display: flex; }

  .nav__logo-img { height: 30px; }
  .nav__logo-text { font-size: 1.28rem; }

  .hero__inner { padding: 14px 20px 6px; }
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    line-height: 1.06;
    margin-bottom: 12px;
    min-height: auto;
  }

  .hero__sub {
    margin-bottom: 18px;
  }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .client-exp__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .timeline__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .fit__grid { grid-template-columns: repeat(2, 1fr); max-width: 440px; margin: 0 auto; }
  .section__title { margin-bottom: 28px; }

  .pipeline__flow { gap: 10px; }
  .pipeline__node { width: 100%; max-width: 280px; padding: 22px 16px; }

  .sticky-cta { padding: 10px 0; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta__text { display: none; }
  .sticky-cta__inner { justify-content: center; }

  .cta { padding: 56px 0; }
  .cta__title { margin-bottom: 12px; }
  .cta__sub { margin-bottom: 24px; }
  .cta__trust { font-size: 0.72rem; }

  .hero__grid-bg { animation: none; }

  .status-rail { gap: 16px; padding: 12px 20px; }
  .status-rail__sep { display: none; }

  .footer { padding: 32px 0; }
  .footer__inner { gap: 16px; }
}

@media (max-width: 480px) {
  .kpi__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .nav__logo-img { height: 28px; }
  .nav__logo-text { font-size: 1.16rem; }

  .radial { --wheel-size: 320px; --seg-radius: 132px; }
  .radial__logo { height: 110px !important; }
  .radial__halo { width: 160px !important; height: 160px !important; }
  .radial__center .radial__logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
  .radial__center .radial__brand {
  position: absolute;
  left: 50%;
  top: calc(50% + 0px) !important;
  transform: translateX(-50%);
  margin: 0;
  width: max-content;
  text-align: center;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(56, 182, 255, 0.25), 0 1px 8px rgba(0, 0, 0, 0.5);
}
  .radial__seg { width: 40px; height: 40px; margin: -20px 0 0 -20px; }
  .radial__seg-icon { width: 16px; height: 16px; }
  .radial__seg-label { font-size: 0.54rem; bottom: -16px; }

  .status-rail { flex-direction: column; gap: 8px; border-radius: 16px; padding: 14px 20px; }

  .fit__grid { grid-template-columns: 1fr; max-width: 320px; }

  .section { padding: 36px 0; }

  .cta { padding: 44px 0; }
  .cta__sub { font-size: 0.92rem; }
  .cta .btn--lg { padding: 13px 24px; font-size: 0.9rem; max-width: 100%; white-space: normal; text-align: center; }

  .pipeline__node { padding: 20px 14px; }
  .pipeline__node-text { font-size: 0.74rem; }

  .client-exp__grid { max-width: 100%; }
  .client-exp__card { padding: 24px 20px; }

  .timeline__grid { max-width: 100%; }

  .footer { padding: 28px 0; }
}

/* ==========================================
   CONTACT GATE PAGE
   ========================================== */
.contact-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 40px;
  background: var(--dark);
  overflow: hidden;
}

.contact-gate__glow {
  position: absolute;
  width: 780px;
  height: 520px;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.09) 0%, rgba(6, 182, 212, 0.04) 45%, transparent 72%);
  pointer-events: none;
}

.contact-gate__card {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: var(--glass);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 30px 28px;
}


.contact-gate__back {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.24);
  background: rgba(11, 22, 39, 0.68);
  color: var(--cyan-300);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-gate__back svg {
  width: 17px;
  height: 17px;
}

.contact-gate__back:hover {
  border-color: rgba(56, 182, 255, 0.52);
  transform: translateX(-1px);
}
.contact-gate__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-left: 52px;
  color: var(--white-pure);
  font-family: 'Sora', sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
}

.contact-gate__logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
}

.contact-gate__tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-400);
  margin-bottom: 10px;
}

.contact-gate__title {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  color: var(--white-pure);
  margin-bottom: 10px;
}

.contact-gate__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-gate__phone {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-gate__phone a {
  color: var(--cyan-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.contact-gate__phone a:hover {
  color: var(--white);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-form__field span {
  font-size: 0.78rem;
  color: #a7b8cb;
  font-weight: 600;
}

.lead-form__field input,
.lead-form__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(56, 182, 255, 0.15);
  background: rgba(8, 16, 30, 0.76);
  color: var(--white-pure);
  padding: 11px 12px;
  font: inherit;
}

.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none;
  border-color: rgba(56, 182, 255, 0.42);
  box-shadow: 0 0 0 2px rgba(56, 182, 255, 0.18);
}

.lead-form__field textarea {
  resize: vertical;
  min-height: 88px;
}

.lead-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.lead-form__skip {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__skip:hover {
  color: var(--white);
}

.lead-form__status {
  min-height: 20px;
  font-size: 0.84rem;
  color: var(--cyan-400);
}

@media (max-width: 768px) {
  .contact-gate {
    padding-top: 82px;
  }

  .contact-gate__card {
    padding: 22px 18px;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-form__skip {
    text-align: center;
  }
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
}

.lang-switch--mobile {
  margin: 2px 0 10px;
}

.lang-switch__btn {
  border: 1px solid rgba(56, 182, 255, 0.2);
  background: rgba(11, 22, 39, 0.55);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switch__btn:hover,
.lang-switch__btn.lang-switch__btn--active {
  color: var(--white);
  border-color: rgba(56, 182, 255, 0.45);
  background: rgba(14, 165, 233, 0.16);
}

@media (max-width: 768px) {
  .nav__call-mobile {
    display: inline-flex !important;
  }

  .nav > .nav__inner > .lang-switch {
    display: none;
  }
}

@media (max-width: 1200px) {
  .nav__phone {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav__links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 16px;
    margin: 0;
    padding: 0;
    min-width: 0;
  }

  .nav__links a {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
    line-height: 1;
  }

  .nav__inner > .btn { padding: 9px 16px; font-size: 0.78rem; }
}



@media (max-width: 1280px) {
  .nav__phone { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto auto; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 0.72rem; }
  .nav__inner > .btn { padding: 9px 14px; font-size: 0.76rem; }
}



/* ==========================================
   NAV STABILITY OVERRIDES
   ========================================== */
html {
  scrollbar-gutter: stable;
}

.nav__inner {
  grid-template-columns: 180px minmax(360px, 1fr) 120px 130px 286px;
  column-gap: 12px;
}

.nav__logo {
  width: 180px;
  margin-right: 0;
}

.nav__links {
  position: static;
  transform: none;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.lang-switch {
  width: 120px;
  justify-content: center;
  flex-shrink: 0;
}

.nav__phone {
  min-width: 130px;
  text-align: right;
}

.nav__inner > .btn {
  width: 286px;
  justify-content: center;
  font-size: 0.8rem;
  padding: 10px 14px;
  white-space: nowrap;
}

@media (max-width: 1480px) {
  .nav__phone {
    display: none;
  }

  .nav__inner {
    grid-template-columns: 180px minmax(340px, 1fr) 120px 286px;
  }
}

@media (max-width: 1280px) {
  .nav__inner {
    grid-template-columns: 170px minmax(280px, 1fr) 110px 240px;
  }

  .nav__logo {
    width: 170px;
  }

  .nav__links {
    gap: 12px;
  }

  .nav__links a {
    font-size: 0.72rem;
  }

  .lang-switch {
    width: 110px;
  }

  .nav__inner > .btn {
    width: 240px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1024px) {
  .nav__inner {
    grid-template-columns: 160px minmax(220px, 1fr) 106px 214px;
    column-gap: 10px;
  }

  .nav__logo {
    width: 160px;
  }

  .nav__links {
    gap: 10px;
  }

  .nav__links a {
    font-size: 0.7rem;
  }

  .lang-switch {
    width: 106px;
  }

  .lang-switch__btn {
    padding: 3px 8px;
    font-size: 0.68rem;
  }

  .nav__inner > .btn {
    width: 214px;
    font-size: 0.72rem;
  }
}








/* ==========================================
   MOBILE HOTFIXES (NAV + STICKY CTA)
   ========================================== */
@media (max-width: 768px) {
  .nav__inner {
    grid-template-columns: minmax(130px, 1fr) auto auto auto !important;
    column-gap: 8px !important;
    height: 64px;
  }

  .nav__logo {
    width: auto !important;
    min-width: 0;
  }

  .nav__links,
  .nav__phone,
  .nav__inner > .btn {
    display: none !important;
  }

  .nav__call-mobile {
    display: inline-flex !important;
  }

  .nav > .nav__inner > .lang-switch {
    display: inline-flex !important;
    width: auto !important;
    margin-right: 0 !important;
    gap: 4px;
  }

  .lang-switch__btn {
    padding: 4px 8px;
    font-size: 0.66rem;
  }

  .nav__mobile-toggle {
    display: flex !important;
  }

  .lang-switch--mobile {
    display: none;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    border-radius: 14px;
    padding: 8px 10px;
    border: 1px solid rgba(56, 182, 255, 0.18);
    box-shadow: 0 10px 32px rgba(3, 8, 18, 0.45);
  }

  .sticky-cta__inner {
    justify-content: center;
    gap: 0;
  }

  .sticky-cta__text {
    display: none;
  }

  .sticky-cta .btn {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .nav__logo-text {
    font-size: 1.08rem;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 6px);
  }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.35);
  background: rgba(6, 14, 26, 0.9);
  color: var(--cyan-300);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(3, 8, 18, 0.45);
  z-index: 110;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(56, 182, 255, 0.6);
}

@media (max-width: 768px) {
  .back-to-top {
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 84px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}




/* CONTACT BACK BUTTON MOBILE */
@media (max-width: 768px) {
  .contact-gate__back {
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
  }

  .contact-gate__brand {
    margin-left: 46px;
  }
}

/* MOBILE TYPOGRAPHY ALIGNMENT HOTFIX */
@media (max-width: 768px) {
  .hero__inner {
    padding: 18px 20px 8px;
  }

  .hero__title {
    margin-left: 0 !important;
    margin-right: 0;
    max-width: 100%;
    min-height: auto;
    font-size: clamp(2.1rem, 9vw, 2.9rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
    text-wrap: balance;
  }

  .hero__sub {
    max-width: 92%;
    min-height: auto;
    font-size: 1rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .section__title,
  .cta__title,
  .cta__note,
  .cta__trust {
    margin-left: 0 !important;
    margin-right: 0;
  }

  .section__title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    line-height: 1.16;
    text-wrap: balance;
  }

  .card__title,
  .pipeline__node-title,
  .timeline__block-title,
  .why__item-title,
  .fit__chip-title,
  .client-exp__title {
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.95rem, 9.4vw, 2.5rem);
    line-height: 1.07;
  }

  .hero__sub {
    max-width: 96%;
    font-size: 0.98rem;
  }
}


/* HERO + MOBILE MENU CTA POLISH */
@media (max-width: 768px) {
  .hero__trust { display: none !important; }

  .nav__mobile .btn,
  .nav__mobile .btn:visited {
    color: #051225 !important;
    font-weight: 800;
    background: var(--blue-400);
    border: 1px solid rgba(56, 182, 255, 0.6);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.22);
  }

  .nav__mobile .btn:hover,
  .nav__mobile .btn:active {
    color: #04101f !important;
  }
}



/* STATUS RAIL VISIBILITY BOOST - merged into main styles */






.cta__phone--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.35);
  color: var(--cyan-400);
  vertical-align: middle;
}

.cta__phone--icon svg {
  width: 16px;
  height: 16px;
}

.contact-gate__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.35);
  color: var(--cyan-400);
  margin-left: 8px;
}

.contact-gate__phone-icon svg {
  width: 16px;
  height: 16px;
}

/* ==========================================
   SHOWCASE — Phone Mockup Dashboard Preview
   ========================================== */
.showcase {
  background: linear-gradient(180deg, var(--dark) 0%, #040a14 50%, var(--dark) 100%);
  overflow: hidden;
}

.showcase__vertical,
.showcase__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.showcase__client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase__client-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.showcase__client-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.showcase__client-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.showcase__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  max-width: 560px;
}

.showcase__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.showcase__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.showcase__tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.showcase__tab:hover {
  color: var(--white);
  border-color: var(--glass-border);
  background: rgba(56, 182, 255, 0.06);
}

.showcase__tab--active {
  color: var(--cyan-400);
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.08);
}

.showcase__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* --- Phone mockup --- */
.showcase__phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.showcase__phone {
  position: relative;
  width: 340px;
  height: 700px;
  border-radius: 44px;
  background: #1a1a1a;
  border: 3px solid #333;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 25px 80px rgba(0,0,0,0.5),
    0 0 120px rgba(56, 182, 255, 0.06);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase__phone:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.showcase__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 20;
}

.showcase__phone-notch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 42px;
  background: linear-gradient(to bottom, #060e1a 60%, transparent);
  z-index: -1;
  pointer-events: none;
}

.showcase__phone-notch::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
}

.showcase__phone-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 22px;
  border-radius: 41px 41px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #060e1a;
  scrollbar-width: none;
}

.showcase__phone-screen::-webkit-scrollbar {
  display: none;
}

/* Bottom fade so content doesn't hard-cut */
.showcase__phone-screen::after {
  content: '';
  position: sticky;
  bottom: 0;
  display: block;
  height: 32px;
  background: linear-gradient(to top, #060e1a, transparent);
  pointer-events: none;
  margin-top: -32px;
}

.showcase__phone-home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  z-index: 10;
}

/* Bottom strip behind home bar */
.showcase__phone-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: #060e1a;
  border-radius: 0 0 41px 41px;
  z-index: 5;
}

/* --- Phone screen content --- */
.phone-screen {
  display: none;
  padding: 48px 16px 16px;
  min-height: 100%;
}

.phone-screen--active {
  display: block;
  animation: phoneScreenIn 0.3s ease-out;
}

@keyframes phoneScreenIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.phone-screen__header {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.phone-screen__header-left {
  flex: 1;
  min-width: 0;
}

.phone-screen__header-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  margin-top: 2px;
}

.phone-screen__greeting {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0f4f8;
}

.phone-screen__date {
  display: block;
  font-size: 0.65rem;
  color: #5a6b7d;
  margin-top: 2px;
}

/* KPI cards */
.phone-screen__kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}

.phone-screen__kpi {
  background: #0b1627;
  border: 1px solid #162a42;
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-screen__kpi-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a6b7d;
  margin-bottom: 3px;
}

.phone-screen__kpi-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0f4f8;
  line-height: 1.2;
}

.phone-screen__kpi-value--gold { color: #0ea5e9; }
.phone-screen__kpi-value--green { color: #34d399; }
.phone-screen__kpi-value--warn { color: #f59e0b; }

.phone-screen__kpi-dim {
  font-size: 0.65rem;
  font-weight: 400;
  color: #5a6b7d;
}

.phone-screen__kpi-sub {
  display: block;
  font-size: 0.56rem;
  color: #8899aa;
  margin-top: 2px;
}

.phone-screen__kpi-sub--warn { color: #f59e0b; }
.phone-screen__kpi-sub--good { color: #34d399; }

.phone-screen__rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-screen__stars {
  font-size: 0.5rem;
  color: #0ea5e9;
  letter-spacing: -0.5px;
}

.phone-screen__stars--sm {
  font-size: 0.45rem;
}

.phone-screen__star-empty {
  color: #1e3a5a;
}

/* Progress bar */
.phone-screen__bar {
  height: 5px;
  border-radius: 4px;
  background: #162a42;
  margin-top: 4px;
  overflow: hidden;
}

.phone-screen__bar--wide {
  margin-top: 3px;
}

.phone-screen__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: #0ea5e9;
  transition: width 1s ease-out;
}

/* Cards */
.phone-screen__card {
  background: #0b1627;
  border: 1px solid #162a42;
  border-radius: 10px;
  margin-bottom: 6px;
  overflow: hidden;
}

.phone-screen__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid #162a42;
  font-size: 0.68rem;
  font-weight: 600;
  color: #f0f4f8;
}

.phone-screen__link {
  font-size: 0.56rem;
  font-weight: 600;
  color: #0ea5e9;
}

/* List items (tonight reservations) */
.phone-screen__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid #0f1d31;
  font-size: 0.6rem;
}

.phone-screen__list-item:last-child {
  border-bottom: none;
}

.phone-screen__time {
  font-size: 0.6rem;
  font-weight: 700;
  color: #0ea5e9;
  width: 32px;
  flex-shrink: 0;
}

.phone-screen__guest-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-screen__guest-badge--confirmed {
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.phone-screen__guest-badge--pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.phone-screen__guest-name {
  flex: 1;
  color: #f0f4f8;
  font-weight: 500;
  font-size: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-screen__source {
  font-size: 0.42rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.phone-screen__source--phone { color: #60a5fa; }
.phone-screen__source--web { color: #34d399; }
.phone-screen__source--ig { color: #e1306c; }

.phone-screen__tag-pending {
  font-size: 0.42rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  flex-shrink: 0;
}

/* Systems list */
.phone-screen__status-ok {
  font-size: 0.48rem;
  font-weight: 700;
  color: #34d399;
}

.phone-screen__sys-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.58rem;
  color: #8899aa;
}

.phone-screen__sys-on {
  font-size: 0.56rem;
  font-weight: 700;
  color: #34d399;
}

/* Revenue chart */
.phone-screen__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  padding: 8px 10px 4px;
}

.phone-screen__chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}

.phone-screen__chart-bar::before {
  content: '';
  width: 100%;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #0ea5e9, rgba(14, 165, 233, 0.4));
  transition: height 1s ease-out;
}

.phone-screen__chart-bar--current::before {
  background: rgba(14, 165, 233, 0.3);
  border: 1px dashed rgba(14, 165, 233, 0.4);
}

.phone-screen__chart-bar span {
  font-size: 0.42rem;
  color: #5a6b7d;
}

/* Location rows */
.phone-screen__loc-row {
  padding: 6px 10px;
}

.phone-screen__loc-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.phone-screen__loc-name {
  font-size: 0.52rem;
  font-weight: 500;
  color: #f0f4f8;
}

.phone-screen__loc-amount {
  font-size: 0.52rem;
  font-weight: 600;
  color: #0ea5e9;
}

/* Profit rows */
.phone-screen__profit-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  font-size: 0.58rem;
  color: #8899aa;
}

.phone-screen__profit-row--border {
  border-top: 1px solid #162a42;
  margin-top: 2px;
  padding-top: 7px;
}

.phone-screen__profit-pos { color: #34d399; font-weight: 600; }
.phone-screen__profit-pct { color: #34d399; font-weight: 700; font-size: 0.58rem; }

/* Review items */
.phone-screen__review {
  padding: 7px 10px;
  border-bottom: 1px solid #0f1d31;
}

.phone-screen__review:last-child {
  border-bottom: none;
}

.phone-screen__review-top {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.phone-screen__review-author {
  font-size: 0.52rem;
  font-weight: 600;
  color: #f0f4f8;
}

.phone-screen__review-platform {
  font-size: 0.42rem;
  color: #5a6b7d;
  margin-left: auto;
}

.phone-screen__review-text {
  font-size: 0.48rem;
  color: #8899aa;
  line-height: 1.5;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.phone-screen__review-status {
  font-size: 0.42rem;
  font-weight: 600;
}

.phone-screen__review-status--replied { color: #34d399; }
.phone-screen__review-status--pending { color: #f59e0b; }

/* Filter pills */
.phone-screen__filters {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 2px;
}

.phone-screen__filters::-webkit-scrollbar { display: none; }

.phone-screen__filter {
  font-size: 0.44rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: #0b1627;
  border: 1px solid #162a42;
  color: #5a6b7d;
  white-space: nowrap;
}

.phone-screen__filter--active {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.3);
  color: #0ea5e9;
}

.phone-screen__filter-src {
  font-size: 0.42rem;
  font-weight: 700;
  padding: 2px 6px;
  color: #5a6b7d;
  white-space: nowrap;
}

.phone-screen__filter-src--all {
  color: #0ea5e9;
}

/* Reservation items */
.phone-screen__res-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid #0f1d31;
  gap: 6px;
}

.phone-screen__res-item:last-child {
  border-bottom: none;
}

.phone-screen__res-left {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.phone-screen__res-name {
  display: block;
  font-size: 0.52rem;
  font-weight: 600;
  color: #f0f4f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-screen__res-detail {
  display: block;
  font-size: 0.42rem;
  color: #5a6b7d;
  margin-top: 1px;
}

.phone-screen__res-status {
  font-size: 0.38rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  flex-shrink: 0;
}

.phone-screen__res-status--confirmed {
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.phone-screen__res-status--pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Call log items */
.phone-screen__call-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-bottom: 1px solid #0f1d31;
}

.phone-screen__call-item:last-child {
  border-bottom: none;
}

.phone-screen__call-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.42rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-screen__call-icon--booked {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.phone-screen__call-icon--info {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.phone-screen__call-icon--missed {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.phone-screen__call-info {
  flex: 1;
  min-width: 0;
}

.phone-screen__call-name {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  color: #f0f4f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-screen__call-meta {
  display: block;
  font-size: 0.4rem;
  color: #5a6b7d;
  margin-top: 1px;
}

.phone-screen__call-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.phone-screen__call-badge {
  font-size: 0.38rem;
  font-weight: 700;
  padding: 1.5px 5px;
  border-radius: 4px;
}

.phone-screen__call-badge--booked {
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.phone-screen__call-badge--info {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
}

.phone-screen__call-badge--missed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.phone-screen__call-party {
  font-size: 0.38rem;
  color: #0ea5e9;
  font-weight: 600;
}

/* Location online dot */
.phone-screen__loc-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
}

.phone-screen__loc-dot--online {
  background: #34d399;
  box-shadow: 0 0 4px rgba(52, 211, 153, 0.5);
}

/* Chat / AI Assistant */
.phone-screen__chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.phone-screen__msg {
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.58rem;
  line-height: 1.55;
}

.phone-screen__msg p {
  margin: 0;
}

.phone-screen__msg strong {
  color: #0ea5e9;
  font-weight: 700;
}

.phone-screen__msg--user {
  align-self: flex-end;
  background: rgba(56, 182, 255, 0.12);
  border: 1px solid rgba(56, 182, 255, 0.2);
  color: #c8d6e5;
  border-bottom-right-radius: 3px;
}

.phone-screen__msg--ai {
  align-self: flex-start;
  background: #0b1627;
  border: 1px solid #162a42;
  color: #8899aa;
  border-bottom-left-radius: 3px;
}

.phone-screen__msg-label {
  display: block;
  font-size: 0.4rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 2px;
}

.phone-screen__chat-input {
  background: #0b1627;
  border: 1px solid #162a42;
  border-radius: 10px;
  padding: 8px 12px;
}

.phone-screen__chat-placeholder {
  font-size: 0.46rem;
  color: #1e3a5a;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .showcase__phone {
    transform: none;
    width: 300px;
    height: 640px;
  }

  .showcase__phone:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .showcase__phone {
    width: 280px;
    height: 580px;
  }

  .showcase__tabs {
    gap: 6px;
  }

  .showcase__tab {
    padding: 7px 12px;
    font-size: 0.74rem;
    gap: 5px;
  }

  .showcase__tab svg {
    width: 14px;
    height: 14px;
  }

  .showcase__text {
    font-size: 0.88rem;
  }
}
