:root {
  --bg: #f7fafb;
  --bg-2: #eef6f8;
  --paper: rgba(255, 255, 255, 0.78);
  --paper-solid: #ffffff;
  --ink: #182126;
  --muted: #667278;
  --soft: #8b969b;
  --line: rgba(24, 33, 38, 0.10);
  --dark: #101820;
  --dark-2: #17242d;
  --cyan: #34d8e8;
  --cyan-2: #24b9ce;
  --cyan-soft: rgba(52, 216, 232, 0.16);
  --success: #42cfa2;
  --warning: #f1b95b;
  --danger: #ef7c7c;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
  --shadow-soft: 0 16px 45px rgba(16, 24, 32, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1440px;
  --section-gap: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(52, 216, 232, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(52, 216, 232, 0.13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #f4f8f9 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent 70%);
  z-index: -2;
}

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

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

.container {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 172px;
}

/* ===== ANIMATED LOGO (bounce dot) ===== */
.animated-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.animated-logo__dot {
  position: absolute;
  left: 82.1%;
  top: 2%;
  width: 4.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #6DE0EF, #35C5DC 55%, #2BAFC4 100%);
  box-shadow: 0 0 6px 1px rgba(53, 197, 220, 0.4);
  animation: logo-bounce 1.8s cubic-bezier(0.25, 0, 0.5, 1) infinite;
  pointer-events: none;
}

.animated-logo--footer {
  display: inline-flex;
  margin-bottom: 16px;
}

@keyframes logo-bounce {
  0%   { transform: translateY(-120%) scale(1.1, 0.9); }
  4%   { transform: translateY(-100%) scale(0.98, 1.06); }
  10%  { transform: translateY(-60%) scale(0.94, 1.16); }
  16%  { transform: translateY(10%) scale(0.9, 1.35); }
  20%  { transform: translateY(55%) scale(0.94, 1.1); }
  22%  { transform: translateY(75%) scale(1.12, 0.7); }
  23%  { transform: translateY(80%) scale(1.25, 0.45); }
  25%  { transform: translateY(60%) scale(1.15, 0.6); }
  29%  { transform: translateY(30%) scale(1.05, 0.88); }
  36%  { transform: translateY(0%) scaleY(1.08); }
  44%  { transform: translateY(-35%) scale(0.96, 1.14); }
  53%  { transform: translateY(-65%) scale(0.97, 1.08); }
  64%  { transform: translateY(-90%) scale(0.99, 1.03); }
  78%  { transform: translateY(-110%) scale(1.04, 0.96); }
  92%  { transform: translateY(-118%) scale(1.08, 0.92); }
  100% { transform: translateY(-120%) scale(1.1, 0.9); }
}

@media (prefers-reduced-motion: reduce) {
  .animated-logo__dot { animation: none; }
}

.brand-logo {
  width: 172px;
  height: auto;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #5f6264;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #e8ffff 0 10%, #4de2ef 34%, #16aeca 100%);
  box-shadow: inset -4px -8px 12px rgba(0, 94, 110, 0.22), 0 8px 22px rgba(52, 216, 232, 0.30);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4f5c62;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #506169;
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #061015;
  background: linear-gradient(135deg, #67f1f5 0%, #28c9de 55%, #16aac7 100%);
  box-shadow: 0 14px 30px rgba(34, 190, 211, 0.28);
}

.btn-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #17242d, #0d151b);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.22);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.06);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0 auto;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-panel-inner {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.mobile-panel a {
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  color: #4f5c62;
  font-weight: 750;
}

.mobile-panel a:hover {
  background: var(--cyan-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 86px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(52, 216, 232, 0.35);
  border-radius: 999px;
  color: #29515a;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 12px 28px rgba(52, 216, 232, 0.10);
  font-size: 13px;
  font-weight: 850;
}

.eyebrow-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #f2ffff 0 9%, #4ce5ef 38%, #16aeca 100%);
  box-shadow: inset -3px -5px 9px rgba(0, 87, 103, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin: 28px 0 22px;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.gradient-word {
  color: transparent;
  background: linear-gradient(135deg, #5b666b, #171f25 58%, #19b7cd);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: #5a676d;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.proof-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.05);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.06em;
}

.proof-card span {
  display: block;
  color: #718087;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-visual-wrap {
  position: relative;
  min-height: 650px;
}

.glow-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(0.2px);
}

.orb-one {
  top: 16px;
  right: 18px;
  width: 105px;
  height: 105px;
  background: radial-gradient(circle at 30% 28%, #edffff 0 8%, #49e8f0 34%, #13a9c7 100%);
  box-shadow: inset -13px -18px 22px rgba(0, 91, 110, 0.24), 0 28px 70px rgba(52, 216, 232, 0.34);
  animation: float 7s ease-in-out infinite;
}

.orb-two {
  left: -24px;
  top: 230px;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 24%, #edffff 0 10%, #5beaf1 38%, #16aeca 100%);
  box-shadow: 0 22px 46px rgba(52, 216, 232, 0.26);
  animation: float 8s ease-in-out infinite reverse;
}

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

.device-shell {
  position: relative;
  margin: 18px 0 0 auto;
  width: min(100%, 560px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(238,246,248,0.76)),
    linear-gradient(135deg, rgba(52,216,232,0.18), transparent);
  box-shadow: var(--shadow);
  padding: 16px;
}

.dashboard {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(24, 33, 38, 0.10);
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 4%, rgba(52,216,232,0.16), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fbfc);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dash-logo img {
  width: 132px;
  height: auto;
}

.dash-meta {
  display: flex;
  gap: 7px;
}

.dash-meta span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d5dde0;
}

.dash-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  padding: 18px;
}

.metric-card,
.panel-card,
.kds-ticket,
.bill-card,
.pos-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.metric-card {
  padding: 17px;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #718087;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.metric-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef0;
}

.metric-line span {
  display: block;
  width: var(--w, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
}

.panel-card {
  padding: 17px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #15715f;
  background: rgba(66, 207, 162, 0.14);
  font-size: 11px;
  font-weight: 850;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 7px;
  height: 105px;
  padding-top: 8px;
}

.chart-bars span {
  display: block;
  min-height: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #61edf2, #21b7ce);
  opacity: 0.88;
}

.pos-card {
  grid-column: 1 / -1;
  padding: 15px;
  background: linear-gradient(135deg, #101820, #1b2a34);
  color: #ffffff;
}

.pos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pos-title {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pos-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(52, 216, 232, 0.16);
  color: #8ef7ff;
  font-size: 11px;
  font-weight: 850;
}

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

.pos-key {
  min-height: 54px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #d7e4e7;
  font-size: 11px;
  font-weight: 750;
}

.pos-key strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 14px;
}

.kds-ticket {
  padding: 15px;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: #6b777d;
  font-size: 12px;
  font-weight: 850;
}

.ticket-items {
  display: grid;
  gap: 8px;
}

.ticket-items span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #f2f7f8;
  color: #4b5a61;
  font-size: 12px;
  font-weight: 760;
}

.bill-card {
  padding: 15px;
  min-height: 178px;
}

.bill-title {
  margin-bottom: 11px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.qr-box {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 13px;
  align-items: center;
}

.qr {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, var(--ink) 8px, transparent 8px) 0 0 / 18px 18px,
    linear-gradient(var(--ink) 8px, transparent 8px) 0 0 / 18px 18px,
    #ffffff;
  border: 8px solid #f0f4f5;
}

.qr-lines {
  display: grid;
  gap: 8px;
}

.qr-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #dde8eb;
}

.qr-lines span:nth-child(1) { width: 92%; }
.qr-lines span:nth-child(2) { width: 68%; }
.qr-lines span:nth-child(3) { width: 82%; }
.qr-lines span:nth-child(4) { width: 52%; background: var(--cyan-soft); }

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 54px;
  width: 236px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.floating-card small {
  display: block;
  margin-bottom: 8px;
  color: #6c7b82;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  letter-spacing: -0.06em;
}

.floating-card p {
  margin: 0;
  color: #64737a;
  font-size: 13px;
  line-height: 1.5;
}

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

.section + .section {
  padding-top: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 40px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #18889a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-lead {
  max-width: 480px;
  margin: 0;
  color: #64737a;
  font-size: 17px;
  line-height: 1.68;
}

/* ── Trust Bar ────────────────────────────────── */
.trust-bar-section {
  padding: 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(16,24,32,0.06);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-sub);
}
.trust-icon {
  flex-shrink: 0;
  color: var(--ink-sub);
}

/* ── Reasons Section ─────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.reason-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 4px 24px rgba(16, 24, 32, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.reason-card:hover {
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.10);
  transform: translateY(-2px);
}
.reason-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bg-offset, #f2f4f6);
  color: var(--ink);
  margin-bottom: 18px;
}
.reason-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--ink);
}
.reason-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-sub);
  margin: 0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.app-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.app-card.dark {
  color: #ffffff;
  background: radial-gradient(circle at 75% 0%, rgba(52,216,232,0.32), transparent 34%), linear-gradient(145deg, #111a21, #1f303a);
}

.app-card.dark p,
.app-card.dark li {
  color: rgba(255,255,255,0.70);
}

.app-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  background: var(--cyan-soft);
  color: #128699;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

/* Suite interactive tabs */
.suite-tabs {
  margin-top: 40px;
}
.suite-tabs__nav {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 16px;
  background: rgba(6, 16, 21, 0.04);
  width: fit-content;
  margin: 0 auto 36px;
}
.suite-tabs__nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: none;
  border-radius: 12px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.suite-tabs__nav button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.suite-tabs__nav button:hover:not(.is-active) {
  color: var(--ink);
}
.suite-tabs__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--cyan-soft);
  color: #128699;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.06em;
  flex-shrink: 0;
}
.suite-tabs__panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.suite-tabs__panel h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 20px;
}
.suite-tabs__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.suite-tabs__panel li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
}
.suite-tabs__panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (max-width: 740px) {
  .suite-tabs__nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .suite-tabs__nav button { padding: 9px 16px; font-size: 13px; }
  .suite-tabs__panel { text-align: left; }
}

