/*
  Premium 3D Architecture Configurator Landing Page
  Enhanced with: glassmorphism, advanced animations, micro-interactions
*/

:root {
  --bg: #0b0f1a;
  --bg2: #060914;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --outline: rgba(255, 153, 0, 0.55);
  --orange: #ff7a18;
  --orange2: #ff9f1c;
  --brown: #3b210f;
  --brown2: #2a170b;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --shadow2: 0 10px 30px rgba(0,0,0,0.25);
  --glow-orange: 0 0 40px rgba(255, 122, 24, 0.3);
}

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

html { 
  scroll-behavior: smooth;
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Enhanced starfield with layered depth */
body::before {
  content: "";
  position: fixed;
  inset: -40px;
  z-index: -2;
  background:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.4) 0 1px, transparent 2px),
    radial-gradient(1px 1px at 25% 80%, rgba(255,255,255,0.25) 0 1px, transparent 2px),
    radial-gradient(1.2px 1.2px at 40% 40%, rgba(255,255,255,0.22) 0 1px, transparent 2px),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.32) 0 1px, transparent 2px),
    radial-gradient(1.3px 1.3px at 70% 65%, rgba(255,255,255,0.20) 0 1px, transparent 2px),
    radial-gradient(1px 1px at 85% 30%, rgba(255,255,255,0.28) 0 1px, transparent 2px),
    radial-gradient(2px 2px at 15% 60%, rgba(255, 153, 0, 0.15) 0 1px, transparent 3px),
    radial-gradient(1.5px 1.5px at 90% 45%, rgba(255, 153, 0, 0.12) 0 1px, transparent 2px);
  background-size: 900px 900px, 1100px 1100px, 800px 800px, 950px 950px, 1050px 1050px, 750px 750px, 1200px 1200px, 850px 850px;
  opacity: 0.6;
  animation: drift 40s linear infinite, twinkle 3s ease-in-out infinite alternate;
}

/* Ambient glow layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 40% 20%, rgba(24,35,72,0.6), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(15,22,45,0.7), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(255, 122, 24, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  pointer-events: none;
}

@keyframes drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-90px, 60px, 0); }
}

@keyframes twinkle {
  from { opacity: 0.5; }
  to { opacity: 0.7; }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.5);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section--hero {
  padding: 60px 0 80px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

/* Hero architectural background - Blueprint style */
.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: 
    /* Grid pattern */
    linear-gradient(rgba(255, 153, 0, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 0, 0.3) 1px, transparent 1px),
    /* Fine grid */
    linear-gradient(rgba(255, 153, 0, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 0, 0.15) 1px, transparent 1px);
  background-size: 
    100px 100px,
    100px 100px,
    20px 20px,
    20px 20px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay for depth */
.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(11, 15, 26, 0.3), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255, 122, 24, 0.03), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 122, 24, 0.03), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(11, 15, 26, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure content is above backgrounds */
.section--hero .container {
  position: relative;
  z-index: 2;
}

.section--stars {
  background: transparent;
}

.section--photo {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.90)),
    url("assets/architects-working.jpg") center/cover no-repeat fixed;
  background-position: center center;
  animation: ken-burns-slow 10s ease-in-out infinite alternate;
}

@keyframes ken-burns-slow {
  0% {
    background-size: 100% auto;
    background-position: 50% 50%;
  }
  50% {
    background-size: 110% auto;
    background-position: 48% 52%;
  }
  100% {
    background-size: 105% auto;
    background-position: 52% 48%;
  }
}

/* Add extra overlay for better text readability */
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 60% 30%, rgba(255, 122, 24, 0.18), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.30), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.section--photo .container {
  position: relative;
  z-index: 2;
}

.section--orange {
  background: 
    linear-gradient(135deg, rgba(255, 133, 49, 0.3), rgba(255, 159, 28, 0.92)),
    url("assets/investors-meeting.jpg") center/cover no-repeat fixed;
  padding: 100px 0;
  position: relative;
  animation: slow-zoom-pan 10s ease-in-out infinite alternate;
}

@keyframes slow-zoom-pan {
  0% {
    background-size: 100% auto;
    background-position: 50% 50%;
  }
  33% {
    background-size: 108% auto;
    background-position: 45% 48%;
  }
  66% {
    background-size: 103% auto;
    background-position: 55% 52%;
  }
  100% {
    background-size: 105% auto;
    background-position: 50% 50%;
  }
}

.section--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.15), transparent 50%);
  pointer-events: none;
}

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

.section--cta {
  padding: 100px 0 120px;
}

