/* ============================================================
   C2 VistaLink — Shared Design System
   Light & airy. Navy #212733 · Cyan accent #00B7E0
   ============================================================ */

:root {
  /* Brand */
  --navy:        #212733;
  --navy-700:    #313a4b;
  --navy-500:    #5a6675;
  --navy-400:    #7c8799;
  --ink:         #1a1f29;

  /* Accent (the blue from the logo dot) — tweakable */
  --accent:      #00b7e0;
  --accent-600:  #0f9fc4;
  --accent-700:  #0c7fa0;
  --accent-soft: #e2f6fc;
  --accent-tint: #f0fbfe;

  /* Surfaces — tweakable page tint via --page */
  --page:        #ffffff;
  --surface:     #ffffff;
  --surface-2:   #f5f9fc;
  --surface-3:   #eef4f9;
  --line:        #e4ebf1;
  --line-2:      #d4dde6;

  /* Text */
  --text:        #212733;
  --text-soft:   #4d5868;
  --text-mute:   #8893a3;
  --on-accent:   #04222b;

  /* Type */
  --display: 'Sora', system-ui, sans-serif;
  --body:    'Outfit', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radius — tweakable */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadow (soft, airy) */
  --sh-sm: 0 2px 8px rgba(33,39,51,0.05);
  --sh:    0 12px 36px -12px rgba(33,39,51,0.12);
  --sh-lg: 0 30px 70px -28px rgba(33,39,51,0.22);
  --sh-accent: 0 16px 40px -14px rgba(0,183,224,0.45);

  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--page);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ───────── Decorative background motif: orbital rings ───────── */
.orbits {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: 0.6;
}
.orbits circle { fill: none; stroke: var(--line); stroke-width: 1; }
.orbits .dot { fill: var(--accent); stroke: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-info { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-info svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex; gap: 2px; padding: 3px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
}
.lang-switch button {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  padding: 4px 11px; border-radius: 999px; color: rgba(255,255,255,0.7); transition: all .2s;
}
.lang-switch button.active { background: var(--accent); color: #fff; font-weight: 600; }
.lang-switch button:not(.active):hover { color: #fff; }
.topbar-cta { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 500; white-space: nowrap; }
.topbar-cta svg { width: 14px; height: 14px; }
@media (max-width: 1000px) {
  .topbar-info > span:first-child { display: none; }
}
@media (max-width: 760px) {
  .topbar-info > span:nth-child(2) { display: none; }
  .topbar-cta span { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 46px; height: 46px; object-fit: contain; transition: transform .3s; }
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  color: var(--navy); letter-spacing: -0.01em;
}
.brand-text strong b { color: var(--accent); font-weight: 700; }
.brand-text small {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em;
  color: var(--text-mute); text-transform: uppercase; margin-top: 3px;
}
@media (max-width: 460px) { .brand img { width: 40px; height: 40px; } .brand-text strong { font-size: 16px; } }

nav.main ul { display: flex; gap: 2px; align-items: center; }
nav.main li { position: relative; }
nav.main > ul > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--text-soft);
  transition: color .2s, background .2s;
}
nav.main > ul > li > a:hover,
nav.main > ul > li > a.active { color: var(--navy); background: var(--surface-2); }
nav.main > ul > li > a.active { color: var(--accent-700); }
nav.main li.has-sub > a::after {
  content: ''; width: 6px; height: 6px; margin-left: 2px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.5;
}
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 270px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 8px; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 110;
}
.submenu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
nav.main li.has-sub:hover .submenu,
nav.main li.has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 10px 13px; border-radius: 9px; transition: background .15s; }
.submenu a:hover { background: var(--accent-tint); }
.submenu a strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.submenu a span { font-size: 12px; color: var(--text-mute); }

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: var(--sh-accent); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--navy); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-700); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.menu-toggle { display: none; padding: 10px; border: 1px solid var(--line-2); border-radius: 10px; color: var(--navy); }
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  nav.main, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(33,39,51,0.4); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: var(--surface); padding: 24px;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mm-close { align-self: flex-end; padding: 8px; border-radius: 8px; color: var(--text-soft); }
.mobile-panel .mm-close svg { width: 24px; height: 24px; }
.mobile-panel a.mm-link {
  padding: 14px 14px; border-radius: 12px; font-family: var(--display);
  font-weight: 500; font-size: 18px; color: var(--navy); border-bottom: 1px solid var(--line);
}
.mobile-panel a.mm-link:hover { background: var(--surface-2); }
.mobile-panel a.mm-sub { padding: 11px 14px 11px 28px; font-size: 15px; color: var(--text-soft); border-bottom: 1px solid var(--line); }
.mobile-panel .mm-cta { margin-top: 16px; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { padding: 104px 0; position: relative; }
@media (max-width: 760px) { section { padding: 68px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-700);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--accent); }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.025em; color: var(--navy); line-height: 1.08; }
.section-title { font-weight: 700; font-size: clamp(30px, 4vw, 50px); margin-bottom: 20px; }
.section-title em { font-style: normal; color: var(--accent-700); }
.section-sub { color: var(--text-soft); font-size: 18px; line-height: 1.65; }
.section-head.center .section-sub { max-width: 600px; margin: 0 auto; }

