@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* BRAND COLOR PALETTE & DESIGN SYSTEM TOKENS */
  --bg: #ffffff;
  --bg-soft: #f7f9f3;
  --panel: #ffffff;
  --panel-hover: #fcfdf9;
  --panel-strong: #f3f7ea;
  
  --line: #e3ebd0;
  --line-strong: rgba(161, 194, 67, 0.4);
  
  --text: #121a14;
  --muted: #536356;
  
  --accent: #a1c243;
  --accent-dark: #789626;
  --accent-deep: #597319;
  --accent-soft: rgba(161, 194, 67, 0.12);
  --accent-glow: rgba(161, 194, 67, 0.25);
  --accent-border: rgba(161, 194, 67, 0.35);
  --accent-border-strong: rgba(161, 194, 67, 0.5);

  --danger: #ef4444;
  --danger-soft: #fef2f2;

  --shadow: 0 12px 36px rgba(18, 26, 20, 0.06);
  --shadow-card: 0 20px 45px -10px rgba(0, 0, 0, 0.07), 0 0 35px rgba(161, 194, 67, 0.12);
  --shadow-hover: 0 25px 50px -10px rgba(161, 194, 67, 0.22);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius: 24px;
  --radius-tight: 12px;
  --radius-full: 9999px;

  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 5%, rgba(161, 194, 67, 0.08), transparent 30rem),
    radial-gradient(circle at 90% 35%, rgba(161, 194, 67, 0.05), transparent 25rem),
    radial-gradient(circle at 50% 85%, rgba(161, 194, 67, 0.07), transparent 35rem);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Orphan prevention & typography wrap */
h1, h2, h3, h4, h5, h6, p, li, summary, figcaption, td, th {
  text-wrap: pretty;
}

/* Subtle light grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: 
    linear-gradient(rgba(161, 194, 67, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 194, 67, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  z-index: 1;
}

/* Layout Containers */
.topbar,
.hero,
.problem-solution,
.comparison-section,
.touchscreen-highlight,
.bundle-callout,
.features,
.roles,
.spotlight,
.screens,
.pricing,
.faq-section,
.closing-cta {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
  margin-bottom: 5.5rem;
}

/* TOPBAR HEADER */
.topbar {
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 1.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 10px rgba(161, 194, 67, 0.3));
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.brand small {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  white-space: nowrap;
}

.topbar-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.topbar-nav a:hover {
  color: var(--accent-dark);
}

.mobile-nav-cta {
  display: none;
}

/* HAMBURGER TOGGLE BUTTON */
.topbar-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.topbar-toggle:hover {
  background-color: var(--accent-soft);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.topbar-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.topbar-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Topbar CTA button */
.topbar-cta {
  flex-shrink: 0;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0b1207;
  box-shadow: 0 8px 24px rgba(161, 194, 67, 0.35);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(161, 194, 67, 0.45);
  background: linear-gradient(135deg, #b3d64c 0%, var(--accent) 100%);
}

.button-secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 194, 67, 0.15);
}

.button-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* Typography Headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

/* HERO STAGE CARD - MODERN OVERLAPPING 2-BOX ARCHITECTURE WITH RICH AESTHETICS */
.hero-stage-card {
  position: relative;
  width: 100%;
  height: 620px;
  min-height: 620px;
  max-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(161, 194, 67, 0.45);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08), 0 0 50px rgba(161, 194, 67, 0.15);
  margin-top: 0.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, rgba(161, 194, 67, 0.05) 50%, var(--bg-soft) 100%);
  box-sizing: border-box;
}

/* RIGHT BOX: CRISP LARGE PHOTO SHOWCASE CARD (64% width, 24px rounded corners) */
.hero-bg-carousel {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 64%;
  height: calc(100% - 2.5rem);
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--accent-border);
  box-shadow: var(--shadow-card);
  background: var(--bg-soft);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
  transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Eliminate Gradient Wall Completely */
.hero-bg-overlay {
  display: none;
}

