/* TaktProduction Landing - scoped styles */
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (min-width:640px){ html { scroll-padding-top: 84px; } }
@media (min-width:900px){ html { scroll-padding-top: 96px; } }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }


.tpl-root {
  /* Brand */
  --teal:        #1FA3D1;
  --teal-dark:   #1785AC;
  --teal-soft:   #E8F5FB;
  --amber:       #F5A623;
  --amber-dark:  #DE900F;
  --amber-soft:  #FEF4E3;

  /* Neutrals — light, airy scale */
  --ink:         #101B29;
  --ink-2:       #24354A;
  --slate:       #5C7085;
  --slate-light: #8A9AAB;
  --line:        #E4EAF1;
  --line-soft:   #EFF3F7;
  --bg:          #FFFFFF;
  --bg-soft:     #F6F9FC;
  --bg-tint:     #EDF6FB;

  --ok:          #1FA971;
  --warn:        #E08700;
  --bad:         #DC4B3E;
  --violet:      #7C6BD4;

  --shadow-xs: 0 1px 2px rgba(16,27,41,0.05);
  --shadow-sm: 0 2px 8px rgba(16,27,41,0.05);
  --shadow-md: 0 8px 28px rgba(16,27,41,0.07);
  --shadow-lg: 0 24px 60px rgba(16,27,41,0.11);

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --maxw: 1220px;
}

.tpl-root * { margin: 0; padding: 0; box-sizing: border-box; }
.tpl-root { scroll-behavior: smooth; scroll-padding-top: 76px; }

.tpl-root {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tpl-root img, .tpl-root svg { max-width: 100%; display: block; }
.tpl-root a { text-decoration: none; color: inherit; }
.tpl-root ul { list-style: none; }
.tpl-root button { font-family: inherit; }

.tpl-root .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.tpl-root section { padding: 68px 0; }
.tpl-root .sec-soft { background: var(--bg-soft); }
.tpl-root .sec-tint { background: var(--bg-tint); }
.tpl-root .sec-ink { background: var(--ink); color: #fff; }
.tpl-root .sec-tight { padding: 56px 0; }

/* ===== Typography ===== */
.tpl-root h1, .tpl-root h2, .tpl-root h3, .tpl-root h4 { line-height: 1.14; letter-spacing: -0.028em; font-weight: 700; }
.tpl-root h1 { font-size: clamp(2.05rem, 7.4vw, 4.05rem); }
.tpl-root h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.tpl-root h3 { font-size: 1.1rem; font-weight: 650; letter-spacing: -0.015em; line-height: 1.35; }

.tpl-root .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.74rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.tpl-root .eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }

.tpl-root .sec-head { max-width: 800px; margin: 0 auto 44px; text-align: center; }
.tpl-root .sec-head .eyebrow { justify-content: center; }
.tpl-root .sec-head h2 { margin-bottom: 20px; }
.tpl-root .sec-head p { font-size: 1.12rem; color: var(--slate); }
.tpl-root .sec-ink .sec-head p { color: rgba(255,255,255,0.68); }
.tpl-root .sec-ink .eyebrow { color: #6FCDEF; }
.tpl-root .lead-text { max-width: 820px; margin: 0 auto 42px; text-align: center; font-size: 1.12rem; color: var(--slate); }

/* ===== Buttons ===== */
.tpl-root .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.97rem; letter-spacing: -0.01em;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.22s cubic-bezier(.4,0,.2,1); white-space: nowrap;
}
.tpl-root .btn svg { width: 17px; height: 17px; }
.tpl-root .btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(31,163,209,0.28); }
.tpl-root .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(31,163,209,0.34); }
.tpl-root .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.tpl-root .btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-soft); }
.tpl-root .btn-white { background: #fff; color: var(--ink); }
.tpl-root .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tpl-root .btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,0.32); }
.tpl-root .btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,0.09); }
.tpl-root .btn-lg { padding: 16px 30px; font-size: 1rem; }
.tpl-root .hero-ctas .btn { flex: 1 1 auto; min-width: 190px; }