.tint { background: var(--surface-2); }
.tint-3 { background: var(--surface-3); }
.tint-accent { background: linear-gradient(180deg, var(--accent-tint), var(--surface)); }

/* ============================================================
   GENERIC CARDS
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--line-2); }

/* feature/solution grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature {
  position: relative; padding: 34px 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(0,183,224,0.4); }
.feature::after {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-700)); transition: width .35s;
}
.feature:hover::after { width: 100%; }
.feature.featured { border-color: var(--accent); box-shadow: var(--sh); }
.f-icon {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-700);
}
.f-icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 20px; font-weight: 600; margin-bottom: 11px; }
.feature p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.f-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--accent-700); }
.f-link svg { width: 15px; height: 15px; transition: transform .2s; }
.feature:hover .f-link svg { transform: translateX(4px); }
.f-tag {
  position: absolute; top: 18px; right: 18px; white-space: nowrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px; font-weight: 600;
}

/* pill badge */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-700);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.pill.solid { background: var(--accent); color: #fff; }

/* ============================================================
   PARTNERS / LOGO BAND
   ============================================================ */
.band { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.band-label { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 26px; }
.band-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px 56px; }
.band-logos span { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--navy-400); letter-spacing: 0.02em; transition: color .2s; }
.band-logos span:hover { color: var(--navy); }

