/* ==========================================================================
   TOOLTIP STUDIO — SYSTEM DESIGN CSS (LIGHT & DARK THEMES)
   ========================================================================== */

/* Light Theme Variables (Default) */
:root, [data-theme="light"] {
  --bg: #f8fafc;
  --bg-subtle: #f1f5f9;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --blue-primary: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-border: #bfdbfe;
  --purple-accent: #7c3aed;
  --cyan-accent: #0284c7;
  --header-bg: rgba(248, 250, 252, 0.85);
  --header-border: rgba(226, 232, 240, 0.8);
  --device-bg: #ffffff;
  --device-border: #1e293b;
  --screen-bg: #f8fafc;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 48px -8px rgba(37, 99, 235, 0.12), 0 8px 24px -4px rgba(15, 23, 42, 0.04);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg: #0b0f19;
  --bg-subtle: #131b2e;
  --card-bg: #111827;
  --card-border: #1f293d;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --blue-primary: #3b82f6;
  --blue-dark: #60a5fa;
  --blue-light: rgba(59, 130, 246, 0.15);
  --blue-border: rgba(59, 130, 246, 0.3);
  --purple-accent: #a855f7;
  --cyan-accent: #38bdf8;
  --header-bg: rgba(11, 15, 25, 0.85);
  --header-border: rgba(31, 41, 61, 0.8);
  --device-bg: #1e293b;
  --device-border: #334155;
  --screen-bg: #0f172a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px -4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 48px -8px rgba(59, 130, 246, 0.2);
}

* {
  box-sizing: border-box;
}

/* Global Layout & Overflow Protection */
html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
}

/* Ambient Glow Orbs Wrapper */
.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.6;
}

.glow-1 {
  width: 500px;
  height: 500px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 450px;
  height: 450px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  top: 300px;
  left: -100px;
}

.glow-3 {
  width: 600px;
  height: 600px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: 10%;
  right: -150px;
}


/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.brand:hover img {
  transform: scale(1.03);
}

/* Dual Logo Switcher Rules */
[data-theme="light"] .logo-dark {
  display: none !important;
}

[data-theme="light"] .logo-light {
  display: block !important;
}

[data-theme="dark"] .logo-light {
  display: none !important;
}

[data-theme="dark"] .logo-dark {
  display: block !important;
}

nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 99px;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

nav a.nav-contact {
  background: var(--text);
  color: var(--bg);
  margin-left: 4px;
}

nav a.nav-contact:hover {
  background: var(--blue-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* Language & Theme Toggle Buttons */
.lang-toggle-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  margin-left: 8px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.lang-toggle-btn:hover {
  transform: scale(1.05);
  border-color: var(--blue-border);
  color: var(--blue-primary);
}

.theme-toggle-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-left: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}


.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--blue-border);
}

[data-theme="light"] .moon-icon {
  display: block;
}

[data-theme="light"] .sun-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue-primary);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Hero Section */
.hero {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0 100px;
  min-height: calc(100vh - 80px);
}

h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--purple-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 540px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 28px 0 36px;
  font-weight: 450;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}