.h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.muted {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   HERO SECTION - Redesigned for Impact
------------------------------------------------------------ */

/* Top badges */
.hero__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  to { left: 100%; }
}

.badge--primary {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.15), rgba(255, 122, 24, 0.08));
  border: 1px solid rgba(255, 153, 0, 0.4);
  color: #ffb347;
}

.badge--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.badge__icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { 
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  }
  50% { 
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1);
  }
}

/* Hero content wrapper */
.hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__text {
  margin-bottom: 2rem;
}

/* Title - Compact for above-the-fold video visibility */
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}

.hero__title-line--gradient {
  background: linear-gradient(135deg, #ff7a18 0%, #ff9f1c 40%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 0.1em;
}

.hero__title-line--gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange2), transparent);
  border-radius: 3px;
  opacity: 0.6;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Feature checkmarks */
.hero__features {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
}

.hero__feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateY(-2px);
}

.hero__feature-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Video container - The centerpiece */
.hero-video {
  margin-top: 4rem; /* Reduced to fit video above fold */
  margin-bottom: 4.5rem;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Live demo label */
.hero-video__label {
  position: absolute;
  top: -16px;
  left: 32px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-video__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
  animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { 
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
    opacity: 1;
  }
  50% { 
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.1);
    opacity: 0.8;
  }
}

/* Floating stat cards */
.hero-video__stat {
  position: absolute;
  z-index: 5;
}

.hero-video__stat--1 {
  top: 15%;
  left: -80px;
}

.hero-video__stat--2 {
  bottom: 20%;
  right: -80px;
}

.stat-card {
  padding: 16px 24px;
  background: rgba(11, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 122, 24, 0.2);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 122, 24, 0.3);
}

.stat-card__value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vimeo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,165,0,0.4),
    inset 0 0 60px rgba(0,0,0,0.3);
  transform: translateZ(0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.vimeo-wrapper:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 50px 110px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,165,0,0.6),
    0 0 80px rgba(255, 122, 24, 0.3),
    inset 0 0 60px rgba(0,0,0,0.3);
}

.vimeo-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------
   LAYOUT HELPERS
------------------------------------------------------------ */
.grid2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.grid2--gap-xl { gap: 60px; }

.stack-lg { 
  display: grid; 
  gap: 40px; 
}

/* ------------------------------------------------------------
   FEATURES - Enhanced glassmorphic cards
------------------------------------------------------------ */
.featureCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 
    0 10px 40px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 500ms ease;
}

.card:hover::before {
  opacity: 1;
}

.card--outline {
  border-color: var(--outline);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}

.card--outline:hover {
  border-color: rgba(255, 153, 0, 0.8);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(255, 122, 24, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.card--wide {
  grid-column: 1 / -1;
}

.card__title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.card__text {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------
   BENEFITS - Enhanced with better animations
------------------------------------------------------------ */
.benefitsHeader {
  margin-bottom: 40px;
}

.benefitsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
}

.benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255, 153, 0, 0.4);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit__dot {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: 2px solid rgba(255, 153, 0, 0.3);
  box-shadow: 
    0 0 0 4px rgba(255, 153, 0, 0.12),
    0 0 20px rgba(255, 122, 24, 0.4);
  margin-top: 4px;
  position: relative;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 0 0 4px rgba(255, 153, 0, 0.12),
      0 0 20px rgba(255, 122, 24, 0.4);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 
      0 0 0 8px rgba(255, 153, 0, 0.08),
      0 0 30px rgba(255, 122, 24, 0.6);
  }
}

