/* =============================================================
   TENJIN — Main Stylesheet
   styles.css  |  Extracted from index.html inline <style> block
   ============================================================= */

/* ─ CSS VARIABLES ─ */
:root {
  --orange:        #F97316;
  --orange-light:  #FB923C;
  --orange-soft:   #FFF7ED;
  --orange-border: rgba(249, 115, 22, 0.18);
  --orange-mid:    rgba(249, 115, 22, 0.07);
  --navy:          #1E3A5F;
  --navy-mid:      #2D4F7A;
  --white:         #FFFFFF;
  --bg:            #F8FAFC;
  --bg-2:          #F1F5F9;
  --border:        #E2E8F0;
  --border-mid:    #CBD5E1;
  --text-h:        #0F172A;
  --text-body:     #334155;
  --text-mid:      #64748B;
  --text-light:    #94A3B8;
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow:        0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg:     0 16px 56px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 8px 28px rgba(249, 115, 22, 0.28);
  --r:             12px;
  --r-lg:          18px;
}

/* ─ RESET ─ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-h);
  line-height: 1.2;
}

/* ─ UTILITIES ─ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.acc { color: var(--orange); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─ NAV ─ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 32px; display: block; }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.44rem 0.82rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: all 0.18s;
}
.nav-links a:hover { color: var(--orange); background: var(--orange-mid); }
.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.btn-login {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.44rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border-mid);
  transition: all 0.18s;
}
.btn-login:hover { border-color: var(--orange); color: var(--orange); }
.btn-signup {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.81rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0.46rem 1.2rem;
  border-radius: 8px;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  transition: all 0.2s;
}
.btn-signup:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

/* ─ HERO ─ */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #D1D9E6 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-grid.active {
  display: grid;
  animation: fadeUp 0.5s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.slide-pill .dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
.hero-content h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 0.98rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0.74rem 1.55rem;
  background: var(--orange);
  border-radius: 8px;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}