.app-card.dark .app-icon {
  background: rgba(255,255,255,0.10);
  color: #7df3fb;
}

.app-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.055em;
}

.app-card p {
  color: #64737a;
  font-size: 15px;
  line-height: 1.66;
}

.app-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.app-list li {
  display: flex;
  gap: 9px;
  color: #536169;
  font-size: 13px;
  font-weight: 760;
}

.app-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cyan-2);
}

/* ── Industry Tabs ────────────────────────────── */
.ind-tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 50px rgba(16,24,32,0.07);
  overflow: hidden;
  min-height: 340px;
}
.ind-tabs__nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(245,247,249,0.6);
  padding: 8px;
  gap: 2px;
  overflow-y: auto;
}
.ind-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-sub);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: left;
  white-space: nowrap;
}
.ind-tab-btn:hover {
  background: rgba(0,0,0,0.04);
}
.ind-tab-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(16,24,32,0.08);
  font-weight: 700;
}
.ind-tab-emoji {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.ind-tabs__panels {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ind-panel__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  color: var(--ink);
}
.ind-panel__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-sub);
  margin: 0 0 24px;
  max-width: 520px;
}
.ind-panel__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.ind-panel__features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.ind-panel__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16899b;
  font-weight: 700;
}
.ind-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #16899b;
  text-decoration: none;
  transition: color 0.2s;
}
.ind-panel__link:hover {
  color: #0d5e6b;
}
.ind-panel-enter {
  transition: opacity 0.2s ease;
}
.ind-panel-enter-start {
  opacity: 0;
}
.ind-panel-enter-end {
  opacity: 1;
}