/* LEFT BOX: ELEVATED FLOATING TEXT CARD (46% width, overlapping 10% onto photo card, 24px rounded) */
.hero-stage-content {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  bottom: 1.75rem;
  width: 46%;
  height: calc(100% - 3.5rem);
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.25rem;
  border: 1px solid rgba(161, 194, 67, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.1), 0 0 35px rgba(161, 194, 67, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.hero-stage-content h1 {
  font-size: clamp(1.8rem, 2.9vw, 2.75rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--text);
}

.hero-rotator-wrapper {
  display: inline-block;
  min-width: 270px;
  min-height: 1.2em;
  vertical-align: bottom;
}

.hero-rotator-text {
  display: inline-block;
  color: var(--accent-deep);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-rotator-text.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-rotator-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-stage-content .lede {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.hero-stage-content .lede strong {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}

.hero-actions .button {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin: 0;
}

.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.hero-stat span {
  font-size: 0.76rem;
  color: var(--muted);
}

/* Dots Indicator at Bottom Center/Right inside Photo Card */
.hero-stage-dots {
  position: absolute;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 12;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-stage-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-stage-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.hero-stage-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(28, 43, 30, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-stage-dot.active {
  background: var(--accent-deep);
  width: 24px;
  border-radius: 5px;
}

/* SCENARIO STORY SHOWCASE CARD & UPLOADED IMAGE WRAPPER */
.scenario-showcase-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.scenario-copy h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.scenario-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.scenario-image-wrapper {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.scenario-image-wrapper img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.scenario-image-caption {
  padding: 0.85rem 1rem;
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* PROBLEM VS SOLUTION SECTION */
.problem-solution {
  margin-top: 2rem;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ps-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.ps-problem {
  background: var(--danger-soft);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ps-problem h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--danger);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ps-solution {
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: 0 12px 40px rgba(161, 194, 67, 0.18);
}

.ps-solution h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-deep);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-list li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.ps-problem .ps-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--danger);
  font-weight: 800;
  font-size: 1.1rem;
}

.ps-solution .ps-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

/* COMPARISON TABLE SECTION */
.comparison-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  min-width: 620px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.comparison-table th {
  background: var(--bg-soft);
  font-weight: 800;
  color: var(--text);
  font-size: 0.98rem;
}

.comparison-table th.col-highlight {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-top: 3px solid var(--accent);
}

.comparison-table td.col-highlight {
  background: rgba(161, 194, 67, 0.05);
  font-weight: 700;
  color: var(--text);
}

.check-yes {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.15rem;
}

.check-no {
  color: var(--muted);
  font-weight: 600;
}

.table-footnotes {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0.5rem;
}

/* TOUCHSCREEN HIGHLIGHT BANNER */
.touchscreen-banner {
  background: linear-gradient(135deg, rgba(161, 194, 67, 0.15) 0%, #ffffff 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-hover);
}

.touchscreen-copy h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.touchscreen-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* INTERACTIVE SHOWCASE SLIDER (PANEL & MEDIA SHOWCASE) */
.screens-slider-container {
  background: #ffffff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.slider-nav-tabs::-webkit-scrollbar {
  display: none;
}

.slider-tab {
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.slider-tab:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.slider-tab.active {
  background: var(--accent);
  color: #0b1207;
  border-color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(161, 194, 67, 0.35);
}

.slider-stage {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}

.slider-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.slider-counter {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-deep);
  letter-spacing: 0.08em;
}

.slider-counter strong {
  font-size: 1.4rem;
}

.slider-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}

.slider-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}



.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  color: #0b1207;
  transform: scale(1.05);
}

.slider-arrow-float {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

.slider-arrow-float:hover {
  background: var(--accent);
  color: #0b1207;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-float.prev {
  left: 1rem;
}

.slider-arrow-float.next {
  right: 1rem;
}

.slider-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--line);
  background: #0b1207;
}

.slide-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-media-item.active {
  opacity: 1;
  visibility: visible;
}

.slide-media-item img,
.slide-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-type-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(18, 26, 20, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  background: var(--panel-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-deep);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ROLES SECTION */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.role-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.role-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* BUNDLE HARDWARE CALLOUT */
.bundle-callout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(161, 194, 67, 0.15);
}

.bundle-copy h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.25rem 0;
}

.bundle-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bundle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bundle-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  color: var(--text);
}

.bundle-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

/* PRICING SECTION */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  box-shadow: 0 16px 48px rgba(161, 194, 67, 0.22);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent);
  color: #0b1207;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(161, 194, 67, 0.4);
}

.pricing-badge-subtle {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.pricing-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.pricing-amount .price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.pricing-addons {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.addon-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

.addon-box h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-deep);
  margin: 0 0 0.4rem 0;
}

.addon-price-tag {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.addon-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ ACCORDION SECTION */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-tight);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-accordion-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.faq-accordion-summary {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  transition: transform 0.25s ease;
}

.faq-accordion-item[open] .faq-accordion-summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-accordion-content {
  padding: 0 1.8rem 1.5rem 1.8rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid var(--line);
  margin-top: 0.25rem;
  padding-top: 1.25rem;
}

/* CLOSING CTA */
.closing-cta {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(161, 194, 67, 0.18);
}

.closing-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.closing-cta p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem auto;
}

/* SITE FOOTER */
.site-footer {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
  padding: 2rem 0 3rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent-deep);
  text-decoration: underline;
}

