/* ============================================================
   InfantiSys — Light visual identity
   Friendly, human, mint-teal. Poppins.
   ============================================================ */

:root {
  --teal: #0e9d8a;
  --teal-600: #0c8576;
  --teal-700: #0a6c60;
  --teal-tint: #e4f4f0;
  --teal-tint-2: #effaf7;

  --ink: #17231e;
  --ink-2: #36443d;
  --body: #5d6b64;
  --muted: #8a968f;

  --coral: #f25c6e;

  --bg: #ffffff;
  --bg-mint: #f1f8f6;
  --line: #e7eeea;
  --line-2: #dde7e2;

  --sidebar: #0e1613;
  --sidebar-line: #20322b;

  --shadow-sm: 0 1px 2px rgba(16,40,34,.05);
  --shadow: 0 1px 3px rgba(16,40,34,.05), 0 14px 34px rgba(16,40,34,.07);
  --shadow-lg: 0 30px 70px rgba(13,80,68,.16);

  --r: 16px;
  --r-lg: 22px;
  --r-sm: 11px;
  --pill: 999px;

  --font: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

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

/* ===== Pills / eyebrows ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-tint);
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--pill);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
}

.coral-label {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14,157,138,.28);
}
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(14,157,138,.34); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--teal), var(--teal-700));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,157,138,.3);
}
.logo-word { font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.logo-word .sys { color: var(--teal); }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a.link { color: var(--ink-2); font-weight: 500; font-size: 15px; transition: color .18s; }
.nav-menu a.link:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

@media (max-width: 860px) {
  .nav-menu { display: none; }
}

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(900px 500px at 80% -5%, var(--teal-tint-2), transparent 60%),
    linear-gradient(180deg, var(--bg-mint), #fff 75%);
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;
  margin: 22px 0 22px;
}
.hero h1 .teal { color: var(--teal); }
.hero .lead {
  font-size: 18px;
  color: var(--body);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}
.hero-trust svg { color: var(--teal); flex: none; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ===== DASHBOARD MOCKUP ===== */
.mockup-wrap { position: relative; }
.mockup {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  background: #fbfdfc;
}
.mockup-bar .tl { width: 10px; height: 10px; border-radius: 50%; background: #e0e8e4; }
.mockup-url {
  margin-left: 10px;
  flex: 1;
  background: #f0f4f2;
  border-radius: var(--pill);
  font-size: 11px;
  color: var(--muted);
  padding: 5px 12px;
  text-align: center;
  max-width: 220px;
}
.app {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 360px;
}
.app-side {
  background: var(--sidebar);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-side .brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 16px;
}
.app-side .brand .m {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center; color: #fff; flex: none;
}
.app-side .brand .t { color: #fff; font-weight: 600; font-size: 14px; }
.app-side .brand .t .s { color: var(--teal); }
.app-nav {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  color: #9fb0a9;
  font-size: 13px;
  font-weight: 500;
}
.app-nav svg { width: 16px; height: 16px; flex: none; }
.app-nav.active { background: rgba(14,157,138,.16); color: #4fe0c6; }
.app-main { padding: 18px 18px; background: #fff; }
.app-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.app-head h4 { font-size: 16px; }
.app-search {
  font-size: 11px; color: var(--muted);
  background: #f3f7f5; border-radius: var(--pill);
  padding: 6px 12px; display: inline-flex; align-items: center; gap: 6px;
}
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.stat-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 13px;
}
.stat-card .ic { color: var(--teal); margin-bottom: 9px; }
.stat-card .v { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1; }
.stat-card .l { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

.routine {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 15px;
}
.routine-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.routine-head .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.routine-head .a { font-size: 12px; color: var(--teal); font-weight: 600; }
.routine-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.routine-item:first-of-type { border-top: none; }
.routine-item .ric {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--teal-tint); color: var(--teal);
  display: grid; place-items: center; flex: none;
}
.routine-item .meta { flex: 1; }
.routine-item .meta .n { font-size: 13px; font-weight: 600; color: var(--ink); }
.routine-item .meta .s { font-size: 11.5px; color: var(--muted); }
.routine-item .time { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Floating cards */
.float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 5;
  animation: floaty 5s ease-in-out infinite;
}
.float .fic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.float .ft { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.float .fs { font-size: 11.5px; color: var(--muted); }
.float-1 { top: -18px; left: -26px; }
.float-2 { bottom: -20px; left: 12%; animation-delay: 1.5s; }
.float .coral-bg { background: #fde7ea; color: var(--coral); }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (max-width: 940px) {
  .float-1 { left: 0; }
}
@media (max-width: 520px) {
  .float { display: none; }
  .app { grid-template-columns: 120px 1fr; }
}

/* ===== STATS BAND ===== */
.stats-band { padding: 56px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.stats-grid .num { font-size: clamp(34px, 4vw, 46px); font-weight: 700; color: var(--teal); letter-spacing: -0.03em; line-height: 1; }
.stats-grid .lbl { font-size: 14.5px; color: var(--body); margin-top: 8px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }

/* ===== SECTION ===== */
.section { padding: 90px 0; }
.section.mint { background: var(--bg-mint); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.12; margin: 16px 0 14px; }
.section-head p { font-size: 17px; color: var(--body); margin: 0; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: all 0.22s ease;
}
.feature:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature .fic {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--teal-tint);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature h3 { font-size: 18.5px; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--body); margin: 0; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr; } }

/* ===== SCREENS WALKTHROUGH ===== */
.screen {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
}
.screen.reverse .screen-text { order: 2; }
.screen.reverse .screen-visual { order: 1; }
.screen-text h3 { font-size: clamp(26px, 3vw, 34px); line-height: 1.15; margin-bottom: 14px; }
.screen-text > p { font-size: 16px; color: var(--body); margin: 0 0 22px; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-2); font-size: 15px; }
.check-list .ck {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; flex: none;
}
@media (max-width: 860px) {
  .screen, .screen.reverse { grid-template-columns: 1fr; gap: 36px; }
  .screen.reverse .screen-text, .screen.reverse .screen-visual { order: initial; }
}

/* student list card */
.list-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 8px 22px;
}
.student {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.student:first-child { border-top: none; }
.student .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-700);
  display: grid; place-items: center; font-weight: 700; flex: none;
}
.student .nm { flex: 1; font-weight: 600; color: var(--ink); }
.student .tu { color: var(--muted); font-size: 14px; width: 92px; }
.student .st { color: var(--teal); font-weight: 600; font-size: 14px; }

/* phone mockup */
.phone {
  width: 280px;
  margin: 0 auto;
  background: #0e1613;
  border-radius: 38px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px 8px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.phone-hi { padding: 8px 22px 18px; }
.phone-hi h4 { font-size: 22px; }
.phone-hi .sub { font-size: 13px; color: var(--muted); }
.phone-body { padding: 0 18px 22px; }
.p-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px 15px;
  margin-bottom: 12px;
}
.p-card .ph { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.p-card .pic { width: 30px; height: 30px; border-radius: 8px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; flex: none; }
.p-card .pt { font-size: 13px; font-weight: 600; color: var(--ink); }
.p-card .pd { font-size: 12.5px; color: var(--body); line-height: 1.5; }
.p-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--teal-700); background: var(--teal-tint); padding: 3px 9px; border-radius: var(--pill); margin-bottom: 8px; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--teal);
  box-shadow: 0 24px 50px rgba(14,157,138,.16);
}
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: var(--pill);
  white-space: nowrap;
}
.plan .pn { font-weight: 600; color: var(--ink); font-size: 15px; }
.plan .pp { margin: 14px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.plan .pp .amt { font-size: 40px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.plan .pp .cur { font-size: 18px; font-weight: 600; color: var(--ink); }
.plan .pp .per { font-size: 14px; color: var(--muted); }
.plan .pd { font-size: 14px; color: var(--body); margin: 0 0 22px; min-height: 42px; }
.plan ul { list-style: none; padding: 22px 0; margin: 0; border-top: 1px solid var(--line); flex: 1; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.plan li svg { color: var(--teal); flex: none; margin-top: 3px; }
@media (max-width: 860px) { .plans-grid { grid-template-columns: 1fr; } }

/* ===== FINAL CTA ===== */
.cta {
  background: linear-gradient(150deg, var(--teal), var(--teal-700));
  border-radius: 28px;
  padding: 60px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 80% 120%, rgba(255,255,255,.12), transparent 60%);
}
.cta h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); position: relative; }
.cta p { color: rgba(255,255,255,.9); font-size: 17px; margin: 14px auto 28px; max-width: 480px; position: relative; }
.cta .hero-cta { justify-content: center; position: relative; margin: 0; }
.cta .btn-primary { background: #fff; color: var(--teal-700); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta .btn-primary:hover { background: #f3fffb; }
.cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn-outline:hover { border-color: #fff; color: #fff; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 34px; border-top: 1px solid var(--line); background: var(--bg-mint); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid.cols-3 { grid-template-columns: 1.7fr 1fr 1fr; }
.footer-about p { font-size: 14px; color: var(--body); margin: 16px 0 0; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--body); transition: color .18s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ============================================================
   LMC TECNOLOGIA — components in the same light identity
   ============================================================ */

/* LMC logo mark */
.logo-mark.lmc {
  background: linear-gradient(150deg, var(--teal), var(--teal-700));
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.06em;
}
.logo-word .sub { color: var(--teal); }
.logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo-stack .lw { font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.logo-stack .ls { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 0.12em; text-transform: lowercase; margin-top: 2px; }

/* Hero meta row (LMC) */
.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .num { font-size: 26px; font-weight: 700; color: var(--teal); letter-spacing: -0.02em; line-height: 1; }
.hero-meta .lbl { font-size: 13px; color: var(--body); margin-top: 5px; }

/* ===== CODE WINDOW MOCKUP ===== */
.code-window {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.code-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px;
  background: #fbfdfc;
  border-bottom: 1px solid var(--line);
}
.code-bar .cd { width: 11px; height: 11px; border-radius: 50%; background: #e0e8e4; }
.code-bar .cd.g { background: #bfe9dd; }
.code-tab {
  margin-left: 12px;
  font-size: 12px; color: var(--ink-2); font-weight: 500;
  background: #eef4f1; padding: 4px 12px; border-radius: 7px;
}
.code-body { padding: 20px 22px; font-size: 13px; line-height: 1.95; background: #fff; }
.code-line { display: flex; gap: 16px; white-space: pre; }
.code-line .ln { color: #c4d2cc; width: 16px; text-align: right; user-select: none; flex: none; }
.c-key { color: var(--teal); }
.c-fn { color: var(--ink); font-weight: 600; }
.c-str { color: #d6695a; }
.c-num { color: #c07a2c; }
.c-com { color: var(--muted); font-style: italic; }
.c-punct { color: #9aa8a1; }
.code-cursor {
  display: inline-block; width: 7px; height: 15px;
  background: var(--teal); vertical-align: text-bottom;
  animation: cblink 1.1s steps(2) infinite;
}
@keyframes cblink { 50% { opacity: 0; } }

.code-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 11px 15px;
  display: flex; align-items: center; gap: 11px;
  z-index: 5;
  animation: floaty 5s ease-in-out infinite;
}
.code-badge .bic { width: 32px; height: 32px; border-radius: 9px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; flex: none; }
.code-badge .bt { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.code-badge .bs { font-size: 11.5px; color: var(--muted); }
.code-badge.b1 { top: -20px; right: -22px; }
.code-badge.b2 { bottom: -22px; left: -22px; animation-delay: 1.6s; }
@media (max-width: 520px) { .code-badge { display: none; } }

/* service number tag on feature cards */
.feature .snum { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.feature .ftags { list-style: none; padding: 16px 0 0; margin: 16px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 7px; }
.feature .ftags li { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--body); display: flex; gap: 9px; }
.feature .ftags li::before { content: "→"; color: var(--teal); }

/* ===== PRODUCT BAND (InfantiSys highlight) ===== */
.product {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-info { padding: 46px 44px; display: flex; flex-direction: column; }
.product-info .badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: var(--teal-tint); color: var(--teal-700);
  font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: var(--pill);
  margin-bottom: 20px;
}
.product-info .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.product-info .plogo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-info .plogo .m { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(150deg, var(--teal), var(--teal-700)); display: grid; place-items: center; color: #fff; }
.product-info .plogo .w { font-size: 19px; font-weight: 700; color: var(--ink); }
.product-info .plogo .w .s { color: var(--teal); }
.product-info h3 { font-size: 25px; line-height: 1.2; margin-bottom: 12px; }
.product-info p { font-size: 15px; color: var(--body); margin: 0 0 22px; }
.product-bul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; }
.product-bul li { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--ink-2); }
.product-bul li svg { color: var(--teal); flex: none; }
.product-shot {
  background: linear-gradient(160deg, var(--bg-mint), var(--teal-tint-2));
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  border-left: 1px solid var(--line);
}
.product-shot img { border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--line); }
@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; }
  .product-info { padding: 34px 28px; }
  .product-bul { grid-template-columns: 1fr; }
  .product-shot { border-left: none; border-top: 1px solid var(--line); padding: 30px; }
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-side h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; margin: 16px 0 14px; }
.contact-side > p { font-size: 16.5px; color: var(--body); margin: 0 0 30px; }
.contact-info { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-info li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-2); font-weight: 500; }
.contact-info .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; flex: none; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FORM (light) ===== */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.field label .req { color: var(--coral); font-size: 12px; }
.field input, .field textarea, .field select {
  background: #fbfdfc;
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14.5px;
  transition: all .16s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #aab6b0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(14,157,138,.13);
}
.field.error input, .field.error textarea, .field.error select { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(242,92,110,.13); }
.field .err-msg { font-size: 12px; color: var(--coral); margin-top: 6px; min-height: 14px; font-weight: 500; }
.field textarea { min-height: 120px; }
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form .btn-primary { border-radius: var(--pill); }
.form-success { text-align: center; padding: 38px 20px; }
.form-success .check {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  display: grid; place-items: center;
}
.form-success h3 { font-size: 21px; margin-bottom: 8px; }
.form-success p { color: var(--body); margin: 0 0 4px; font-size: 15px; }
.form-success .ref { font-family: "JetBrains Mono", monospace; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.form-success .hl-name { color: var(--teal); }

/* captcha */
.captcha-field .captcha-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.captcha-img {
  height: 52px; width: 158px;
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  background: var(--bg-mint);
  user-select: none;
  flex: none;
}
.captcha-off {
  height: 52px; width: 158px;
  border: 1.5px dashed var(--line-2);
  border-radius: 11px;
  background: var(--bg-mint);
  display: grid; place-items: center;
  text-align: center;
  font-size: 11px; line-height: 1.35; color: var(--muted);
  padding: 6px 8px; flex: none;
}
.captcha-reload {
  width: 40px; height: 40px;
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  background: #fff;
  color: var(--teal);
  display: grid; place-items: center;
  transition: all .16s; flex: none;
}
.captcha-reload:hover:not(:disabled) { border-color: var(--teal); background: var(--teal-tint); }
.captcha-reload:disabled { opacity: .45; cursor: not-allowed; }
.captcha-field input {
  flex: 1; min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.captcha-field input:disabled { background: #f4f7f6; cursor: not-allowed; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== reveal ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float { animation: none; }
}