/* ── Testimonials ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 4px 24px rgba(16,24,32,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.testimonial-quote {
  position: relative;
}
.testimonial-icon {
  margin-bottom: 8px;
  color: var(--ink);
}
.testimonial-quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d5e6b, #16899b);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--ink-sub);
}

.feature-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #111a21, #20323d);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.feature-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,216,232,0.45), transparent 68%);
}

.feature-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.feature-panel p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.72;
}

.workflow-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.workflow-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.workflow-row:last-child {
  border-bottom: 0;
}

.workflow-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(52,216,232,0.16);
  color: #87f6ff;
  font-weight: 950;
}

.workflow-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.workflow-row span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 650;
}

.workflow-status {
  color: #88f6ff;
  font-size: 12px;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}

.feature-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: #64737a;
  font-size: 14px;
  line-height: 1.62;
}

.highlight {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-soft);
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.highlight-copy {
  padding: 28px 14px 28px 24px;
}

.highlight-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.highlight-copy p {
  max-width: 520px;
  margin-bottom: 24px;
  color: #64737a;
  font-size: 17px;
  line-height: 1.72;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #4f5c62;
  font-size: 14px;
  font-weight: 750;
}

.mini-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 999px;
  color: #087286;
  background: var(--cyan-soft);
  font-size: 12px;
  font-weight: 950;
}

.bill-preview {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 18%, rgba(52,216,232,0.24), transparent 26%),
    linear-gradient(145deg, #111a21, #20303a);
}

.invoice-card {
  width: min(82%, 380px);
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0,0,0,0.20);
  transform: rotate(-4deg);
}

.invoice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.invoice-logo {
  width: 122px;
}

.invoice-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf7f8;
  color: #16899b;
  font-size: 11px;
  font-weight: 900;
}

.invoice-lines {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}

.invoice-lines span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: #e6eef0;
}

.invoice-lines span:nth-child(1) { width: 94%; }
.invoice-lines span:nth-child(2) { width: 74%; }
.invoice-lines span:nth-child(3) { width: 86%; }
.invoice-lines span:nth-child(4) { width: 58%; }

.invoice-qr-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: #f3f8f9;
}

.invoice-qr {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, #111a21 9px, transparent 9px) 0 0 / 20px 20px,
    linear-gradient(#111a21 9px, transparent 9px) 0 0 / 20px 20px,
    #ffffff;
  border: 10px solid #ffffff;
}

.invoice-amount strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.06em;
}

.invoice-amount span {
  color: #667278;
  font-size: 12px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}

.plan-card.featured {
  color: #ffffff;
  background: radial-gradient(circle at 86% 0%, rgba(52,216,232,0.36), transparent 32%), linear-gradient(145deg, #111a21, #20323d);
  transform: translateY(-18px);
}

.plan-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #13899b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card.featured .plan-badge {
  background: rgba(255,255,255,0.12);
  color: #8cf7ff;
}

.plan-card h3 {
  margin-bottom: 11px;
  font-size: 24px;
  letter-spacing: -0.055em;
}

.plan-card p {
  color: #64737a;
  font-size: 14px;
  line-height: 1.6;
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255,255,255,0.70);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: #536169;
  font-size: 13px;
  font-weight: 760;
}

.plan-card li::before {
  content: "•";
  color: var(--cyan-2);
  font-weight: 950;
  margin-right: 8px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 40px;
  background: radial-gradient(circle at 82% 10%, rgba(52,216,232,0.38), transparent 28%), linear-gradient(145deg, #101820, #1d2d37);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,216,232,0.20), transparent 68%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}
.cta-sub {
  margin-top: 12px !important;
  font-size: 14px !important;
  opacity: 0.6;
  font-style: italic;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta .btn-ghost {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
}

.footer {
  padding: 48px 0 var(--section-gap);
  color: #68777e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 164px;
  margin-bottom: 16px;
}

.footer p {
  max-width: 360px;
  color: #68777e;
  font-size: 14px;
  line-height: 1.7;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #68777e;
  font-size: 14px;
  font-weight: 650;
}

.footer a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .feature-wrap,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-wrap {
    min-height: auto;
  }

  .device-shell {
    margin-right: auto;
  }

  .app-grid,
  .pricing-grid,
  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }

  .ind-tabs {
    grid-template-columns: 1fr;
  }
  .ind-tabs__nav {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    padding: 8px 12px;
  }
  .ind-tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .ind-tabs__panels {
    padding: 28px 24px;
  }
  .ind-panel__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    height: 72px;
  }

  .brand-logo {
    width: 146px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  body.menu-open .mobile-panel {
    display: block;
  }

  body.menu-open .menu-toggle span {
    transform: rotate(45deg);
  }

  body.menu-open .menu-toggle span::before {
    transform: translateY(0) rotate(90deg);
  }

  body.menu-open .menu-toggle span::after {
    transform: translateY(-2px);
    opacity: 0;
  }

  .hero {
    padding: 52px 0 48px;
  }

  .hero h1 {
    letter-spacing: -0.065em;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :root {
    --section-gap: 56px;
  }

  .section-head {
    display: block;
  }

  .section-lead {
    margin-top: 18px;
  }

  .dash-body,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-card,
  .orb-two {
    display: none;
  }

  .bill-preview {
    min-height: 420px;
  }

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

  .cta,
  .highlight {
    border-radius: 30px;
  }

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

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  :root {
    --section-gap: 48px;
  }

  .app-grid,
  .pricing-grid,
  .hero-proof,
  .footer-grid,
  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 16px;
    padding: 14px 20px;
  }

  .ind-tabs__panels {
    padding: 20px 16px;
  }
  .ind-panel__title {
    font-size: 20px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .device-shell {
    padding: 10px;
    border-radius: 28px;
  }

  .dashboard {
    min-height: auto;
    border-radius: 22px;
  }

  .dash-topbar {
    padding: 16px;
  }

  .dash-logo img {
    width: 112px;
  }

  .dashboard .metric-card:nth-child(2),
  .dashboard .panel-card:nth-child(4),
  .dashboard .bill-card {
    display: none;
  }

  .feature-panel {
    min-height: 620px;
    padding: 26px;
  }

  .workflow-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .workflow-row {
    grid-template-columns: 38px 1fr;
  }

  .workflow-status {
    grid-column: 2;
  }

  .highlight-copy {
    padding: 14px 6px;
  }

  .invoice-card {
    width: 88%;
    padding: 20px;
  }

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

  .invoice-qr {
    width: 104px;
    height: 104px;
  }

  .cta {
    padding: 34px 24px;
  }
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 160px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    z-index: 100;
}

.lang-dropdown.show { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.15s;
}

.lang-option:hover { background: var(--cyan-soft); }

.language-switcher.open .lang-dropdown { display: block; }

/* ===== BREADCRUMBS (legacy) ===== */
.breadcrumbs { padding: 24px 0 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: 13px; font-weight: 650; color: #8b969b; }
.breadcrumb-item + .breadcrumb-item::before { content: "›"; margin-right: 8px; color: #c0c8cc; }
.breadcrumb-item a { color: #667278; transition: color 0.15s; }
.breadcrumb-item a:hover { color: var(--ink); }
.breadcrumb-item span[aria-current] { color: var(--ink); }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    padding: 32px 0 0;
}

.page-hero__bg { display: none; }

.page-hero__breadcrumbs {
    margin-bottom: 20px;
}

.page-hero__breadcrumbs ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
    color: #8b969b;
}

.page-hero__breadcrumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: #c8cfd2;
    font-weight: 400;
}

