/* ============================================
   HizmetX — Premium Website Styles
   ============================================ */

:root {
  --bg: #f4f6f9;
  --bg-elevated: #ffffff;
  --bg-dark: #151923;
  --bg-dark-elevated: #1e2433;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-on-dark: #f1f5f9;
  --accent: #f37021;
  --accent-dark: #d95a0f;
  --accent-glow: rgba(243, 112, 33, 0.35);
  --accent-secondary: #6366f1;
  --accent-warm: #f59e0b;
  --nav-dark: #1a1f2e;
  --border: rgba(15, 23, 42, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 80px var(--accent-glow);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, calc(100% - 48px));
  margin-inline: auto;
}

/* Ambient backgrounds */
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.ambient-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.ambient-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: float 25s ease-in-out infinite reverse;
}

.ambient-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography accents */
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}

.section-dark em {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(243, 112, 33, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  gap: 1px;
}

.logo-name {
  display: block;
  white-space: nowrap;
}

.logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer .logo-text small { display: none; }

.nav-links a.active { color: var(--accent); }

.logo-mark {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text .logo-x {
  background: linear-gradient(135deg, #fb923c, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.header .logo-text .logo-x {
  background: linear-gradient(135deg, #fb923c, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header.scrolled .logo-text .logo-x {
  background: linear-gradient(135deg, #f97316, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--nav-dark);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  transition: var(--transition);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.open .nav-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .nav-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open { overflow: hidden; }

/* Premium Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--nav-dark);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-header .logo-text small { color: rgba(255, 255, 255, 0.5); }

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.mobile-menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 14px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.open .mobile-menu-link {
  animation: menuSlideIn 0.4s ease forwards;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { animation-delay: 0.12s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { animation-delay: 0.16s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { animation-delay: 0.2s; }

@keyframes menuSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: rgba(243, 112, 33, 0.15);
  color: white;
}

.mobile-menu-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 28px;
}

.mobile-menu-divider {
  margin: 28px 0 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
}

.mobile-menu-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-menu-module {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-module:hover {
  background: rgba(243, 112, 33, 0.12);
  border-color: rgba(243, 112, 33, 0.3);
  color: white;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-phone {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px;
}

.mobile-menu-phone:hover { color: var(--accent); }

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header {
  background: transparent;
}

.header .logo-text,
.header .nav-links a { color: rgba(255, 255, 255, 0.9); }

.header .nav-links a:hover,
.header .nav-links a.active { color: white; }

.header .logo-text small { color: rgba(255, 255, 255, 0.45); }

.header .btn-ghost { color: rgba(255, 255, 255, 0.85); }

.header.scrolled .nav-links a,
.header.scrolled .logo-text { color: var(--text); }

.header.scrolled .logo-text small { color: var(--text-muted); }

.header.scrolled .nav-toggle { background: var(--nav-dark); }

.header.scrolled .btn-ghost { color: var(--text-muted); }

/* Hero */
.hero {
  padding: calc(var(--header-h) + 80px) 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(243, 112, 33, 0.08);
  border: 1px solid rgba(243, 112, 33, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: -10px;
}

.avatars span:first-child { margin-left: 0; }

.avatars span:last-child {
  background: var(--accent);
  color: white;
}

.hero-trust p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Dashboard mockup */
.hero-visual {
  position: relative;
}

.dashboard-mock {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.dashboard-mock:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }

.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-body {
  display: flex;
  min-height: 320px;
}

.mock-sidebar {
  width: 56px;
  background: #f1f5f9;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-nav-item {
  height: 32px;
  border-radius: 8px;
  background: #e2e8f0;
}

.mock-nav-item.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.mock-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-stat {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px;
}

.mock-stat-label {
  display: block;
  height: 8px;
  width: 60%;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-stat-value {
  display: block;
  height: 16px;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 4px;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 10px;
}

.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent) 0%, rgba(14, 165, 233, 0.3) 100%);
  border-radius: 4px 4px 0 0;
  animation: growBar 1s ease forwards;
}

@keyframes growBar {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
}

.mock-row span:first-child {
  flex: 1;
  height: 10px;
  background: #e2e8f0;
  border-radius: 4px;
}

.mock-row span:nth-child(2) {
  width: 60px;
  height: 10px;
  background: #e2e8f0;
  border-radius: 4px;
}

.status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-open { background: #f59e0b; }
.status-progress { background: var(--accent); }
.status-done { background: #22c55e; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card svg {
  color: var(--accent);
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.floating-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.card-1 {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats bar */
.stats-bar {
  padding: 48px 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: inline;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
}

.section-dark .section-header p {
  color: var(--text-light);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Modules */
.modules-showcase {
  max-width: 960px;
  margin: 0 auto;
}

.module-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.module-tab {
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.module-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.module-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.module-panel {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 360px;
}

.module-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.module-content.active {
  display: grid;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.module-text > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.module-text ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-on-dark);
}

.module-text li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.module-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-mini-card {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.module-mini-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.module-mini-card span {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.module-mini-card small {
  font-size: 13px;
  color: var(--text-light);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  margin-top: 56px;
  opacity: 0.3;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg) 0%, #f0f9ff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--accent-warm);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

.testimonial footer span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-price .amount.custom {
  font-size: 2rem;
}

.pricing-price .period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(14, 165, 233, 0.03);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-content p {
  color: var(--text-light);
  font-size: 16px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input {
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition);
}

.cta-form input::placeholder {
  color: var(--text-light);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.cta-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: -16px;
}

.cta-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: white;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.footer-legal a:hover {
  color: white;
}

/* Legal / policy documents */
.legal-doc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.legal-doc .legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.legal-doc h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-doc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
}

.legal-doc li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.legal-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-doc a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc a:hover {
  color: var(--accent);
}

.legal-doc code {
  display: inline-block;
  font-size: 13px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  word-break: break-all;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.legal-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.legal-links a:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  color: var(--accent-dark);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .module-content,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .floating-card { display: none; }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle { display: flex; }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .module-panel {
    padding: 28px;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ============================================
   Inner Pages & Program Screenshots
   ============================================ */

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 56px;
  background: linear-gradient(180deg, var(--nav-dark) 0%, var(--bg-dark) 100%);
  color: var(--text-on-dark);
}

.page-hero .container { max-width: 900px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { opacity: 0.5; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
}

.page-content { padding: 80px 0; }

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-block:last-child { margin-bottom: 0; }

.content-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.content-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.content-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.content-text li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.content-text li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.screenshot-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-elevated);
}

.screenshot-frame img {
  width: 100%;
  display: block;
}

.screenshot-frame figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.screenshot-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: var(--transition);
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.screenshot-card img { width: 100%; display: block; }

.screenshot-card div {
  padding: 16px 20px;
}

.screenshot-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.screenshot-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card-link {
  display: block;
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.module-card-link:hover {
  border-color: rgba(243, 112, 33, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.module-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.module-card-link h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.module-card-link p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.module-card-link span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.hero-screenshot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-screenshot img { width: 100%; display: block; }

.hero-real .hero-grid { align-items: center; }

.hero-real .hero-title em { color: var(--accent); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-stat {
  text-align: center;
  padding: 28px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-stat span { font-size: 14px; color: var(--text-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 15px;
  color: var(--text-muted);
}

.contact-info-card a:hover { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: -8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.12);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.program-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.program-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}

.program-nav a:hover,
.program-nav a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

@media (max-width: 1024px) {
  .content-block,
  .contact-grid,
  .module-grid,
  .screenshot-gallery { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* ============================================
   Metro Casual Slider
   ============================================ */

.metro-slider {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 32px) 0 0;
  background: var(--nav-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.metro-grid-bg {
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

.metro-slider-inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.metro-slider-track {
  position: relative;
  flex: 1;
  min-height: 520px;
}

.metro-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.55s;
}

.metro-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.metro-tile {
  border-radius: 2px;
  overflow: hidden;
}

.metro-tile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  color: white;
}

.tile-orange { background: linear-gradient(145deg, #f37021 0%, #c44e0a 100%); }
.tile-indigo { background: linear-gradient(145deg, #6366f1 0%, #4338ca 100%); }
.tile-red { background: linear-gradient(145deg, #ef4444 0%, #b91c1c 100%); }
.tile-teal { background: linear-gradient(145deg, #0d9488 0%, #0f766e 100%); }

.metro-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-bottom: 20px;
}

.metro-tile-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.metro-tile-content h1 strong {
  font-weight: 800;
  display: block;
}

.metro-tile-content p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  opacity: 0.9;
  max-width: 420px;
  margin-bottom: 28px;
}

.metro-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-metro-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transition: var(--transition);
}

.btn-metro-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.metro-tile-content .btn-primary {
  border-radius: 2px;
  background: white;
  color: var(--nav-dark);
  box-shadow: none;
}

.metro-tile-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.metro-tile-visual {
  background: #0a0c12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: stretch;
}

.metro-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.metro-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 16px 0;
}

.metro-nav {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.metro-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.metro-dots {
  display: flex;
  gap: 8px;
}

.metro-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
}

.metro-dot.active,
.metro-dot:hover {
  background: var(--accent);
  transform: scale(1.15);
}

.metro-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  margin-top: auto;
}

.metro-ticker-track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.metro-ticker-track span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats-metro {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .metro-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 4px;
  }

  .metro-tile-visual { min-height: 280px; }

  .metro-slider-track { min-height: 640px; }
}

@media (max-width: 768px) {
  .metro-slider {
    min-height: auto;
    padding-top: calc(var(--header-h) + 16px);
  }

  .metro-slider-track { min-height: 580px; }

  .metro-tile-content {
    padding: 24px 20px;
  }

  .metro-tile-content h1 strong { display: inline; }

  .metro-slide-actions { flex-direction: column; }
  .metro-slide-actions .btn { width: 100%; justify-content: center; }

  .metro-tile-visual { min-height: 220px; }

  .metro-nav { width: 40px; height: 40px; }

  .container { width: calc(100% - 24px); }
}

/* ============================================
   Blog Section
   ============================================ */

.section-blog {
  background: linear-gradient(180deg, var(--bg) 0%, #eef1f6 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(243, 112, 33, 0.2);
}

.blog-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nav-dark);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body time {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.blog-card-body h3 a {
  color: var(--text);
  transition: color var(--transition);
}

.blog-card-body h3 a:hover { color: var(--accent); }

.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.blog-read-more:hover { text-decoration: underline; }

.blog-footer {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   Wizard Application Form
   ============================================ */

.section-wizard {
  background: var(--nav-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-wizard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.wizard-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.wizard-intro h2 em {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
}

.wizard-intro > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.wizard-intro .section-tag { color: var(--accent); }

.wizard-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.wizard-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
}

.wizard-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.wizard-progress {
  height: 4px;
  background: #e8ecf1;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 28px;
}

.wizard-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-steps-indicator {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 32px;
}

.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.wizard-step-dot span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  background: #f1f5f9;
  color: var(--text-muted);
  border: 2px solid transparent;
  transition: var(--transition);
}

.wizard-step-dot small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wizard-step-dot.active span,
.wizard-step-dot.done span {
  background: var(--accent);
  color: white;
}

.wizard-step-dot.done span {
  background: #22c55e;
}

.wizard-step-dot.active small { color: var(--accent); }
.wizard-step-dot.done small { color: #22c55e; }

.wizard-panel {
  display: none;
  animation: wizardFade 0.35s ease;
}

.wizard-panel.active { display: block; }

@keyframes wizardFade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-panel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.wizard-panel-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wizard-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wizard-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.wizard-field input,
.wizard-field select,
.wizard-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition: var(--transition);
}

.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.12);
}

.wizard-field input.invalid,
.wizard-field select.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.wizard-checkboxes {
  border: none;
  padding: 0;
  margin: 0;
}

.wizard-checkboxes legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.wizard-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.wizard-check:hover {
  border-color: rgba(243, 112, 33, 0.35);
  background: rgba(243, 112, 33, 0.03);
}

.wizard-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.wizard-check input:checked + span {
  font-weight: 600;
  color: var(--accent-dark);
}

.wizard-consent {
  margin-top: 20px;
  border: none;
  padding: 0;
}

.wizard-consent a {
  color: var(--accent);
  text-decoration: underline;
}

/* Radio & fieldset UX */
.wizard-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.wizard-fieldset legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.wizard-fieldset.invalid legend {
  color: #ef4444;
}

.wizard-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wizard-radio-group-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wizard-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  background: var(--bg);
}

.wizard-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard-radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(243, 112, 33, 0.08);
  color: var(--accent-dark);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
}

.wizard-radio:hover {
  border-color: rgba(243, 112, 33, 0.4);
}

.wizard-conditional {
  padding: 16px;
  background: #f8fafc;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  animation: wizardFade 0.3s ease;
}

/* Contact page light wizard */
.section-wizard-light {
  background: var(--bg);
  padding: 80px 0;
}

.section-wizard-light .wizard-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.section-wizard-light .wizard-intro h2 em {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
}

.section-wizard-light .wizard-intro > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-wizard-light .contact-info-card {
  margin-bottom: 12px;
  padding: 18px 20px;
}

.wizard-benefits-light li {
  color: var(--text-muted);
}

.wizard-benefits-light li::before {
  background: var(--accent);
}

.wizard-layout-contact .wizard-intro .section-tag {
  color: var(--accent);
}

.wizard-mount { min-width: 0; }

.wizard-summary {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.wizard-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.wizard-summary-row:last-child { border-bottom: none; }

.wizard-summary-row strong {
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.wizard-summary-row span {
  text-align: right;
  font-weight: 600;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.wizard-btn-prev { min-width: 110px; }
.wizard-btn-next,
.wizard-btn-submit { min-width: 140px; margin-left: auto; }

.wizard-actions .wizard-hidden,
.wizard-btn-next.wizard-hidden,
.wizard-btn-submit.wizard-hidden {
  display: none !important;
}

.wizard-btn-submit {
  min-width: 220px;
}

.wizard-verify {
  text-align: left;
}

.wizard-verify-eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.wizard-verify .wizard-btn-verify {
  width: 100%;
  margin: 8px 0 0;
  min-width: 0;
}

.wizard-verify-links {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.wizard-link-btn {
  border: 0;
  background: none;
  padding: 0;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.wizard-code-input {
  font-size: 1.5rem !important;
  letter-spacing: 0.35em;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.wizard-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
}

.wizard-alert[hidden] { display: none; }

.wizard-alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.wizard-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.wizard-success {
  text-align: center;
  padding: 40px 20px;
}

.wizard-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
}

.wizard-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.wizard-success p,
.wizard-success-lead {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 420px;
  margin-inline: auto;
}

.wizard-success-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 420px;
  text-align: left;
}

.wizard-success-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.wizard-success-list li:last-child { border-bottom: none; }

.wizard-success-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #16a34a;
  font-weight: 700;
}

.wizard-card.completed .wizard-progress,
.wizard-card.completed .wizard-steps-indicator,
.wizard-card.completed .wizard-panel,
.wizard-card.completed .wizard-actions {
  display: none !important;
}

.wizard-success[hidden] { display: none; }

.wizard-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.5;
}

.wizard-error[hidden] { display: none; }

.wizard-legal-item input.invalid + span,
.wizard-check input.invalid + span {
  outline: 1px solid #ef4444;
  border-radius: 8px;
}

.wizard-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wizard-legal-modal[hidden] { display: none; }

.wizard-legal-dialog {
  width: min(720px, 100%);
  max-height: min(80vh, 720px);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wizard-legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.wizard-legal-head h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.wizard-legal-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.wizard-legal-body {
  padding: 20px;
  overflow: auto;
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.wizard-legal-body h2,
.wizard-legal-body h3 {
  color: var(--text);
  margin: 0 0 12px;
}

.wizard-legal-body p { margin-bottom: 12px; }

.wizard-legal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}

.wizard-legal-link,
.w-legal-link {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wizard-card.completed .wizard-success {
  display: block;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 24px 20px; }
  .wizard-field-row { grid-template-columns: 1fr; }
  .wizard-steps-indicator { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .wizard-steps-indicator small { display: none; }
  .wizard-step-dot span { width: 28px; height: 28px; font-size: 12px; }
  .wizard-radio-group,
  .wizard-radio-group-3 { grid-template-columns: 1fr; }
  .wizard-actions { flex-wrap: wrap; }
  .wizard-btn-next,
  .wizard-btn-submit { width: 100%; margin-left: 0; }
  .wizard-btn-prev { flex: 1; }
}