.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 0.74rem 1.55rem;
  background: transparent;
  border-radius: 8px;
  border: 2px solid var(--border-mid);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-mid);
}
.slide-nav { display: flex; gap: 6px; margin-top: 2.5rem; }
.slide-dot {
  height: 3px;
  width: 24px;
  border-radius: 2px;
  background: var(--border-mid);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slide-dot.active { width: 40px; background: var(--orange); }

/* ─ HERO SCREENSHOT FRAME ─ */
.hero-visual { position: relative; padding: 20px 44px 10px 44px; }
@media (max-width: 1024px) { .hero-visual { padding: 20px 28px 10px 28px; } }
@media (max-width: 768px)  { .hero-visual { padding: 16px 0 0 0; } }
.scr-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.scr-bar {
  background: var(--navy);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.scr-dots { display: flex; gap: 5px; }
.scr-dots span { width: 9px; height: 9px; border-radius: 50%; }
.scr-dots span:nth-child(1) { background: #FF5F57; }
.scr-dots span:nth-child(2) { background: #FFBD2E; }
.scr-dots span:nth-child(3) { background: #28C840; }
.scr-url {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 3px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.scr-usr {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  font-weight: 800;
}
.scr-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
}
.scr-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.7));
  pointer-events: none;
}

/* ─ FLOAT CARDS ─ */
.fc {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1rem;
  min-width: 162px;
  z-index: 10;
}
.fc-1 {
  top: -16px; right: -36px;
  animation: fIn 0.5s ease forwards, flt 5s ease-in-out 0.6s infinite;
}
.fc-2 {
  bottom: 20px; left: -36px;
  animation: fIn 0.5s 0.2s ease forwards, flt 6s ease-in-out 0.9s infinite;
}
@keyframes fIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes flt {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.fc-ico {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.42rem;
}
.fc-ico.or { background: var(--orange-soft); color: var(--orange); }
.fc-ico.gr { background: #ECFDF5; color: #10B981; }
.fc-ico.bl { background: #EFF6FF; color: #3B82F6; }
.fc-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1;
  margin-bottom: 2px;
}
.fc-lbl { font-size: 0.7rem; color: var(--text-mid); margin-bottom: 5px; }
.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.fc-badge.up { background: #ECFDF5; color: #10B981; }
.fc-badge.dn { background: #FEF2F2; color: #EF4444; }

/* ─ TRUSTED ─ */
.trusted {
  padding: 3.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.t-lbl {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.t-lbl .acc { color: var(--orange); }
.marquee-track { overflow: hidden; position: relative; }
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.75rem;
}
.marquee-set img {
  height: 36px;
  filter: grayscale(0.15);
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
}
.marquee-set img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─ SECTION UTILITIES ─ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.sec-sub {
  font-size: 0.96rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─ WORKBENCH ─ */
.workbench { padding: 7rem 0; background: var(--white); }
.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.video-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-2);
  position: relative;
}
.video-wrap img { width: 100%; display: block; }
.play-ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.1);
  cursor: pointer;
  transition: background 0.25s;
}
.play-ov:hover { background: rgba(30, 58, 95, 0.04); }
.play-circ {
  width: 62px; height: 62px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  transition: transform 0.25s;
}
.play-ov:hover .play-circ { transform: scale(1.08); }
.play-circ i { color: #fff; font-size: 1rem; margin-left: 3px; }
.mp-box {
  margin-top: 1.75rem;
  padding: 0.9rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.mp-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  line-height: 1.4;
  border-right: 1px solid var(--border-mid);
  padding-right: 1.2rem;
}
.mp-logos { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.mp-logos img { height: 20px; filter: grayscale(0.3); opacity: 0.65; transition: opacity 0.2s; }
.mp-logos img:hover { opacity: 1; }
.wb-btns { display: flex; gap: 0.85rem; margin-top: 1.75rem; flex-wrap: wrap; }

/* ─ FEATURES ─ */
.features {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.feat-header { text-align: center; margin-bottom: 3.5rem; }
.feat-header .eyebrow { justify-content: center; }
.feat-header .sec-sub { margin: 0 auto; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
  box-shadow: var(--shadow-sm);
}
.feat-card { background: var(--white); padding: 1.7rem 1.4rem; transition: background 0.2s; }
.feat-card:hover { background: #FFFBF5; }
.feat-card:hover .feat-ico {
  background: var(--orange-soft);
  border-color: var(--orange-border);
}
.feat-ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  transition: all 0.2s;
}
.feat-ico img { width: 19px; height: 19px; object-fit: contain; }
.feat-card h3 { font-size: 0.86rem; font-weight: 700; color: var(--text-h); margin-bottom: 0.45rem; line-height: 1.35; }
.feat-card p  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }
.feat-cta { text-align: center; margin-top: 3rem; }

/* ─ LIFECYCLE ─ */
.lifecycle { padding: 7rem 0; background: var(--white); }
.lc-header { text-align: center; margin-bottom: 4rem; }
.lc-header .eyebrow { justify-content: center; }
.lc-header .sec-sub { margin: 0 auto; }
.lc-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}
.lc-wheel-wrap { display: flex; justify-content: center; align-items: center; }
.lc-img {
  width: 325px; height: 325px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: 0 0 0 12px var(--bg), 0 0 0 13px var(--border);
  position: relative;
  flex-shrink: 0;
}
.lc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--orange-border);
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lc-img img { width: 100%; height: 100%; object-fit: cover; }
.lc-tabs { display: flex; flex-direction: column; gap: 8px; }
.lc-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.05rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: var(--text-body);
  width: 100%;
}
.lc-tab:hover,
.lc-tab.active {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  color: var(--orange);
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.1);
}
.lc-ti { display: flex; align-items: center; gap: 12px; }
.lc-ti img { width: 24px; opacity: 0.55; }
.lc-tab.active .lc-ti img,
.lc-tab:hover  .lc-ti img { opacity: 1; }
.lc-ti span { font-family: 'Montserrat', sans-serif; font-size: 0.96rem; font-weight: 700; }
.lc-tab i { font-size: 0.7rem; color: var(--text-light); }
.lc-tab.active i { color: var(--orange); }
.lc-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lc-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.lc-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  border-radius: 2px;
}
.lc-box:hover {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.lc-box h4 { font-size: 0.88rem; font-weight: 800; color: var(--orange); margin-bottom: 0.5rem; padding-left: 0.75rem; }
.lc-box p  { font-size: 0.8rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; padding-left: 0.75rem; }

/* ─ CAPABILITIES ─ */
.capabilities {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cap-header { text-align: center; margin-bottom: 3.5rem; }
.cap-header .eyebrow { justify-content: center; }
.tier-tags { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; }
.tier-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  color: var(--text-mid);
}
.acc-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.acc-item.open {
  border-color: var(--orange-border);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
}
.acc-trig {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-h);
  text-align: left;
  transition: color 0.2s;
}
.acc-item.open .acc-trig { color: var(--orange); }
.acc-trig i { font-size: 0.7rem; color: var(--text-light); transition: transform 0.3s, color 0.2s; }
.acc-item.open .acc-trig i { transform: rotate(180deg); color: var(--orange); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-item.open .acc-body { max-height: 600px; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.79rem; }
.cmp-table th {
  padding: 0.62rem 1rem;
  background: var(--bg);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.cmp-table th:first-child { text-align: left; }
.cmp-table td {
  padding: 0.58rem 1rem;
  text-align: center;
  color: var(--text-mid);
  border-bottom: 1px solid #F8FAFC;
  vertical-align: middle;
}
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table td:first-child { text-align: left; color: var(--text-body); font-weight: 500; }
.cmp-table tr:hover td { background: #FFFBF5; }
.val-y { color: #10B981 !important; font-weight: 700; }
.val-n { color: var(--text-light) !important; }

/* ─ PRICING ─ */
.pricing { padding: 7rem 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .eyebrow { justify-content: center; }
.pricing-header .sec-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border);
  gap: 0;
  box-shadow: var(--shadow);
}
.price-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  position: relative;
  transition: background 0.2s;
}
.price-card:hover { background: #FFFBF5; }
.price-card.featured { background: var(--navy); }
.price-card.featured:hover { background: var(--navy-mid); }
.feat-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
}
.plan-name { font-family: 'Montserrat', sans-serif; font-size: 0.98rem; font-weight: 800; color: var(--text-h); margin-bottom: 0.38rem; }
.price-card.featured .plan-name { color: #fff; }
.plan-desc { font-size: 0.74rem; color: var(--text-mid); line-height: 1.55; min-height: 50px; margin-bottom: 1.2rem; }
.price-card.featured .plan-desc { color: rgba(255, 255, 255, 0.55); }
.plan-price { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--orange); margin-bottom: 1.2rem; line-height: 1; }
.plan-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light); }
.price-card.featured .plan-price { color: #fff; }
.btn-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.62rem 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.2s;
  margin-bottom: 1.4rem;
}
.bpo { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28); }
.bpo:hover { background: var(--orange-light); transform: translateY(-1px); }
.bpg { background: transparent; color: var(--navy); border-color: var(--border-mid); }
.bpg:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-mid); }
.bpw { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.22); }
.bpw:hover { background: rgba(255, 255, 255, 0.18); }
.plan-div { height: 1px; background: var(--border); margin-bottom: 1.2rem; }
.price-card.featured .plan-div { background: rgba(255, 255, 255, 0.12); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 0.48rem; }
.plan-feats li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.74rem; color: var(--text-mid); line-height: 1.45; }
.price-card.featured .plan-feats li { color: rgba(255, 255, 255, 0.6); }
.plan-feats li i { color: var(--orange); font-size: 0.68rem; margin-top: 2px; flex-shrink: 0; }
.price-card.featured .plan-feats li i { color: #34D399; }
.plan-feats-extra { list-style: none; display: none; flex-direction: column; gap: 0.48rem; margin-top: 0.48rem; }
.plan-feats-extra.open { display: flex; }
.plan-feats-extra li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.74rem; color: var(--text-mid); line-height: 1.45; }
.price-card.featured .plan-feats-extra li { color: rgba(255, 255, 255, 0.6); }
.plan-feats-extra li i { color: var(--orange); font-size: 0.68rem; margin-top: 2px; flex-shrink: 0; }
.price-card.featured .plan-feats-extra li i { color: #34D399; }
.btn-see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 1rem;
  padding: 0.55rem 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1.5px solid var(--orange-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-see-more:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.price-card.featured .btn-see-more { background: rgba(249, 115, 22, 0.15); color: #FB923C; border-color: rgba(249, 115, 22, 0.3); }
.price-card.featured .btn-see-more:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-see-more i { font-size: 0.6rem; transition: transform 0.3s; }
.btn-see-more.open i { transform: rotate(180deg); }

/* ─ TESTIMONIALS ─ */
.testimonials {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.test-header { text-align: center; margin-bottom: 3.5rem; }
.test-header .eyebrow { justify-content: center; }
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 0.6rem; right: 1.2rem;
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}
.test-card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.test-logo { height: 32px; margin-bottom: 0.9rem; filter: grayscale(0.2); opacity: 0.9; }
.test-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; font-style: italic; font-weight: 500; }

/* ─ INNOVATIONS ─ */
.innovations { padding: 7rem 0; background: var(--white); }
.inno-header { text-align: center; margin-bottom: 3.5rem; }
.inno-header .eyebrow { justify-content: center; }
.inno-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.inno-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 9/16;
  transition: all 0.25s;
  position: relative;
}
.inno-card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.inno-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.btn-watch {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.btn-watch:hover { color: rgba(52, 94, 192, 1); }
.w-ico {
  width: 25px; height: 25px;
  background: rgba(52, 94, 192, 0.07);
  border: 1px solid rgba(52, 94, 192, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-ico i { font-size: 0.52rem; color: rgba(52, 94, 192, 1); margin-left: 2px; }
.w-bl { color: rgba(52, 94, 192, 1); }

/* ─ CTA ─ */
.cta-sec { padding: 5rem 0; background: var(--bg); border-top: 1px solid var(--border); }
.cta-wrap {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  min-height: 340px;
  box-shadow: 0 24px 80px rgba(30, 58, 95, 0.35);
}
.cta-wrap::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 38%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FB923C, transparent);
}
.cta-content {
  padding: 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-kpis { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; }
.cta-kpi { display: flex; flex-direction: column; }
.cta-kpi-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.cta-kpi-lbl { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); font-weight: 400; letter-spacing: 0.03em; }
.cta-divider-v { width: 1px; background: rgba(255, 255, 255, 0.1); align-self: stretch; }
.cta-wrap h2 { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.cta-wrap h2 .acc { color: var(--orange); }
.cta-sub { font-size: 1rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 2rem; font-weight: 300; }
.cta-sub .arr { color: var(--orange); margin: 0 5px; }
.cta-sub em { color: #fff; font-style: italic; }
.cta-action-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-cta-white {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.74rem 1.75rem;
  border-radius: 8px;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}
.btn-cta-white:hover {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-cta-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-cta-ghost:hover { color: #fff; }
.btn-cta-ghost i { font-size: 0.7rem; }
.cta-visual {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(30, 58, 95, 0) 60%);
}
.cta-visual img {
  height: 100%;
  max-height: 340px;
  width: auto;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(-8px 0 30px rgba(249, 115, 22, 0.18));
}
.cta-bubble {
  position: absolute;
  top: 1.5rem; right: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  z-index: 2;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
.cta-bubble .bval { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.cta-bubble .blbl { font-size: 0.62rem; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }

/* ─ FOOTER ─ */
footer { background: var(--white); border-top: 1px solid var(--border); padding: 1.6rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.76rem; color: var(--text-light); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.76rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ─ MODALS ─ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  max-width: 860px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  animation: mIn 0.3s ease;
}
@keyframes mIn {
  from { opacity: 0; transform: scale(0.95) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  z-index: 1;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  color: var(--orange);
}
.modal-layout { display: grid; grid-template-columns: 1fr 1.4fr; }
.modal-left {
  padding: 2.2rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
}
.modal-left h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.45rem; }
.m-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.2rem; }
.m-img { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 0.6rem; }
.m-img img { width: 100%; display: block; }
.m-cap { font-size: 0.68rem; color: var(--text-light); font-style: italic; text-align: center; }
.modal-right { padding: 2.2rem; display: flex; flex-direction: column; gap: 0.95rem; }
.m-feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.05rem;
  transition: border-color 0.2s;
}
.m-feat:hover { border-color: var(--orange-border); }
.m-feat-h { display: flex; align-items: center; gap: 8px; margin-bottom: 0.6rem; }
.m-feat-h img { width: 24px; height: 24px; object-fit: contain; }
.m-feat-h h3 { font-size: 0.82rem; font-weight: 700; }
.m-feat ul { list-style: none; display: flex; flex-direction: column; gap: 0.32rem; }
.m-feat ul li {
  font-size: 0.74rem;
  color: var(--text-mid);
  padding-left: 0.85rem;
  position: relative;
  line-height: 1.55;
}
.m-feat ul li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ─ SCROLLBAR ─ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }

/* ─ YOUTUBE LIGHTBOX ─ */
.yt-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.yt-overlay.open { display: flex; }
.yt-box {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.yt-close {
  position: absolute;
  top: -48px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.yt-close:hover { background: rgba(255, 255, 255, 0.26); transform: scale(1.08); }
.yt-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  display: block;
}

/* ─ HAMBURGER ─ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-h);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45); z-index: 800; }
.mobile-overlay.show { display: block; }

/* ══════════════════════════════════════
   TABLET — 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid      { gap: 2.5rem; }
  .wb-grid        { gap: 3rem; }
  .lc-top         { gap: 2.5rem; }
  .lc-bottom      { gap: 1rem; }
  .feat-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .inno-grid      { grid-template-columns: repeat(2, 1fr); }
  .fc-1           { right: -18px; }
  .fc-2           { left: -18px; }
  .cta-wrap       { grid-template-columns: 1fr auto; }
  .cta-visual     { width: 280px; }
}

/* ══════════════════════════════════════
   MOBILE — 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1.25rem;
    z-index: 900;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; font-size: 0.9rem; border-radius: 8px; }
  .btn-login { display: none; }

  /* HERO */
  .hero { padding: 90px 0 50px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-grid.active { display: flex; flex-direction: column; }
  .hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-content p  { max-width: 100%; font-size: 0.93rem; }
  .hero-btns { gap: 0.6rem; }
  .btn-primary, .btn-outline { font-size: 0.8rem; padding: 0.65rem 1.2rem; }

  /* HERO VISUAL — float cards inline above screenshot */
  .hero-visual { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
  .hero-popups { display: flex; gap: 0.6rem; }
  .fc {
    position: static !important;
    transform: none !important;
    animation: none !important;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.9rem;
    min-width: 0;
    border-radius: 10px;
    flex: 1;
  }
  .fc-ico { margin-bottom: 0; flex-shrink: 0; }
  .fc-content-wrap { display: flex; flex-direction: column; }
  .fc-val { font-size: 1rem; }
  .fc-lbl { font-size: 0.62rem; margin-bottom: 2px; }
  .fc-badge { font-size: 0.55rem; }
  .scr-frame { border-radius: 10px; }
  .scr-img { max-height: 260px; }

  /* TRUSTED */
  .trusted { padding: 2.5rem 0; }
  .marquee-set img { height: 26px; }
  .marquee-set { gap: 2.5rem; padding: 0 1.25rem; }

  /* WORKBENCH */
  .workbench { padding: 4rem 0; }
  .wb-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mp-box { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .mp-lbl { border-right: none; border-bottom: 1px solid var(--border-mid); padding-right: 0; padding-bottom: 0.6rem; width: 100%; }

  /* FEATURES */
  .features { padding: 4rem 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-header { margin-bottom: 2.5rem; }

  /* LIFECYCLE */
  .lifecycle { padding: 4rem 0; }
  .lc-top { grid-template-columns: 1fr; gap: 2rem; }
  .lc-wheel-wrap { justify-content: center; }
  .lc-img { width: 200px; height: 200px; }
  .lc-bottom { grid-template-columns: 1fr; gap: 1rem; }

  /* CAPABILITIES */
  .capabilities { padding: 4rem 0; }
  .acc-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp-table { min-width: 520px; font-size: 0.74rem; }
  .cmp-table th, .cmp-table td { padding: 0.5rem 0.75rem; }
  .acc-trig { font-size: 0.82rem; padding: 0.85rem 1rem; }

  /* PRICING */
  .pricing { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; border: none; background: transparent; gap: 1rem; box-shadow: none; }
  .price-card { border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
  .price-card.featured { border-color: var(--navy); }

  /* TESTIMONIALS */
  .testimonials { padding: 4rem 0; }
  .test-grid { grid-template-columns: 1fr; }

  /* INNOVATIONS */
  .innovations { padding: 4rem 0; }
  .inno-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  /* CTA */
  .cta-sec { padding: 3rem 0; }
  .cta-wrap { grid-template-columns: 1fr; min-height: auto; }
  .cta-visual { display: none; }
  .cta-content { padding: 2.5rem 2rem; }
  .cta-kpis { gap: 1.5rem; flex-wrap: wrap; }
  .cta-kpi-val { font-size: 1.3rem; }
  .cta-wrap h2 { font-size: 1.8rem; }

  /* MODALS */
  .modal-overlay { padding: 0.75rem; }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-left { border-right: none; border-bottom: 1px solid var(--border); }

  /* FOOTER */
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-links { gap: 1.5rem; }

  .container { padding: 0 1.25rem; }
}

/* ══════════════════════════════════════
   MOBILE SMALL — 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content p  { font-size: 0.88rem; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; display: block; }
  .hero-btns { flex-direction: column; gap: 0.55rem; }
  .slide-nav { margin-top: 1.5rem; }
  .hero-visual { padding: 12px 16px 6px 16px; }
  .fc { min-width: 110px; padding: 0.42rem 0.55rem; }
  .fc-1 { top: -10px; right: -8px; }
  .fc-2 { bottom: 10px; left: -8px; }
  .fc-val { font-size: 0.8rem; }
  .fc-lbl { font-size: 0.5rem; }
  .fc-badge { display: none; }
  .fc-ico { width: 20px; height: 20px; font-size: 0.56rem; }
  .scr-img { max-height: 200px; }
  .acc-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp-table { min-width: 480px; font-size: 0.7rem; }
  .cmp-table th, .cmp-table td { padding: 0.45rem 0.6rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .inno-grid { grid-template-columns: 1fr; }
  .inno-card { aspect-ratio: 9/16; }
  .test-grid { grid-template-columns: 1fr; }
  .tier-tags { flex-wrap: wrap; justify-content: center; }
  .cta-kpis { flex-direction: column; gap: 1rem; }
  .cta-divider-v { display: none; }
  .cta-content { padding: 2rem 1.5rem; }
  .cta-wrap h2 { font-size: 1.55rem; }
  .cta-action-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-cta-white { width: 100%; text-align: center; }
  .modal-box { max-height: 92vh; }
  .modal-left, .modal-right { padding: 1.4rem; }
  .lc-img { width: 150px; height: 150px; }
  .lc-top { grid-template-columns: 1fr; gap: 1.5rem; }
}
