/* ============================================================
   ORDEV.IO — Modern Website Stylesheet
   ============================================================ */

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

:root {
  /* Brand Colors */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;

  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;

  --purple-500: #a855f7;
  --purple-600: #9333ea;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* Semantic */
  --bg:         #0a0f1e;
  --bg-card:    #111827;
  --bg-card-2:  #1a2235;
  --border:     rgba(255,255,255,0.07);
  --border-med: rgba(255,255,255,0.12);
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --text-faint: #475569;

  /* Gradients */
  --grad-blue:  linear-gradient(135deg, #3b82f6, #2dd4bf);
  --grad-warm:  linear-gradient(135deg, #f97316, #f59e0b);
  --grad-page:  linear-gradient(180deg, #0a0f1e 0%, #0d1526 100%);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container:  1200px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --t: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}

.nav.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

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

.nav__logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-or  { color: var(--blue-500); }
.logo-dev { color: var(--text); }
.logo-dot { color: var(--teal-400); }

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

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}

.nav__links a:hover { color: var(--text); }

.nav__cta {
  background: var(--grad-blue) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600 !important;
}

.nav__cta:hover { opacity: 0.9; }

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

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 80px 24px 40px;
}

.mobile-menu.open { display: flex; align-items: center; justify-content: center; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu ul a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-med);
}

.btn--ghost:hover { border-color: rgba(255,255,255,0.25); }

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

/* ============================================================
   HERO
   ============================================================ */

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

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

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 70%);
  top: -200px; left: -100px;
}

.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.4) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}

.hero__image-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(10,15,30,0.7) 40%,
    rgba(10,15,30,0.2) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--teal-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.stat__number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__plus {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border-med);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */

.section-block {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.section-label--catering {
  color: var(--teal-400);
  background: rgba(20,184,166,0.1);
  border-color: rgba(20,184,166,0.25);
}

.section-label--restaurants {
  color: var(--orange-400);
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.25);
}

.section-label--light {
  color: var(--teal-400);
  background: rgba(20,184,166,0.1);
  border-color: rgba(20,184,166,0.25);
}

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

.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
}

.two-col--reversed .two-col__visual { order: -1; }

/* ============================================================
   FEATURE LIST
   ============================================================ */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item__icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue-500);
}

.feature-item__icon--warm {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.2);
}

.feature-item__icon--warm svg {
  stroke: var(--orange-400);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   MOCKUP CARDS
   ============================================================ */

.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.mockup-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-2);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-med);
}

.mockup-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.mockup-card__body {
  padding: 20px;
}

/* Catering Mockup */
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-stat {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
}

.mockup-stat__val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-400);
  letter-spacing: -0.5px;
}

.mockup-stat__lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.chart-bar {
  flex: 1;
  background: rgba(59,130,246,0.2);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: background var(--t);
}

.chart-bar--active {
  background: linear-gradient(180deg, var(--blue-500), var(--teal-500));
}

.chart-bar span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mockup-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mockup-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-item__dot--green  { background: var(--teal-400); }
.mockup-item__dot--blue   { background: var(--blue-500); }
.mockup-item__dot--orange { background: var(--orange-400); }

.mockup-item__count {
  margin-left: auto;
  font-weight: 700;
  color: var(--text);
}

/* Restaurant Mockup */
.table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.table-cell {
  border-radius: var(--r-md);
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--border);
}

.table-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.table-status {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
}

.table-cell--occupied  { background: rgba(59,130,246,0.12);  border-color: rgba(59,130,246,0.3);  }
.table-cell--occupied .table-num { color: var(--blue-500); }
.table-cell--occupied .table-status { color: var(--blue-500); }

.table-cell--free      { background: rgba(45,212,191,0.1);   border-color: rgba(45,212,191,0.25); }
.table-cell--free .table-num { color: var(--teal-400); }
.table-cell--free .table-status { color: var(--teal-400); }

