/* İlaçlama Yönetimim — Core visual system */
:root {
  --navy-950: #05111d;
  --navy-900: #071827;
  --navy-850: #0a1d2d;
  --navy-800: #0d2436;
  --navy-700: #17384d;
  --navy-600: #315468;
  --green-600: #079568;
  --green-500: #0db57f;
  --green-400: #35d49d;
  --green-100: #dff8ef;
  --green-50: #effbf7;
  --blue-500: #3988f7;
  --orange-500: #f59e45;
  --slate-900: #172430;
  --slate-700: #435563;
  --slate-600: #5c6c78;
  --slate-500: #71808b;
  --slate-400: #91a0aa;
  --slate-300: #c9d2d8;
  --slate-200: #dfe5e9;
  --slate-150: #e9eef1;
  --slate-100: #f1f4f6;
  --slate-50: #f7f9fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(8, 28, 42, 0.07);
  --shadow-md: 0 24px 70px rgba(5, 22, 35, 0.12);
  --shadow-lg: 0 35px 100px rgba(1, 14, 24, 0.26);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --font: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topline {
  position: relative;
  z-index: 102;
  color: #d9e7ed;
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.topline-inner > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topline-inner > span::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(53, 212, 157, 0.12);
  content: "";
}

.topline-points { display: flex; gap: 25px; color: #9fb1bd; }
.topline-points span + span { position: relative; }
.topline-points span + span::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.16);
  content: "";
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(12,47,67,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 32px rgba(6,30,45,.08);
}

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

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-500), var(--green-600));
  box-shadow: 0 9px 24px rgba(13,181,127,.22);
}
.brand-mark svg { width: 31px; height: 31px; stroke-width: 1.8; }
.brand-mark svg path:first-child { fill: rgba(255,255,255,.08); }
.brand-type { display: flex; flex-direction: column; line-height: .95; color: var(--navy-900); }
.brand-type strong { font-size: 1.06rem; font-weight: 800; letter-spacing: -.035em; }
.brand-type span { margin-top: 5px; color: var(--green-600); font-size: .84rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.desktop-nav a,
.text-link { position: relative; color: #354a58; font-size: .9rem; font-weight: 650; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.demo-panel-button,
.example-site-button { white-space: nowrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.menu-toggle:focus-visible,
.explorer-tab:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(53,212,157,.32); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-primary { color: var(--white); background: var(--green-600); box-shadow: 0 10px 26px rgba(7,149,104,.21); }
.button-primary:hover { background: #07845e; box-shadow: 0 14px 30px rgba(7,149,104,.28); }
.button-small { min-height: 43px; padding-inline: 18px; }
.button-large { min-height: 57px; padding-inline: 25px; border-radius: 13px; }
.button-ghost { border-color: #cfdae0; color: var(--navy-800); background: rgba(255,255,255,.75); }
.button-ghost:hover { border-color: var(--navy-700); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy-900); box-shadow: 0 12px 28px rgba(7,24,39,.17); }
.button-dark:hover { background: var(--navy-700); }
.button-outline { width: 100%; border-color: var(--slate-300); color: var(--navy-800); background: var(--white); }
.button-outline:hover { border-color: var(--green-500); color: var(--green-600); }

.menu-toggle { display: none; width: 45px; height: 45px; padding: 0; border: 1px solid var(--slate-200); border-radius: 11px; background: var(--white); place-items: center; cursor: pointer; }
.menu-toggle svg { width: 23px; height: 23px; }
.menu-toggle .menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: block; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background:
    radial-gradient(circle at 80% 13%, rgba(30,197,139,.12), transparent 24%),
    radial-gradient(circle at 10% 25%, rgba(57,136,247,.07), transparent 22%),
    linear-gradient(180deg, #fbfdfd 0%, #f5f9f9 100%);
}

.hero::after {
  position: absolute;
  right: -200px;
  bottom: 60px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(13,181,127,.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(13,181,127,.025), 0 0 0 140px rgba(13,181,127,.018);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(23,56,77,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23,56,77,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(550px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy { padding-bottom: 54px; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 7px;
  border: 1px solid #cdece1;
  border-radius: 999px;
  color: #146e51;
  background: rgba(239,251,247,.82);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .01em;
}
.eyebrow-icon { display: grid; width: 27px; height: 27px; border-radius: 50%; color: var(--white); background: var(--green-600); place-items: center; }
.eyebrow-icon svg { width: 15px; height: 15px; }

.hero h1 {
  max-width: 650px;
  margin: 25px 0 22px;
  color: var(--navy-900);
  font-size: clamp(3.05rem, 5.15vw, 5rem);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: .99;
}
.hero h1 span { position: relative; color: var(--green-600); white-space: nowrap; }
.hero h1 span::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 7px; border-radius: 50%; background: rgba(53,212,157,.23); content: ""; transform: rotate(-1.4deg); }
.hero-lead { max-width: 630px; margin: 0; color: var(--slate-600); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 10px 21px; margin-top: 26px; color: var(--slate-600); font-size: .79rem; font-weight: 650; }
.hero-assurance div { display: flex; align-items: center; gap: 7px; }
.hero-assurance svg { width: 16px; height: 16px; padding: 2px; border-radius: 50%; color: var(--white); background: var(--green-500); stroke-width: 2.6; }

.hero-product { position: relative; min-width: 0; padding: 43px 0 68px; }
.product-glow { position: absolute; z-index: -1; inset: 4% -8% 3%; border-radius: 50%; background: radial-gradient(circle, rgba(13,181,127,.21), rgba(57,136,247,.06) 45%, transparent 68%); filter: blur(20px); }
.dashboard-window { overflow: hidden; border: 1px solid rgba(255,255,255,.92); border-radius: 19px; background: var(--white); box-shadow: var(--shadow-lg); transform: perspective(1600px) rotateY(-2deg) rotateX(1deg); transform-origin: center; }
.window-bar { display: flex; align-items: center; gap: 13px; min-height: 41px; padding: 0 13px; border-bottom: 1px solid #e8edef; background: #f6f8f9; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #c8d1d6; }
.window-dots span:first-child { background: #ff8c7c; }
.window-dots span:nth-child(2) { background: #f2c158; }
.window-dots span:last-child { background: #55c79e; }
.window-address { display: flex; align-items: center; justify-content: center; gap: 6px; width: 44%; min-width: 205px; margin-inline: auto; padding: 4px 10px; border: 1px solid #e5eaed; border-radius: 6px; color: #778791; background: var(--white); font-size: .57rem; }
.lock-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-500); }
.sample-tag { padding: 3px 6px; border: 1px solid #d4dde2; border-radius: 4px; color: #87959e; font-size: .48rem; font-weight: 800; letter-spacing: .09em; }
.dashboard-layout { display: grid; min-height: 390px; grid-template-columns: 58px 1fr; }
.dash-sidebar { display: flex; align-items: center; flex-direction: column; gap: 18px; padding: 15px 10px; background: var(--navy-900); }
.dash-logo { display: grid; width: 30px; height: 30px; margin-bottom: 9px; border-radius: 8px; color: var(--white); background: var(--green-500); font-size: .55rem; font-weight: 900; place-items: center; }
.side-line { width: 18px; height: 18px; border-radius: 5px; background: rgba(255,255,255,.09); }
.side-line.active { position: relative; background: rgba(53,212,157,.25); }
.side-line.active::before { position: absolute; top: 4px; bottom: 4px; left: -10px; width: 2px; border-radius: 2px; background: var(--green-400); content: ""; }
.side-line.short { margin-top: auto; }
.dash-main { min-width: 0; padding: 20px 20px 17px; background: #f5f8f9; }
.dash-top { display: flex; align-items: center; justify-content: space-between; }
.dash-top > div:first-child { display: flex; flex-direction: column; }
.dash-kicker { color: var(--green-600); font-size: .47rem; font-weight: 850; letter-spacing: .13em; }
.dash-top strong { margin-top: 2px; color: var(--navy-900); font-size: .91rem; line-height: 1.2; }
.dash-date { padding: 6px 9px; border: 1px solid #e1e8eb; border-radius: 7px; color: #657680; background: var(--white); font-size: .56rem; }
.dash-stats { display: grid; margin: 16px 0; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.dash-stats article { position: relative; min-width: 0; padding: 12px 12px 10px; overflow: hidden; border: 1px solid #e7ecef; border-radius: 10px; background: var(--white); }
.dash-stats article::after { position: absolute; top: 0; right: 0; width: 38px; height: 38px; border-radius: 0 0 0 38px; background: rgba(13,181,127,.08); content: ""; }
.dash-stats span { display: block; overflow: hidden; color: #72828c; font-size: .5rem; white-space: nowrap; text-overflow: ellipsis; }
.dash-stats strong { display: block; margin: 3px 0 1px; color: var(--navy-900); font-size: 1.05rem; line-height: 1.1; }
.dash-stats small { display: block; overflow: hidden; color: #87959e; font-size: .46rem; white-space: nowrap; text-overflow: ellipsis; }
.dash-stats small.positive { color: var(--green-600); }
.dash-content-grid { display: grid; gap: 10px; grid-template-columns: 1.6fr .8fr; }
.schedule-card, .collection-card { min-width: 0; padding: 13px; border: 1px solid #e7ecef; border-radius: 10px; background: var(--white); }
.card-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.card-heading strong { color: #263b48; font-size: .61rem; }
.card-heading span { color: var(--green-600); font-size: .46rem; font-weight: 700; }
.schedule-row { display: grid; align-items: center; gap: 7px; min-height: 44px; border-top: 1px solid #eef2f4; grid-template-columns: 31px 6px 1fr auto; }
.schedule-row time { color: #75858f; font-size: .49rem; font-weight: 700; }
.schedule-marker { width: 5px; height: 5px; border-radius: 50%; background: #9cacb5; box-shadow: 0 0 0 3px #eef1f3; }
.schedule-marker.is-live { background: var(--green-500); box-shadow: 0 0 0 3px rgba(13,181,127,.13); }
.schedule-row div { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.schedule-row div strong { overflow: hidden; color: #30434f; font-size: .54rem; white-space: nowrap; text-overflow: ellipsis; }
.schedule-row div small { overflow: hidden; color: #8b99a1; font-size: .44rem; white-space: nowrap; text-overflow: ellipsis; }
.status { padding: 3px 5px; border-radius: 4px; color: #687983; background: #edf1f3; font-size: .42rem; font-weight: 750; }
.status-live { color: #087451; background: #e4f8f0; }
.collection-card { text-align: center; }
.donut { display: grid; width: 76px; height: 76px; margin: 6px auto 8px; border-radius: 50%; background: conic-gradient(var(--green-500) 0 74%, #e7eef0 74% 100%); place-items: center; }
.donut::before { width: 54px; height: 54px; border-radius: 50%; background: var(--white); content: ""; grid-area: 1/1; }
.donut span { z-index: 1; color: var(--navy-900); font-size: .85rem; font-weight: 850; grid-area: 1/1; }
.donut small { font-size: .45rem; }
.collection-legend { display: flex; align-items: center; justify-content: center; gap: 5px; color: #85939c; font-size: .44rem; }
.collection-legend span { width: 5px; height: 5px; border-radius: 50%; background: var(--green-500); }
.money { display: block; margin-top: 3px; color: var(--navy-900); font-size: .66rem; }
.floating-alert { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; width: 220px; padding: 11px 12px; border: 1px solid rgba(225,234,238,.9); border-radius: 12px; background: rgba(255,255,255,.95); box-shadow: 0 14px 35px rgba(7,27,41,.15); backdrop-filter: blur(8px); }
.floating-alert .alert-icon { display: grid; width: 31px; height: 31px; flex: 0 0 31px; border-radius: 8px; color: #d17c27; background: #fff2e3; place-items: center; }
.floating-alert .alert-icon svg { width: 16px; height: 16px; }
.floating-alert .alert-check { color: var(--green-600); background: var(--green-100); }
.floating-alert > div { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.floating-alert strong { color: #263a47; font-size: .61rem; }
.floating-alert small { overflow: hidden; margin-top: 2px; color: #7e8d96; font-size: .48rem; white-space: nowrap; text-overflow: ellipsis; }
.alert-one { top: 19px; right: -24px; animation: floaty 5s ease-in-out infinite; }
.alert-two { bottom: 28px; left: -29px; animation: floaty 5s ease-in-out 1.3s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.hero-proof { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; min-height: 86px; border-top: 1px solid #dce7e8; }
.proof-intro { color: #62737e; font-size: .85rem; }
.proof-intro strong { color: var(--navy-800); }
.proof-items { display: flex; gap: clamp(20px, 3vw, 43px); }
.proof-items span { display: flex; align-items: center; gap: 7px; color: #3f5664; font-size: .79rem; font-weight: 700; }
.proof-items svg { width: 17px; height: 17px; color: var(--green-600); }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .permission-copy h2, .website-copy h2, .trust-copy h2, .faq-intro h2, .demo-copy h2 {
  margin: 10px 0 17px;
  color: var(--navy-900);
  font-size: clamp(2.15rem, 3.7vw, 3.45rem);
  font-weight: 810;
  letter-spacing: -.052em;
  line-height: 1.08;
}
.section-kicker { color: var(--green-600); font-size: .75rem; font-weight: 850; letter-spacing: .16em; }
.section-heading p, .permission-copy > p, .website-copy > p, .trust-copy > p, .faq-intro > p { margin: 0; color: var(--slate-600); font-size: 1rem; line-height: 1.75; }
.split-heading { display: grid; align-items: end; grid-template-columns: 1.05fr .75fr; gap: 90px; }
.split-heading h2 { margin-bottom: 0; }
.centered { max-width: 750px; margin-inline: auto; text-align: center; }
.centered p { max-width: 650px; margin-inline: auto; }

.section-problem { background: var(--white); }
.problem-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.problem-card { position: relative; min-height: 300px; padding: 29px; overflow: hidden; border: 1px solid var(--slate-150); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.problem-card:hover { border-color: #bfdfd4; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.card-number { position: absolute; top: 21px; right: 24px; color: #dce3e7; font-size: 1rem; font-weight: 850; }
.problem-icon { display: grid; width: 47px; height: 47px; margin-bottom: 24px; border-radius: 13px; color: var(--green-600); background: var(--green-50); place-items: center; }
.problem-icon svg { width: 23px; height: 23px; }
.problem-card h3 { margin: 0 0 10px; color: var(--navy-900); font-size: 1.25rem; letter-spacing: -.025em; }
.problem-card p { margin: 0; color: var(--slate-600); font-size: .91rem; line-height: 1.7; }
.before-after { position: absolute; right: 29px; bottom: 24px; left: 29px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--slate-150); color: #8a98a1; font-size: .72rem; }
.before-after svg { width: 15px; height: 15px; color: #aeb9bf; }
.before-after strong { color: var(--green-600); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Product explorer */
.product-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(13,181,127,.14), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(57,136,247,.09), transparent 30%),
    var(--navy-900);
}
.product-section::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
}
.product-section .container { position: relative; z-index: 1; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light p { color: #aabcc7; }
.product-explorer { max-width: 1110px; margin-inline: auto; }
.explorer-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 17px; }
.explorer-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  color: #a8bbc6;
  background: rgba(255,255,255,.045);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  transition: .2s ease;
}
.explorer-tab svg { width: 17px; height: 17px; }
.explorer-tab:hover { color: var(--white); background: rgba(255,255,255,.08); }
.explorer-tab.is-active { border-color: var(--green-500); color: var(--navy-900); background: var(--green-400); box-shadow: 0 8px 25px rgba(13,181,127,.2); }
.explorer-screen { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; color: var(--slate-900); background: #f4f7f8; box-shadow: 0 35px 90px rgba(0,7,12,.35); }
.explorer-toolbar { display: flex; align-items: center; justify-content: space-between; min-height: 59px; padding: 0 23px; border-bottom: 1px solid #e0e7ea; background: var(--white); }
.toolbar-brand { display: flex; align-items: center; gap: 9px; color: var(--navy-900); }
.toolbar-brand > span { display: grid; width: 29px; height: 29px; border-radius: 7px; color: var(--white); background: var(--green-600); font-size: .53rem; font-weight: 900; place-items: center; }
.toolbar-brand strong { font-size: .78rem; }
.toolbar-actions { display: flex; align-items: center; gap: 13px; }
.online-label { display: flex; align-items: center; gap: 6px; color: #55705f; font-size: .62rem; font-weight: 700; }
.online-label::before { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); content: ""; }
.avatar { display: grid; width: 29px; height: 29px; border-radius: 50%; color: var(--navy-800); background: #e5ecef; font-size: .53rem; font-weight: 850; place-items: center; }
.explorer-panel { min-height: 555px; padding: 24px; animation: screenIn .3s ease; }
.explorer-panel[hidden] { display: none; }
@keyframes screenIn { from { opacity: 0; transform: translateY(6px); } }
.screen-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.screen-title > div { display: flex; flex-direction: column; }
.screen-title small { color: #7c8d97; font-size: .63rem; }
.screen-title h3 { margin: 2px 0 0; color: var(--navy-900); font-size: 1.18rem; letter-spacing: -.02em; }
.screen-title button { min-height: 36px; padding: 0 13px; border: 0; border-radius: 8px; color: var(--white); background: var(--green-600); cursor: default; font-size: .65rem; font-weight: 750; }
.metric-grid { display: grid; gap: 11px; grid-template-columns: repeat(4, 1fr); }
.metric-grid article { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 15px; border: 1px solid #e2e8eb; border-radius: 11px; background: var(--white); }
.metric-icon { display: grid; width: 37px; height: 37px; flex: 0 0 37px; border-radius: 9px; place-items: center; }
.metric-icon svg { width: 18px; height: 18px; }
.metric-icon.green { color: var(--green-600); background: var(--green-100); }
.metric-icon.blue { color: var(--blue-500); background: #e7f1ff; }
.metric-icon.orange { color: #d67a20; background: #fff0df; }
.metric-icon.navy { color: var(--navy-700); background: #e6ecef; }
.metric-grid article > div { display: flex; min-width: 0; flex-direction: column; line-height: 1.3; }
.metric-grid small { overflow: hidden; color: #74858f; font-size: .57rem; white-space: nowrap; text-overflow: ellipsis; }
.metric-grid strong { overflow: hidden; margin: 2px 0; color: var(--navy-900); font-size: .98rem; white-space: nowrap; text-overflow: ellipsis; }
.metric-grid em { color: #8a99a1; font-size: .52rem; font-style: normal; }
.overview-grid { display: grid; gap: 13px; margin-top: 13px; grid-template-columns: 1.45fr .8fr; }
.panel-card { border: 1px solid #e2e8eb; border-radius: 11px; background: var(--white); }
.panel-title { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 0 15px; border-bottom: 1px solid #edf1f3; }
.panel-title strong { color: #304653; font-size: .68rem; }
.panel-title span { color: #87969e; font-size: .53rem; }
.job-line { display: grid; align-items: center; gap: 10px; min-height: 60px; margin-inline: 15px; border-bottom: 1px solid #edf1f3; grid-template-columns: 38px 7px 1fr auto; }
.job-line:last-child { border-bottom: 0; }
.job-line time { color: #6e808a; font-size: .58rem; font-weight: 750; }
.job-dot { width: 6px; height: 6px; border-radius: 50%; background: #97a5ad; box-shadow: 0 0 0 4px #eff2f4; }
.job-dot.done { background: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); }
.job-dot.live { background: var(--blue-500); box-shadow: 0 0 0 4px #e7f1ff; }
.job-line > div { display: flex; min-width: 0; flex-direction: column; line-height: 1.35; }
.job-line > div strong { color: #324854; font-size: .66rem; }
.job-line > div small { overflow: hidden; color: #84939b; font-size: .54rem; white-space: nowrap; text-overflow: ellipsis; }
.mini-status { padding: 4px 7px; border-radius: 5px; color: #677984; background: #edf1f3; font-size: .48rem; font-weight: 750; }
.mini-status.done { color: #087451; background: #e4f8f0; }
.mini-status.live { color: #2b6fc6; background: #e7f1ff; }
.activity-card { overflow: hidden; }
.activity-item { display: flex; align-items: center; gap: 10px; min-height: 74px; margin-inline: 14px; border-bottom: 1px solid #edf1f3; }
.activity-item:last-child { border-bottom: 0; }
.activity-symbol { display: grid; width: 31px; height: 31px; flex: 0 0 31px; border-radius: 8px; color: var(--green-600); background: var(--green-100); place-items: center; }
.activity-symbol.blue { color: var(--blue-500); background: #e7f1ff; }
.activity-symbol.orange { color: #d67a20; background: #fff0df; }
.activity-symbol svg { width: 15px; height: 15px; }
.activity-item > div { display: flex; min-width: 0; flex-direction: column; line-height: 1.4; }
.activity-item strong { color: #3b4f5b; font-size: .61rem; }
.activity-item small { color: #89979f; font-size: .51rem; }
.planner { overflow: hidden; border: 1px solid #e0e7ea; border-radius: 11px; background: var(--white); }
.planner-head, .planner-row { display: grid; grid-template-columns: 60px repeat(5, 1fr); }
.planner-head { min-width: 720px; min-height: 42px; border-bottom: 1px solid #e6ecef; background: #f8fafb; }
.planner-head span, .planner-head strong { display: flex; align-items: center; padding: 0 10px; border-right: 1px solid #e6ecef; color: #697b86; font-size: .58rem; }
.planner-head strong { color: #405560; }
.planner-row { min-width: 720px; min-height: 87px; border-bottom: 1px solid #e8edef; }
.planner-row:last-child { border-bottom: 0; }
.planner-row > * { border-right: 1px solid #e8edef; }
.planner-row time { padding: 12px 10px; color: #70818a; font-size: .6rem; font-weight: 700; }
.plan-block { align-self: center; margin: 6px; padding: 8px 9px; border-left: 3px solid var(--green-500); border-radius: 5px; color: #16654b; background: #e8f8f2; font-size: .58rem; font-weight: 750; line-height: 1.35; }
.plan-block small { display: block; color: #598373; font-size: .49rem; font-weight: 550; }
.plan-block.blue { border-color: var(--blue-500); color: #245e9e; background: #e8f2ff; }
.plan-block.blue small { color: #6282a4; }
.plan-block.orange { border-color: var(--orange-500); color: #9b5b20; background: #fff1e2; }
.plan-block.orange small { color: #9c7b5e; }
.planner-legend { display: flex; align-items: center; gap: 18px; margin-top: 14px; color: #6c7e88; font-size: .56rem; }
.planner-legend span { display: flex; align-items: center; gap: 5px; }
.planner-legend i { width: 7px; height: 7px; border-radius: 2px; background: var(--green-500); }
.planner-legend i.blue { background: var(--blue-500); }
.planner-legend i.orange { background: var(--orange-500); }
.planner-legend em { margin-left: auto; color: #71858f; font-size: .55rem; font-style: normal; }
.customer-controls { display: flex; gap: 8px; margin-bottom: 14px; }
.customer-controls > * { display: flex; align-items: center; min-height: 36px; padding: 0 11px; border: 1px solid #dfe6e9; border-radius: 7px; color: #73848e; background: var(--white); font-size: .58rem; }
.customer-controls .fake-search { flex: 1; }
.customer-table { overflow: hidden; border: 1px solid #e0e7ea; border-radius: 11px; background: var(--white); }
.table-row { display: grid; align-items: center; min-width: 720px; min-height: 66px; padding: 0 16px; border-bottom: 1px solid #e9eef0; grid-template-columns: 1.45fr .7fr .8fr .8fr .55fr; }
.table-row:last-child { border-bottom: 0; }
.table-head { min-height: 42px; color: #71838d; background: #f7f9fa; font-size: .55rem; font-weight: 750; }
.table-row:not(.table-head) > span { color: #52656f; font-size: .61rem; }
.table-row span:first-child { display: flex; flex-direction: column; }
.table-row b { color: #2c414d; font-size: .67rem; }
.table-row small { color: #89979f; font-size: .51rem; }
.table-status { display: inline-flex; width: fit-content; padding: 4px 7px; border-radius: 5px; color: #087451; background: #e4f8f0; font-size: .49rem; font-style: normal; font-weight: 750; }
.table-status.warning { color: #a45c17; background: #fff0df; }
.finance-summary { display: grid; gap: 11px; margin-bottom: 13px; grid-template-columns: repeat(3, 1fr); }
.finance-summary article { display: flex; padding: 16px; border: 1px solid #e0e7ea; border-radius: 11px; background: var(--white); flex-direction: column; }
.finance-summary small { color: #74858f; font-size: .6rem; }
.finance-summary strong { margin: 3px 0; color: var(--navy-900); font-size: 1.05rem; }
.finance-summary span { color: #8b989f; font-size: .52rem; }
.finance-summary .positive { color: var(--green-600); }
.finance-summary .warning-text { color: #c06d1e; }
.finance-grid { display: grid; gap: 13px; grid-template-columns: 1.35fr .8fr; }
.chart-card, .payment-card { min-height: 285px; }
.bar-chart { display: flex; align-items: flex-end; justify-content: space-around; height: 212px; padding: 25px 15px 26px; border-bottom: 1px solid #edf1f3; background: repeating-linear-gradient(to bottom, transparent 0 40px, #edf1f3 40px 41px); }
.bar-chart span { position: relative; width: 7%; height: var(--h); border-radius: 5px 5px 2px 2px; background: #b8c6cc; }
.bar-chart span.current { background: var(--green-500); }
.bar-chart i { position: absolute; right: 50%; bottom: -22px; color: #7d8d96; font-size: .5rem; font-style: normal; transform: translateX(50%); }
.payment-card > div:not(.panel-title) { display: flex; align-items: center; justify-content: space-between; min-height: 72px; margin-inline: 15px; border-bottom: 1px solid #edf1f3; }
.payment-card > div:last-child { border-bottom: 0; }
.payment-card span { display: flex; flex-direction: column; }
.payment-card b { color: #354a56; font-size: .62rem; }
.payment-card small { color: #88969e; font-size: .51rem; }
.payment-card strong { color: var(--navy-800); font-size: .68rem; }
.demo-caption { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 18px 0 0; color: #8fa4af; font-size: .65rem; }
.demo-caption span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); }

/* Modules */
.modules-section { background: var(--slate-50); }
.modules-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.module-card { position: relative; min-height: 270px; padding: 27px; overflow: hidden; border: 1px solid var(--slate-150); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.module-card:hover { border-color: #bfdfd4; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.module-top { display: flex; align-items: center; justify-content: space-between; }
.module-icon { display: grid; width: 43px; height: 43px; border-radius: 12px; color: var(--green-600); background: var(--green-50); place-items: center; }
.module-icon svg { width: 21px; height: 21px; }
.module-label { color: var(--green-600); font-size: .61rem; font-weight: 850; letter-spacing: .12em; }
.module-card h3 { margin: 21px 0 9px; color: var(--navy-900); font-size: 1.14rem; letter-spacing: -.025em; }
.module-card p { margin: 0; color: var(--slate-600); font-size: .87rem; line-height: 1.7; }
.module-link { position: absolute; right: 27px; bottom: 23px; left: 27px; padding-top: 13px; border-top: 1px solid var(--slate-150); color: #687c88; font-size: .67rem; font-weight: 700; }
.module-featured { min-height: 300px; grid-column: span 2; }
.module-featured p { max-width: 54%; }
.module-featured ul { display: flex; flex-wrap: wrap; gap: 7px 16px; max-width: 57%; margin: 14px 0 0; padding: 0; list-style: none; }
.module-featured li { position: relative; padding-left: 12px; color: #637681; font-size: .68rem; }
.module-featured li::before { position: absolute; top: .62em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--green-500); content: ""; }
.customer-mini { position: absolute; right: 20px; bottom: 20px; width: 36%; padding: 8px; border: 1px solid #e6ecee; border-radius: 11px; background: #f6f9f9; transform: rotate(-1deg); }
.customer-mini > span { display: grid; align-items: center; gap: 7px; min-height: 42px; padding: 4px 6px; border-bottom: 1px solid #e3e9ec; grid-template-columns: 27px 1fr auto; }
.customer-mini > span:last-child { border: 0; }
.customer-mini i { display: grid; width: 25px; height: 25px; border-radius: 7px; color: var(--green-600); background: var(--green-100); font-size: .48rem; font-style: normal; font-weight: 850; place-items: center; }
.customer-mini b { color: #4a5d67; font-size: .55rem; }
.customer-mini em { padding: 3px 5px; border-radius: 4px; color: #087451; background: #e4f8f0; font-size: .42rem; font-style: normal; font-weight: 700; }
.customer-mini em.warning { color: #a45c17; background: #fff0df; }
.module-dark { color: var(--white); border-color: transparent; background: var(--navy-900); }
.module-dark:hover { border-color: rgba(53,212,157,.4); }
.module-dark .module-icon { color: var(--green-400); background: rgba(53,212,157,.12); }
.module-dark h3 { color: var(--white); }
.module-dark p { color: #a7b9c3; }
.module-dark .module-label { color: var(--green-400); }
.mini-bars { position: absolute; right: 27px; bottom: 25px; left: 27px; display: flex; align-items: flex-end; gap: 8px; height: 50px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.1); }
.mini-bars i { flex: 1; height: var(--bar); border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--green-600), var(--green-400)); opacity: .78; }

/* Permissions */
.permission-section { border-top: 1px solid var(--slate-150); background: var(--white); }
.permission-layout { display: grid; align-items: center; gap: 82px; grid-template-columns: .82fr 1.18fr; }
.permission-copy h2 { font-size: clamp(2.15rem, 3.35vw, 3.15rem); }
.check-list { display: grid; gap: 12px; margin: 27px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #405763; font-size: .9rem; font-weight: 650; }
.check-list svg { width: 19px; height: 19px; padding: 3px; border-radius: 50%; color: var(--white); background: var(--green-500); stroke-width: 2.6; }
.role-matrix { overflow: hidden; border: 1px solid var(--slate-150); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.role-matrix > div { display: grid; align-items: center; min-height: 63px; padding: 0 22px; border-bottom: 1px solid var(--slate-150); grid-template-columns: 1.35fr repeat(3, .75fr); }
.role-matrix .role-head { min-height: 61px; color: #d6e3e8; background: var(--navy-900); font-size: .66rem; }
.role-head strong { color: var(--white); font-size: .64rem; text-align: center; }
.role-matrix > div:not(.role-head) > span { color: #465b67; font-size: .75rem; font-weight: 650; }
.role-matrix i { display: flex; align-items: center; justify-content: center; margin-inline: auto; font-size: .58rem; font-style: normal; }
.role-matrix i.yes { width: 24px; height: 24px; border-radius: 50%; color: var(--green-600); background: var(--green-100); }
.role-matrix i.yes svg { width: 13px; height: 13px; stroke-width: 2.7; }
.role-matrix i.limited { padding: 4px 7px; border-radius: 5px; color: #536a76; background: #edf2f4; font-weight: 700; }
.role-matrix i.no { color: #9ca9b0; }
.role-matrix > p { margin: 0; padding: 12px 22px; color: #7b8c95; background: #f8fafb; font-size: .61rem; text-align: center; }

/* Website bundle */
.website-section { overflow: hidden; background: #eef8f4; }
.website-layout { display: grid; align-items: center; gap: 85px; grid-template-columns: 1.05fr .95fr; }
.website-visual { position: relative; padding: 40px 25px 30px 0; }
.website-visual::before { position: absolute; z-index: 0; inset: 0 7% 0 2%; border-radius: 50%; background: radial-gradient(circle, rgba(13,181,127,.17), transparent 67%); content: ""; }
.site-window { position: relative; z-index: 1; overflow: hidden; min-height: 410px; border: 1px solid rgba(255,255,255,.92); border-radius: 17px; background: var(--white); box-shadow: 0 30px 80px rgba(5,45,33,.18); transform: perspective(1400px) rotateY(3deg); }
.site-browser { display: flex; align-items: center; gap: 5px; height: 34px; padding: 0 11px; border-bottom: 1px solid #e7ecee; background: #f5f7f8; }
.site-browser > span { width: 6px; height: 6px; border-radius: 50%; background: #c8d1d6; }
.site-browser > span:first-child { background: #ff8c7c; }
.site-browser > span:nth-child(2) { background: #f2c158; }
.site-browser > span:nth-child(3) { background: #55c79e; }
.site-browser small { width: 42%; margin-inline: auto; padding: 2px 8px; border-radius: 4px; color: #88969e; background: var(--white); font-size: .46rem; text-align: center; }
.site-nav { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 18px; }
.site-nav strong { display: flex; align-items: center; gap: 7px; color: var(--navy-900); font-size: .61rem; }
.site-nav strong i, .mobile-site strong i { width: 20px; height: 20px; border-radius: 6px; background: var(--green-500); }
.site-nav > span { color: #6c7c84; font-size: .46rem; }
.site-nav > b { padding: 5px 8px; border-radius: 5px; color: var(--white); background: var(--green-600); font-size: .45rem; }
.site-hero { min-height: 230px; padding: 43px 31px; color: var(--white); background: radial-gradient(circle at 85% 50%, rgba(53,212,157,.3), transparent 27%), linear-gradient(125deg, #071827, #0e3742); }
.site-hero small { color: var(--green-400); font-size: .46rem; font-weight: 850; letter-spacing: .16em; }
.site-hero > strong { display: block; margin: 10px 0 7px; font-size: 1.38rem; letter-spacing: -.04em; line-height: 1.12; }
.site-hero p { margin: 0 0 16px; color: #bdd0d7; font-size: .57rem; }
.site-hero > span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 5px; color: var(--navy-900); background: var(--green-400); font-size: .49rem; font-weight: 800; }
.site-hero > span svg { width: 11px; height: 11px; }
.site-cards { display: grid; gap: 8px; padding: 13px 17px 17px; grid-template-columns: repeat(3, 1fr); }
.site-cards article { display: flex; align-items: center; gap: 7px; min-width: 0; padding: 9px; border: 1px solid #e8edef; border-radius: 7px; }
.site-cards i { display: grid; width: 25px; height: 25px; flex: 0 0 25px; border-radius: 6px; color: var(--green-600); background: var(--green-50); place-items: center; }
.site-cards svg { width: 13px; height: 13px; }
.site-cards b { overflow: hidden; color: #435863; font-size: .48rem; white-space: nowrap; text-overflow: ellipsis; }
.mobile-site { position: absolute; z-index: 3; right: -8px; bottom: 0; width: 145px; height: 288px; padding: 24px 13px 13px; overflow: hidden; border: 5px solid var(--navy-900); border-radius: 24px; color: var(--white); background: linear-gradient(160deg, #0c2635, #0a4450); box-shadow: 0 22px 55px rgba(4,29,22,.25); }
.phone-notch { position: absolute; top: 0; left: 50%; width: 55px; height: 11px; border-radius: 0 0 9px 9px; background: var(--navy-900); transform: translateX(-50%); }
.mobile-site > strong { display: flex; align-items: center; gap: 5px; font-size: .39rem; }
.mobile-site strong i { width: 14px; height: 14px; border-radius: 4px; }
.mobile-site > small { display: block; margin-top: 39px; color: var(--green-400); font-size: .33rem; font-weight: 850; letter-spacing: .12em; }
.mobile-site > b { display: block; margin: 7px 0 12px; font-size: .8rem; letter-spacing: -.04em; line-height: 1.15; }
.mobile-site > span { display: inline-block; padding: 5px 8px; border-radius: 4px; color: var(--navy-900); background: var(--green-400); font-size: .4rem; font-weight: 800; }
.mobile-site > div:last-child { display: flex; gap: 5px; margin-top: 26px; }
.mobile-site em { width: 48%; height: 54px; border-radius: 5px; background: rgba(255,255,255,.09); }
.website-copy h2 { font-size: clamp(2.15rem, 3.4vw, 3.2rem); }
.website-features { display: grid; gap: 0 20px; margin: 28px 0 31px; grid-template-columns: repeat(2, 1fr); }
.website-features > div { display: flex; gap: 10px; padding: 14px 0; border-top: 1px solid #d6e7e0; }
.website-features > div > svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; color: var(--green-600); }
.website-features span { display: flex; flex-direction: column; }
.website-features strong { color: var(--navy-800); font-size: .83rem; }
.website-features small { margin-top: 2px; color: #698078; font-size: .68rem; line-height: 1.55; }

/* Workflow */
.workflow-section { background: var(--white); }
.steps-grid { position: relative; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.steps-grid::before { position: absolute; z-index: 0; top: 45px; right: 11%; left: 11%; border-top: 1px dashed #bdd6cd; content: ""; }
.step { position: relative; z-index: 1; padding: 0 19px; text-align: center; }
.step > span { position: absolute; top: -5px; right: calc(50% - 43px); display: grid; width: 22px; height: 22px; border: 3px solid var(--white); border-radius: 50%; color: var(--white); background: var(--green-600); font-size: .55rem; font-weight: 850; place-items: center; box-sizing: content-box; }
.step-icon { display: grid; width: 76px; height: 76px; margin: 8px auto 22px; border: 1px solid #cfe5dd; border-radius: 21px; color: var(--green-600); background: var(--green-50); box-shadow: 0 9px 24px rgba(7,149,104,.08); place-items: center; }
.step-icon svg { width: 29px; height: 29px; }
.step h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 1rem; }
.step p { margin: 0; color: var(--slate-600); font-size: .8rem; line-height: 1.65; }

/* Trust */
.trust-section { color: var(--white); background: linear-gradient(125deg, var(--navy-900), #0b2d38); }
.trust-layout { display: grid; align-items: center; gap: 80px; grid-template-columns: .8fr 1.2fr; }
.trust-copy h2 { color: var(--white); font-size: clamp(2.1rem, 3.3vw, 3.1rem); }
.trust-copy > p { color: #adc0ca; }
.trust-cards { display: grid; gap: 12px; }
.trust-cards article { display: flex; align-items: center; gap: 17px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.045); }
.trust-cards article > span { display: grid; width: 45px; height: 45px; flex: 0 0 45px; border-radius: 12px; color: var(--green-400); background: rgba(53,212,157,.11); place-items: center; }
.trust-cards article > span svg { width: 22px; height: 22px; }
.trust-cards article > div { display: flex; flex-direction: column; }
.trust-cards h3 { margin: 0; color: var(--white); font-size: .95rem; }
.trust-cards p { margin: 3px 0 0; color: #a9bbc5; font-size: .76rem; line-height: 1.55; }

/* Solutions */
.solutions-section { background: var(--slate-50); }
.pricing-grid { display: grid; align-items: stretch; gap: 17px; grid-template-columns: repeat(3, 1fr); }
.price-card { position: relative; display: flex; min-height: 530px; padding: 30px; border: 1px solid var(--slate-150); border-radius: var(--radius-lg); background: var(--white); flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.recommended { border: 2px solid var(--green-500); box-shadow: 0 22px 55px rgba(7,149,104,.12); }
.recommend-badge { position: absolute; top: -14px; left: 50%; padding: 5px 13px; border-radius: 999px; color: var(--white); background: var(--green-600); font-size: .62rem; font-weight: 850; letter-spacing: .1em; transform: translateX(-50%); }
.price-top > span { color: var(--green-600); font-size: .66rem; font-weight: 850; letter-spacing: .14em; }
.price-top h3 { margin: 10px 0 8px; color: var(--navy-900); font-size: 1.45rem; letter-spacing: -.035em; }
.price-top p { min-height: 76px; margin: 0; color: var(--slate-600); font-size: .83rem; line-height: 1.65; }
.price-card ul { display: grid; gap: 13px; margin: 23px 0 28px; padding: 23px 0 0; border-top: 1px solid var(--slate-150); list-style: none; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; color: #465c68; font-size: .8rem; line-height: 1.5; }
.price-card li svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; padding: 2px; border-radius: 50%; color: var(--white); background: var(--green-500); stroke-width: 2.8; }
.price-card .button { margin-top: auto; }
.pricing-note { max-width: 760px; margin: 24px auto 0; color: #71838d; font-size: .72rem; text-align: center; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; align-items: start; gap: 78px; grid-template-columns: .65fr 1.35fr; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { font-size: clamp(2.1rem, 3.15vw, 3rem); }
.faq-contact { display: flex; gap: 13px; margin-top: 28px; padding: 18px; border: 1px solid #dce8e4; border-radius: 14px; background: var(--green-50); }
.faq-contact > span { display: grid; width: 39px; height: 39px; flex: 0 0 39px; border-radius: 10px; color: var(--green-600); background: var(--white); box-shadow: 0 5px 15px rgba(7,149,104,.08); place-items: center; }
.faq-contact > span svg { width: 19px; height: 19px; }
.faq-contact > div { display: flex; flex-direction: column; }
.faq-contact strong { color: var(--navy-800); font-size: .8rem; }
.faq-contact small { margin: 2px 0 8px; color: #688078; font-size: .67rem; line-height: 1.5; }
.faq-contact a { display: inline-flex; align-items: center; gap: 5px; color: var(--green-600); font-size: .69rem; font-weight: 800; }
.faq-contact a svg { width: 14px; height: 14px; }
.faq-list { border-top: 1px solid var(--slate-200); }
.faq-list details { border-bottom: 1px solid var(--slate-200); }
.faq-list summary { display: grid; align-items: center; min-height: 76px; padding: 14px 0; color: var(--navy-800); cursor: pointer; font-size: .94rem; font-weight: 750; list-style: none; grid-template-columns: 1fr 32px; gap: 20px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { display: grid; width: 31px; height: 31px; border: 1px solid #d8e1e5; border-radius: 50%; color: #6b7d87; place-items: center; transition: .25s ease; }
.faq-list summary svg { width: 16px; height: 16px; transition: transform .25s ease; }
.faq-list details[open] summary { color: var(--green-600); }
.faq-list details[open] summary > span { border-color: var(--green-500); color: var(--white); background: var(--green-500); }
.faq-list details[open] summary svg { transform: rotate(90deg); }
.faq-list details p { max-width: 92%; margin: -3px 0 22px; color: var(--slate-600); font-size: .82rem; line-height: 1.75; }

/* Demo form */
.demo-section { position: relative; overflow: hidden; padding: 110px 0; color: var(--white); background: var(--navy-900); }
.demo-section::before { position: absolute; top: -180px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: rgba(13,181,127,.12); content: ""; filter: blur(2px); }
.demo-pattern { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.demo-layout { position: relative; z-index: 1; display: grid; align-items: center; gap: 85px; grid-template-columns: .85fr 1.15fr; }
.demo-copy h2 { color: var(--white); font-size: clamp(2.25rem, 3.6vw, 3.45rem); }
.demo-copy > p { margin: 0; color: #adbec7; font-size: .96rem; line-height: 1.75; }
.demo-points { display: grid; gap: 18px; margin-top: 31px; }
.demo-points > div { display: flex; align-items: flex-start; gap: 13px; }
.demo-points > div > span { display: grid; width: 29px; height: 29px; flex: 0 0 29px; border: 1px solid rgba(53,212,157,.35); border-radius: 8px; color: var(--green-400); background: rgba(53,212,157,.08); font-size: .58rem; font-weight: 850; place-items: center; }
.demo-points p { display: flex; margin: 0; flex-direction: column; }
.demo-points strong { color: var(--white); font-size: .82rem; }
.demo-points small { color: #94aab5; font-size: .69rem; line-height: 1.5; }
.no-pressure { display: flex; align-items: center; gap: 8px; margin-top: 28px !important; color: #8fa7b2 !important; font-size: .68rem !important; }
.no-pressure svg { width: 17px; height: 17px; color: var(--green-400); }
.demo-form-card { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); color: var(--slate-900); background: var(--white); box-shadow: var(--shadow-lg); }
.form-heading > span { color: var(--green-600); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-heading > strong { display: block; margin-top: 6px; color: var(--navy-900); font-size: 1.42rem; letter-spacing: -.03em; }
.form-heading > p { margin: 4px 0 23px; color: var(--slate-600); font-size: .76rem; }
.demo-form-card form { display: grid; gap: 14px; }
.form-row { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.demo-form-card label:not(.consent) { display: grid; gap: 6px; color: #425864; font-size: .68rem; font-weight: 750; }
.demo-form-card input, .demo-form-card select, .demo-form-card textarea { width: 100%; border: 1px solid #dbe3e7; border-radius: 9px; color: var(--navy-800); background: #fbfcfc; font-size: .79rem; font-weight: 450; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.demo-form-card input, .demo-form-card select { height: 45px; padding: 0 12px; }
.demo-form-card textarea { min-height: 82px; padding: 10px 12px; resize: vertical; }
.demo-form-card input::placeholder, .demo-form-card textarea::placeholder { color: #9aa6ad; }
.demo-form-card input:focus, .demo-form-card select:focus, .demo-form-card textarea:focus { border-color: var(--green-500); background: var(--white); box-shadow: 0 0 0 4px rgba(13,181,127,.08); }
.consent { display: flex; align-items: flex-start; gap: 9px; color: #6f8089; cursor: pointer; font-size: .64rem; line-height: 1.5; }
.consent input { width: 16px; height: 16px; flex: 0 0 16px; margin: 2px 0 0; accent-color: var(--green-600); }
.button-submit { width: 100%; min-height: 50px; border: 0; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; color: #89969e; font-size: .59rem; }
.form-note svg { width: 13px; height: 13px; color: var(--green-600); }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
.site-footer { color: #a8bac4; background: var(--navy-950); }
.footer-main { display: grid; gap: 70px; padding: 72px 0 58px; grid-template-columns: 1.5fr repeat(3, .7fr); }
.brand-light .brand-type { color: var(--white); }
.brand-light .brand-type span { color: var(--green-400); }
.footer-brand > p { max-width: 320px; margin: 19px 0 17px; color: #8fa4af; font-size: .77rem; line-height: 1.7; }
.footer-status { display: flex; align-items: center; gap: 8px; color: #8fa4af; font-size: .68rem; }
.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 4px rgba(53,212,157,.08); }
.footer-links { display: flex; gap: 10px; flex-direction: column; }
.footer-links strong { margin-bottom: 6px; color: var(--white); font-size: .79rem; }
.footer-links a { color: #8fa4af; font-size: .72rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--green-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 66px; border-top: 1px solid rgba(255,255,255,.08); color: #748d99; font-size: .65rem; }
.footer-bottom a { color: var(--green-400); font-weight: 750; }
.mobile-cta { display: none; }

/* Form confirmation */
.thanks-page { min-height: 100vh; color: var(--white); background: radial-gradient(circle at 50% 10%, rgba(13,181,127,.18), transparent 32%), var(--navy-950); }
.thanks-shell { display: flex; align-items: center; width: min(calc(100% - 32px), 680px); min-height: 100vh; margin-inline: auto; padding: 42px 0; flex-direction: column; justify-content: center; }
.thanks-brand { margin-bottom: 28px; }
.thanks-card { width: 100%; padding: 50px 44px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); color: var(--slate-900); background: var(--white); box-shadow: var(--shadow-lg); text-align: center; }
.thanks-icon { display: grid; width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 18px; color: var(--white); background: var(--green-500); box-shadow: 0 13px 30px rgba(13,181,127,.25); place-items: center; }
.thanks-icon svg { width: 30px; height: 30px; stroke-width: 2.5; }
.thanks-card > small { color: var(--green-600); font-size: .68rem; font-weight: 850; letter-spacing: .16em; }
.thanks-card h1 { margin: 8px 0 12px; color: var(--navy-900); font-size: clamp(2.3rem, 7vw, 3.5rem); letter-spacing: -.055em; line-height: 1.05; }
.thanks-card > p { max-width: 500px; margin: 0 auto; color: var(--slate-600); font-size: .92rem; }
.thanks-steps { display: grid; gap: 7px; margin: 28px 0; padding: 18px; border-radius: 13px; background: var(--slate-50); text-align: left; }
.thanks-steps span { display: flex; align-items: center; gap: 10px; color: #526671; font-size: .75rem; }
.thanks-steps b { display: grid; width: 24px; height: 24px; border-radius: 7px; color: var(--green-600); background: var(--green-100); font-size: .58rem; place-items: center; }
.thanks-credit { margin: 23px 0 0; color: #738d99; font-size: .66rem; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .82rem; }
  .nav-actions .text-link { display: none; }
  .nav-actions { gap: 7px; }
  .nav-actions .button-small { padding-inline: 13px; font-size: .78rem; }
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(500px,1.1fr); gap: 35px; }
  .hero h1 { font-size: clamp(2.8rem, 4.8vw, 4.2rem); }
  .floating-alert { width: 200px; }
  .alert-one { right: -8px; }
  .alert-two { left: -12px; }
  .permission-layout, .website-layout, .trust-layout, .demo-layout { gap: 55px; }
  .faq-layout { gap: 52px; }
}

@media (max-width: 980px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 11px max(20px, calc((100% - var(--container))/2));
    border-top: 1px solid var(--slate-150);
    border-bottom: 1px solid var(--slate-150);
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 45px rgba(5,25,38,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-header.menu-is-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu > a:not(.button) { padding: 12px 4px; border-bottom: 1px solid var(--slate-150); color: var(--navy-800); font-size: .9rem; font-weight: 700; }
  .mobile-menu .button { margin: 12px 0 0; }
  .mobile-menu .button + .button { margin-top: 8px; margin-bottom: 5px; }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; gap: 4px; }
  .hero-copy { max-width: 760px; padding-bottom: 18px; }
  .hero h1 { max-width: 760px; font-size: clamp(3.25rem, 8.5vw, 5.2rem); }
  .hero-lead { max-width: 680px; }
  .hero-product { width: 100%; max-width: 760px; margin-inline: auto; padding-top: 48px; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 14px; padding: 23px 0; }
  .proof-items { width: 100%; justify-content: space-between; }
  .split-heading { align-items: start; grid-template-columns: 1fr; gap: 18px; }
  .split-heading p { max-width: 720px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .permission-layout, .website-layout, .trust-layout, .demo-layout { grid-template-columns: 1fr; gap: 50px; }
  .permission-copy, .website-copy, .trust-copy, .demo-copy { max-width: 720px; }
  .role-matrix { max-width: 760px; }
  .website-layout { gap: 65px; }
  .website-visual { width: min(100%, 710px); }
  .website-copy { order: -1; }
  .steps-grid { gap: 45px 24px; grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { max-width: 760px; margin-inline: auto; grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-top p { min-height: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; max-width: 700px; }
  .faq-contact { max-width: 480px; }
  .demo-form-card { max-width: 760px; }
  .footer-main { gap: 42px; grid-template-columns: 1.4fr repeat(3,.75fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 82px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topline-inner { justify-content: center; min-height: 31px; }
  .topline-points { display: none; }
  .nav-shell { min-height: 68px; }
  .mobile-menu { top: 68px; padding-inline: 14px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 10px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-type strong { font-size: 1rem; }
  .brand-type span { font-size: .75rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { padding-top: 45px; }
  .hero h1 { margin-top: 21px; font-size: clamp(2.65rem, 12vw, 4rem); line-height: 1.02; }
  .hero-lead { font-size: 1rem; }
  .hero-product { padding-bottom: 52px; }
  .dashboard-window { transform: none; }
  .floating-alert { transform: scale(.9); }
  .alert-one { top: 20px; right: -5px; }
  .alert-two { bottom: 25px; left: -5px; }
  .proof-items { display: grid; gap: 12px 20px; grid-template-columns: repeat(2,1fr); }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .permission-copy h2, .website-copy h2, .trust-copy h2, .faq-intro h2, .demo-copy h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 280px; }
  .explorer-tabs { justify-content: flex-start; margin-right: -14px; padding: 0 14px 2px 0; overflow-x: auto; scrollbar-width: none; }
  .explorer-tabs::-webkit-scrollbar { display: none; }
  .explorer-tab { flex: 0 0 auto; }
  .explorer-toolbar { padding-inline: 15px; }
  .explorer-panel { min-height: auto; padding: 17px; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .overview-grid, .finance-grid { grid-template-columns: 1fr; }
  .planner, .customer-table { overflow-x: auto; }
  .finance-summary { grid-template-columns: 1fr; }
  .demo-caption { font-size: .58rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-featured { grid-column: span 1; }
  .permission-layout, .website-layout, .trust-layout, .demo-layout { gap: 40px; }
  .role-matrix { overflow-x: auto; }
  .role-matrix > div, .role-matrix > p { min-width: 630px; }
  .website-visual { padding-right: 40px; }
  .website-features { grid-template-columns: 1fr; }
  .trust-cards article { align-items: flex-start; }
  .faq-list summary { min-height: 70px; font-size: .88rem; }
  .faq-list details p { max-width: 100%; }
  .demo-section { padding: 82px 0; }
  .demo-form-card { padding: 27px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { gap: 35px 22px; padding-top: 60px; grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; padding: 18px 0 90px; flex-direction: column; justify-content: center; }
  .mobile-cta { position: fixed; z-index: 90; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 0 19px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; color: var(--white); background: var(--green-600); box-shadow: 0 14px 35px rgba(4,33,24,.3); font-size: .86rem; font-weight: 800; }
  .mobile-cta svg { width: 18px; height: 18px; }
}

@media (max-width: 540px) {
  .eyebrow-pill { max-width: 100%; font-size: .7rem; }
  .hero h1 { font-size: clamp(2.5rem, 12.5vw, 3.4rem); }
  .hero h1 span { white-space: normal; }
  .hero h1 span::after { display: none; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-assurance { display: grid; grid-template-columns: 1fr; }
  .hero-product { padding-top: 32px; }
  .window-address { display: none; }
  .window-bar { justify-content: space-between; }
  .dashboard-layout { grid-template-columns: 1fr; min-height: 365px; }
  .dash-sidebar { display: none; }
  .dash-main { padding: 15px 12px; }
  .dash-stats { gap: 6px; }
  .dash-stats article { padding: 10px 8px; }
  .dash-stats span { font-size: .45rem; }
  .dash-stats strong { font-size: .88rem; }
  .dash-content-grid { grid-template-columns: 1fr; }
  .collection-card { display: none; }
  .floating-alert { display: none; }
  .proof-items { grid-template-columns: 1fr; }
  .proof-items span { font-size: .77rem; }
  .problem-card { padding: 24px; }
  .before-after { right: 24px; left: 24px; }
  .product-section { padding-inline: 0; }
  .section-heading.light { padding-inline: 4px; }
  .toolbar-brand strong, .online-label { display: none; }
  .metric-grid { gap: 7px; }
  .metric-grid article { gap: 8px; padding: 11px 9px; }
  .metric-icon { width: 32px; height: 32px; flex-basis: 32px; }
  .screen-title h3 { font-size: 1rem; }
  .screen-title button { font-size: .55rem; }
  .job-line { margin-inline: 10px; grid-template-columns: 34px 6px 1fr; }
  .job-line .mini-status { display: none; }
  .activity-item { margin-inline: 10px; }
  .module-card { min-height: 250px; padding: 24px; }
  .module-link { right: 24px; left: 24px; }
  .module-featured p, .module-featured ul { max-width: 100%; }
  .customer-mini { position: static; width: 100%; margin-top: 20px; transform: none; }
  .module-featured { min-height: auto; }
  .module-featured .customer-mini { margin-bottom: 0; }
  .website-visual { padding: 8px 0; }
  .site-window { min-height: 355px; transform: none; }
  .site-nav > span { display: none; }
  .site-hero { min-height: 220px; padding: 40px 24px; }
  .site-cards article:nth-child(3) { display: none; }
  .site-cards { grid-template-columns: repeat(2,1fr); }
  .mobile-site { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding-inline: 35px; }
  .price-card { padding: 25px; }
  .faq-contact { padding: 15px; }
  .faq-list summary { gap: 12px; }
  .demo-form-card { padding: 24px 17px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