/* ===== NAV ===== */
.tpl-root .nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.tpl-root .nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(16,27,41,0.05); }
.tpl-root .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }
.tpl-root .brand img { height: 26px; width: auto; }
.tpl-root .nav-links { display: none; align-items: center; gap: 34px; }
.tpl-root .nav-links a {
  font-size: 0.94rem; font-weight: 500; color: var(--slate);
  position: relative; padding: 8px 0; transition: color 0.2s;
}
.tpl-root .nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 0; width: 0; height: 2px;
  background: var(--amber); border-radius: 2px; transition: width 0.25s ease;
}
.tpl-root .nav-links a:hover { color: var(--ink); }
.tpl-root .nav-links a:hover::after, .tpl-root .nav-links a.active::after { width: 100%; }
.tpl-root .nav-links a.active { color: var(--ink); }
.tpl-root .nav-cta { display: flex; align-items: center; gap: 14px; }
.tpl-root .nav-cta .btn { display: none; }
.tpl-root .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.tpl-root .hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.tpl-root .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tpl-root .hamburger.open span:nth-child(2) { opacity: 0; }
.tpl-root .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tpl-root .mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 12px 28px 28px; z-index: 999;
}
.tpl-root .mobile-menu.open { display: block; }
.tpl-root .mobile-menu { max-height: calc(100vh - 66px); overflow-y: auto; }
.tpl-root .mobile-menu a { display: block; padding: 16px 0; min-height: 48px; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.tpl-root .mobile-menu .btn { width: 100%; margin-top: 20px; }

/* ===== HERO ===== */
.tpl-root .hero {
  position: relative; overflow: hidden; padding: 58px 0 0;
  background:
    radial-gradient(1100px 520px at 82% -6%, rgba(31,163,209,0.13), transparent 62%),
    radial-gradient(760px 420px at 4% 8%, rgba(245,166,35,0.10), transparent 60%),
    var(--bg);
}
.tpl-root .hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 25%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 25%, transparent 78%);
  pointer-events: none;
}
.tpl-root .hero > * { position: relative; z-index: 1; }
.tpl-root .hero-copy { max-width: 900px; margin: 0 auto; text-align: center; }
.tpl-root .hero-badge {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 8px 7px 16px; font-size: 0.83rem; font-weight: 500; color: var(--slate);
  margin-bottom: 30px; box-shadow: var(--shadow-xs);
}
.tpl-root .hero-badge b { color: var(--ink); font-weight: 600; }
.tpl-root .hero-badge .tag {
  background: var(--amber-soft); color: var(--amber-dark); font-weight: 650;
  font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.tpl-root .hero h1 { margin-bottom: 26px; }
.tpl-root .hero h1 .accent { color: var(--teal); }
.tpl-root .hero .lead { font-size: 1.06rem; color: var(--slate); max-width: 720px; margin: 0 auto 38px; }
.tpl-root .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.tpl-root .hero-micro { font-size: 0.85rem; color: var(--slate-light); display: flex; gap: 10px 20px; justify-content: center; flex-wrap: wrap; }
.tpl-root .hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.tpl-root .hero-micro svg { width: 15px; height: 15px; color: var(--ok); flex-shrink: 0; }

.tpl-root .hero-shot-wrap { margin-top: 40px; padding-bottom: 64px; position: relative; }

/* ===== APP MOCKUPS ===== */
.tpl-root .shot {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.tpl-root .shot-chrome {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.tpl-root .shot-chrome i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.tpl-root .shot-chrome i:nth-child(1) { background: #FF9E9E; }
.tpl-root .shot-chrome i:nth-child(2) { background: #FFD79E; }
.tpl-root .shot-chrome i:nth-child(3) { background: #A9E4C4; }
.tpl-root .shot-chrome .url {
  margin-left: 12px; flex: 1; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 15px; font-size: 0.73rem; color: var(--slate-light);
}
.tpl-root .shot-body { display: grid; grid-template-columns: 1fr; }

/* sidebar */
.tpl-root .app-side { display: none; background: var(--bg-soft); border-right: 1px solid var(--line); padding: 20px 14px; }
.tpl-root .app-brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 20px; }
.tpl-root .app-brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--teal);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 0.8rem; flex-shrink: 0;
}
.tpl-root .app-brand .nm { font-size: 0.83rem; font-weight: 700; letter-spacing: -0.02em; }
.tpl-root .app-brand .sub { font-size: 0.66rem; color: var(--slate-light); font-weight: 500; }
.tpl-root .side-label { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--slate-light); font-weight: 650; padding: 14px 10px 8px; }
.tpl-root .side-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--r-xs);
  font-size: 0.8rem; color: var(--slate); font-weight: 500;
}
.tpl-root .side-item.on { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-xs); }
.tpl-root .side-item .dot { width: 15px; height: 15px; border-radius: 4px; background: var(--line); flex-shrink: 0; }
.tpl-root .side-item.on .dot { background: var(--teal); }
.tpl-root .side-item .cnt { margin-left: auto; background: var(--amber-soft); color: var(--amber-dark); font-size: 0.66rem; font-weight: 700; padding: 1px 8px; border-radius: 999px; }