/* product logo lockups (real PNGs) */
.prodlogo { height: 36px; width: auto; opacity: 0.9; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 18px; } }
.stat-num { font-family: var(--display); font-weight: 700; font-size: 40px; color: var(--navy); letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 3px; }
.stat-num small { color: var(--accent); font-size: 22px; }
.stat-label { font-size: 14px; color: var(--text-soft); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: var(--navy); color: rgba(255,255,255,0.66); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .fb-logo img { width: 44px; height: 44px; }
.footer-brand .fb-logo strong { font-family: var(--display); font-weight: 700; font-size: 19px; color: #fff; }
.footer-brand .fb-logo strong b { color: var(--accent); }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 { font-family: var(--display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.66); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .legal a { margin-left: 18px; }
.footer-bottom .legal a:hover { color: var(--accent); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 96px 0; }
.cta-inner {
  position: relative; overflow: hidden;
  background: var(--navy);
  border-radius: var(--r-xl); padding: 64px 60px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
}
.cta-inner .orbits { top: -40%; right: -10%; width: 520px; height: 520px; opacity: 1; }
.cta-inner .orbits circle { stroke: rgba(255,255,255,0.1); }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; padding: 48px 30px; } }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; position: relative; }
.cta-inner h2 em { font-style: normal; color: var(--accent); }
.cta-inner p { color: rgba(255,255,255,0.72); font-size: 16px; max-width: 520px; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
@media (min-width: 901px) { .cta-actions { min-width: 260px; } }
.cta-actions .btn { width: 100%; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.42); transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; color: #fff; }
@media (max-width: 540px) { .float-wa { width: 52px; height: 52px; bottom: 18px; right: 18px; } }

/* ============================================================
   REVEAL ANIMATION
   Content is visible by default. The hidden start-state is only
   applied once JS confirms animation frames actually run
   (body.anim-on) — so a paused/offscreen iframe never hides it.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  body.anim-on .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  body.anim-on .reveal.visible { opacity: 1; transform: none; }
  body.anim-on .reveal.d1 { transition-delay: .08s; }
  body.anim-on .reveal.d2 { transition-delay: .16s; }
  body.anim-on .reveal.d3 { transition-delay: .24s; }
  body.anim-on .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { position: relative; padding: 72px 0 64px; background: var(--surface-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .orbits { top: -120px; right: -80px; width: 460px; height: 460px; }
.page-hero .crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 18px; text-transform: uppercase; }
.page-hero .crumbs a:hover { color: var(--accent-700); }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 700; margin-bottom: 18px; max-width: 760px; }
.page-hero h1 em { font-style: normal; color: var(--accent-700); }
.page-hero p { font-size: 18px; color: var(--text-soft); max-width: 620px; }

/* ============================================================
   SPLIT SECTION (detailed solution / story blocks)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 96px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split + .split { margin-top: 64px; } }
.split.reverse .split-visual { order: 2; }
@media (max-width: 900px) { .split.reverse .split-visual { order: 0; } }
.split-body .pill { margin-bottom: 18px; }
.split-body h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; margin-bottom: 16px; }
.split-body > p { color: var(--text-soft); font-size: 16.5px; line-height: 1.65; margin-bottom: 24px; }
.split-features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin-bottom: 28px; }
@media (max-width: 520px) { .split-features { grid-template-columns: 1fr; } }
.split-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.split-features li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); margin-top: 2px; }
.feat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }

/* abstract visual panel */
.visual-panel {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--surface-2), var(--accent-tint));
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--sh-sm);
  display: flex; align-items: center; justify-content: center; padding: 36px;
}
.visual-panel .orbits { inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.hv-core-static { position: relative; width: 124px; height: 124px; border-radius: 50%; background: #fff; box-shadow: var(--sh-lg); display: flex; align-items: center; justify-content: center; padding: 22px; }
.hv-core-static img { width: 100%; height: 100%; object-fit: contain; }

/* mock UI card inside visual panels */
.mock {
  position: relative; width: 100%; max-width: 380px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh);
  padding: 16px; font-family: var(--mono); font-size: 12px;
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.mock-bar i:nth-child(1) { background: #ff6058; } .mock-bar i:nth-child(2) { background: #ffbd2e; } .mock-bar i:nth-child(3) { background: #28c840; }
.mock-title { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.mock-title small { font-family: var(--mono); font-weight: 400; font-size: 10px; color: var(--accent-700); background: var(--accent-soft); padding: 3px 8px; border-radius: 999px; }
.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 92px; padding: 8px 0; }
.mock-bars span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--accent), var(--accent-soft)); }
.mock-rows { display: flex; flex-direction: column; gap: 7px; }
.mock-row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; background: var(--surface-2); border-radius: 8px; }
.mock-row .st { font-size: 9px; padding: 2px 8px; border-radius: 999px; font-weight: 600; }
.mock-row .st.ok { background: rgba(40,200,100,0.14); color: #1a9c52; }
.mock-row .st.dial { background: var(--accent-soft); color: var(--accent-700); }
.mock-row .st.q { background: var(--surface-3); color: var(--text-mute); }
.mock-foot { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 10px; }
.mock-foot b { color: var(--accent-700); }

/* ============================================================
   BIG PRODUCT BLOCK (Loway page)
   ============================================================ */
.product {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-sm); transition: box-shadow .3s, border-color .3s;
}
.product:hover { box-shadow: var(--sh); }
.product + .product { margin-top: 28px; }
.product.reverse .product-visual { order: 2; }
@media (max-width: 900px) { .product, .product.reverse { grid-template-columns: 1fr; } .product.reverse .product-visual { order: 0; } }
.product-visual {
  background: linear-gradient(150deg, var(--surface-2), var(--accent-tint));
  border-right: 1px solid var(--line);
  padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  min-height: 380px; position: relative;
}
.product.reverse .product-visual { border-right: none; border-left: 1px solid var(--line); }
@media (max-width: 900px) { .product-visual { border-right: none; border-bottom: 1px solid var(--line); } .product.reverse .product-visual { border-left: none; border-bottom: 1px solid var(--line); } }
.product-brand { width: 100%; max-width: 300px; }
.product-brand img { width: 100%; height: auto; }
.product-body { padding: 48px; }
@media (max-width: 600px) { .product-body, .product-visual { padding: 34px 26px; } }
.product-body h3 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.product-body .lead { color: var(--text-soft); font-size: 15.5px; line-height: 1.65; margin-bottom: 24px; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-bottom: 26px; }
@media (max-width: 480px) { .product-features { grid-template-columns: 1fr; } }
.product-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-soft); }
.product-features li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.product-meta { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 22px; margin-bottom: 24px; border-top: 1px solid var(--line); }
.product-meta strong { display: block; font-family: var(--display); color: var(--navy); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.product-meta span { font-size: 12.5px; color: var(--text-mute); }

/* commitment list */
.commit { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .commit { grid-template-columns: 1fr; gap: 32px; } }
.commit-list { display: flex; flex-direction: column; gap: 16px; }
.commit-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--text-soft); font-size: 15.5px; }
.commit-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); margin-top: 1px; }
.commit-list li strong { color: var(--navy); font-weight: 600; }

/* value cards (about) */
.value { padding: 30px 26px; }
.value .v-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-700); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value .v-icon svg { width: 25px; height: 25px; }
.value h4 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.value p { color: var(--text-soft); font-size: 14.5px; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.contact-block { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block .cb-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-700); display: flex; align-items: center; justify-content: center; }
.contact-block .cb-icon svg { width: 21px; height: 21px; }
.contact-block strong { display: block; font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--navy); }
.contact-block span { font-size: 14px; color: var(--text-soft); }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh); padding: 36px; }
@media (max-width: 540px) { .contact-form { padding: 26px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { margin-bottom: 16px; }
.form-field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-700); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 15px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 11px;
  color: var(--navy); font-family: var(--body); font-size: 15px; transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b7e0'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-submit { width: 100%; margin-top: 6px; padding: 15px; font-size: 15px; }
.form-meta { margin-top: 16px; font-size: 12.5px; color: var(--text-mute); text-align: center; }