/* RESPONSIVENESS & MOBILE HAMBURGER MENU */
@media (max-width: 980px) {
  .topbar {
    position: sticky;
    border-radius: 20px;
    padding: 0.85rem 1.25rem;
  }

  .topbar-toggle {
    display: flex;
  }

  .topbar-cta {
    display: none;
  }

  .topbar-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    z-index: 200;
  }

  .topbar-nav.is-open {
    display: flex;
    animation: fadeInDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .topbar-nav a {
    font-size: 1.05rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 0.5rem;
  }

  .mobile-nav-cta .button {
    width: 100%;
  }

  .hero,
  .ps-grid,
  .touchscreen-banner,
  .bundle-callout,
  .scenario-showcase-card,
  .slider-stage,
  .pricing-grid,
  .pricing-addons {
    grid-template-columns: 1fr;
  }

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero-stage-card {
    height: auto;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--accent-border);
    box-shadow: var(--shadow-card);
  }

  .hero-stage-content {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .hero-stage-content h1 {
    font-size: 1.65rem;
    line-height: 1.22;
    margin: 0;
  }

  .hero-rotator-wrapper {
    min-width: auto;
    min-height: auto;
    display: inline;
  }

  .hero-stage-content .lede {
    font-size: 0.92rem;
    line-height: 1.52;
    margin-top: 0.75rem;
    margin-bottom: 0;
  }

  .hero-bg-carousel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-border);
    order: 2;
    margin-top: 0.25rem;
  }

  .hero-bg-overlay {
    display: none;
  }

  .hero-stage-dots {
    bottom: 0.85rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 12;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    order: 3;
    margin-top: 0.5rem;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    order: 4;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .hero-stat strong {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .hero-stat span {
    font-size: 0.7rem;
    line-height: 1.2;
    display: block;
    margin-top: 0.2rem;
  }
}

@media (max-width: 768px) {
  .topbar,
  .hero,
  .problem-solution,
  .comparison-section,
  .touchscreen-highlight,
  .bundle-callout,
  .scenario-showcase-card,
  .screens-slider-container,
  .features,
  .roles,
  .spotlight,
  .screens,
  .pricing,
  .faq-section,
  .closing-cta {
    width: min(calc(100% - 1.25rem), var(--max-width));
    margin-bottom: 3.5rem;
  }

  .screens-slider-container {
    padding: 1.5rem;
  }

  .slider-nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }

  .slider-tab {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.85rem;
  }

  .hero-stage-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 1.25rem;
    gap: 1.25rem;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-soft) 100%);
  }

  .hero-bg-carousel {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    order: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(161, 194, 67, 0.3);
  }

  .hero-bg-slide img {
    object-position: center center;
  }

  .hero-bg-overlay {
    display: none;
  }

  .hero-stage-content {
    order: 1;
    padding: 0;
    max-width: 100%;
  }

  .hero-stage-content h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin: 0.25rem 0 0.75rem 0;
  }

  .hero-rotator-wrapper {
    display: inline;
    min-width: unset;
  }

  .hero-stage-content .lede {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .hero-actions {
    order: 3;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
    margin-bottom: 0.85rem;
  }

  .hero-actions .button {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-stats {
    order: 4;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-top: 0.85rem;
  }

  .hero-stage-dots {
    position: absolute;
    bottom: 0.65rem;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
  }

  .hero-stage-dot {
    background: rgba(255, 255, 255, 0.5);
  }

  .hero-stage-dot.active {
    background: var(--accent);
  }

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

  .feature-card {
    padding: 1.1rem 0.85rem;
    border-radius: var(--radius-md);
  }

  .feature-card .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .feature-card h3 {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .feature-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

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

  .touchscreen-banner,
  .scenario-showcase-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.8rem;
  }
}

/* EXTRACTED COMPONENT & UTILITY CLASSES FOR CLEAN HTML */
.scenario-copy-accent {
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 0;
}

.feature-card-disclaimer {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.bundle-list {
  margin-top: 1.5rem;
}

.feature-disabled {
  color: var(--muted);
  text-decoration: line-through;
}

.addon-box .pricing-features {
  margin-top: 1rem;
}

.footer-disclaimer {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 576px) {
  .ps-card,
  .pricing-card,
  .addon-box,
  .bundle-callout {
    padding: 1.5rem;
  }

  .closing-cta {
    padding: 2.5rem 1.25rem;
  }

  .faq-accordion-summary {
    padding: 1.1rem 1.25rem;
    font-size: 1.05rem;
  }

  .faq-accordion-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* FLOATING BACK TO TOP BUTTON (GLOBAL & HIGH PRIORITY Z-INDEX) */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 25px rgba(120, 150, 38, 0.4), 0 0 25px rgba(161, 194, 67, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top svg {
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 15px 35px rgba(120, 150, 38, 0.5), 0 0 30px rgba(161, 194, 67, 0.4) !important;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-deep) 100%) !important;
}