/* main */
.tpl-root .app-main { padding: 20px 18px; background: #fff; }
.tpl-root .app-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.tpl-root .app-head h4 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.03em; }
.tpl-root .app-head .sub { font-size: 0.78rem; color: var(--slate); }
.tpl-root .app-head .act { background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 8px 16px; border-radius: var(--r-xs); white-space: nowrap; }

.tpl-root .kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.tpl-root .kpi { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 15px; }
.tpl-root .kpi.hot { border-color: #F6DDB3; background: var(--amber-soft); }
.tpl-root .kpi .k { font-size: 0.7rem; color: var(--slate); font-weight: 500; line-height: 1.3; margin-bottom: 8px; }
.tpl-root .kpi .v { font-size: 1.6rem; font-weight: 750; letter-spacing: -0.04em; line-height: 1; }
.tpl-root .kpi .v small { font-size: 0.72rem; font-weight: 600; color: var(--slate-light); margin-left: 2px; }
.tpl-root .kpi.hot .v { color: var(--amber-dark); }
.tpl-root .kpi .d { font-size: 0.65rem; color: var(--slate-light); margin-top: 7px; }
.tpl-root .kpi .d.up { color: var(--ok); font-weight: 600; }

.tpl-root .panel { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.tpl-root .panel-h { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); }
.tpl-root .panel-h .t { font-size: 0.85rem; font-weight: 650; }
.tpl-root .panel-h .s { font-size: 0.68rem; color: var(--slate-light); }
.tpl-root .trow {
  display: grid; grid-template-columns: 1.6fr 0.7fr 0.95fr;
  gap: 10px; align-items: center; padding: 11px 14px; border-bottom: 1px solid var(--line-soft); font-size: 0.76rem;
}
.tpl-root .trow:last-child { border-bottom: none; }
.tpl-root .trow > :nth-child(2), .tpl-root .trow > :nth-child(5) { display: none; }
.tpl-root .trow.hd { background: var(--bg-soft); font-size: 0.62rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-light); font-weight: 650; }
.tpl-root .trow .id { font-weight: 650; }
.tpl-root .trow .ds { font-size: 0.67rem; color: var(--slate-light); font-weight: 400; }
.tpl-root .trow .qt { font-weight: 700; }
.tpl-root .trow .qt em { font-style: normal; font-weight: 500; color: var(--slate-light); font-size: 0.66rem; }
.tpl-root .chip { display: inline-block; font-size: 0.65rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.tpl-root .chip.blue { background: var(--teal-soft);  color: var(--teal-dark); }
.tpl-root .chip.amber { background: var(--amber-soft); color: var(--amber-dark); }
.tpl-root .chip.green { background: #E6F6EF;           color: var(--ok); }
.tpl-root .chip.violet { background: #EFEDFB;           color: var(--violet); }
.tpl-root .chip.gray { background: var(--line-soft);  color: var(--slate); }
.tpl-root .due { font-weight: 600; }
.tpl-root .due small { display: block; font-weight: 500; font-size: 0.63rem; color: var(--slate-light); }
.tpl-root .due.late small { color: var(--bad); font-weight: 600; }

/* bars / chart mock */
.tpl-root .bars { display: flex; align-items: flex-end; gap: 10px; height: 118px; padding: 16px; }
.tpl-root .bars .grp { flex: 1; display: flex; align-items: flex-end; gap: 4px; height: 100%; }
.tpl-root .bars .b { flex: 1; border-radius: 4px 4px 0 0; }
.tpl-root .bars .b.plan { background: var(--line); }
.tpl-root .bars .b.act { background: var(--teal); }
.tpl-root .legend { display: flex; gap: 16px; padding: 0 16px 14px; font-size: 0.66rem; color: var(--slate); }
.tpl-root .legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: -1px; }

.tpl-root .deptbars { padding: 14px 16px; display: flex; flex-direction: column; gap: 11px; }
.tpl-root .dbar { display: grid; grid-template-columns: 84px 1fr 34px; gap: 10px; align-items: center; font-size: 0.72rem; }
.tpl-root .dbar .nm { color: var(--slate); }
.tpl-root .dbar .tr { height: 7px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.tpl-root .dbar .fl { height: 100%; border-radius: 999px; display: block; }
.tpl-root .dbar .pc { text-align: right; font-weight: 650; font-size: 0.68rem; }

/* tablet + phone mockups */
.tpl-root .device-tablet {
  background: var(--ink); border-radius: 22px; padding: 14px; box-shadow: var(--shadow-lg);
  max-width: 420px; margin: 0 auto;
}
.tpl-root .device-tablet .scr { background: #fff; border-radius: 12px; overflow: hidden; }
.tpl-root .device-phone {
  background: var(--ink); border-radius: 30px; padding: 11px; box-shadow: var(--shadow-lg);
  max-width: 268px; margin: 0 auto;
}
.tpl-root .device-phone .scr { background: #fff; border-radius: 22px; overflow: hidden; min-height: 470px; }
.tpl-root .ph-top { background: var(--ink); color: #fff; padding: 16px 18px 20px; }
.tpl-root .ph-top .t1 { font-size: 0.66rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.tpl-root .ph-top .t2 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em; margin-top: 4px; }
.tpl-root .ph-body { padding: 16px; display: flex; flex-direction: column; gap: 11px; }
.tpl-root .ph-field { border: 1px solid var(--line); border-radius: var(--r-xs); padding: 11px 13px; }
.tpl-root .ph-field .l { font-size: 0.62rem; color: var(--slate-light); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; }
.tpl-root .ph-field .v { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.tpl-root .ph-field .v.teal { color: var(--teal); }
.tpl-root .ph-field .v.amber { color: var(--amber-dark); }
.tpl-root .ph-btn {
  background: var(--ok); color: #fff; text-align: center; padding: 14px; border-radius: var(--r-xs);
  font-weight: 650; font-size: 0.88rem; margin-top: 4px;
}
.tpl-root .ph-steps { display: flex; gap: 5px; margin-top: 2px; }
.tpl-root .ph-steps i { flex: 1; height: 4px; border-radius: 2px; background: var(--line); }
.tpl-root .ph-steps i.on { background: var(--teal); }

/* ===== STAT BAND ===== */
.tpl-root .stat-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
.tpl-root .stat { text-align: center; }
.tpl-root .stat .n { font-size: clamp(2.1rem, 4vw, 3.05rem); font-weight: 750; letter-spacing: -0.045em; line-height: 1; color: var(--teal); }
.tpl-root .stat .n span { color: var(--amber); }
.tpl-root .stat .l { font-size: 0.9rem; color: var(--slate); margin-top: 12px; font-weight: 500; }

/* ===== CARD GRIDS ===== */
.tpl-root .grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.tpl-root .grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }

.tpl-root .card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 22px; transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s, border-color .28s;
}
.tpl-root .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D4E6F0; }
.tpl-root .card h3 { margin-bottom: 10px; }
.tpl-root .card p { font-size: 0.93rem; color: var(--slate); }
.tpl-root .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--teal-soft); color: var(--teal-dark);
}
.tpl-root .ico svg { width: 22px; height: 22px; }
.tpl-root .ico.amber { background: var(--amber-soft); color: var(--amber-dark); }

/* compact feature tiles */
.tpl-root .tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 22px 20px;
  transition: all .25s; display: flex; gap: 14px; align-items: flex-start;
}
.tpl-root .tile:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.tpl-root .tile .ti { width: 34px; height: 34px; border-radius: 10px; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; flex-shrink: 0; }
.tpl-root .tile .ti svg { width: 17px; height: 17px; }
.tpl-root .tile h3 { font-size: 0.95rem; margin-bottom: 5px; }
.tpl-root .tile p { font-size: 0.85rem; color: var(--slate); line-height: 1.55; }

/* ===== ACCORDION FEATURE EXPLORER ===== */
.tpl-root .explorer { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.tpl-root .acc-list { display: flex; flex-direction: column; }
.tpl-root .acc { border-top: 1px solid var(--line); }
.tpl-root .acc:last-child { border-bottom: 1px solid var(--line); }
.tpl-root .acc-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 16px; padding: 24px 4px;
  font-size: 1.06rem; font-weight: 650; letter-spacing: -0.02em; color: var(--slate); transition: color .2s;
}
.tpl-root .acc-q:hover { color: var(--ink); }
.tpl-root .acc.open .acc-q { color: var(--ink); }
.tpl-root .acc-q .n {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-size: 0.76rem; font-weight: 700; background: var(--line-soft); color: var(--slate); transition: all .25s;
}
.tpl-root .acc.open .acc-q .n { background: var(--teal); color: #fff; }
.tpl-root .acc-q .cv { margin-left: auto; width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s; color: var(--slate-light); }
.tpl-root .acc.open .acc-q .cv { transform: rotate(180deg); color: var(--teal); }
.tpl-root .acc-a { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1); }
.tpl-root .acc.open .acc-a { max-height: 460px; }
.tpl-root .acc-a-in { padding: 0 4px 24px 46px; }
.tpl-root .acc-a-in p { font-size: 0.95rem; color: var(--slate); margin-bottom: 16px; }
.tpl-root .acc-a-in ul { display: flex; flex-direction: column; gap: 9px; }
.tpl-root .acc-a-in li { font-size: 0.9rem; color: var(--slate); display: flex; gap: 10px; align-items: flex-start; }
.tpl-root .acc-a-in li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  flex-shrink: 0; margin-top: 8px;
}
.tpl-root .acc-visual { position: static; }
.tpl-root .acc-panel { display: none; }
.tpl-root .acc-panel.on { display: block; animation: fadeUp .45s cubic-bezier(.4,0,.2,1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===== FLOW ===== */
.tpl-root .flow { display: grid; grid-template-columns: 1fr; gap: 14px; }
.tpl-root .fstep {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 24px 20px; transition: all .25s;
}
.tpl-root .fstep:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tpl-root .fstep .n {
  font-size: 0.7rem; font-weight: 750; letter-spacing: 0.06em; color: var(--teal);
  background: var(--teal-soft); width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
}
.tpl-root .fstep:nth-child(even) .n { color: var(--amber-dark); background: var(--amber-soft); }
.tpl-root .fstep h3 { font-size: 0.95rem; }
.tpl-root .flow-note {
  margin-top: 34px; text-align: center; font-size: 1.02rem; color: var(--slate);
  background: var(--teal-soft); border: 1px solid #CFE9F5; border-radius: var(--r);
  padding: 22px 28px;
}
.tpl-root .flow-note strong { color: var(--ink); }

/* ===== SPLIT ===== */
.tpl-root .split { display: grid; grid-template-columns: 1fr; gap: 38px; align-items: center; }
.tpl-root .split.rev .split-visual { order: 0; }
.tpl-root .checks { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.tpl-root .chk { display: flex; gap: 14px; align-items: flex-start; }
.tpl-root .chk .m {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center;
}
.tpl-root .chk .m svg { width: 12px; height: 12px; }
.tpl-root .chk span.t { font-size: 0.98rem; color: var(--ink-2); }
.tpl-root .sec-ink .chk .m { background: rgba(111,205,239,0.16); color: #6FCDEF; }
.tpl-root .sec-ink .chk span.t { color: rgba(255,255,255,0.86); }

/* ===== SCREENSHOT GALLERY ===== */
.tpl-root .gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
.tpl-root .gcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.tpl-root .gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tpl-root .gcard .gshot { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 20px; }
.tpl-root .gcard .gtxt { padding: 22px 24px 26px; }
.tpl-root .gcard h3 { margin-bottom: 8px; }
.tpl-root .gcard p { font-size: 0.88rem; color: var(--slate); }

/* mini chart widgets */
.tpl-root .mini { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 15px; }
.tpl-root .mini .mh { font-size: 0.68rem; font-weight: 650; color: var(--slate); margin-bottom: 13px; letter-spacing: 0.02em; }
.tpl-root .donut { display: flex; align-items: center; gap: 16px; }
.tpl-root .donut .ring {
  width: 82px; height: 82px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
}
.tpl-root .donut .ring::after { content: ''; width: 54px; height: 54px; border-radius: 50%; background: #fff; }
.tpl-root .donut .keys { display: flex; flex-direction: column; gap: 7px; font-size: 0.68rem; color: var(--slate); }
.tpl-root .donut .keys i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; margin-right: 7px; }
.tpl-root .spark { display: flex; align-items: flex-end; gap: 5px; height: 76px; }
.tpl-root .spark i { flex: 1; background: var(--teal); border-radius: 3px 3px 0 0; opacity: .82; }
.tpl-root .spark i:nth-child(4n) { background: var(--amber); }
.tpl-root .qlist { display: flex; flex-direction: column; gap: 9px; }
.tpl-root .qrow { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; }
.tpl-root .qrow .qn { flex: 1; color: var(--ink-2); font-weight: 500; }

/* ===== INTEGRATIONS ===== */
.tpl-root .int-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.tpl-root .int-pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 28px; font-weight: 600; font-size: 0.95rem; color: var(--ink-2);
  transition: all .25s;
}
.tpl-root .int-pill:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tpl-root .int-notes { display: flex; justify-content: center; gap: 14px 32px; flex-wrap: wrap; margin-top: 30px; }
.tpl-root .int-note { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--slate); }
.tpl-root .int-note svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ===== OUTCOMES ===== */
.tpl-root .outcomes { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.tpl-root .out-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; }
.tpl-root .out-col h3 { font-size: 1.3rem; margin-bottom: 22px; display: flex; align-items: center; gap: 11px; }
.tpl-root .out-col h3 svg { width: 22px; height: 22px; flex-shrink: 0; }
.tpl-root .out-col.down h3 { color: var(--bad); }
.tpl-root .out-col.up h3 { color: var(--ok); }
.tpl-root .out-col li {
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem; color: var(--ink-2); display: flex; align-items: center; gap: 12px;
}
.tpl-root .out-col li:last-child { border-bottom: none; }
.tpl-root .out-col li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tpl-root .out-col.down li::before { background: var(--bad); }
.tpl-root .out-col.up li::before { background: var(--ok); }
.tpl-root .out-mid { text-align: center; order: -1; }
.tpl-root .out-mid h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.tpl-root .out-mid p { color: var(--slate); margin-top: 14px; font-size: 0.98rem; }

/* ===== TIMELINE ===== */
.tpl-root .timeline { display: grid; grid-template-columns: 1fr; gap: 16px; }
.tpl-root .tstep { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; position: relative; }
.tpl-root .tstep .wk {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal-soft); padding: 4px 12px; border-radius: 999px; margin-bottom: 15px;
}
.tpl-root .tstep .num {
  position: absolute; top: 24px; right: 26px; font-size: 2.4rem; font-weight: 800;
  color: var(--line); line-height: 1; letter-spacing: -0.05em;
}
.tpl-root .tstep h3 { margin-bottom: 9px; }
.tpl-root .tstep p { font-size: 0.9rem; color: var(--slate); }

/* ===== DEMO FORM ===== */
.tpl-root .demo-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.tpl-root .demo-note {
  display: flex; gap: 13px; align-items: flex-start; margin-top: 32px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); padding: 18px 20px;
}
.tpl-root .demo-note svg { width: 20px; height: 20px; color: #6FCDEF; flex-shrink: 0; margin-top: 2px; }
.tpl-root .demo-note span { font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.tpl-root .form { background: #fff; border-radius: var(--r-lg); padding: 26px 20px; box-shadow: var(--shadow-lg); }
.tpl-root .frow { display: grid; grid-template-columns: 1fr; gap: 0; }
.tpl-root .field { margin-bottom: 17px; }
.tpl-root .field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.tpl-root .field input, .tpl-root .field select, .tpl-root .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; min-height: 48px; border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.tpl-root .field textarea { min-height: 92px; resize: vertical; }
.tpl-root .field input:focus, .tpl-root .field select:focus, .tpl-root .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,163,209,0.13);
}
.tpl-root .field input::placeholder, .tpl-root .field textarea::placeholder { color: var(--slate-light); }
.tpl-root .form .btn { width: 100%; margin-top: 8px; }

/* ===== FAQ ===== */
.tpl-root .faq-list { max-width: 880px; margin: 0 auto; }
.tpl-root .faq-item { border-bottom: 1px solid var(--line); }
.tpl-root .faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 20px; padding: 25px 4px;
  font-size: 1.02rem; font-weight: 600; letter-spacing: -0.018em; color: var(--ink); transition: color .2s;
}
.tpl-root .faq-q:hover { color: var(--teal); }
.tpl-root .faq-q .cv { margin-left: 10px; width: 19px; height: 19px; flex-shrink: 0; transition: transform .3s; color: var(--slate-light); }
.tpl-root .faq-item.open .faq-q .cv { transform: rotate(180deg); color: var(--teal); }
.tpl-root .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.tpl-root .faq-item.open .faq-a { max-height: 340px; }
.tpl-root .faq-a p { padding: 0 8px 24px 4px; font-size: 0.96rem; color: var(--slate); }