.page-hero__breadcrumbs a {
    color: #8b969b;
    transition: color 0.15s;
}

.page-hero__breadcrumbs a:hover {
    color: var(--cyan-2);
}

.page-hero__breadcrumbs span[aria-current] {
    color: var(--ink);
}

.page-hero__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.page-hero__kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cyan-2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-hero__title {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--ink);
}

.page-hero__desc {
    margin: 0 auto;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.6;
    color: #64737a;
}

@media (max-width: 860px) {
    .page-hero {
        padding: 24px 0 0;
    }

    .page-hero__content {
        padding-bottom: 28px;
    }
}

@media (max-width: 620px) {
    .page-hero {
        padding: 20px 0 0;
    }

    .page-hero__content {
        padding-bottom: 24px;
    }
}

/* ===== PAGE BODY (Inner Pages Content) ===== */
.page-body {
    max-width: 780px;
    margin-bottom: 48px;
}

.page-section-block {
    padding: 48px 0;
    border-top: 1px solid var(--line);
}

.page-section-block:first-of-type {
    border-top: none;
    padding-top: 0;
}

.page-section-block__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.page-section-block__lead {
    margin: 0 0 20px;
    max-width: 600px;
    font-size: 17px;
    line-height: 1.65;
    color: #64737a;
    font-weight: 450;
}

