:root {
  /* Minimal Porcelain Light Palette */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;

  --emerald-primary: #047857;
  --emerald-hover: #065f46;
  --emerald-light: rgba(4, 120, 87, 0.07);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border: rgba(15, 23, 42, 0.08);
  --border-emerald: rgba(4, 120, 87, 0.2);
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.06);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1060px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
  position: relative;
  width: 100%;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
.text-center { text-align: center; }

/* Minimal Buttons with Proportional Fonts */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.775rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--text-main);
  background: var(--border);
}

.btn-emerald {
  background: var(--emerald-primary);
  color: #ffffff;
  font-weight: 600;
}
.btn-emerald:hover {
  background: var(--emerald-hover);
}

.btn-hero-primary {
  background: var(--emerald-primary);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.btn-hero-primary:hover {
  background: var(--emerald-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.btn-hero-secondary:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  gap: 4px;
  z-index: 120;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.mobile-toggle .bar {
  width: 16px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.active .bar-1 {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .bar-2 {
  opacity: 0;
}

.mobile-toggle.active .bar-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Minimal Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.1rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--emerald-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--emerald-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Header links */
header .brand-title {
  color: var(--text-main);
}
header .brand-title span {
  color: var(--emerald-primary);
}
header .btn-ghost {
  color: var(--text-muted);
}
header .btn-ghost:hover {
  color: var(--text-main);
  background: var(--border);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-soft);
}

/* Split 2-Column Hero Section */
.hero-split-section {
  position: relative;
  z-index: 1;
  padding: 8.5rem 0 4rem 0;
  background: var(--bg-main);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left-content {
  text-align: left;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid var(--border-emerald);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--emerald-primary);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-primary);
}

.hero-heading {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 1.1rem;
}

.hero-subheading {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

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

.trust-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-primary);
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* Right Visual Framed Image & Floating Badges */
.hero-right-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: #ffffff;
}

.hero-venue-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-frame:hover .hero-venue-img {
  transform: scale(1.03);
}

.image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

/* Floating Badges */
.floating-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-emerald);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.top-widget {
  top: 20px;
  right: 20px;
}

.bottom-widget {
  bottom: 20px;
  left: 20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.widget-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.widget-icon.green { background: rgba(16, 185, 129, 0.12); color: #047857; }
.widget-icon.amber { background: rgba(245, 158, 11, 0.12); color: #b45309; }

.widget-tag {
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  color: var(--text-main);
}

.widget-text {
  font-size: 0.675rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* App Mockup Container */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 900px;
}

.app-mockup-window {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(10px);
}

.window-header {
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.window-controls {
  display: flex;
  gap: 5px;
}

.c-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.c-dot.red { background: #ef4444; }
.c-dot.yellow { background: #f59e0b; }
.c-dot.green { background: #10b981; }

.window-address {
  font-size: 0.7rem;
  color: var(--text-dim);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
}

.window-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.stat-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
}

.stat-box.emerald { border-left: 3px solid var(--emerald-primary); }
.stat-box.blue { border-left: 3px solid #3b82f6; }
.stat-box.amber { border-left: 3px solid #f59e0b; }

.box-title {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-dim);
}

.box-val {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 0.15rem;
}

.box-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Matrix Strip */
.mockup-matrix-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.matrix-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.matrix-h {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-main);
}

.matrix-tags {
  display: flex;
  gap: 0.4rem;
}

.m-tag {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.m-tag.free { background: rgba(16, 185, 129, 0.12); color: #047857; }
.m-tag.day { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.m-tag.night { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }
.m-tag.full { background: rgba(239, 68, 68, 0.12); color: #b91c1c; }

.matrix-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.h-name {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-muted);
  width: 100px;
}

.h-slots {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
}

.s-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.675rem;
  font-weight: 500;
}
.s-badge.free { background: rgba(16, 185, 129, 0.12); color: #047857; }
.s-badge.full { background: rgba(239, 68, 68, 0.12); color: #b91c1c; }
.s-badge.day { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.s-badge.night { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }

/* Metrics Ribbon */
.metrics-ribbon {
  background: #ffffff;
  border-y: 1px solid var(--border);
  padding: 2.5rem 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.r-number {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--emerald-primary);
  display: block;
}

.r-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Product Showcase */
.showcase-section {
  padding: 5rem 0;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.section-eyebrow {
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-primary);
  margin-bottom: 0.3rem;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

/* Tab Switcher */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--emerald-primary);
  color: #ffffff;
  border-color: var(--emerald-primary);
}

/* Tab Stage & Panels */
.tab-stage {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.25s ease-out; }

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

.panel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.panel-info h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.panel-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.check { color: var(--emerald-primary); font-weight: 600; }

/* Product Modules Grid */
.product-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.module-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-card);
}

.module-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--emerald-light);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-emerald);
}

.module-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.module-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--emerald-primary);
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Calendar Grid Showcase */
.calendar-demo-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.cal-header {
  margin-bottom: 1rem;
}

.cal-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.cal-month-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cal-month-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.cal-nav-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-subtle);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cal-hall-tabs {
  display: flex;
  gap: 0.35rem;
}

.hall-chip {
  padding: 0.25rem 0.6rem;
  font-size: 0.725rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-muted);
  cursor: pointer;
}

.hall-chip.active {
  background: var(--emerald-light);
  color: var(--emerald-primary);
  border: 1px solid var(--border-emerald);
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
}

.leg-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-dim);
}

.leg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.leg-dot.green { background: #10b981; }
.leg-dot.amber { background: #f59e0b; }
.leg-dot.rose { background: #f43f5e; }
.leg-dot.purple { background: #8b5cf6; }

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

.cal-day-head {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

.cal-cell {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.25rem;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.cal-cell:hover {
  border-color: var(--emerald-primary);
  transform: scale(1.03);
}

.cal-cell.muted {
  opacity: 0.35;
  background: transparent;
  border-color: transparent;
}

.cal-cell.active-cell {
  border-color: #f43f5e;
  box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.15);
}

.day-num {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-main);
}

.slot-pill {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.slot-pill.green {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.slot-pill.rose {
  background: rgba(244, 63, 94, 0.12);
  color: #be123c;
}

.slot-pill.amber {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.slot-pill.purple {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}

.demo-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.demo-card-head {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.d-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: var(--text-muted);
}

.receipt-demo {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.775rem;
}

.r-title {
  font-weight: 600;
  color: var(--emerald-primary);
  font-size: 0.725rem;
  margin-bottom: 0.2rem;
}

.r-row { display: flex; justify-content: space-between; color: var(--text-muted); }
.r-row.highlight { color: var(--emerald-primary); font-weight: 600; }

.r-sig {
  margin-top: 0.4rem;
  padding: 0.4rem;
  background: rgba(4, 120, 87, 0.06);
  border: 1px dashed var(--emerald-primary);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--emerald-primary);
}

.wa-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.c-name { font-size: 0.8rem; font-weight: 600; color: var(--text-main); }
.c-due { font-size: 0.7rem; color: var(--text-muted); }

.btn-wa {
  background: #25d366;
  color: #ffffff;
  border: none;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
}

.dish-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Solutions / Roles Section */
.roles-section {
  padding: 5rem 0;
  background: #ffffff;
  border-y: 1px solid var(--border);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.role-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.role-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-emerald);
}

.role-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

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

/* Full-Bleed Parallax Photography Banner with High Image Visibility */
.parallax-banner-section {
  position: relative;
  padding: 8rem 1.5rem;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.parallax-banner-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
  will-change: transform;
}

.parallax-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: -1;
}

.banner-content {
  max-width: 800px;
  z-index: 1;
}

.banner-glass-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.stars-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-left: 0.5rem;
  letter-spacing: normal;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.banner-quote {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  color: #f8fafc;
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-primary), #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.author-meta {
  text-align: center;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  display: block;
}

.author-title {
  font-size: 0.825rem;
  color: #94a3b8;
}

/* Alternating Marketing Feature Showcase */
.alternating-showcase-section {
  padding: 6rem 0;
}

.alt-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 4rem;
}

.alt-feature-row.reverse {
  direction: rtl;
}

.alt-feature-row.reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .alt-feature-row,
  .alt-feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

.alt-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-primary);
  background: var(--emerald-light);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-emerald);
}

