/* ==========================================================================
   Kirah — shared stylesheet
   ========================================================================== */

:root {
  --primary: #4f46e5;
  --primary-2: #6366f1;
  --primary-dark: #3730a3;
  --accent: #22d3ee;
  --accent-2: #38bdf8;

  --dark: #0b0f2a;
  --dark-2: #12183f;
  --dark-3: #191f4d;

  --light: #f7f8fc;
  --light-2: #eef0fb;
  --white: #ffffff;

  --ink: #10132b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --border: #e4e7f5;

  --bench: #f59e0b;
  --r2s: #14b8a6;
  --doc: #0ea5e9;

  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 14px rgba(16, 19, 43, .06);
  --shadow-md: 0 12px 30px rgba(16, 19, 43, .1);
  --shadow-lg: 0 25px 60px rgba(16, 19, 43, .16);
}

/* ---------- Page Loader ---------- */
body.is-loading { overflow: hidden; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 90% 60% at 30% 0%, #1c2266 0%, var(--dark) 55%), var(--dark);
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-rings {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: loaderRipple 2.2s ease-out infinite;
}
.loader-ring.r2 { animation-delay: .6s; border-color: var(--primary-2); }
.loader-ring.r3 { animation-delay: 1.2s; }
@keyframes loaderRipple {
  0%   { width: 40px; height: 40px; opacity: .8; }
  100% { width: 130px; height: 130px; opacity: 0; }
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, .45));
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.loader-bar {
  width: 160px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  animation: loaderBarMove 1.2s ease-in-out infinite;
}
@keyframes loaderBarMove {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-head {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

p { color: var(--gray); }

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

.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
@media (max-width: 767.98px) {
  .section { padding: 4rem 0; }
}

.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.text-gradient {
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(79, 70, 229, .08);
  padding: .4rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.eyebrow i { font-size: .7rem; }
.eyebrow.on-dark { color: var(--accent); background: rgba(34, 211, 238, .1); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }
.reveal-delay-4.in-view { transition-delay: .4s; }

/* ---------- Buttons ---------- */
.btn-k {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 1.7rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn-k::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-k:hover::before { left: 130%; }

.btn-primary-k {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 25px rgba(79,70,229,.35);
}
.btn-primary-k:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(79,70,229,.45); color: var(--white); }

.btn-accent-k {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(34,211,238,.3);
}
.btn-accent-k:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(34,211,238,.4); color: var(--dark); }

/* Per-product CTA — tinted with the section's own accent (--bench/--r2s/--doc)
   via .accent-bench/.accent-r2s/.accent-doc, same tokens the device-showcase
   and feature tiles already use. */
.btn-product-k {
  background: linear-gradient(135deg, var(--card-accent, var(--primary)), color-mix(in srgb, var(--card-accent, var(--primary)) 65%, black));
  color: var(--white);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--card-accent, var(--primary)) 35%, transparent);
}
.btn-product-k:hover { transform: translateY(-3px); box-shadow: 0 16px 34px color-mix(in srgb, var(--card-accent, var(--primary)) 45%, transparent); color: var(--white); }

.btn-outline-k {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline-k:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); color: var(--white); }