.benefit__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.benefit__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   ORANGE SECTION PANELS - Premium glassmorphism
------------------------------------------------------------ */
.panel {
  background: linear-gradient(135deg, 
    rgba(59,33,15,0.95) 0%, 
    rgba(42,23,11,0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 600ms ease;
}

.panel:hover::before {
  opacity: 1;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.panel__title {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover {
  background: rgba(0,0,0,0.3);
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateX(8px);
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 2px solid rgba(255, 153, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(0,0,0,0.4));
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.step__num::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.step:hover .step__num::before {
  opacity: 1;
}

.step__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.step__text {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.useCases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.useCase {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.useCase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.useCase:hover::before {
  transform: scaleX(1);
}

.useCase:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.useCase__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.useCase__text {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-size: 15px;
}

/* ------------------------------------------------------------
   INTERACTIVE ICON LIST
------------------------------------------------------------ */
.iconList {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.iconItem {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.iconItem:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateX(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.iconItem__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(255, 122, 24, 0.05));
  border: 1px solid rgba(255, 153, 0, 0.3);
  font-size: 24px;
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.2);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.iconItem:hover .iconItem__icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 40px rgba(255, 122, 24, 0.4);
}

.iconItem__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.iconItem__text {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   MEDIA CARDS
------------------------------------------------------------ */
.mediaCard {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mediaCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.mediaCard:hover::after {
  opacity: 1;
}

.mediaCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(255, 122, 24, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
  border-color: rgba(255, 153, 0, 0.4);
}

.mediaCard--lg { max-width: 520px; height: 250px; }
.mediaCard--md { max-width: 520px; height: 220px; }
.mediaCard--xl { height: 400px; }

.mediaCard__img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mediaCard:hover .mediaCard__img {
  transform: scale(1.05);
}

.mediaCard__img--monitor { background-image: url("assets/monitor-1.jpg"); }
.mediaCard__img--monitor2 { background-image: url("assets/monitor-2.jpg"); }
.mediaCard__img--neon { background-image: url("assets/neon-1.jpg"); }

.mediaCard__img--monitor,
.mediaCard__img--monitor2,
.mediaCard__img--neon {
  background-color: rgba(255,255,255,0.05);
  background-blend-mode: overlay;
}

/* ------------------------------------------------------------
   PRICING - Modern Package Cards
------------------------------------------------------------ */
.section--pricing {
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.pricing-subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Pricing Category */
.pricing-category {
  margin-bottom: 80px;
}

.pricing-category__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.pricing-category__icon {
  font-size: clamp(28px, 3.5vw, 38px);
}

.pricing-category__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 40px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-grid--furniture {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 153, 0, 0.4);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 122, 24, 0.2);
}

/* Featured Card */
.pricing-card--featured {
  border-color: rgba(255, 153, 0, 0.5);
  background: rgba(255, 122, 24, 0.06);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 122, 24, 0.15);
}

.pricing-card--featured::before {
  transform: scaleX(1);
}

.pricing-card--featured:hover {
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 122, 24, 0.3);
}

/* Compact Card (for furniture packages) */
.pricing-card--compact {
  padding: 24px;
}

.pricing-card--compact .pricing-card__header {
  margin-bottom: 20px;
}

/* Badge */
.pricing-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #0b0f1a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.4);
}

/* Card Header */
.pricing-card__header {
  margin-bottom: 28px;
  text-align: center;
}

.pricing-card__name {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.95);
}

.pricing-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.pricing-card__period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Card Features */
.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.feature-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-group__title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 153, 0, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.feature__icon {
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
  width: 18px;
  display: inline-block;
}

.feature--disabled {
  color: rgba(255, 255, 255, 0.4);
}

.feature--disabled .feature__icon {
  color: rgba(255, 255, 255, 0.3);
}

.feature--note {
  padding: 12px;
  background: rgba(255, 122, 24, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  margin-top: 8px;
}

.feature__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* Button Sizes */
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Pricing Note */
.pricing-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.pricing-note__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pricing-note__content {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-note__content strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Pricing CTA */
.pricing-cta {
  text-align: center;
  margin-top: 60px;
}

.pricing-cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ------------------------------------------------------------
   CTA - Enhanced
------------------------------------------------------------ */
.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.ctaBullets {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.ctaBullet {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  padding: 8px 0;
  transition: all 300ms ease;
}

.ctaBullet:hover {
  transform: translateX(6px);
  color: rgba(255,255,255,0.98);
}

.ctaBullet__dot {
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: 2px solid rgba(255, 153, 0, 0.3);
  box-shadow: 
    0 0 0 4px rgba(255, 153, 0, 0.1),
    0 0 20px rgba(255, 122, 24, 0.4);
}

.cta__form {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  padding: 28px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.field span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.95);
  outline: none;
  font-family: inherit;
  font-size: 15px;
  transition: all 300ms ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

input:focus, textarea:focus {
  border-color: rgba(255, 153, 0, 0.6);
  background: rgba(255,255,255,0.08);
  box-shadow: 
    0 0 0 4px rgba(255, 153, 0, 0.15),
    0 0 30px rgba(255, 122, 24, 0.2);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   BUTTONS - Premium interactions
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 600ms ease, height 600ms ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  color: #0b0f1a;
  border: none;
  box-shadow: 
    0 10px 30px rgba(255, 122, 24, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange2) 0%, var(--orange) 100%);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
  border-radius: inherit;
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255, 153, 0, 0.4);
}

.btn--full { width: 100%; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(255, 122, 24, 0.3);
}

.btn--primary:hover {
  box-shadow: 
    0 20px 50px rgba(255, 122, 24, 0.5),
    0 0 50px rgba(255, 122, 24, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ------------------------------------------------------------
   REVEAL ANIMATIONS
------------------------------------------------------------ */
[data-io] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-io="fade-left"] { 
  transform: translate3d(40px, 0, 0); 
}

[data-io="fade-right"] { 
  transform: translate3d(-40px, 0, 0); 
}

[data-io="fade-up"] { 
  transform: translate3d(0, 40px, 0); 
}

[data-io="scale"] { 
  transform: scale(0.9);
}

.is-visible[data-io] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-visible[data-io="scale"] {
  transform: scale(1);
}

/* Text reveal animation */
@keyframes text-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title-line {
  display: block;
  animation: text-reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero__title-line:nth-child(1) { animation-delay: 100ms; }
.hero__title-line:nth-child(2) { animation-delay: 250ms; }

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 980px) {
  .section { padding: 64px 0; }
  .section--hero { padding: 50px 0 64px; }
  
  .grid2 { 
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefitsGrid { 
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .useCases { 
    grid-template-columns: 1fr;
  }
  
  .cta { 
    grid-template-columns: 1fr;
  }
  
  .featureCards { 
    grid-template-columns: 1fr;
  }
  
  .mediaCard--lg, .mediaCard--md { 
    max-width: 100%; 
  }
  
  .mediaCard--xl { 
    height: 300px; 
  }

  /* Hero adjustments for tablet */
  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__features {
    gap: 16px;
  }

  .hero-video__stat--1 {
    left: -60px;
  }

  .hero-video__stat--2 {
    right: -60px;
  }

  .stat-card {
    padding: 12px 18px;
  }

  .stat-card__value {
    font-size: 28px;
  }

  /* Pricing responsive for tablets */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid--furniture {
    max-width: 600px;
  }

  .pricing-category {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  /* Hide floating stats on smaller tablets */
  .hero-video__stat {
    display: none;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .section { padding: 48px 0; }
  .section--hero { padding: 40px 0 48px; }
  
  .hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero__title-line--gradient::after {
    width: 80px;
    height: 3px;
  }

  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
  
  .h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .hero__features {
    width: 100%;
  }

  .hero__feature {
    width: 100%;
    justify-content: center;
  }

  .hero-video {
    margin-top: 2rem;
  }

  .hero-video__label {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mediaCard--lg { height: 200px; }
  .mediaCard--md { height: 180px; }
  .mediaCard--xl { height: 220px; }
  
  .card, .panel {
    padding: 20px;
  }
  
  .iconItem {
    grid-template-columns: 48px 1fr;
  }
  
  .iconItem__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  /* Pricing mobile styles */
  .section--pricing {
    padding: 60px 0;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-category {
    margin-bottom: 50px;
  }

  .pricing-category__title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card__header {
    margin-bottom: 20px;
  }

  .pricing-card__name {
    font-size: 24px;
  }

  .pricing-card__amount {
    font-size: 28px;
  }

  .pricing-note {
    padding: 16px;
    font-size: 14px;
  }

  .pricing-cta {
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  body::before { 
    animation: none; 
  }
  
  [data-io] { 
    transition: none; 
  }
  
  .btn, .card, .panel, .useCase, .mediaCard { 
    transition: none; 
  }
  
  /* Disable background animations for accessibility */
  .section--photo,
  .section--orange {
    animation: none !important;
  }
}

/* ------------------------------------------------------------
   CUSTOM SCROLLBAR
------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  border-radius: 6px;
  border: 2px solid var(--bg2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--orange2), var(--orange));
}


/* ------------------------------------------------------------
   CONTACT FORM STATUS + HONEYPOT
------------------------------------------------------------ */
.formStatus{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
  min-height: 44px;
  display: grid;
  align-items: center;
}

.formStatus:empty{
  display: none;
}

.formStatus.is-ok{
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.10);
}

.formStatus.is-error{
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.10);
}

.formStatus.is-sending{
  border-color: rgba(255, 153, 0, 0.35);
  background: rgba(255, 153, 0, 0.08);
}

.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
/* ------------------------------------------------------------
   DEMO TEASER SECTION
------------------------------------------------------------ */

.demoTeaser{
  padding: 100px 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,153,0,0.15), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255,200,0,0.12), transparent 60%),
    var(--color-bg);
  text-align: center;
}

.demoTeaser__inner{
  max-width: 820px;
  margin: 0 auto;
}

.demoTeaser__title{
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.demoTeaser__text{
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.demoTeaser__cta{
  padding: 16px 36px;
  font-size: 16px;
  transition: all 0.25s ease;
}

.demoTeaser__cta:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,153,0,0.3);
}