/* ============================================
   tyris.ch – Design System & Styles
   Based on Figma "Juda Business Agency" Template
   ============================================ */

:root {
  --accent: #d0ff00;
  --accent-hover: #b8e600;
  --dark: #000000;
  --dark-soft: #1a1a1a;
  --dark-card: #111111;
  --light: #f5f5f5;
  --white: #ffffff;
  --text-dark: #000000;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.15);
  --radius-sm: 13px;
  --radius-md: 23px;
  --radius-lg: 38px;
  --radius-xl: 52px;
  --radius-full: 100px;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --container-max: 1480px;
  --container-padding: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ============================================
   Reveal Animations
   ============================================ */

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

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(208, 255, 0, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--dark);
  color: var(--accent);
}

.btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* ============================================
   Section Tags & Headers
   ============================================ */

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--dark);
  margin-bottom: 24px;
}

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

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 800px;
}

.section-title-large {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: var(--container-max);
  z-index: 1000;
  border-radius: 66px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  top: 12px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

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

.nav-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin: -50px 0;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
  font-weight: 500;
}

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

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-sub {
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  display: block;
  margin-top: 12px;
  opacity: 0.95;
}

.accent-dot {
  color: var(--accent);
}

.accent-ch {
  color: inherit;
}

.dp-hero .accent-ch,
.dp-section-dark .accent-ch,
.cta .accent-ch,
.footer .accent-ch,
.hero .accent-ch {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--white);
  text-transform: uppercase;
}

.stat-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  justify-self: end;
}

.hero-card-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(208, 255, 0, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-card-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-card-clients {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent);
  border-radius: var(--radius-full);
  padding: 10px 20px;
}

.swiss-cross {
  flex-shrink: 0;
}

.client-count {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ============================================
   Pain Points Section
   ============================================ */

.pain-points {
  padding: 120px 0;
  background: var(--light);
}

.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.pain-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 56px;
}

.pain-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pain-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  background: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.pain-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.pain-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.pain-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(208, 255, 0, 0.06);
  top: -60px;
  right: -60px;
}

.pain-visual-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pain-visual-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
}

.pain-visual-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-light);
}

/* ============================================
   Pillars Section
   ============================================ */

.pillars {
  padding: 120px 0;
  background: var(--white);
}

.pillars-header {
  text-align: center;
  margin-bottom: 72px;
}

.pillars-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 1000px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-bottom: 24px;
}

.p-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.p-card-featured {
  background: var(--light);
  padding: 56px 48px;
  position: relative;
}

.p-card-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(208, 255, 0, 0.05);
}

.p-card-body {
  position: relative;
  z-index: 1;
}

.p-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.p-label-light {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.p-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.p-desc {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.p-desc-light {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.p-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.p-text-light {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 32px;
}

.p-link-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.p-link-light:hover {
  gap: 10px;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 24px;
  margin-top: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-sm-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-sm-accent:hover {
  background: #e6ff33;
  gap: 10px;
}

.p-link-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.p-link-accent:hover {
  gap: 10px;
}

.p-link-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.p-link-dark:hover {
  gap: 10px;
}

.p-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.p-metric {
  display: flex;
  flex-direction: column;
}

.p-metric-val {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--text-dark);
  line-height: 1.1;
}

.p-metric-key {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.p-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-card-dark {
  background: var(--dark);
  padding: 44px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-card-dark h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
}

.p-metric-inline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
}

.p-metric-val-accent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
}

.p-metric-key-light {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15px;
  color: var(--text-light);
}

.p-card-accent {
  background: var(--accent);
  padding: 40px;
  display: flex;
  align-items: center;
}

.p-card-accent-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.p-big-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  color: var(--dark);
  line-height: 1;
}

.p-big-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  color: var(--dark);
  line-height: 1.3;
}

/* Hotel Pillar */
.p-hotel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.p-hotel-left {
  padding: 64px 56px;
}