.table-cell--bill      { background: rgba(249,115,22,0.12);  border-color: rgba(249,115,22,0.3);  }
.table-cell--bill .table-num { color: var(--orange-400); }
.table-cell--bill .table-status { color: var(--orange-400); }

.table-cell--reserved  { background: rgba(168,85,247,0.1);   border-color: rgba(168,85,247,0.25); }
.table-cell--reserved .table-num { color: var(--purple-500); }
.table-cell--reserved .table-status { color: var(--purple-500); }

.order-ticker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}

.order-ticker__tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.order-ticker__tag--new   { background: rgba(59,130,246,0.2);  color: var(--blue-500); }
.order-ticker__tag--ready { background: rgba(45,212,191,0.15); color: var(--teal-400); }

/* ============================================================
   PRODUCT SPOTLIGHT
   ============================================================ */

.product-spotlight {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--r-xl);
  padding: 40px;
}

.product-spotlight--warm {
  background: rgba(249,115,22,0.04);
  border-color: rgba(249,115,22,0.15);
}

.product-spotlight__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.25);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.product-spotlight__tag--warm {
  color: var(--orange-400);
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.25);
}

.product-spotlight h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.product-spotlight p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue-500);
}

.pill--warm {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.2);
  color: var(--orange-400);
}

/* ============================================================
   CATERING & RESTAURANT SECTION BACKGROUNDS
   ============================================================ */

.catering {
  background: linear-gradient(180deg, rgba(20,184,166,0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(20,184,166,0.08);
}

.restaurants {
  background: linear-gradient(180deg, rgba(249,115,22,0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(249,115,22,0.08);
}


/* ============================================================
   ORDEV.VOICE SECTION
   ============================================================ */

.voice {
  background: linear-gradient(180deg, rgba(168,85,247,0.05) 0%, transparent 100%);
  border-top: 1px solid rgba(168,85,247,0.1);
}

.section-label--voice {
  color: var(--purple-500);
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.25);
}

.gradient-text-voice {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Problem list */
.voice-block {
  margin-bottom: 32px;
}

.voice-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: 14px;
}

.voice-problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-problem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: var(--r-md);
  padding: 12px 16px;
}

.voice-problem-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(168,85,247,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-problem-icon svg {
  width: 16px; height: 16px;
  stroke: var(--purple-500);
}

.voice-solution-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.voice-solution-text strong {
  color: var(--purple-500);
  font-weight: 600;
}

/* Voice mockup */
.voice-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(168,85,247,0.15);
}

.voice-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-2);
}

.voice-mockup__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.voice-logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple-500);
  box-shadow: 0 0 8px rgba(168,85,247,0.6);
}

.voice-mockup__status {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-400);
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.25);
  padding: 3px 10px;
  border-radius: 40px;
}

.voice-mockup__body {
  padding: 20px;
}

/* Animated wave bars */
.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 56px;
  margin-bottom: 20px;
}

.voice-wave__bar {
  width: 4px;
  border-radius: 4px;
  background: rgba(168,85,247,0.3);
  animation: voicePulse 1.4s ease-in-out infinite;
}

.voice-wave__bar:nth-child(2)  { animation-delay: 0.1s; }
.voice-wave__bar:nth-child(3)  { animation-delay: 0.2s; }
.voice-wave__bar:nth-child(4)  { animation-delay: 0.3s; }
.voice-wave__bar:nth-child(5)  { animation-delay: 0.4s; }
.voice-wave__bar:nth-child(6)  { animation-delay: 0.3s; }
.voice-wave__bar:nth-child(7)  { animation-delay: 0.2s; }
.voice-wave__bar:nth-child(8)  { animation-delay: 0.1s; }
.voice-wave__bar:nth-child(9)  { animation-delay: 0.2s; }
.voice-wave__bar:nth-child(10) { animation-delay: 0.3s; }
.voice-wave__bar:nth-child(11) { animation-delay: 0.15s; }
.voice-wave__bar:nth-child(12) { animation-delay: 0.25s; }

.voice-wave__bar--active {
  background: linear-gradient(180deg, var(--purple-500), var(--blue-500));
}