.cta-primary:hover {
  transform: translateY(-3px);
  background: var(--blue-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-secondary {
  background: var(--card-bg);
  color: var(--text-secondary);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: var(--blue-border);
  background: var(--blue-light);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--card-border);
}

/* Device Art Mockup Showcase */
.hero-art {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.float-anim-delayed {
  animation: float 6s ease-in-out -3s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}

.device {
  position: absolute;
  width: 230px;
  height: 460px;
  background: var(--device-bg);
  border-radius: 40px;
  padding: 10px;
  border: 4px solid var(--device-border);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: all 0.3s ease;
}

.device-speaker {
  width: 60px;
  height: 6px;
  background: var(--device-border);
  border-radius: 99px;
  margin: 4px auto 10px;
}

.device-a {
  left: 20px;
  top: 40px;
  --rot: -8deg;
  transform: rotate(-8deg);
}

.device-b {
  right: 20px;
  top: 10px;
  --rot: 8deg;
  transform: rotate(8deg);
  z-index: 1;
}

.screen {
  height: calc(100% - 20px);
  background: var(--screen-bg);
  border-radius: 30px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), #60a5fa);
}

.ui-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-title-bar {
  width: 60%;
  height: 10px;
  background: var(--text-muted);
  opacity: 0.3;
  border-radius: 99px;
}

.ui-sub-bar {
  width: 40%;
  height: 6px;
  background: var(--text-muted);
  opacity: 0.2;
  border-radius: 99px;
}

.highlight-card {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  border-radius: 18px;
  padding: 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.card-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.card-title {
  width: 70px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 99px;
  margin-bottom: 6px;
}

.card-bar {
  width: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 99px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grid-box {
  height: 65px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.list-item i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.list-item .line {
  height: 8px;
  flex: 1;
  background: var(--card-border);
  border-radius: 99px;
}

/* Game Screen */
.game-screen {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--bg-subtle) 100%);
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.game-hud {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
}

.hud-pill {
  background: var(--text);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 99px;
}

.hud-score {
  color: var(--blue-primary);
  background: var(--card-bg);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--blue-border);
}

.game-center-graphic {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}

.graphic-ring {
  position: absolute;
  inset: 0;
  border: 8px solid var(--blue-border);
  border-top-color: var(--blue-primary);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.graphic-core {
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.game-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-bar {
  height: 10px;
  background: var(--card-bg);
  border-radius: 99px;
  padding: 2px;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  background: var(--blue-primary);
  border-radius: 99px;
}

.progress-bar .fill.alt {
  background: var(--purple-accent);
}

/* Floating Info Badges */
.floating-badge {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.badge-top {
  top: 20px;
  right: -10px;
}

.badge-bottom {
  bottom: 40px;
  left: -20px;
}

.badge-icon {
  font-size: 22px;
}

.badge-text strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.badge-text small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sections General */
.section {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
}

.section-lead {
  max-width: 600px;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 18px;
}

/* Studio Services Grid */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.pill {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pill:hover {
  transform: translateY(-8px);
  border-color: var(--blue-border);
  box-shadow: var(--shadow-lg);
}

.pill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.icon-blue {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.icon-purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-accent);
}

.icon-cyan {
  background: rgba(2, 132, 199, 0.15);
  color: var(--cyan-accent);
}

.pill-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
}

.pill h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.pill p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.pill-features {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

.pill-features li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-features li::before {
  content: '✓';
  color: var(--blue-primary);
  font-weight: 800;
}

/* Approach Process Section */
.approach-section {
  padding: 40px 0;
}

.approach-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.approach-header {
  margin-bottom: 36px;
}

.eyebrow-sm {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue-primary);
}

.approach-header h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 0;
}

.approach-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-card {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.step-card:hover {
  background: var(--card-bg);
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
}

.step-card.highlight {
  background: var(--blue-light);
  border-color: var(--blue-border);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-primary);
}

.step-card strong {
  font-size: 15px;
  color: var(--text);
}

.step-card small {
  font-size: 12px;
  color: var(--text-muted);
}

.step-arrow {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 18px;
}

/* Products Section */
.product-card {
  margin-top: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 24px;
}

.product-card-main {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.product-app-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
}

.product-card:hover .product-app-icon {
  transform: scale(1.05);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue-primary), var(--purple-accent));
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-border);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
}

.status-pulse {
  width: 6px;
  height: 6px;
  background: #d97706;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.product-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
}

.product-content p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 650px;
  margin: 0 0 24px;
}

.product-tags {
  display: flex;
  gap: 10px;
}

.product-tags span {
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
}

.arrow-btn {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.product-card:hover .arrow-btn {
  background: var(--blue-primary);
  color: white;
  transform: scale(1.1) rotate(45deg);
}

/* Footer */
.site-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  margin-top: 100px;
  padding: 70px 0 50px;
}

.footer-container {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
  display: block;
}

.footer-links-col, .footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--blue-primary);
}

.email-link {
  text-decoration: none;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 15px;
}

.email-link:hover {
  text-decoration: underline;
}

.copyright {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: auto;
    gap: 40px;
  }

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

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

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-art {
    height: 520px;
    margin-top: 10px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .device {
    width: 200px;
    height: 410px;
    border-radius: 34px;
    padding: 8px;
  }

  .device-a {
    left: 10px;
    top: 30px;
  }

  .device-b {
    right: 10px;
    top: 5px;
  }

  .floating-badge {
    padding: 10px 14px;
  }

  .badge-top {
    right: 0px;
    top: 0px;
  }

  .badge-bottom {
    left: 0px;
    bottom: 5px;
  }

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

  .approach-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    width: calc(100% - 24px);
    padding: 12px 0;
  }

  nav a:not(.nav-contact) {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-art {
    height: 420px;
    max-width: 340px;
    overflow: visible;
    position: relative;
  }

  .device {
    width: 155px;
    height: 310px;
    border-radius: 26px;
    padding: 6px;
    border-width: 3px;
  }

  .device-a {
    left: 0px;
    top: 25px;
  }

  .device-b {
    right: 0px;
    top: 5px;
  }

  .screen {
    border-radius: 18px;
    padding: 12px 8px;
  }

  .floating-badge {
    padding: 8px 12px;
    max-width: 165px;
    border-radius: 12px;
  }

  .badge-top {
    right: -5px;
    top: 5px;
  }

  .badge-bottom {
    left: -5px;
    bottom: 5px;
  }

  .badge-text strong {
    font-size: 11px;
  }

  .badge-text small {
    font-size: 10px;
  }

  .product-card {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .product-card-main {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .product-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .approach-container {
    padding: 32px 20px;
  }

  .section {
    padding: 60px 0;
  }
}