.p-hotel h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.p-hotel-right {
  padding: 64px 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.p-hotel-feat {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.p-hotel-feat:last-child {
  border-bottom: none;
}

.p-feat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--dark);
  background: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   Online-Präsenz Section
   ============================================ */

.online-presence {
  padding: 120px 0;
  background: var(--light);
}

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

.op-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.op-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.op-card {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.op-card-main {
  background: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.op-card-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(208, 255, 0, 0.05);
  top: -80px;
  right: -80px;
}

.op-card-body {
  position: relative;
  z-index: 1;
}

.op-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.op-num-light {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.op-num-dark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  background: rgba(0, 0, 0, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.op-card-main h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}

.op-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.op-tag {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--dark);
  background: rgba(0, 0, 0, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.op-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.op-card-dark {
  background: #1a1a1a;
  padding: 44px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.op-card-dark h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}

.op-text-light {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.op-metric-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.op-metric-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}

.op-metric-key {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
}

.op-card-accent {
  background: var(--accent);
  padding: 44px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.op-card-accent h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}

.op-text-dark {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

/* ============================================
   Feature Banner Section
   ============================================ */

.feature-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.feature-banner .container {
  position: relative;
  z-index: 1;
}

.feature-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-banner-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.feature-banner-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 32px;
}

.feature-banner-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 24px;
}

.glass-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

.glass-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

.ki-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ki-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
}

.ki-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.feature-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.feature-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 4px;
}

.feature-stat-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ============================================
   Partners Section
   ============================================ */

.partners {
  padding: 80px 0;
  background: var(--light);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

.partners-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-logo {
  padding: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(100%);
  opacity: 1;
}

.partner-logo-lg {
  width: 220px;
  height: 110px;
}

.partners-upcoming {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.partners-upcoming strong {
  display: inline-block;
  background: var(--dark);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 4px;
  vertical-align: middle;
}

/* ============================================
   Trust Section
   ============================================ */

.trust {
  padding: 120px 0;
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trust-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 56px;
}

.trust-highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-highlight-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  background: var(--dark);
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.trust-highlight-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-dark);
}

.trust-highlight-sub {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 2px;
}

.trust-right {
  display: flex;
  flex-direction: column;
}

.trust-row {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-row:first-child {
  padding-top: 0;
}

.trust-row:last-child {
  border-bottom: none;
}

.trust-row h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.trust-row p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 80px);
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.5;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-input:focus {
  border-color: var(--accent);
}

.cta-note {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.6;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-input:focus {
  border-color: var(--accent);
}

.footer-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(208, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.6;
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   Pricing Page
   ============================================ */

.pricing-hero {
  padding: 180px 0 80px;
  background: var(--dark);
  text-align: center;
}

.pricing-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.pricing-hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-calc {
  padding: 100px 0;
  background: var(--white);
}

.calc-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
}

.calc-header {
  margin-bottom: 48px;
}

.calc-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.calc-number-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}

.calc-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 96px;
  color: var(--accent);
  line-height: 1;
  transition: all 0.15s ease;
}

.calc-number-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--text-light);
}

.calc-slider-wrap {
  margin-bottom: 48px;
  padding: 0 8px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--slider-pct, 6%),
    rgba(255, 255, 255, 0.1) var(--slider-pct, 6%),
    rgba(255, 255, 255, 0.1) 100%
  );
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  cursor: grab;
  border: 4px solid var(--dark);
  box-shadow: 0 0 20px rgba(208, 255, 0, 0.4);
  transition: box-shadow 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 30px rgba(208, 255, 0, 0.6);
}

.calc-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  cursor: grab;
  border: 4px solid var(--dark);
  box-shadow: 0 0 20px rgba(208, 255, 0, 0.4);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.calc-breakdown {
  text-align: left;
  margin-bottom: 32px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.calc-row-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
}

.calc-row-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.calc-row-total .calc-row-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.calc-total {
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}

.calc-row-optional {
  opacity: 0.7;
}

.calc-row-optional .calc-row-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-optional-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.calc-optional-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: left;
  padding: 4px 0 16px;
  line-height: 1.5;
}

.calc-per-user {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.calc-per-user-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.calc-per-user-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.calc-cta {
  display: inline-flex;
  width: auto;
}

/* Pricing Features */

.pricing-features {
  padding: 120px 0;
  background: var(--light);
}

.pricing-features-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-features-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.pricing-features-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pf-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pf-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--dark);
  background: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pf-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.pf-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ */

