/* =============================================
   ADVESTOR.SK - Landing Page Styles
   Design: Figma node 423:132
   ============================================= */

@font-face {
  font-family: 'Loos Wide';
  src: url('../fonts/Loos Wide Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Wide';
  src: url('../fonts/Loos Wide Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Wide';
  src: url('../fonts/Loos Wide Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Wide';
  src: url('../fonts/Loos Wide Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Normal';
  src: url('../fonts/Loos Normal Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Normal';
  src: url('../fonts/Loos Normal Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Normal';
  src: url('../fonts/Loos Normal Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Extended';
  src: url('../fonts/Loos Extended Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Loos Extended';
  src: url('../fonts/Loos Extended Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #0a0a0a;
  --bg-dark: #111111;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --primary-500: #beec1b;
  --primary-500-bg: rgba(190,236,27,0.1);
  --primary-500-border: rgba(190,236,27,0.2);
  --primary-500-dark: #0a0a08;
  --white: #ffffff;
  --dark-100: #888;    /* --dark/100 */
  --dark-200: #666;   /* --dark/200 */
  --dark-300: #404040; /* --dark/300 */
  --dark-500: #181818;
  --font-heading: 'Loos Wide', 'Loos Extended', sans-serif;
  --font-body: 'Loos Normal', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --max-width: 1280px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
.tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--primary-500);
}

.h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.2px;
}

.h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2.2px;
}

.h5 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.224px;
}

.h6 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.224px;
}

.text-accent { color: var(--primary-500); }
.text-muted { color: var(--dark-100); }
.text-dimmer { color: var(--dark-200); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary-500);
  color: var(--primary-500-dark);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #d0ff1f; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-icon:hover { background: rgba(255,255,255,0.08); }
.btn-icon svg { width: 18px; height: 18px; }

/* --- Badge / Tag --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--dark-100);
  white-space: nowrap;
}

.badge-accent {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--primary-500-bg);
  border: 1px solid var(--primary-500-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--primary-500);
  white-space: nowrap;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  transition: background 0.3s;
  background: linear-gradient(180deg, var(--Dark-500, #181818) 0%, rgba(24, 24, 24, 0.00) 100%);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}
.nav-logo-text span { color: var(--primary-500); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  border-radius: 40px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(10px);
padding: 8px;

}

.nav-links a {
  font-size: 14px;
  color: var(--dark-100);
  transition: color 0.2s, background 0.2s;
  display: flex;
padding: 8px 24px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 100px;
}
.nav-links a:hover { color: var(--white); }

.nav-links a[aria-current="page"] {
  border-radius: 100px;
  background: #fff;
  color: var(--dark-500);
}

.nav-links a[aria-current="page"]:hover {
  color: var(--dark-500);
}

.nav-cta { flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 84px 0 48px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 360px 360px;
  pointer-events: none;
}

.hero-glow-left {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -307px;
  top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(190,236,27,0.25) 0%, rgba(95,118,14,0.1) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.hero-glow-right {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -200px;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(158,198,16,0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--max-width);
  width: 100%;
  padding: 72px 20px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(190,236,27,0.08);
  border: 1px solid rgba(190,236,27,0.2);
  border-radius: var(--radius-full);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--primary-500);
  line-height: 1.5;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.2px;
  color: var(--white);
  max-width: 1032px;
}

.hero-headline .accent { color: var(--primary-500); }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--dark-100);
  max-width: 686px;
}

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

.hero-ctas .btn-primary svg,
.hero-ctas .btn-secondary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: -16px;
  animation: scroll-indicator-fade 1s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 12px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--dark-300);
}

.hero-scroll-icon {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}

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

@keyframes scroll-indicator-fade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* --- Marquee Ticker --- */
.ticker-wrapper {
  position: relative;
  width: 100%;
  /*overflow: hidden;*/
  margin-top: 24px;
}

.ticker-band {
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-band--dark {
  background: var(--dark-500);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: rotate(-6.07deg) scaleX(1.15);
  transform-origin: center;
  margin-bottom: -8px;
}

.ticker-band--primary-500 {
  background: var(--primary-500);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transform: rotate(3.84deg) scaleX(1.15);
  transform-origin: center;
  margin-top: -8px;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker-scroll 30s linear infinite;
  padding-right: 32px;
}

.ticker-band--dark .ticker-track { animation-duration: 30s; }
.ticker-band--primary-500 .ticker-track { animation-duration: 25s; animation-direction: reverse; }

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

.ticker-item {
  font-family: var(--font-heading);
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 1.024px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-band--dark .ticker-item { color: var(--white); }
.ticker-band--primary-500 .ticker-item { color: var(--primary-500-dark); }

.ticker-sep {
  font-family: var(--font-heading);
  font-size: 9.6px;
  color: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}

/* =============================================
   CLIENTS
   ============================================= */
.clients {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.clients-label {
  font-size: 12px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--dark-200);
}

.clients-logos {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: auto;
  gap: 64px;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-logos:hover .clients-track {
  animation-play-state: paused;
}

.clients-logos::before,
.clients-logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-logos::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.clients-logos::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.clients-logo {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.2s;
}
.clients-logo:hover { opacity: 0.7; }

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 32px)); }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  position: relative;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  overflow: hidden;
}

.services-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -300px;
  top: -261px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(190,236,27,0.15) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.2;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 20px;
  max-width: var(--max-width);
  width: 100%;
}

.services-header .h2 { color: var(--white); }
.services-header p:not(.tagline) { color: var(--dark-200); max-width: 542px; }

.services-scroll-wrapper {
  position: relative;
  width: 100%;
}

.services-cards {
  display: flex;
  gap: 20px;
  padding: 16px 80px 24px;
  padding-left: max(20px, calc((100vw - 1280px) / 2 + 20px));
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-cards::-webkit-scrollbar { display: none; }

.service-card {
  flex-shrink: 0;
  width: 303px;
  min-height: 374px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-num {
  font-family: 'Loos Extended', var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: var(--dark-200);
}

.service-icon-btn {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-btn svg { width: 12px; height: 12px; color: var(--dark-100); }

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-card-body .h5 { color: var(--white); }
.service-card-body p { font-size: 14px; color: var(--dark-100); line-height: 1.5; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  max-width: var(--max-width);
  margin: auto;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio {
  padding: 40px 20px 72px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.portfolio-header-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-header-left .h2 { color: var(--white); }

.portfolio-header-right {
  font-size: 16px;
  color: var(--dark-200);
  max-width: 557px;
  text-align: right;
  line-height: 1.5;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  row-gap: 32px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 354px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-item { cursor: pointer; }

.portfolio-item:hover .portfolio-image img { transform: scale(1.03); }

/* --- Portfolio overlay (Figma 1:1) --- */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(24, 24, 24, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Desktop: hover */
@media (hover: hover) {
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile: toggled via JS */
.portfolio-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-overlay-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.portfolio-overlay-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* --- Fullscreen Video Player --- */
.video-player-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-player-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-player-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.video-player-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-player-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.video-player-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
}

/* Video slide transition */
.video-player-video.slide-up-out {
  animation: slideUpOut 0.4s ease forwards;
}
.video-player-video.slide-up-in {
  animation: slideUpIn 0.4s ease forwards;
}
.video-player-video.slide-down-out {
  animation: slideDownOut 0.4s ease forwards;
}
.video-player-video.slide-down-in {
  animation: slideDownIn 0.4s ease forwards;
}

@keyframes slideUpOut {
  from { transform: translate(-50%, -50%); opacity: 1; }
  to   { transform: translate(-50%, -150%); opacity: 0; }
}
@keyframes slideUpIn {
  from { transform: translate(-50%, 50%); opacity: 0; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}
@keyframes slideDownOut {
  from { transform: translate(-50%, -50%); opacity: 1; }
  to   { transform: translate(-50%, 50%); opacity: 0; }
}
@keyframes slideDownIn {
  from { transform: translate(-50%, -150%); opacity: 0; }
  to   { transform: translate(-50%, -50%); opacity: 1; }
}

/* Swipe hint (hero-scroll style) */
.video-player-swipe-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-player-swipe-hint span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}

.video-player-swipe-hint svg {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}

.video-player-swipe-hint.is-hidden {
  opacity: 0;
}

/* Video pause overlay */
.video-player-pause {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.video-player-pause.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-player-pause-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.portfolio-item-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-item-meta .h5 { color: var(--white); }

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   CASE STUDIES
   ============================================= */
.case-studies {
  position: relative;
  padding: 40px 20px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.case-studies-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(190,236,27,0.25) 0%, transparent 90%);
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.2;
}

.case-studies-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.case-studies-header .h2 { color: var(--white);
max-width: 640px; }
.case-studies-header p:not(.tagline) { color: var(--dark-200); max-width: 557px; }

.case-studies-tabs {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 19px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tab-btn--active {
  background: rgba(190,236,27,0.15);
  border: 1px solid rgba(190,236,27,0.3);
  color: var(--primary-500);
}

.tab-btn--inactive {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--dark-100);
}
.tab-btn--inactive:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.case-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.case-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 51px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.case-card-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28c840; }

.case-card-path {
  font-size: 12px;
  color: #555;
  margin-left: 12px;
}

.case-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: pulse 2s infinite;
}

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

.live-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-500);
}

.case-card-body {
  padding: 32px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 862px;
}

.case-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-card-title .h5 { color: var(--white); }

.case-card-desc {
  font-size: 16px;
  color: var(--dark-100);
  line-height: 1.5;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 17px;
  background: rgba(190,236,27,0.05);
  border: 1px solid rgba(190,236,27,0.1);
  border-radius: var(--radius-lg);
}

.case-result svg { width: 16px; height: 16px; color: var(--primary-500); flex-shrink: 0; }

.case-result-text { font-size: 14px; line-height: 1.5; }
.case-result-text strong { color: var(--primary-500); }
.case-result-text span { color: #ccc; }

.case-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chart-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 277px;
  overflow: hidden;
}

.chart-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title { font-size: 14px; color: var(--dark-100); }

.chart-legend {
  display: flex;
  gap: 12px;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #555;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.chart-growth {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chart-growth-value { font-size: 12px; font-weight: 700; color: var(--primary-500); }

.chart-container {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.chart-container img { width: 100%; height: 100%; object-fit: fill; }

/* Bar chart CSS */
.bar-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 20px;
  position: relative;
}

.bar-group {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  flex: 1;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: opacity 0.2s;
}
.bar--before { background: #333; }
.bar--after  { background: var(--primary-500); }

.bar-labels {
  display: flex;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bar-label {
  flex: 1;
  font-size: 12px;
  color: var(--dark-100);
  text-align: center;
}

/* Line chart CSS */
.area-chart {
  flex: 1;
  position: relative;
}

.area-chart svg {
  width: 100%;
  height: 100%;
}

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

.pagination-text { font-size: 14px; color: #555; }

/* =============================================
   CONTACT / CTA
   ============================================= */
.contact {
  padding: 40px 20px 72px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.contact-header .h1 { max-width: 800px; }
.contact-header .h1 .accent { color: var(--primary-500); }

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  overflow: hidden;
  min-height: 480px;
}

.contact-steps {
  width: 409px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.step-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.step-item--active {
  background: rgba(190,236,27,0.06);
  border-color: rgba(190,236,27,0.15);
}

.step-item--inactive { opacity: 0.5; }
.step-item--inactive:hover { background: rgba(255,255,255,0.03); opacity: 0.8; }

.step-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.68px;
  color: rgba(255,255,255,0.2);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.224px;
  color: var(--dark-200);
  line-height: 1.2;
}

.step-item--active .step-label { color: var(--dark-100);}

.step-chevron { width: 16px; height: 16px; color: var(--dark-200); }

.contact-form {
  flex: 1;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Contact success state ─────────────────────────────────────────── */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  padding: 64px 40px;
  text-align: center;
}

.contact-success-icon svg {
  display: block;
}

.contact-success-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-success-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2.2px;
  line-height: 1.2;
  margin: 0;
}

.contact-success-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.22px;
  line-height: 1.2;
  margin: 0;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.form-header svg { width: 16px; height: 16px; color: var(--primary-500); }
.form-header span { font-size: 14px; color: var(--dark-200); }

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  color: var(--dark-100);
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(240,240,240,0.5); }
.form-input:focus { border-color: rgba(190,236,27,0.4); background: rgba(255,255,255,0.05); }

.form-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.form-option:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
}

.form-option--active {
 background: #fff;
  border: 1px solid var(--border);
  color: var(--primary-500-dark);
}

.form-option--active:hover {
background: #ffffffba;
  border: 1px solid var(--border);
  color: var(--primary-500-dark);
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 0 20px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
}

.footer-logo img { height: 50px; width: auto; }

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  opacity: 0.8;
}
.footer-logo-text span { color: var(--primary-500); }

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

.google-badge{
  width: 90px;
}


.footer-links a {
  font-size: 14px;
  color: var(--dark-100);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: var(--dark-200);
}

/* =============================================
   UTILITY / SHARED
   ============================================= */
.section-label {
  font-size: 12px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: var(--primary-500);
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   NAV HAMBURGER — hidden on desktop by default
   ============================================= */
.nav-hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   MOBILE MENU OVERLAY — hidden by default
   ============================================= */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--bg);
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 20px 48px;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile-overlay.is-open { display: flex; }

.nav-mobile-links {
  list-style: none;
  width: 100%;
  flex: 1;
}
.nav-mobile-links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark-100);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-links a:hover { color: var(--white); }

.nav-mobile-cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* =============================================
   MOBILE STYLES — max-width: 768px
   All adjustments strictly inside @media.
   Desktop styles are NOT modified.
   ============================================= */
@media (max-width: 768px) {

  /* === NAVIGATION === */
  .nav {
    height: 64px;
  }

  .nav-inner {
    padding: 0 20px;
    justify-content: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* === HERO === */
  .hero-content {
    padding: 32px 20px 24px;
    gap: 20px;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-headline {
    font-size: 40px;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: center
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
    text-align: center
  }

  .hero-ctas {
    align-self: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  .hero-scroll {
    margin-top: 0;
  }

  /* === CLIENTS === */
  .clients {
    padding: 32px 0;
    gap: 24px;
  }

  /* === SERVICES === */
  .services {
    padding: 48px 0 40px;
    gap: 40px;
  }

  .services-header {
    text-align: center;
    align-items: center;
  }

  .services-header .h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
      text-align: center;
  }

  .services-cards {
    padding: 8px 20px 16px;
    gap: 12px;
  }

  .service-card {
    width: 280px;
    min-height: 320px;
    padding: 24px;
  }

  .services-nav {
    padding: 0 20px;
  }

  /* === PORTFOLIO === */
  .portfolio {
    padding: 32px 20px 48px;
    gap: 40px;
  }

  .portfolio-header {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .portfolio-header-left .tagline{
    text-align: center;
  }

  .portfolio-header-left .h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
    text-align: center;
  }

  .portfolio-header-right {
    text-align: center;
    font-size: 15px;
    max-width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    row-gap: 40px;
  }

  .portfolio-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .portfolio-overlay {
    flex-direction: column;
    gap: 8px;
  }

  .portfolio-overlay-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .video-player-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  /* === CASE STUDIES === */
  .case-studies {
    padding: 32px 20px;
    gap: 32px;
  }

  .case-studies-header {
    align-items: center;
    text-align: center;
  }

  .case-studies-header .h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
    text-align: center;
  }

  .case-studies-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .case-card-body {
    padding: 20px 16px 28px;
    gap: 24px;
  }

  .case-card-info {
    max-width: 100%;
  }

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

  .chart-card {
    height: auto;
    padding: 16px;
  }

  #chart1-body svg,
  #chart2-body svg {
    width: 100%;
    height: auto;
    flex: none;
  }



  /* === CONTACT === */
  .contact {
    padding: 32px 20px 48px;
    gap: 40px;
  }

  .contact-header .h1 {
    font-size: 40px;
    letter-spacing: -1.2px;
    max-width: 100%;
  }

  .contact-card {
    flex-direction: column;
    min-height: unset;
  }

  .contact-steps {
    display: none;
  }

  .contact-form {
    padding: 20px;
    gap: 28px;
  }

  .form-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .form-actions .btn-primary,
  .form-actions .btn-secondary,
  .form-actions .btn-ghost {
    padding: 12px 32px;
    gap: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  /* === FOOTER === */
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-google-badge {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 12px;
  }

  .contact-success-title { font-size: 28px; }
  .contact-success-subtitle { font-size: 16px; }
}

/* --- Maintenance Page --- */
.maintenance-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.maintenance-container {
  text-align: center;
  padding: 2rem;
}

.maintenance-logo {
  width: min(480px, 80vw);
  display: block;
  margin: 0 auto;
}

.maintenance-message {
  color: var(--dark-200);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

/* =============================================
   App Development Page (vyvoj-aplikacii.html)
   ============================================= */

/* Process section */
.app-process {
  padding: 72px 20px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.app-process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.app-process-header p:not(.tagline) {
  color: var(--dark-200);
  max-width: 542px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: border-color 0.2s, background 0.2s;
}

.process-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.process-step .step-number {
  font-family: 'Loos Extended', var(--font-heading);
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  opacity: 0.08;
  line-height: 1;
  flex-shrink: 0;
  min-width: 100px;
}

.process-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.224px;
  color: var(--white);
}

.process-step p {
  font-size: 14px;
  color: var(--dark-100);
  line-height: 1.5;
}

/* Tech stack section */
.app-tech {
  padding: 72px 20px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.app-tech-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.app-tech-header p:not(.tagline) {
  color: var(--dark-200);
  max-width: 542px;
}

.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.tech-pill:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.tech-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
}

/* Comparison section */
.app-comparison {
  padding: 72px 20px;
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.app-comparison-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.app-comparison-header p:not(.tagline) {
  color: var(--dark-200);
  max-width: 542px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--bg-card);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th:first-child {
  color: var(--dark-100);
  width: 40%;
}

.comparison-table thead th:nth-child(2) {
  color: var(--primary-500);
  width: 30%;
}

.comparison-table thead th:nth-child(3) {
  color: var(--dark-200);
  width: 30%;
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--dark-100);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--bg);
  vertical-align: top;
  line-height: 1.6;
}

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

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--white);
}

.td-content {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-500-bg);
  color: var(--primary-500);
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}

.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--dark-200);
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* App Development Page – Mobile */
@media (max-width: 768px) {
  .process-step {
    padding: 24px 16px;
    gap: 24px;
  }

  .process-step .step-number {
    font-size: 48px;
    min-width: 64px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .app-process,
  .app-tech,
  .app-comparison {
    padding: 48px 20px;
    gap: 40px;
  }

  .app-process-header .h2,
  .app-tech-header .h2,
  .app-comparison-header .h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
}