/* ===== BLOG ===== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.blog-filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #64737a;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    transition: all 0.18s ease;
}

.blog-filter-tag:hover {
    color: var(--ink);
    border-color: rgba(52, 216, 232, 0.3);
    background: rgba(52, 216, 232, 0.06);
}

.blog-filter-tag.is-active {
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.blog-card {
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.74); box-shadow: 0 12px 34px rgba(16,24,32,0.06);
    overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-card-image { display: block; overflow: hidden; aspect-ratio: 5/3; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 22px; }
.blog-card-category { display: inline-block; margin-bottom: 10px; color: #18889a; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card-title { margin-bottom: 10px; font-size: 20px; letter-spacing: -0.04em; line-height: 1.24; }
.blog-card-title a { color: var(--ink); transition: color 0.15s; }
.blog-card-title a:hover { color: var(--cyan-2); }
.blog-card-excerpt { margin-bottom: 14px; color: #64737a; font-size: 14px; line-height: 1.6; }
.blog-card-meta { color: #8b969b; font-size: 12px; font-weight: 650; }

.blog-detail-header { max-width: 780px; margin-bottom: 32px; }
.blog-detail-meta { display: flex; gap: 16px; color: #8b969b; font-size: 13px; font-weight: 650; }
.blog-detail-image { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.blog-detail-image img { width: 100%; height: auto; }
.blog-detail-body { max-width: 780px; }

.blog-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.blog-related h2 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

/* ===== PROSE ===== */
.prose { color: #3a474d; font-size: 16px; line-height: 1.78; }
.prose h2 { margin-top: 36px; margin-bottom: 16px; font-size: 28px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.prose h3 { margin-top: 28px; margin-bottom: 12px; font-size: 22px; font-weight: 750; letter-spacing: -0.03em; color: var(--ink); }
.prose h4 { margin-top: 24px; margin-bottom: 10px; font-size: 18px; font-weight: 700; color: var(--ink); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin-bottom: 18px; padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--cyan-2); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
.prose a:hover { color: #18889a; }
.prose img { border-radius: var(--radius-md); margin: 24px 0; max-width: 100%; height: auto; }
.prose blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--cyan);
    background: rgba(52, 216, 232, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #4a5861;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.prose th, .prose td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 700; color: var(--ink); background: rgba(52, 216, 232, 0.04); }
.prose hr { border: none; height: 1px; background: var(--line); margin: 32px 0; }
.prose pre { margin: 24px 0; padding: 20px; border-radius: var(--radius-sm); background: var(--dark); color: #e2e8f0; overflow-x: auto; font-size: 14px; line-height: 1.6; }
.prose code { font-family: 'JetBrains Mono', monospace; font-size: 0.9em; }
.prose :first-child { margin-top: 0; }
.prose :last-child { margin-bottom: 0; }

/* ===== SERVICE DETAIL ===== */
.service-detail {
    max-width: 780px;
}

.service-category-block {
    margin-bottom: 56px;
}

.service-category-block h2 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.service-category-block > p {
    color: #64737a;
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 640px;
    line-height: 1.65;
}

.service-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.service-related h2 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    padding: 64px 24px; text-align: center; border: 1px solid var(--line);
    border-radius: var(--radius-lg); background: rgba(255,255,255,0.5);
}

.empty-state p { color: #8b969b; font-size: 16px; font-weight: 650; }

/* ===== BLOG/SERVICES RESPONSIVE ===== */
@media (max-width: 1120px) {
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING PAGE ===== */
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
}

.pricing-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #64737a;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    transition: all 0.18s ease;
}

.pricing-tab:hover {
    color: var(--ink);
    border-color: rgba(52, 216, 232, 0.3);
    background: rgba(52, 216, 232, 0.06);
}

.pricing-tab.is-active {
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
}

.pricing-toggle {
    text-align: center;
}

.pricing-toggle__switch {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    border-radius: 100px;
    background: rgba(24, 33, 38, 0.06);
    margin-bottom: 36px;
}

.pricing-toggle__switch button {
    padding: 8px 22px;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #64737a;
    background: transparent;
    cursor: pointer;
    transition: all 0.18s ease;
}

.pricing-toggle__switch button.is-active {
    color: #fff;
    background: var(--dark);
    box-shadow: 0 2px 8px rgba(16, 24, 32, 0.15);
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 16px 0 12px;
}

.plan-price__amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price__currency {
    font-size: 15px;
    font-weight: 700;
    color: #8b969b;
}

.plan-price__value {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
}

.plan-card.featured .plan-price__value {
    color: #fff;
}

.plan-card.featured .plan-price__currency {
    color: rgba(255, 255, 255, 0.6);
}

.plan-price__period {
    font-size: 14px;
    font-weight: 650;
    color: #8b969b;
}

.plan-card.featured .plan-price__period {
    color: rgba(255, 255, 255, 0.5);
}

.plan-price__note {
    font-size: 12px;
    font-weight: 600;
    color: #8b969b;
}

.plan-save {
    display: inline-flex;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(66, 207, 162, 0.12);
    color: #2a9d6e;
    font-size: 11px;
    font-weight: 800;
}

.plan-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    border-radius: 100px;
    background: var(--cyan);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plan-card {
    position: relative;
}

.plan-desc {
    margin-bottom: 16px;
}

.plan-trial {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan-2);
}

.plan-card.featured .plan-trial {
    color: #8cf7ff;
}

.plan-cta {
    width: 100%;
    margin-bottom: 20px;
}

.plan-features,
.plan-modules {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: auto;
}

.plan-card.featured .plan-features,
.plan-card.featured .plan-modules {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.plan-modules {
    margin-top: 12px;
}

.plan-features__label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b969b;
}

.plan-card.featured .plan-features__label {
    color: rgba(255, 255, 255, 0.45);
}

.plan-features ul,
.plan-modules ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.plan-feat-label {
    color: #536169;
}

.plan-card.featured .plan-feat-label {
    color: rgba(255, 255, 255, 0.65);
}

.plan-feat-value {
    font-weight: 800;
    color: var(--ink);
    font-size: 13px;
}

.plan-card.featured .plan-feat-value {
    color: #fff;
}

.plan-modules li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.plan-modules li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-modules li.is-on::before {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(66, 207, 162, 0.15);
}

.plan-modules li.is-off::before {
    background: #d4dadd;
}

.plan-modules li.is-on {
    color: #3a474d;
}

.plan-modules li.is-off {
    color: #b0b8bc;
}

.plan-card.featured .plan-modules li.is-on {
    color: rgba(255, 255, 255, 0.8);
}

.plan-card.featured .plan-modules li.is-off {
    color: rgba(255, 255, 255, 0.3);
}

.plan-card.featured .plan-modules li.is-off::before {
    background: rgba(255, 255, 255, 0.15);
}

/* Add-ons */
.pricing-addons {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.addon-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.74);
}

.addon-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.addon-card p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #64737a;
    line-height: 1.5;
}