.pricing-faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-hero {
  padding: 180px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.06) 0%, transparent 70%);
  top: -300px;
  right: -200px;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact-hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-main {
  padding: 100px 0 120px;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ci-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.ci-card-dark {
  background: var(--dark);
}

.ci-card-dark h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.ci-card-dark p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.ci-card-dark a {
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.ci-card-dark a:hover {
  opacity: 0.8;
}

.ci-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(208, 255, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ci-card-accent {
  background: var(--accent);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.ci-accent-inner {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.ci-accent-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  color: var(--dark);
  line-height: 1;
}

.ci-accent-unit {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
}

.ci-accent-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--light);
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(208, 255, 0, 0.15);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  align-self: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
  :root {
    --container-padding: 32px;
  }

  .hero-container {
    gap: 48px;
  }

  .feature-banner-grid {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .pain-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .p-hotel {
    grid-template-columns: 1fr;
  }

  .p-hotel-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

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

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

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

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .feature-banner-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .navbar {
    width: calc(100% - 32px);
    top: 12px;
    border-radius: 24px;
  }

  .nav-container {
    padding: 12px 20px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card {
    justify-self: start;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .pillars-title {
    text-align: left;
  }

  .p-card-featured {
    padding: 36px 28px;
  }

  .p-card-dark {
    padding: 36px 28px;
  }

  .p-hotel-left,
  .p-hotel-right {
    padding: 36px 28px;
  }

  .op-card-main {
    padding: 36px 28px;
  }

  .op-card-dark,
  .op-card-accent {
    padding: 36px 28px;
  }

  .partners-logos {
    gap: 16px;
  }

  .calc-card {
    padding: 40px 28px;
  }

  .calc-number {
    font-size: 64px;
  }

  .calc-total {
    font-size: 22px;
  }

  .calc-per-user {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
  }

  .faq-question span {
    font-size: 16px;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .ci-card-accent {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-form-card {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    align-self: stretch;
    justify-content: center;
  }

  .partner-logo {
    width: 110px;
    height: 55px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form .btn {
    justify-content: center;
  }

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

  .feature-stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-title-sub {
    font-size: 20px;
  }

  .hero-card-inner {
    padding: 32px 24px;
  }

  .p-big-number {
    font-size: 48px;
  }

  .trust-highlight-number {
    width: 72px;
    height: 72px;
    font-size: 40px;
    border-radius: 18px;
  }

  .cta-title {
    font-size: 48px;
  }
}

/* ============================================
   Detail Pages (ERP, Apps, KI, Logistik, Webshop)
   ============================================ */

.dp-hero {
  padding: 180px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.dp-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.06) 0%, transparent 70%);
  top: -300px;
  right: -200px;
}

.dp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.dp-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.dp-hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
}

.dp-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

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

.dp-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}

.dp-stat-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 6px;
}

.dp-intro {
  padding: 100px 0;
  background: var(--white);
}

.dp-intro-header {
  text-align: center;
  margin-bottom: 64px;
}

.dp-intro-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.dp-intro-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.dp-card {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.dp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.dp-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.dp-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.dp-card-accent {
  background: var(--accent);
}

.dp-card-accent .dp-card-icon {
  background: rgba(0, 0, 0, 0.15);
}

.dp-card-accent h3 {
  color: var(--dark);
}

.dp-card-accent p {
  color: rgba(0, 0, 0, 0.7);
}

.dp-card-dark {
  background: var(--dark);
}

.dp-card-dark .dp-card-icon {
  background: rgba(208, 255, 0, 0.1);
}

.dp-card-dark h3 {
  color: var(--white);
}

.dp-card-dark p {
  color: var(--text-light);
}

.dp-section {
  padding: 100px 0;
}

.dp-section-light {
  background: var(--light);
}

.dp-section-white {
  background: var(--white);
}

.dp-section-dark {
  background: var(--dark);
}

.dp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dp-split-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--dark);
  margin-bottom: 20px;
}

.dp-split-title-light {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 20px;
}

.dp-split-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.dp-split-text-light {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.dp-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
}

.dp-feature-item-light {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.dp-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dp-app-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.dp-app-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(208, 255, 0, 0.05);
  top: -60px;
  right: -60px;
}

.dp-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.dp-app-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.dp-app-card p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dp-app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dp-app-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
}

.dp-app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(208, 255, 0, 0.1);
  color: var(--accent);
}

.nav-dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(208, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   Live Demo Frame Component
   ============================================ */

.demo-showcase {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(208, 255, 0, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-showcase:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(208, 255, 0, 0.15),
    0 0 40px rgba(208, 255, 0, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 12px 32px rgba(0, 0, 0, 0.25);
}

.demo-showcase-bar {
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-dots span:nth-child(1) { background: #ff5f56; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #27c93f; }

.demo-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-url .demo-lock {
  color: #27c93f;
  font-size: 10px;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(208, 255, 0, 0.1);
  border: 1px solid rgba(208, 255, 0, 0.2);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.demo-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: demoPulse 2s infinite;
}

@keyframes demoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #fafafc;
}

.demo-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: none;
  transform-origin: top left;
  transform: scale(0.5);
  pointer-events: none;
}

.demo-showcase:hover .demo-iframe-wrap iframe {
  pointer-events: auto;
}

.demo-iframe-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, #0a0a0a, transparent);
  pointer-events: none;
  z-index: 2;
}

.dp-split-demo {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Responsive: Detail Pages */
@media (max-width: 1024px) {
  .dp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dp-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dp-split-demo {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-iframe-wrap {
    height: 340px;
  }

  .demo-iframe-wrap iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
  }

  .dp-app-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dp-grid {
    grid-template-columns: 1fr;
  }

  .dp-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .demo-iframe-wrap {
    height: 280px;
  }

  .demo-iframe-wrap iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
  }

  .demo-showcase-bar {
    padding: 8px 12px;
    gap: 8px;
  }

  .demo-dots span {
    width: 8px;
    height: 8px;
  }

  .demo-url {
    font-size: 10px;
    padding: 4px 8px;
  }

  .demo-badge {
    font-size: 8px;
    padding: 2px 8px;
  }

  .dp-app-card {
    padding: 36px 28px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    min-width: auto;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .nav-dd-icon {
    display: none;
  }
}