@keyframes voicePulse {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}

/* Transcript */
.voice-transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.voice-transcript__bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--r-md);
}

.voice-transcript__bubble--user {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  color: var(--text);
}

.voice-transcript__bubble--ai {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  color: var(--text-muted);
}

.voice-transcript__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-transcript__bubble--user .voice-transcript__icon {
  background: rgba(168,85,247,0.15);
}

.voice-transcript__bubble--ai .voice-transcript__icon {
  background: rgba(59,130,246,0.1);
}

.voice-transcript__icon svg {
  width: 14px; height: 14px;
}

.voice-transcript__bubble--user .voice-transcript__icon svg {
  stroke: var(--purple-500);
}

.voice-transcript__bubble--ai .voice-transcript__icon svg {
  stroke: var(--blue-500);
}

.voice-transcript__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--teal-400);
  font-weight: 600;
  padding: 0 4px;
}

.voice-transcript__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 6px rgba(45,212,191,0.6);
  animation: blink 1.2s ease-in-out infinite;
}

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

/* Channel toggles */
.voice-channels {
  display: flex;
  gap: 8px;
}

.voice-channel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-faint);
  cursor: pointer;
}

.voice-channel svg {
  width: 14px; height: 14px;
  stroke: currentColor;
}

.voice-channel--active {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
  color: var(--purple-500);
}

/* Bottom grid — benefits + why */
.voice-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 60px;
}

.voice-benefits,
.voice-why {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--r-xl);
  padding: 36px;
}

.voice-benefits h3,
.voice-why h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

/* Benefit list */
.voice-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice-benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.benefit-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-check svg {
  width: 12px; height: 12px;
  stroke: var(--purple-500);
}

/* Why list */
.voice-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.voice-why-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-why-item__icon svg {
  width: 18px; height: 18px;
  stroke: var(--purple-500);
}

.voice-why-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.voice-why-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   MODULES SECTION
   ============================================================ */

.modules {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity var(--t);
}

.module-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

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

.module-card--highlight {
  border-color: rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.04);
}

.module-card--highlight::before {
  background: linear-gradient(135deg, var(--purple-500), var(--blue-500));
  opacity: 1;
}

.module-card--highlight:hover {
  border-color: rgba(168,85,247,0.4);
}

.module-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.module-card--highlight .module-card__icon {
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.2);
}

.module-card__icon svg {
  width: 18px; height: 18px;
  stroke: var(--blue-500);
}

.module-card--highlight .module-card__icon svg {
  stroke: var(--purple-500);
}

.module-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.module-card__name span {
  color: var(--blue-500);
}

.module-card--highlight .module-card__name span {
  color: var(--purple-500);
}

.module-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}

.industry-card:hover {
  border-color: var(--border-med);
  transform: translateY(-4px);
}

.industry-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue-500);
}

.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   WHY ORDEV
   ============================================================ */

.why {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

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

.why-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color var(--t);
}

.why-card:hover { border-color: var(--border-med); }

.why-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(59,130,246,0.04) 100%);
  border-top: 1px solid var(--border);
}

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

.contact-wrapper__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-wrapper__left > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-detail svg {
  width: 18px; height: 18px;
  stroke: var(--blue-500);
  flex-shrink: 0;
}

.contact-detail a { color: var(--text); transition: color var(--t); }
.contact-detail a:hover { color: var(--teal-400); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-med);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

.form-group select option { background: var(--bg-card); }

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

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 60px 24px 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 240px;
}

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

.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--t);
}

.footer__col ul a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer__division {
  color: var(--text-muted) !important;
  font-weight: 500;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --section-py: 70px; }

  .two-col,
  .two-col--reversed { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reversed .two-col__visual { order: 0; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__image-wrap { display: none; }

  .hero__title { font-size: 2.2rem; }
  .hero__stats { gap: 20px; }
  .stat__number { font-size: 1.6rem; }

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

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

  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }

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

  .contact-form { padding: 24px; }
  .product-spotlight { padding: 24px; }
}