.addon-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
}

@media (max-width: 1120px) {
    .addons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .pricing-tabs { gap: 4px; }
    .pricing-tab { padding: 6px 14px; font-size: 12px; }
    .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .pricing-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; }
}

/* Service & app-card images */
.app-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -20px -20px 16px -20px;
}
.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.app-card:hover .app-card-image img { transform: scale(1.04); }

.service-detail-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-detail-image img {
    width: 100%;
    height: auto;
}

/* ─── Contact Page ─── */
.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 48px 52px;
    box-shadow: var(--shadow);
}
@media (max-width: 800px) {
    .contact-card { padding: 32px 24px; border-radius: var(--radius-lg); }
}

.contact-card__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 540px) {
    .contact-card__row { grid-template-columns: 1fr; gap: 0; }
}

.contact-card__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
}
.contact-card__field label {
    font-size: 13px;
    font-weight: 650;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.contact-card__field label .req {
    color: var(--cyan-2);
    margin-left: 2px;
}
.contact-card__field input,
.contact-card__field select,
.contact-card__field textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.contact-card__field textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-card__field input::placeholder,
.contact-card__field textarea::placeholder {
    color: var(--soft);
    opacity: 0.7;
}
.contact-card__field input:focus,
.contact-card__field select:focus,
.contact-card__field textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-soft);
    background: var(--paper-solid);
}
.contact-card__field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23667278' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-card__submit {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.contact-card__submit .btn {
    min-width: 200px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 650;
}
.contact-card__submit .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.contact-card__ok {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(66, 207, 162, 0.10);
    border: 1px solid rgba(66, 207, 162, 0.28);
    border-radius: var(--radius-sm);
    color: #1a7a58;
    font-size: 14px;
    font-weight: 550;
    line-height: 1.5;
}
.contact-card__ok svg { flex-shrink: 0; }

@keyframes cfspin {
    to { transform: rotate(360deg); }
}
.cf-spin { animation: cfspin 0.7s linear infinite; }