/* ===== FOOTER ===== */
.tpl-root .foot-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, #17293D 100%);
  color: #fff; position: relative; overflow: hidden;
}
.tpl-root .foot-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(720px 340px at 50% 0%, rgba(31,163,209,0.24), transparent 68%);
}
.tpl-root .foot-cta > * { position: relative; }
.tpl-root .foot-cta h2 { margin-bottom: 20px; }
.tpl-root .foot-cta p { font-size: 1.02rem; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto 38px; }
.tpl-root .foot-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.tpl-root .foot { background: var(--ink); color: rgba(255,255,255,0.6); padding: 56px 0 34px; border-top: 1px solid rgba(255,255,255,0.08); }
.tpl-root .foot-in { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.tpl-root .foot img { height: 26px; width: auto; }
.tpl-root .foot-links { display: flex; gap: 14px 24px; flex-wrap: wrap; }
.tpl-root .foot-links a { font-size: 0.9rem; transition: color .2s; }
.tpl-root .foot-links a:hover { color: #fff; }
.tpl-root .foot-right { font-size: 0.88rem; }
.tpl-root .foot-right a { color: #6FCDEF; }
.tpl-root .copyright {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem; text-align: center; color: rgba(255,255,255,0.42);
}

/* ===== ANIMATION ===== */
.tpl-root .fade-in { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.tpl-root .fade-in.vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tpl-root .fade-in { opacity: 1; transform: none; transition: none; }
  .tpl-root { scroll-behavior: auto; }
}

/* ===== RESPONSIVE — mobile-first, progressive enhancement ===== */

/* --- 480px+ : small phones landscape --- */
@media (min-width: 480px) {
  .tpl-root .grid-3, .tpl-root .grid-4, .tpl-root .gallery, .tpl-root .timeline, .tpl-root .flow { grid-template-columns: repeat(2, 1fr); }
  .tpl-root .frow { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* --- 640px+ : large phones / small tablets --- */
@media (min-width: 640px) {
  .tpl-root { scroll-padding-top: 84px; }
  .tpl-root .container { padding: 0 28px; }
  .tpl-root section { padding: 88px 0; }
  .tpl-root .sec-tight { padding: 64px 0; }
  .tpl-root .sec-head { margin-bottom: 56px; }
  .tpl-root .lead-text { margin-bottom: 52px; }
  .tpl-root .hero { padding-top: 74px; }
  .tpl-root .hero .lead { font-size: 1.14rem; }
  .tpl-root .hero-shot-wrap { margin-top: 52px; padding-bottom: 84px; }
  .tpl-root .hero-ctas .btn { flex: 0 0 auto; }
  .tpl-root .card { padding: 30px 28px; }
  .tpl-root .out-col { padding: 34px 30px; }
  .tpl-root .form { padding: 34px 30px; }
  .tpl-root .app-main { padding: 24px 26px; }
  .tpl-root .grid-3, .tpl-root .grid-4, .tpl-root .gallery, .tpl-root .timeline, .tpl-root .flow { gap: 20px; }
  .tpl-root .trow { grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr 0.7fr; padding: 11px 16px; font-size: 0.74rem; }
  .tpl-root .trow > :nth-child(2), .tpl-root .trow > :nth-child(5) { display: block; }
  .tpl-root .kpis { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tpl-root .foot-in { flex-direction: row; align-items: center; justify-content: space-between; gap: 30px; }
}

/* --- 900px+ : tablets landscape / small laptops --- */
@media (min-width: 900px) {
  .tpl-root { scroll-padding-top: 96px; }
  .tpl-root .nav-inner { height: 82px; gap: 28px; }
  .tpl-root .brand img { height: 30px; }
  .tpl-root .nav-links { display: flex; }
  .tpl-root .nav-cta .btn { display: inline-flex; }
  .tpl-root .hamburger { display: none; }
  .tpl-root .mobile-menu { top: 82px; }
  .tpl-root .hero .lead { font-size: 1.22rem; }
  .tpl-root .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .tpl-root .gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .tpl-root .timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .tpl-root .stat-band { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .tpl-root .shot-body { grid-template-columns: 208px 1fr; min-height: 470px; }
  .tpl-root .app-side { display: block; }
  .tpl-root .split { gap: 44px; }
  .tpl-root .explorer { gap: 44px; }
  .tpl-root .demo-grid { gap: 44px; }
  .tpl-root .outcomes { gap: 26px; }
}

/* --- 1080px+ : full desktop layout --- */
@media (min-width: 1080px) {
  .tpl-root section { padding: 104px 0; }
  .tpl-root .sec-tight { padding: 72px 0; }
  .tpl-root .sec-head { margin-bottom: 64px; }
  .tpl-root .lead-text { margin-bottom: 60px; }
  .tpl-root .hero { padding-top: 90px; }
  .tpl-root .hero-shot-wrap { margin-top: 66px; padding-bottom: 104px; }
  .tpl-root .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .tpl-root .flow { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .tpl-root .explorer { grid-template-columns: 1fr 1.12fr; gap: 56px; }
  .tpl-root .acc-visual { position: sticky; top: 110px; }
  .tpl-root .split { grid-template-columns: 1fr 1.05fr; gap: 68px; }
  .tpl-root .split.rev .split-visual { order: -1; }
  .tpl-root .demo-grid { grid-template-columns: 0.95fr 1.05fr; gap: 64px; }
  .tpl-root .outcomes { grid-template-columns: 1fr 0.85fr 1fr; gap: 34px; }
  .tpl-root .out-mid { order: 0; }
  .tpl-root .form { padding: 38px 36px; }
}

/* --- touch devices: no hover-lift, larger tap targets --- */
@media (hover: none) {
  .tpl-root .card:hover, .tpl-root .gcard:hover, .tpl-root .fstep:hover, .tpl-root .tile:hover, .tpl-root .int-pill:hover, .tpl-root .btn:hover { transform: none; }
}

/* ===== Booking, notices, honeypot (added for the WordPress build) ===== */
.tpl-root .tpl-booking {
  margin-top: 30px; padding: 24px 22px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r);
}
.tpl-root .tpl-booking-h {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.06rem; color: #fff; margin-bottom: 8px;
}
.tpl-root .tpl-booking-h svg { width: 19px; height: 19px; color: #6FCDEF; flex-shrink: 0; }
.tpl-root .tpl-booking-p { font-size: 0.93rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.tpl-root .tpl-booking-frame {
  border-radius: var(--r-sm); overflow: hidden; background: #fff; line-height: 0;
}
.tpl-root .tpl-booking-frame iframe { display: block; width: 100%; border: 0; }
.tpl-root .tpl-booking-fallback { margin-top: 12px; font-size: 0.85rem; }
.tpl-root .tpl-booking-fallback a { color: #6FCDEF; text-decoration: underline; }

.tpl-root .tpl-notice {
  padding: 14px 16px; border-radius: var(--r-xs); margin-bottom: 18px;
  font-size: 0.93rem; font-weight: 500; border: 1px solid;
}
.tpl-root .tpl-notice-ok  { background: #E6F6EF; border-color: #A7E0C7; color: #14724D; }
.tpl-root .tpl-notice-err { background: #FDECEA; border-color: #F3BDB7; color: #A32C21; }

/* Honeypot: hidden from people, visible to bots that ignore CSS. */
.tpl-root .tpl-hp {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* Blank canvas: strip any theme body padding around the landing page. */
body.tpl-blank-canvas { margin: 0; padding: 0; }
body.tpl-blank-canvas #wpadminbar { position: fixed; }