.btn-outline-dark-k {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-outline-dark-k:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.btn-sm-k { padding: .6rem 1.3rem; font-size: .82rem; }
.btn-block-k { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(11, 15, 42, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  padding: .75rem 0;
}
.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.brand-logo-img { height: 58px; width: auto; display: block; }

.site-nav .nav-link {
  color: rgba(255,255,255,.78);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  margin: 0 1rem;
  padding: .4rem 0;
  position: relative;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  transition: width .3s ease;
}
.site-nav .nav-link:hover { color: var(--white); }
.site-nav .nav-link.active { color: var(--accent); font-weight: 800; }
.site-nav .nav-link:hover::after { width: 100%; }

.navbar-toggler { border-color: rgba(255,255,255,.35); }
.navbar-toggler-icon { filter: invert(1); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(11, 15, 42, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1rem;
    margin-top: .9rem;
    padding: 1rem 1.3rem 1.3rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav .nav-link { margin: 0; padding: .6rem 0; }
  .site-nav .nav-link::after { display: none; }
  .site-nav { margin-bottom: .5rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 90% 60% at 30% 0%, #1c2266 0%, var(--dark) 55%), var(--dark);
  overflow: hidden;
  padding-top: 6rem;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: float 9s ease-in-out infinite;
}
.hero-blob.b1 { width: 420px; height: 420px; background: var(--primary-2); top: -80px; right: -60px; }
.hero-blob.b2 { width: 320px; height: 320px; background: var(--accent); bottom: -60px; left: -60px; animation-delay: 1.5s; }
.hero-blob.b3 { width: 260px; height: 260px; background: #a855f7; top: 40%; left: 55%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, 25px) scale(1.08); }
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 90%);
}

.hero .lead-k { color: rgba(255,255,255,.68); font-size: 1.12rem; max-width: 560px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.hero-badges span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-badges i { color: var(--accent); }

/* floating product chips around hero visual */
.hero-visual { position: relative; height: 460px; }
.hero-card-main {
  position: absolute; inset: 0;
  margin: auto;
  width: 320px; height: 320px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.4rem;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
  animation: floatSlow 6s ease-in-out infinite;
  padding: 10px;
}
.hero-card-screen { width: 100%; height: 100%; background: #0f1117; border-radius: .9rem; overflow: hidden; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-chip {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: .8rem;
  padding: .75rem 1rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  animation: floatSlow 5s ease-in-out infinite;
}
.hero-chip i { font-size: 1rem; }
.hero-chip.c1 { top: 6%; left: 0%; color: var(--bench); animation-delay: .3s; }
.hero-chip.c2 { top: 42%; right: -2%; color: var(--r2s); animation-delay: 1.1s; }
.hero-chip.c3 { bottom: 6%; left: 8%; color: var(--doc); animation-delay: 1.8s; }
.hero-chip .sub { color: var(--gray); font-weight: 500; font-size: .72rem; }

/* ---------- Product device showcase (multi-device mockup) ---------- */
/* Each product section swaps the plain floating-chip visual for this —
   a monitor + laptop + tablet + phone composition, each "screen" a pure
   CSS mock dashboard (no image assets) themed via --mock-accent so the
   same markup pattern works for BenchMark/Room2Service/DocApp alike. */
.device-showcase { position: relative; height: 460px; }

.device-showcase .device { position: absolute; filter: drop-shadow(0 18px 34px rgba(16,19,43,.16)); }

.device-frame { background: #1c1e26; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.device-screen { overflow: hidden; background: #0f1117; }

.device-tablet { right: 2%; top: 8%; width: 32%; max-width: 175px; z-index: 1; }
.device-tablet .device-frame { border-radius: 12px; padding: 8px; }
.device-tablet .device-screen { border-radius: 4px; aspect-ratio: 4/3; }

.device-monitor { left: 50%; top: 0; width: 76%; max-width: 400px; transform: translateX(-50%); z-index: 2; }
.device-monitor .device-frame { border-radius: 14px; padding: 10px 10px 16px; }
.device-monitor .device-screen { border-radius: 6px; aspect-ratio: 16/10; }
.device-monitor .device-stand { width: 64px; height: 30px; margin: 0 auto; background: linear-gradient(180deg,#2b2e3a,#1c1e26); clip-path: polygon(32% 0, 68% 0, 100% 100%, 0% 100%); }
.device-monitor .device-base { width: 140px; height: 9px; margin: 4px auto 0; background: #1c1e26; border-radius: 6px; }

.device-laptop { left: 0; bottom: 0; width: 44%; max-width: 250px; z-index: 3; }
.device-laptop .device-frame { border-radius: 9px 9px 2px 2px; padding: 7px 7px 0; }
.device-laptop .device-screen { border-radius: 3px; aspect-ratio: 16/10.4; }
.device-laptop .device-base { height: 11px; background: linear-gradient(180deg,#eef0fb,#c9cee6); clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%); border-radius: 0 0 5px 5px; }

.device-phone { right: 0; bottom: 2%; width: 19%; max-width: 100px; z-index: 4; }
.device-phone .device-frame { border-radius: 20px; padding: 6px; }
.device-phone .device-screen { border-radius: 14px; aspect-ratio: 9/18; }

/* ---- mock UI rendered inside every screen ---- */
.mock-ui { height: 100%; width: 100%; display: flex; flex-direction: column; font-family: var(--font-body); }
.mock-topbar { display: flex; align-items: center; gap: 4px; padding: 6px 8px; background: #161822; flex-shrink: 0; }
.mock-dot { width: 5px; height: 5px; border-radius: 50%; background: #3a3d4a; }
.mock-title { margin-left: auto; color: #6b7280; font-size: .5rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.mock-body { flex: 1; display: flex; min-height: 0; }
.mock-sidebar { width: 24%; background: #12141c; display: flex; flex-direction: column; gap: 6px; padding: 8px 6px; flex-shrink: 0; }
.mock-nav-item { display: block; height: 6px; border-radius: 3px; background: #232634; }
.mock-nav-item.active { background: var(--mock-accent, var(--primary)); }
.mock-main { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.mock-stats { display: flex; gap: 6px; }
.mock-stat { flex: 1; background: #161822; border-radius: 5px; padding: 6px 7px; border: 1px solid #232634; min-width: 0; }
.mock-stat b { display: block; color: #fff; font-size: .64rem; font-family: var(--font-head); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-stat span { color: #6b7280; font-size: .4rem; }
.mock-chart { flex: 1; display: flex; align-items: flex-end; gap: 3px; background: #161822; border-radius: 5px; padding: 6px; border: 1px solid #232634; min-height: 28px; }
.mock-chart span { flex: 1; background: var(--mock-accent, var(--primary)); border-radius: 2px 2px 0 0; opacity: .85; }

.mock-report-rows { flex: 1; padding: 9px; display: flex; flex-direction: column; justify-content: space-evenly; }
.mock-report-row { display: flex; align-items: center; gap: 6px; }
.mock-report-row span { width: 24%; height: 6px; border-radius: 3px; background: #232634; flex-shrink: 0; }
.mock-report-row i { flex: 1; height: 6px; border-radius: 3px; background: var(--mock-accent, var(--primary)); opacity: .75; }

.mock-list { flex: 1; padding: 9px; display: flex; flex-direction: column; justify-content: space-evenly; }
.mock-list-row { display: flex; align-items: center; gap: 6px; }
.mock-avatar { width: 12px; height: 12px; border-radius: 50%; background: var(--mock-accent, var(--primary)); opacity: .85; flex-shrink: 0; }
.mock-list-row i { flex: 1; height: 5px; border-radius: 3px; background: #232634; }

@media (max-width: 991.98px) {
  .device-showcase { height: 360px; }
}
@media (max-width: 767.98px) {
  .device-showcase { height: 300px; }
  .device-tablet { display: none; }
}
@media (max-width: 575.98px) {
  .device-showcase { height: 260px; }
  .device-laptop { width: 52%; }
  .device-phone { width: 24%; }
}

/* Floating stat badges layered over the device-showcase — same headline
   numbers already shown inside the monitor mockup, called out again as
   eye-catching cards with a continuous shake loop (staggered per badge
   so all three don't wobble in unison). */
.stat-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--white);
  border-radius: .9rem;
  padding: .65rem .9rem;
  box-shadow: var(--shadow-md);
  animation: statFloatShake 3.6s ease-in-out infinite;
}
.stat-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card-accent, var(--primary));
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
}
.stat-float b { display: block; font-family: var(--font-head); font-size: .92rem; color: var(--ink); line-height: 1.15; white-space: nowrap; }
.stat-float span { font-size: .72rem; color: var(--gray); white-space: nowrap; }

.stat-float.sf1 { top: 2%; left: 2%; animation-delay: 0s; }
.stat-float.sf2 { top: 40%; right: -3%; animation-delay: .7s; }
.stat-float.sf3 { bottom: 4%; left: -2%; animation-delay: 1.4s; }

@keyframes statFloatShake {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  20% { transform: translate(-3px,-2px) rotate(-2deg); }
  40% { transform: translate(3px,1px) rotate(2deg); }
  60% { transform: translate(-2px,2px) rotate(-1deg); }
  80% { transform: translate(2px,-1px) rotate(1deg); }
}

@media (max-width: 991.98px) {
  .stat-float { padding: .5rem .75rem; gap: .5rem; }
  .stat-float-icon { width: 28px; height: 28px; font-size: .72rem; }
  .stat-float b { font-size: .78rem; }
  .stat-float span { font-size: .62rem; }
}
@media (max-width: 575.98px) {
  .stat-float.sf3 { display: none; }
}

/* ---------- Scrolling marquee banner ---------- */
.marquee-wrap {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 26s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,.32);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  letter-spacing: .03em;
}
.marquee-track span i { color: var(--accent); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Product / feature cards ---------- */
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 2rem;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent, var(--primary)), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card .icon-badge {
  width: 58px; height: 58px;
  border-radius: .9rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--card-accent, var(--primary)), color-mix(in srgb, var(--card-accent, var(--primary)) 60%, black));
  transition: transform .35s ease;
}
.product-card:hover .icon-badge { transform: scale(1.1) rotate(-6deg); }
.product-card h4 { font-size: 1.2rem; margin-bottom: .3rem; }
.product-card .tag-line { font-weight: 600; font-size: .84rem; color: var(--card-accent, var(--primary)); margin-bottom: .7rem; }
.product-card p.desc { font-size: .92rem; margin-bottom: 1.1rem; }
.product-card ul { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.product-card ul li {
  font-size: .85rem; color: var(--ink);
  padding: .35rem 0;
  display: flex; align-items: center; gap: .55rem;
}
.product-card ul li i { color: var(--card-accent, var(--primary)); font-size: .75rem; }
.product-card a.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--card-accent, var(--primary));
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.product-card a.card-link i { transition: transform .3s ease; }
.product-card a.card-link:hover i { transform: translateX(5px); }

.accent-bench { --card-accent: var(--bench); }
.accent-r2s { --card-accent: var(--r2s); }
.accent-doc { --card-accent: var(--doc); }

/* ---------- Capability compare grid (checkerboard) ---------- */
/* Full-bleed on purpose — the heading stays inside .container for
   readable line length, but the grid itself spans the viewport (minus
   .compare-grid-wrap's own gutter) rather than the ~1140px container. */
.compare-grid-wrap {
  padding: 0 3rem;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.compare-card {
  border-radius: 1.25rem;
  padding: 2rem 1.3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease;
}
.compare-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.compare-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  color: var(--card-accent, var(--primary));
}
.compare-card h5 {
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.compare-card p {
  font-size: .82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}
.compare-card--dark {
  background: var(--card-accent, var(--primary));
  border-color: transparent;
}
.compare-card--dark .compare-icon { color: var(--white); }
.compare-card--dark h5 { color: var(--white); }
.compare-card--dark p { color: rgba(255,255,255,.78); }

@media (max-width: 1199.98px) {
  .compare-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .compare-grid-wrap { padding: 0 1.5rem; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { padding: 1.8rem 1.3rem; }
}

/* ---------- Feature / value tiles ---------- */
.feature-tile {
  background: var(--light);
  border-radius: 1rem;
  padding: 1.8rem;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature-tile .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  transition: transform .3s ease;
}
.feature-tile:hover .icon-circle { transform: rotate(-8deg) scale(1.08); }
.feature-tile h5 { font-size: 1.02rem; margin-bottom: .4rem; }
.feature-tile p { font-size: .87rem; margin: 0; }

/* ---------- Stats counter ---------- */
.stats-band { background: var(--dark); }
.stat-item h3 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .2rem;
}
.stat-item h3 span { color: var(--accent); }
.stat-item p { color: rgba(255,255,255,.55); font-size: .88rem; margin: 0; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 2rem;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .stars { color: #f59e0b; font-size: .85rem; margin-bottom: 1rem; }
.testimonial-card p.quote { font-style: italic; color: var(--ink); font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
}
.testimonial-author .name { font-weight: 700; font-size: .88rem; }
.testimonial-author .role { font-size: .76rem; color: var(--gray); }

/* Auto-playing carousel (Bootstrap's own — already loaded on every page) —
   each .carousel-item holds a row of 3 cards, so it advances a whole group
   at a time instead of one testimonial at a time. Dots are a custom class
   rather than Bootstrap's `.carousel-indicators` purely for styling: the
   JS still finds and drives them via their data-bs-slide-to attributes
   regardless of class name. */
.testimonial-carousel { padding-bottom: .5rem; }
.testimonial-carousel .carousel-item { padding: .3rem .3rem 1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.6rem;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.carousel-dots button.active {
  background: var(--primary-2);
  transform: scale(1.3);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary), #7c3aed);
  border-radius: 1.6rem;
  padding: 3.5rem 3rem;
  overflow: hidden;
  text-align: center;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 60%);
}
.cta-band .cta-inner { position: relative; z-index: 1; }

/* ---------- Timeline (about) ---------- */
.timeline-track { position: relative; padding-left: 2rem; }
.timeline-track::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--primary-2), var(--accent));
}
.timeline-node { position: relative; padding-bottom: 2.2rem; }
.timeline-node:last-child { padding-bottom: 0; }
.timeline-node::before {
  content: ""; position: absolute; left: -2rem; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-2);
}
.timeline-node h6 { font-family: var(--font-head); margin-bottom: .25rem; }
.timeline-node p { font-size: .87rem; margin: 0; }

/* ---------- Team ---------- */
.team-card { text-align: left; }
.team-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.team-card:hover .team-photo { box-shadow: var(--shadow-md); }
.team-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-share {
  position: absolute;
  right: 14px; bottom: 14px;
  display: flex; flex-direction: column; align-items: center;
}
.team-share-links {
  display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: .55rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.team-photo:hover .team-share-links,
.team-share:focus-within .team-share-links {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.team-share-links a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.team-share-links a:hover { transform: translateY(-2px); }
.team-share-links a.share-linkedin { color: #0a66c2; }
.team-share-links a.share-x { color: #0f172a; }
.team-share-links a.share-email { color: var(--primary); }
.team-share-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: none;
  background: rgba(11, 15, 42, .82);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.team-photo:hover .team-share-toggle { background: var(--accent-2); transform: scale(1.06); }
.team-info { padding: 1.1rem .1rem 0; }
.team-info h6 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: .15rem; }
.team-info .role { color: var(--gray); font-size: .85rem; font-weight: 500; margin: 0; }

/* ---------- Services grid (icon card, notched corner, arrow) ---------- */
.svc-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-media {
  aspect-ratio: 4 / 3;
  border-radius: 1.35rem 1.35rem 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, .95);
  transition: transform .4s ease;
}
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-3deg); }
.svc-body {
  position: relative;
  flex: 1;
  background: var(--light-2);
  border-radius: 0 0 1.35rem 1.35rem;
  padding: 1.6rem 4.1rem 2.5rem 1.7rem;
  -webkit-mask-image: radial-gradient(circle at calc(100% - 22px) calc(100% - 22px), transparent 27px, #000 28px);
          mask-image: radial-gradient(circle at calc(100% - 22px) calc(100% - 22px), transparent 27px, #000 28px);
}
.svc-body h4 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: .5rem; }
.svc-body p {
  font-size: .86rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-arrow {
  position: absolute;
  right: -4px; bottom: -4px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.svc-card:hover .svc-arrow { background: var(--primary); color: var(--white); transform: scale(1.06) rotate(8deg); }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: var(--light);
  border-radius: 50px;
  padding: .4rem;
}
.pricing-toggle button {
  border: none; background: transparent;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: .55rem 1.3rem; border-radius: 50px; color: var(--gray);
  cursor: pointer; transition: all .3s ease;
}
.pricing-toggle button.active {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(79,70,229,.3);
}
.save-badge {
  font-size: .68rem; font-weight: 700; color: var(--r2s);
  background: rgba(20,184,166,.1);
  padding: .15rem .5rem; border-radius: 50px; margin-left: .3rem;
}

.price-card-k {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.2rem;
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card-k:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card-k.featured {
  background: linear-gradient(160deg, var(--dark-2), var(--dark));
  border: none;
  transform: scale(1.04);
}
.price-card-k.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-card-k.featured h4,
.price-card-k.featured .plan-desc-k,
.price-card-k.featured li { color: var(--white); }
.price-card-k.featured .plan-desc-k { color: rgba(255,255,255,.55); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .06em;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(34,211,238,.4);
}
.price-card-k h4 { font-size: 1.25rem; margin-bottom: .2rem; }
.plan-desc-k { font-size: .84rem; color: var(--gray); margin-bottom: 1.2rem; }
.price-amount { display: flex; align-items: baseline; gap: .3rem; margin-bottom: 1.3rem; }
.price-amount .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; }
.price-card-k.featured .price-amount .num { color: var(--white); }
.price-amount .period { font-size: .82rem; color: var(--gray); }
.price-card-k.featured .price-amount .period { color: rgba(255,255,255,.5); }
.price-list-k { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.price-list-k li { display: flex; gap: .6rem; align-items: flex-start; font-size: .87rem; padding: .35rem 0; }
.price-list-k li i { color: var(--r2s); margin-top: .2rem; }
.price-card-k.featured .price-list-k li i { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-item-k {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: .9rem;
  margin-bottom: .9rem;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item-k.open { border-color: var(--primary); }
.faq-q-k {
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.faq-q-k i { color: var(--primary); transition: transform .3s ease; }
.faq-item-k.open .faq-q-k i { transform: rotate(135deg); }
.faq-a-k {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 1.4rem;
  font-size: .88rem;
}
.faq-item-k.open .faq-a-k { max-height: 260px; padding: 0 1.4rem 1.2rem; }

/* ---------- Contact ---------- */
.contact-card-k {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.2rem;
}
.form-label-k { font-size: .85rem; font-weight: 700; font-family: var(--font-head); margin-bottom: .4rem; display: block; }
.form-control-k {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: .7rem;
  padding: .8rem 1rem;
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color .25s ease, box-shadow .25s ease;
  background: var(--light);
}
.form-control-k:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
  background: var(--white);
}
textarea.form-control-k { resize: vertical; min-height: 130px; }

.contact-info-tile {
  display: flex; gap: 1rem;
  background: var(--light);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
  transition: transform .3s ease, background .3s ease;
}
.contact-info-tile:hover { transform: translateX(6px); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-info-tile .icon-circle {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: .7rem;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-tile .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); font-weight: 700; }
.contact-info-tile .value { font-weight: 700; font-size: .92rem; }
.contact-info-tile .sub { font-size: .78rem; color: var(--gray); }

.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
}
.hours-card h4 { color: var(--primary-dark); margin-bottom: .3rem; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row .day { color: var(--gray); font-size: .9rem; }
.hours-row .time { font-weight: 700; font-size: .9rem; color: var(--ink); }
.hours-row.is-emergency .time { color: var(--primary); }

/* ---------- Map ---------- */
.map-panel {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-panel img { width: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  margin: -40px 0 0 -20px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(79, 70, 229, .45);
  animation: mapPinDrop .6s ease;
}
.map-pin i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  color: var(--white);
  font-size: 1rem;
}
@keyframes mapPinDrop {
  0% { transform: rotate(-45deg) translateY(-30px) scale(.6); opacity: 0; }
  70% { transform: rotate(-45deg) translateY(4px) scale(1.05); opacity: 1; }
  100% { transform: rotate(-45deg) translateY(0) scale(1); }
}
.map-chip {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  display: flex; align-items: center; gap: .8rem;
  background: var(--white);
  border-radius: .9rem;
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.map-chip .icon-circle {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: .65rem;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.map-chip .map-chip-title { font-weight: 700; font-size: .85rem; color: var(--ink); }
.map-chip .map-chip-sub { font-size: .74rem; color: var(--gray); }
.map-attribution {
  position: absolute;
  bottom: .5rem; right: .7rem;
  font-size: .68rem;
  color: rgba(0,0,0,.55);
  background: rgba(255,255,255,.75);
  padding: .1rem .5rem;
  border-radius: .3rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 4.5rem 0 1.6rem;
}
.site-footer .brand { margin-bottom: 1rem; }
.site-footer .brand-logo-img { height: 64px; }
.site-footer p.tagline { font-size: .87rem; color: rgba(255,255,255,.4); max-width: 320px; }
.site-footer h6 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer a.footer-link {
  display: block; color: rgba(255,255,255,.5);
  font-size: .89rem; margin-bottom: .65rem;
  transition: color .25s ease, transform .25s ease;
}
.site-footer a.footer-link:hover { color: var(--accent); transform: translateX(4px); display: inline-block; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .3s ease;
}
.footer-social a:hover { background: linear-gradient(135deg, var(--primary-2), var(--accent)); color: var(--white); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding-top: 1.4rem;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); margin-left: 1.3rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
  border: none;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-5px); }

/* ---------- Request Demo Modal ---------- */
.demo-modal-content {
  border: none;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demo-modal-content .modal-body { padding: 2.8rem 2.6rem; position: relative; }
.demo-modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 2;
  width: 34px; height: 34px;
  background: var(--light);
  border-radius: 50%;
  opacity: 1;
}
.demo-modal-close:hover { background: var(--border); }
.demo-modal-form-wrap h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.demo-modal-sub { font-size: .92rem; margin-bottom: 1.6rem; }
.demo-modal-success { text-align: center; padding: 1.2rem 0; }
.demo-success-icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r2s), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.demo-modal-success h4 { margin-bottom: .5rem; }
.demo-modal-success p { margin-bottom: 1.4rem; }
@media (max-width: 575.98px) {
  .demo-modal-content .modal-body { padding: 2.3rem 1.4rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(ellipse 90% 60% at 30% 0%, #1c2266 0%, var(--dark) 55%), var(--dark);
  padding: 9.5rem 0 4.5rem;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p.lead-k { color: rgba(255,255,255,.65); margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 8rem 0 3rem; }
  .hero-visual { height: 340px !important; margin-top: 2rem; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .price-card-k.featured { transform: none; }
  .price-card-k.featured:hover { transform: translateY(-8px); }
  .stat-item h3 { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .cta-band { padding: 2.5rem 1.5rem; }
  .hero-visual { height: 280px !important; }
  .hero-card-main { width: 220px; height: 220px; }
  .hero-chip { padding: .55rem .75rem; font-size: .74rem; max-width: 62vw; }
  .hero-chip i { font-size: .85rem; }
  .hero-chip .sub { font-size: .66rem; }
  .hero-chip.c1 { left: 2%; }
  .hero-chip.c2 { right: 0%; }
  .hero-chip.c3 { left: 4%; }
  .hero-badges { gap: .9rem 1.2rem; font-size: .8rem; }
  .product-card, .testimonial-card, .price-card-k, .contact-card-k { padding: 1.5rem; }
  .stat-item h3 { font-size: 1.9rem; }
  .footer-bottom { flex-direction: column; gap: .6rem; text-align: center; }
  .footer-bottom a { margin: 0 .65rem; }
}

@media (max-width: 575.98px) {
  .hero { padding: 7rem 0 2.5rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .hero-visual { height: 250px !important; }
  .hero-card-main { width: 180px; height: 180px; }
  .hero-chip { max-width: 56vw; padding: .5rem .65rem; gap: .4rem; }
  .hero-chip .sub { display: none; }
  .btn-k { padding: .75rem 1.35rem; font-size: .85rem; }
  .cta-band h2 { font-size: 1.4rem !important; }
  .popular-badge { font-size: .6rem; padding: .35rem .8rem; }
  .price-amount .num { font-size: 2rem; }
}