.alt-feature-text h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.alt-feature-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.alt-feature-visual {
  position: relative;
}

.alt-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

.alt-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.alt-img-wrapper:hover .alt-img {
  transform: scale(1.04);
}

/* Floating Parallax Cards */
.parallax-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.parallax-floating-card.top-right {
  top: 1.25rem;
  right: 1.25rem;
}

.parallax-floating-card.bottom-left {
  bottom: 1.25rem;
  left: 1.25rem;
}

.parallax-floating-card strong {
  display: block;
  font-size: 0.825rem;
  color: var(--text-main);
}

.parallax-floating-card p {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin: 0;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-dot.green { background: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
.badge-dot.blue { background: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
.badge-dot.purple { background: #8b5cf6; box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2); }

/* Mobile Phone Mockup Visual */
.mobile-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.mobile-frame {
  width: 310px;
  height: 590px;
  background: #0f172a;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.12);
  position: relative;
  flex-shrink: 0;
}

.mobile-screen {
  background: #ffffff;
  border-radius: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: #475569;
  padding: 0.2rem 0.4rem 0.4rem 0.4rem;
}

.m-notch {
  width: 60px;
  height: 12px;
  background: #0f172a;
  border-radius: 10px;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.2rem 0.6rem 0.2rem;
  border-bottom: 1px solid var(--border);
}

.m-app-title {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.m-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.m-subtitle {
  font-size: 0.625rem;
  color: var(--text-dim);
}

.m-status {
  font-size: 0.625rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.mobile-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  padding-top: 0.4rem;
}

.m-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.m-card-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: left;
}

.m-label {
  font-size: 0.575rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.m-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-primary);
  display: block;
}

.m-subtext {
  font-size: 0.55rem;
  color: #10b981;
  font-weight: 600;
}

.m-section-label {
  font-size: 0.575rem;
  font-weight: 700;
  color: var(--text-dim);
  text-align: left;
  margin: 0.4rem 0 0.15rem 0;
  letter-spacing: 0.05em;
}

.m-slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  text-align: left;
}

.m-slot-title {
  font-size: 0.675rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.m-slot-sub {
  font-size: 0.575rem;
  color: var(--text-dim);
  display: block;
}

.m-pill {
  font-size: 0.575rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.m-pill.green { background: rgba(16, 185, 129, 0.12); color: #047857; }
.m-pill.amber { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.m-pill.purple { background: rgba(139, 92, 246, 0.12); color: #6d28d9; }

.m-btn {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.2rem;
}

.mobile-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 0.45rem 0;
  margin: 0.4rem -0.75rem -0.75rem -0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.m-nav-item.active {
  color: var(--emerald-primary);
  font-weight: 700;
}

.feature-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-2px);
  border-color: var(--border-emerald);
}

.feature-box h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0.3rem 0 0.6rem 0;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.contact-cards-grid {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Quote Request Form */
.quote-form {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-subtle);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

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

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-primary);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.btn-quote-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.contact-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.contact-divider span {
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.c-card {
  flex: 1;
  min-width: 250px;
  max-width: 340px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.c-card:hover {
  transform: translateY(-2px);
  border-color: var(--emerald-primary);
}

.c-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--text-dim); }
.c-val { font-size: 1rem; font-weight: 600; color: var(--text-main); }

.c-action {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-primary);
  margin-top: 0.25rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.775rem;
  color: var(--text-dim);
}

.portal-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--emerald-primary);
}

/* Minimal Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.22s; }
.delay-4 { transition-delay: 0.3s; }

/* Calendar Grid Scroll Wrapper */
.cal-grid-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  padding-bottom: 0.35rem;
}

.mobile-drawer-cta {
  display: none !important;
}

/* Complete Mobile & Tablet Responsiveness */
@media (max-width: 850px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 0.85rem;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }
  .logo-mark svg {
    width: 14px;
    height: 14px;
  }
  .brand-title {
    font-size: 0.95rem;
  }
  .logo {
    gap: 0.4rem;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.75rem 1.25rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    z-index: 105;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    width: 100%;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    display: block;
    color: var(--text-main);
  }

  .mobile-drawer-cta {
    display: block !important;
    margin-top: 0.5rem;
    width: 100%;
  }

  .mobile-drawer-cta .btn-emerald {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }

  .nav-cta {
    display: none; /* Hide header CTA buttons on mobile so header is spacious */
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left-content {
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(1.65rem, 5vw, 2.3rem);
    line-height: 1.25;
  }

  .hero-subheading {
    font-size: 0.875rem;
  }

  .hero-venue-img {
    height: 280px;
  }

  .panel-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tab-stage {
    padding: 1.25rem;
  }

  .banner-glass-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.775rem;
    padding: 0.55rem 0.9rem;
    text-align: center;
  }

  .hero-trust-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .trust-item {
    font-size: 0.75rem;
  }

  .trust-val {
    font-size: 0.875rem;
  }

  .ribbon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .r-number {
    font-size: 1.35rem;
  }

  .r-label {
    font-size: 0.725rem;
  }

  .tab-switcher {
    gap: 0.35rem;
  }

  .tab-btn {
    font-size: 0.725rem;
    padding: 0.35rem 0.75rem;
    flex: 1;
    min-width: 100px;
    text-align: center;
  }

  .parallax-floating-card {
    padding: 0.5rem 0.75rem;
    max-width: calc(100% - 1rem);
  }

  .parallax-floating-card strong {
    font-size: 0.75rem;
  }

  .parallax-floating-card p {
    font-size: 0.65rem;
  }

  .parallax-floating-card.top-right {
    top: 0.5rem;
    right: 0.5rem;
  }

  .parallax-floating-card.bottom-left {
    bottom: 0.5rem;
    left: 0.5rem;
  }

  /* Tall Smartphone Mockup Proportion on Mobile */
  .mobile-frame {
    width: 295px;
    height: 570px;
    border-radius: 38px;
    padding: 8px;
    margin: 0 auto;
  }

  .mobile-screen {
    border-radius: 28px;
    padding: 0.5rem;
  }

  .tab-stage {
    padding: 1rem 0.75rem;
    overflow-x: hidden;
    max-width: 100%;
  }

  .calendar-demo-card {
    padding: 0.85rem 0.65rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .cal-grid {
    min-width: 320px;
    gap: 2px;
  }

  .cal-cell {
    min-height: 38px;
    padding: 0.2rem 0.15rem;
  }

  .day-num {
    font-size: 0.65rem;
  }

  .slot-pill {
    font-size: 0.55rem;
    padding: 0.1rem 0.2rem;
  }

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

  .quote-form {
    padding: 1.25rem 1rem;
  }

  .btn-quote-submit {
    font-size: 0.775rem;
    padding: 0.6rem 1rem;
  }

  .contact-wrapper {
    padding: 2rem 1rem;
  }

  .c-card {
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
