:root {
  --navy-950: #041f27;
  --navy-900: #062f3a;
  --navy-800: #0a3d49;
  --navy-700: #155565;
  --teal-700: #087f78;
  --teal-600: #07978d;
  --teal-500: #0bb4a5;
  --teal-100: #dff7f3;
  --teal-50: #effbf9;
  --ink: #102b34;
  --muted: #5c7077;
  --line: #dfe9e8;
  --surface: #f4f8f8;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(8, 48, 58, 0.08);
  --shadow-md: 0 28px 70px rgba(8, 48, 58, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --font: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 110px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid rgba(12, 78, 87, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s, background 0.25s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(6, 47, 58, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--teal-700);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.brand > span { color: var(--navy-900); }
.brand > span span { color: var(--teal-600); }
.brand-mark { width: 38px; height: 38px; display: block; object-fit: cover; border-radius: 10px; box-shadow: 0 1px 5px rgba(5, 47, 58, .08); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.4vw, 34px);
  margin-left: auto;
}

.main-nav > a {
  color: #36535b;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s;
}

.main-nav > a:hover { color: var(--teal-700); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.mobile-actions, .menu-toggle { display: none; }

.button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--teal-700); box-shadow: 0 9px 24px rgba(8, 127, 120, .2); }
.button-primary:hover { background: #066f69; box-shadow: 0 12px 28px rgba(8, 127, 120, .28); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-large { min-height: 54px; padding-inline: 26px; border-radius: 12px; }
.button-large svg { width: 18px; }
.button-outline { color: var(--navy-800); border-color: #c8d9d8; background: rgba(255,255,255,.7); }
.button-outline:hover { border-color: var(--teal-600); background: var(--white); }
.button-ghost { border-color: var(--line); }

.hero {
  min-height: 800px;
  padding: 160px 0 92px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 5%, rgba(93, 219, 206, .12), transparent 29%),
    linear-gradient(180deg, #f9fdfc 0%, #fff 78%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 80, 88, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 80, 88, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; top: 70px; right: -180px; background: rgba(12, 178, 163, .08); }
.hero-glow-two { width: 260px; height: 260px; bottom: -120px; left: 7%; background: rgba(13, 91, 113, .07); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(570px, 1.18fr);
  align-items: center;
  gap: 48px;
}

.hero-copy { position: relative; z-index: 4; }
.hero-grid > *, .hero-copy { min-width: 0; }

.eyebrow, .section-kicker {
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  border: 1px solid #cdeee9;
  border-radius: 100px;
  letter-spacing: .15px;
  text-transform: none;
}

.eyebrow svg { width: 16px; height: 16px; }

.hero h1 {
  max-width: 620px;
  margin: 24px 0 21px;
  color: var(--navy-900);
  font-size: clamp(44px, 4.15vw, 64px);
  line-height: 1.06;
  letter-spacing: -3.1px;
}

h1 em, h2 em { color: var(--teal-700); font-style: normal; }
.hero-copy > p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { margin-top: 31px; display: flex; align-items: center; gap: 12px; }
.hero-points { margin: 25px 0 0; padding: 0; display: flex; gap: 19px; list-style: none; }
.hero-points li { color: #486168; font-size: 12px; font-weight: 650; }
.hero-points span { width: 18px; height: 18px; margin-right: 4px; display: inline-grid; place-items: center; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; font-size: 10px; }

.hero-visual { position: relative; min-height: 510px; }
.dashboard-window {
  width: 660px;
  position: absolute;
  top: 14px;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 86, 94, .12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(5, 49, 58, .18), 0 3px 12px rgba(5,49,58,.08);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-bar { height: 30px; padding: 0 10px; display: flex; align-items: center; gap: 5px; background: #eef3f3; border-bottom: 1px solid #e1e9e8; }
.window-bar > span:not(.window-address) { width: 7px; height: 7px; border-radius: 50%; background: #c8d2d2; }
.window-bar .window-address { width: 210px; height: 17px; margin-inline: auto; display: grid; place-items: center; color: #869597; background: #fff; border-radius: 4px; font-size: 7px; }
.dashboard-body { height: 410px; display: grid; grid-template-columns: 135px 1fr; }
.mock-sidebar { padding: 18px 12px; color: #c5dddf; background: var(--navy-900); }
.mock-logo { display: flex; gap: 7px; align-items: center; color: #fff; font-size: 9px; }
.mock-logo img { width: 20px; height: 20px; display: block; object-fit: cover; border-radius: 6px; }
.mock-sidebar > small { margin: 25px 7px 8px; display: block; font-size: 5px; font-weight: 800; letter-spacing: 1px; opacity: .55; }
.mock-sidebar ul { margin: 0; padding: 0; list-style: none; }
.mock-sidebar li { margin-bottom: 4px; padding: 8px 7px; display: flex; align-items: center; gap: 8px; border-radius: 5px; font-size: 7px; font-weight: 650; }
.mock-sidebar li.active { color: #fff; background: rgba(40, 196, 181, .18); }
.mock-sidebar li i { width: 12px; font-size: 10px; font-style: normal; }
.mock-content { padding: 19px 20px; background: #f7f9f9; }
.mock-top { display: flex; justify-content: space-between; align-items: center; }
.mock-top > div:first-child { display: grid; }
.mock-top small { color: #9ba7a9; font-size: 5px; letter-spacing: .7px; }
.mock-top strong { color: var(--navy-900); font-size: 13px; }
.mock-user { display: flex; align-items: center; gap: 6px; font-size: 6px; }
.mock-user span { width: 22px; height: 22px; background: #cfe9e5; border: 2px solid #fff; border-radius: 50%; }
.mock-cards { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-cards > div { min-height: 104px; padding: 12px; display: grid; grid-template-columns: 28px 1fr; column-gap: 7px; border: 1px solid #e5eceb; border-radius: 8px; background: #fff; }
.mock-cards i { width: 27px; height: 27px; grid-row: 1 / 3; display: grid; place-items: center; border-radius: 7px; font-size: 12px; font-style: normal; }
.mock-cards .teal { color: #087f78; background: #e2f7f3; }
.mock-cards .blue { color: #3079a0; background: #e7f2f8; }
.mock-cards .gold { color: #a17319; background: #fff3d9; }
.mock-cards small { align-self: end; color: #9aa8aa; font-size: 5px; text-transform: uppercase; }
.mock-cards strong { align-self: start; color: #253f47; font-size: 7px; }
.mock-cards span { grid-column: 1 / -1; align-self: end; color: var(--teal-700); font-size: 6px; font-weight: 700; }
.mock-panel { margin-top: 13px; padding: 13px; border: 1px solid #e4eceb; border-radius: 8px; background: #fff; }
.mock-panel-head { margin-bottom: 3px; display: flex; justify-content: space-between; font-size: 7px; }
.mock-panel-head span { color: var(--teal-700); font-size: 6px; font-weight: 700; }
.mock-event { padding: 10px 2px; display: grid; grid-template-columns: 32px 1fr auto; gap: 9px; align-items: center; border-top: 1px solid #edf1f1; }
.mock-event > b { width: 28px; height: 32px; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-50); border-radius: 5px; font-size: 5px; line-height: 1; }
.mock-event > b span { display: block; font-size: 11px; }
.mock-event > div { display: grid; }
.mock-event > div strong { font-size: 7px; }
.mock-event > div small { color: #8a9a9c; font-size: 5px; }
.mock-event > i { padding: 3px 6px; color: #388279; background: #e8f6f3; border-radius: 10px; font-size: 5px; font-style: normal; }

.phone-mockup {
  width: 176px;
  height: 359px;
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 7px;
  padding: 7px;
  border: 3px solid #163940;
  border-radius: 29px;
  background: #102c33;
  box-shadow: 0 25px 55px rgba(2, 35, 43, .25);
  transform: rotate(2deg);
}

.phone-speaker { width: 50px; height: 13px; position: absolute; z-index: 2; top: 4px; left: 50%; border-radius: 0 0 10px 10px; background: #102c33; transform: translateX(-50%); }
.phone-screen { height: 100%; position: relative; overflow: hidden; border-radius: 21px; background: #f7faf9; }
.app-head { padding: 25px 13px 10px; display: flex; justify-content: space-between; align-items: center; }
.app-head > div { display: grid; }
.app-head small { color: #7f9297; font-size: 6px; }
.app-head strong { font-size: 10px; }
.app-head > span { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 50%; font-size: 8px; font-weight: 700; }
.app-hero-card { margin: 0 11px 11px; padding: 12px; display: grid; color: #fff; background: linear-gradient(135deg, var(--navy-900), #087b76); border-radius: 10px; box-shadow: 0 8px 18px rgba(6,47,58,.18); }
.app-brand-line { margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.app-brand-line img { width: 18px; height: 18px; display: block; object-fit: cover; border-radius: 5px; }
.app-hero-card small { color: #79d8cf; font-size: 5px; letter-spacing: .5px; }
.app-hero-card strong { font-size: 8px; }
.app-hero-card span { opacity: .75; font-size: 5px; }
.app-section-title { margin: 0 12px 6px; display: block; color: #8c999b; font-size: 5px; font-weight: 700; }
.app-grid { margin: 0 11px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.app-grid div { height: 49px; padding: 8px; display: grid; place-items: center start; border: 1px solid #e3ebea; border-radius: 7px; background: #fff; }
.app-grid i { width: 18px; height: 18px; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-50); border-radius: 5px; font-size: 8px; font-style: normal; }
.app-grid span { font-size: 6px; font-weight: 700; }
.app-next { margin: 10px 11px; padding: 8px; display: flex; align-items: center; gap: 8px; border: 1px solid #e5ebeb; border-radius: 7px; background: #fff; }
.app-next > i { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 6px; font-size: 8px; font-style: normal; }
.app-next div { display: grid; }
.app-next small { color: #91a0a2; font-size: 4px; }
.app-next strong { font-size: 6px; }
.app-nav { height: 38px; position: absolute; inset: auto 0 0; padding: 7px 8px; display: flex; justify-content: space-around; border-top: 1px solid #e5eceb; background: #fff; }
.app-nav b { display: grid; place-items: center; color: #829194; font-size: 9px; }
.app-nav b:first-child { color: var(--teal-700); }
.app-nav span { font-size: 4px; }
.floating-note { z-index: 5; padding: 11px 14px; display: flex; align-items: center; gap: 9px; position: absolute; border: 1px solid rgba(8, 127, 120, .16); border-radius: 11px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.floating-note > i { width: 28px; height: 28px; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; font-size: 11px; font-style: normal; }
.floating-note > span { display: grid; }
.floating-note small { color: #8b999b; font-size: 6px; text-transform: uppercase; }
.floating-note strong { font-size: 8px; }
.note-security { right: 31px; top: 11px; animation: float 4s ease-in-out infinite; }

.trust-strip { border-block: 1px solid #e8efee; background: #fbfdfd; }
.trust-inner { min-height: 83px; display: flex; align-items: center; justify-content: center; gap: 34px; }
.trust-inner p { margin: 0; color: #8a9b9f; font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
.trust-items { display: flex; align-items: center; gap: 13px; color: #37545c; font-size: 13px; font-weight: 750; }
.trust-items span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-items i { width: 17px; height: 17px; flex: 0 0 auto; display: inline-grid; place-items: center; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; }
.trust-items i::before { content: ""; width: 7px; height: 4px; border-left: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: rotate(-45deg) translate(1px, -1px); }

.section-heading { margin-bottom: 55px; }
.section-heading.centered { max-width: 740px; margin-inline: auto; text-align: center; }
.section-heading h2, .structure-copy h2, .permissions-copy h2, .app-copy h2, .benefits-copy h2, .faq-intro h2 {
  margin: 13px 0 16px;
  color: var(--navy-900);
  font-size: clamp(34px, 3.3vw, 47px);
  line-height: 1.13;
  letter-spacing: -2px;
}
.section-heading p, .structure-copy > p, .permissions-copy > p, .app-copy > p, .benefits-copy > p, .faq-intro > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; max-width: 650px; }
.split-heading p { padding-bottom: 3px; }

.problem-section { background: var(--surface); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.problem-card { min-height: 253px; padding: 25px; border: 1px solid #e1e9e8; border-radius: var(--radius-sm); background: #fff; box-shadow: 0 4px 18px rgba(6,47,58,.025); transition: transform .25s, box-shadow .25s; }
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.problem-icon { width: 43px; height: 43px; display: grid; place-items: center; color: #b45b57; background: #fff0ee; border-radius: 10px; font-size: 18px; }
.problem-icon svg, .module-icon svg, .structure-list i svg, .permission-context > i svg, .permission-row > i svg, .steps li > i svg, .benefit-list article > i svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.problem-card h3 { margin: 19px 0 8px; color: var(--navy-900); font-size: 17px; letter-spacing: -.3px; }
.problem-card p { margin: 0; color: #6f8085; font-size: 13px; line-height: 1.7; }
.problem-status { margin-top: 18px; padding-top: 13px; display: flex; align-items: center; gap: 7px; border-top: 1px solid #eef2f1; color: #9b6967; font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .3px; }
.problem-status i { width: 6px; height: 6px; background: #de8d88; border-radius: 50%; }
.transition-pill { width: fit-content; margin: 38px auto 0; padding: 8px 10px 8px 18px; display: flex; align-items: center; gap: 13px; border: 1px solid #dce9e7; border-radius: 50px; color: #687b80; background: #fff; box-shadow: var(--shadow-sm); font-size: 11px; }
.transition-pill i { width: 29px; height: 29px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 50%; font-style: normal; }
.transition-pill strong { padding-right: 8px; color: var(--teal-700); }

.modules-section { padding-bottom: 84px; }
.module-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px; }
.module-card { min-height: 264px; padding: 27px; grid-column: span 2; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(6,47,58,.035); transition: transform .25s, box-shadow .25s, border-color .25s; }
.module-card:nth-last-child(-n + 2) { grid-column: span 3; }
.module-card:hover { transform: translateY(-5px); border-color: #bfdedb; box-shadow: var(--shadow-sm); }
.module-featured { min-height: 344px; grid-column: 1 / -1; padding: 31px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: center; background: linear-gradient(135deg, #f7fcfb, #eef8f6); }
.module-icon { width: 46px; height: 46px; margin-bottom: 19px; display: grid; place-items: center; border-radius: 11px; font-size: 19px; font-style: normal; }
.module-icon.teal, .permission-row .teal { color: #087f78; background: #dff6f2; }
.module-icon.blue, .permission-row .blue { color: #397ba1; background: #e5f2f8; }
.module-icon.gold, .permission-row .gold { color: #a16e0d; background: #fff2d5; }
.module-icon.purple, .permission-row .purple { color: #7767a9; background: #eeeafd; }
.module-icon.rose { color: #a6576a; background: #fbe7ec; }
.module-icon.navy { color: #23596b; background: #e2eff2; }
.module-card > small, .module-copy > small { color: #8b9b9e; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; }
.module-card h3 { margin: 5px 0 8px; color: var(--navy-900); font-size: 23px; letter-spacing: -.7px; }
.module-card p { margin: 0 0 20px; color: #667b80; font-size: 13px; line-height: 1.7; }
.module-card > a { color: var(--teal-700); font-size: 12px; font-weight: 750; }
.module-card > a span { margin-left: 4px; transition: margin .2s; }
.module-card > a:hover span { margin-left: 8px; }
.module-copy ul { margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.module-copy li { padding: 6px 10px; color: #3f6768; background: rgba(255,255,255,.82); border: 1px solid #dbeceb; border-radius: 100px; font-size: 9px; font-weight: 700; }
.people-preview { padding: 19px; border: 1px solid #dce9e7; border-radius: 12px; background: #fff; box-shadow: 0 16px 40px rgba(6,47,58,.1); transform: rotate(-1deg); }
.preview-head { display: flex; align-items: center; justify-content: space-between; }
.preview-head strong { font-size: 12px; }
.preview-head span { padding: 6px 8px; color: #fff; background: var(--teal-700); border-radius: 5px; font-size: 6px; font-weight: 700; }
.preview-search { margin: 13px 0 8px; padding: 8px 10px; color: #a0abad; background: #f6f8f8; border: 1px solid #e6ecec; border-radius: 5px; font-size: 6px; }
.person-row { padding: 8px 4px; display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 8px; border-bottom: 1px solid #edf1f1; }
.person-row:last-child { border: 0; }
.avatar { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; font-size: 6px; font-style: normal; font-weight: 800; }
.a1 { color: #207064; background: #d9f2ed; }.a2 { color: #4d6593; background: #e1e8f8; }.a3 { color: #986944; background: #f7e8d9; }
.person-row div { display: grid; }
.person-row strong { font-size: 7px; }.person-row small { color: #95a2a4; font-size: 5px; }.person-row > span { color: #9baaac; font-size: 6px; }

.structure-section { padding: 96px 0 92px; color: #fff; background: var(--navy-900); position: relative; overflow: hidden; }
.structure-section::before { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -240px; border: 1px solid rgba(88, 217, 205, .1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(88,217,205,.025), 0 0 0 160px rgba(88,217,205,.018); }
.structure-grid { position: relative; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 90px; }
.section-kicker.light { color: #57d9cd; }
.structure-copy h2, .app-copy h2 { color: #fff; }
.structure-copy h2 em, .app-copy h2 em { color: #67dfd5; }
.structure-copy > p, .app-copy > p { color: #b7cdd0; }
.structure-list { margin-top: 32px; display: grid; gap: 11px; }
.structure-list > div { padding: 13px 15px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(147, 213, 210, .12); border-radius: 11px; background: rgba(255,255,255,.045); }
.structure-list i { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: #5cd9cd; background: rgba(67, 209, 195, .12); border-radius: 8px; font-style: normal; }
.structure-list span { display: grid; }
.structure-list strong { font-size: 12px; }.structure-list small { color: #94b3b7; font-size: 10px; }
.org-visual { padding: 34px; border: 1px solid rgba(115, 196, 192, .16); border-radius: 22px; background: rgba(255,255,255,.055); box-shadow: 0 30px 70px rgba(1,20,25,.22); }
.org-main { max-width: 315px; margin: auto; padding: 15px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(100, 219, 209, .27); border-radius: 11px; background: rgba(9, 45, 54, .82); }
.org-symbol { width: 42px; height: 42px; display: grid; place-items: center; background: var(--teal-600); border-radius: 9px; }
.org-main > div { display: grid; flex: 1; }
.org-main small, .org-branches small { color: #5bcfc4; font-size: 6px; font-weight: 800; letter-spacing: .7px; }
.org-main strong { font-size: 10px; }.org-main em { color: #7fa0a4; font-size: 7px; font-style: normal; }
.org-main > b { padding: 4px 7px; color: #77e3d8; background: rgba(49, 187, 174, .12); border-radius: 20px; font-size: 6px; }
.org-connector { width: 68%; height: 44px; margin: auto; position: relative; border-bottom: 1px solid rgba(98, 194, 189, .3); }
.org-connector::before { content: ""; position: absolute; width: 1px; height: 44px; left: 50%; background: rgba(98,194,189,.3); }
.org-connector i { width: 1px; height: 13px; position: absolute; bottom: -13px; background: rgba(98,194,189,.3); }
.org-connector i:nth-child(1) { left: 0; }.org-connector i:nth-child(2) { left: 50%; }.org-connector i:nth-child(3) { right: 0; }
.org-branches { margin-top: 13px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.org-branches > div { padding: 14px 10px; display: grid; text-align: center; border: 1px solid rgba(129, 198, 195, .13); border-radius: 10px; background: rgba(255,255,255,.04); }
.org-branches > div > span { width: 27px; height: 27px; margin: 0 auto 7px; display: grid; place-items: center; color: #6edbd1; background: rgba(59, 198, 185, .11); border-radius: 7px; font-size: 11px; }
.org-branches strong { margin: 2px 0; font-size: 8px; }.org-branches em { color: #729498; font-size: 6px; font-style: normal; }
.org-visual > p { width: fit-content; margin: 29px auto 0; padding: 7px 11px; color: #9fc0c2; background: rgba(2, 28, 34, .35); border-radius: 20px; font-size: 7px; }
.org-visual > p i { margin-right: 5px; color: #5ed9ce; font-style: normal; }

.permissions-section { background: #fff; }
.permissions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.permission-panel { max-width: 490px; padding: 25px; border: 1px solid #dce8e7; border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.permission-head { padding-bottom: 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8eeee; }
.permission-head > div { display: grid; }.permission-head small, .permission-title { color: #91a0a3; font-size: 7px; font-weight: 800; letter-spacing: .8px; }.permission-head strong { font-size: 15px; }
.permission-head > span { padding: 5px 8px; color: #087f78; background: #e4f6f2; border-radius: 20px; font-size: 7px; font-weight: 750; }
.permission-context { margin: 16px 0; padding: 12px; display: flex; align-items: center; gap: 10px; border: 1px solid #dde8e7; border-radius: 9px; }
.permission-context > i { width: 30px; height: 30px; display: grid; place-items: center; color: #197e78; background: #e3f6f3; border-radius: 7px; font-style: normal; }
.permission-context > div { flex: 1; display: grid; }.permission-context small { color: #97a3a5; font-size: 6px; }.permission-context strong { font-size: 9px; }.permission-context > span { color: #91a0a2; }
.permission-title { margin: 19px 0 6px; display: block; }
.permission-row { padding: 10px 3px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #edf1f1; }
.permission-row > i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 7px; font-size: 12px; font-style: normal; }
.permission-row > span { flex: 1; display: grid; }.permission-row strong { font-size: 9px; }.permission-row small { color: #93a0a2; font-size: 6px; }
.toggle { width: 30px; height: 17px; position: relative; background: #dce3e3; border-radius: 20px; }
.toggle::after { content: ""; width: 11px; height: 11px; position: absolute; left: 3px; top: 3px; background: #fff; border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,.15); }
.toggle.on { background: var(--teal-600); }.toggle.on::after { left: 16px; }
.permission-foot { margin: 16px -25px -25px; padding: 12px 25px; color: #778b8f; background: #f5f9f8; border-radius: 0 0 18px 18px; font-size: 7px; }
.permission-foot i { margin-right: 5px; color: var(--teal-700); font-style: normal; }
.permissions-copy ul { margin: 28px 0 0; padding: 0; display: grid; gap: 18px; list-style: none; }
.permissions-copy li { display: flex; gap: 13px; }
.permissions-copy li > i { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; font-size: 10px; font-style: normal; }
.permissions-copy li span { display: grid; }.permissions-copy li strong { font-size: 13px; }.permissions-copy li small { color: #73858a; font-size: 11px; }

.app-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #052b35 0%, #074a53 100%); }
.app-orb { width: 520px; height: 520px; position: absolute; right: -170px; bottom: -250px; border: 1px solid rgba(86, 221, 207, .12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(66,215,201,.025), 0 0 0 180px rgba(66,215,201,.018); }
.app-layout { min-height: 600px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 55px; position: relative; }
.app-copy ul { margin: 27px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 16px; list-style: none; }
.app-copy li { color: #c5d9db; font-size: 11px; }.app-copy li i { margin-right: 6px; color: #60dcd1; font-style: normal; }
.app-badges { margin-top: 25px; display: flex; gap: 9px; }
.app-badges > span { min-width: 126px; padding: 9px 12px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(137, 217, 211, .2); border-radius: 9px; background: rgba(255,255,255,.06); }
.app-badges > span > i { font-size: 21px; font-style: normal; }.app-badges b { display: grid; font-size: 10px; }.app-badges small { color: #80a7aa; font-size: 5px; letter-spacing: .5px; }
.text-link { color: var(--teal-700); font-size: 13px; font-weight: 750; }.text-link span { margin-left: 5px; }.light-link { color: #69dfd4; }
.app-showcase { min-height: 540px; position: relative; }
.app-phone { width: 205px; height: 425px; padding: 7px; position: absolute; top: 71px; left: 20px; border: 3px solid #0d242a; border-radius: 30px; background: #0e2930; box-shadow: 0 30px 60px rgba(0, 16, 20, .4); transform: rotate(-7deg); }
.app-phone.main-phone { width: 235px; height: 480px; z-index: 3; left: 50%; top: 20px; transform: translateX(-50%); }
.app-phone.right-phone { left: auto; right: 12px; transform: rotate(7deg); }
.mini-screen { height: 100%; position: relative; overflow: hidden; color: #16353d; background: #f8faf9; border-radius: 22px; }
.mini-status { padding: 9px 15px 5px; display: flex; justify-content: space-between; color: #25434a; font-size: 6px; font-weight: 800; }
.event-screen-head { padding: 14px 13px 12px; display: flex; align-items: center; justify-content: space-between; }.event-screen-head strong { font-size: 10px; }.event-screen-head b, .event-screen-head i { width: 20px; font-size: 11px; font-style: normal; }
.calendar { margin: 0 11px 13px; padding: 10px; border: 1px solid #e1e9e8; border-radius: 10px; background: #fff; }
.calendar > small, .day-label { color: #8b9a9d; font-size: 5px; font-weight: 800; letter-spacing: .5px; }
.calendar > div { margin-top: 7px; display: grid; grid-template-columns: repeat(7,1fr); gap: 6px 2px; place-items: center; font-size: 6px; }.calendar b { color: #8a999b; font-size: 5px; }.calendar .chosen { width: 17px; height: 17px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 50%; }
.day-label { margin: 0 12px 7px; display: block; }
.event-card { margin: 0 10px 7px; padding: 9px; display: flex; align-items: center; gap: 8px; border: 1px solid #e3eae9; border-radius: 8px; background: #fff; }
.event-card > i { width: 30px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 6px; font-size: 9px; line-height: 1; font-style: normal; }.event-card > i small { font-size: 4px; }.event-card > span { display: grid; }.event-card strong { font-size: 7px; }.event-card span small { color: #879699; font-size: 5px; }
.member-head { padding: 16px 14px 12px; display: flex; align-items: center; justify-content: space-between; }.member-head > div { display: grid; }.member-head small { color: #839498; font-size: 6px; }.member-head strong { font-size: 12px; }.member-head > i { width: 29px; height: 29px; display: grid; place-items: center; color: #fff; background: var(--teal-700); border-radius: 50%; font-size: 8px; font-style: normal; }
.church-card { margin: 0 12px 15px; padding: 15px; position: relative; display: grid; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-900), #07847b); border-radius: 12px; }.church-card > small { margin-bottom: 23px; color: #72dcd2; font-size: 5px; }.church-card > strong { font-size: 10px; }.church-card > span { opacity: .7; font-size: 5px; }.church-card > i { position: absolute; right: -5px; top: 13px; color: rgba(255,255,255,.1); font-size: 65px; font-style: normal; }
.quick-grid { margin: 0 12px 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }.quick-grid span { height: 55px; display: grid; place-items: center; border: 1px solid #e1eae9; border-radius: 8px; background: #fff; font-size: 5px; font-weight: 700; }.quick-grid i { width: 23px; height: 23px; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-50); border-radius: 6px; font-size: 9px; font-style: normal; }
.next-card { margin: 0 12px; padding: 12px; display: grid; border: 1px solid #e2eae9; border-radius: 9px; background: #fff; }.next-card small { color: #849598; font-size: 5px; }.next-card strong { margin-top: 5px; font-size: 8px; }.next-card span { color: #829194; font-size: 6px; }
.mini-bottom { height: 46px; position: absolute; inset: auto 0 0; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #e2eae9; background: #fff; }.mini-bottom b { display: grid; place-items: center; color: #829295; font-size: 10px; }.mini-bottom b:first-child { color: var(--teal-700); }.mini-bottom small { font-size: 4px; }
.member-card { margin: 5px 13px; padding: 14px 12px; position: relative; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy-900), #087e77); border-radius: 12px; box-shadow: 0 12px 22px rgba(6,47,58,.18); }.member-card > div { display: flex; gap: 6px; align-items: center; }.member-card > div > i { font-style: normal; }.member-card > div span { display: grid; }.member-card > div small { color: #72ddd2; font-size: 4px; }.member-card > div strong { font-size: 6px; }.photo { width: 52px; height: 52px; margin: 22px auto 8px; display: grid; place-items: center; color: var(--teal-700); background: #dff5f1; border: 3px solid rgba(255,255,255,.8); border-radius: 50%; font-size: 12px; }.member-card h4 { margin: 0; text-align: center; font-size: 10px; }.member-card p { margin: 1px 0 17px; text-align: center; color: #a9cecf; font-size: 5px; }.card-number { font-size: 5px; }.fake-qr { position: absolute; right: 12px; bottom: 10px; font-size: 24px; }.card-help { margin: 14px 20px; color: #8b999b; text-align: center; font-size: 6px; }

.steps-section { padding: 88px 0 70px; background: #f7fafa; }
.steps-section .section-heading { margin-bottom: 42px; }
.steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; counter-reset: steps; }
.steps li { min-height: 220px; padding: 12px 28px; position: relative; text-align: center; border-right: 1px solid #dfe8e7; }
.steps li:last-child { border: 0; }
.steps li > span { position: absolute; top: -5px; left: 20px; color: #d5e4e2; font-size: 35px; font-weight: 800; }
.steps li > i { width: 55px; height: 55px; margin: 35px auto 20px; display: grid; place-items: center; color: var(--teal-700); background: #e0f5f1; border-radius: 14px; font-size: 21px; font-style: normal; }
.steps h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 16px; }.steps p { max-width: 210px; margin: auto; color: #728489; font-size: 12px; }

.benefits-section { padding-top: 82px; }
.benefits-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.benefits-copy .button { margin-top: 28px; }
.benefit-list { margin-top: 3px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.benefit-list article { min-height: 134px; padding: 19px; display: flex; gap: 13px; border: 1px solid #e1e9e8; border-radius: 13px; background: #fff; transition: transform .25s, box-shadow .25s; }
.benefit-list article:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.benefit-list article > i { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-50); border-radius: 9px; font-style: normal; }
.benefit-list h3 { margin: 2px 0 5px; font-size: 13px; }.benefit-list p { margin: 0; color: #708287; font-size: 10px; line-height: 1.55; }

.proof-section { padding: 88px 0 84px; background: #fff; }
.proof-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 62px; align-items: center; }
.proof-copy h2 { margin: 13px 0 16px; color: var(--navy-900); font-size: clamp(34px, 3.3vw, 47px); line-height: 1.13; letter-spacing: -2px; }
.proof-copy h2 em { color: var(--teal-700); font-style: normal; }
.proof-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.proof-cards { display: grid; gap: 13px; }
.proof-cards article { min-height: 128px; padding: 22px 24px; display: grid; grid-template-columns: 48px 1fr; gap: 4px 16px; align-items: start; border: 1px solid #e1e9e8; border-radius: 13px; background: #f9fcfb; }
.proof-cards strong { grid-row: span 2; width: 44px; height: 44px; display: grid; place-items: center; color: var(--teal-700); background: var(--teal-100); border-radius: 11px; font-size: 13px; }
.proof-cards h3 { margin: 1px 0 5px; color: var(--navy-900); font-size: 15px; }
.proof-cards p { margin: 0; color: #657b80; font-size: 12px; line-height: 1.65; }
.faq-section { padding: 90px 0; background: #f5f9f8; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .text-link { margin-top: 25px; display: inline-block; }
.accordion { border-top: 1px solid #d6e2e1; }
.faq-item { border-bottom: 1px solid #d6e2e1; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; padding: 24px 3px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--navy-900); background: none; border: 0; cursor: pointer; text-align: left; font-size: 15px; font-weight: 750; }
.faq-item button span { width: 26px; height: 26px; flex: 0 0 auto; position: relative; border: 1px solid #cbdcda; border-radius: 50%; }
.faq-item button span::before, .faq-item button span::after { content: ""; width: 8px; height: 1px; position: absolute; top: 12px; left: 8px; background: var(--teal-700); transition: transform .2s; }
.faq-item button span::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] span { background: var(--teal-700); border-color: var(--teal-700); }
.faq-item button[aria-expanded="true"] span::before, .faq-item button[aria-expanded="true"] span::after { background: #fff; }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-answer { padding: 0 50px 23px 3px; }
.faq-answer p { margin: 0; color: #657b80; font-size: 13px; line-height: 1.7; }

.final-cta { padding: 105px 0; position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, #087b76, #075f65 50%, #063a48); }
.cta-orb { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }.cta-orb.one { width: 430px; height: 430px; left: -170px; top: -210px; box-shadow: 0 0 0 75px rgba(255,255,255,.025); }.cta-orb.two { width: 370px; height: 370px; right: -100px; bottom: -250px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.015); }
.cta-inner { position: relative; text-align: center; }
.dark-eyebrow { color: #93eee5; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.cta-inner .eyebrow { margin: auto; }
.cta-inner h2 { max-width: 760px; margin: 20px auto 16px; font-size: clamp(37px, 4vw, 53px); line-height: 1.12; letter-spacing: -2.4px; }
.cta-inner h2 em { color: #8ceae2; font-style: normal; }.cta-inner p { max-width: 650px; margin: auto; color: #c4dfdf; font-size: 15px; }
.demo-form { max-width: 680px; margin: 28px auto 0; padding: 22px; text-align: left; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(2, 39, 48, .22); }
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-form label { display: grid; gap: 6px; color: #d4e9e7; font-size: 11px; font-weight: 750; }
.demo-form-wide { grid-column: 1 / -1; }
.demo-form-hidden { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.demo-form input, .demo-form select { width: 100%; min-height: 44px; padding: 0 12px; color: var(--ink); background: #fff; border: 1px solid transparent; border-radius: 8px; outline: 0; font-size: 13px; }
.demo-form input:focus, .demo-form select:focus { border-color: #8ceae2; box-shadow: 0 0 0 3px rgba(140,234,226,.2); }
.demo-form-consent { margin-top: 14px; display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; color: #c4dfdf !important; font-size: 12px !important; font-weight: 600 !important; line-height: 1.55; }
.demo-form-consent input { width: 17px; min-width: 17px; height: 17px; min-height: 17px; margin-top: 2px; padding: 0; accent-color: #8ceae2; }
.demo-form-consent a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.demo-form .cta-actions { margin-top: 18px; }
.demo-form-note { max-width: 500px; margin: 12px auto 0 !important; color: #a8c9c8; font-size: 11px !important; line-height: 1.55; text-align: center; }
.demo-form-status { min-height: 20px; margin-top: 10px !important; color: #c4dfdf; font-size: 12px !important; text-align: center; }
.demo-form-noscript { max-width: 520px; margin: 10px auto 0 !important; color: #c4dfdf; font-size: 12px !important; line-height: 1.6; text-align: center; }
.demo-form-noscript a { color: #fff; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.cta-actions { margin-top: 30px; display: flex; justify-content: center; gap: 10px; }
.button-light { color: var(--teal-700); background: #fff; box-shadow: 0 15px 35px rgba(2,42,48,.2); }
.button:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.button-dark-outline { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.button-dark-outline:hover { background: rgba(255,255,255,.1); }

.legal-page { background: #f5f9f8; }
.legal-nav { justify-content: flex-end; }
.legal-main { padding: 142px 0 80px; }
.legal-content { max-width: 860px; padding: 54px 58px; background: #fff; border: 1px solid #dfe9e8; border-radius: 18px; box-shadow: var(--shadow-sm); }
.legal-content h1 { margin: 14px 0 18px; color: var(--navy-900); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; letter-spacing: -2px; }
.legal-content > p { margin: 0 0 34px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-content article { padding: 24px 0; border-top: 1px solid #dfe9e8; }
.legal-content h2 { margin: 0 0 8px; color: var(--navy-900); font-size: 18px; letter-spacing: -.2px; }
.legal-content article p { margin: 0; color: #657b80; font-size: 14px; line-height: 1.75; }
.legal-content a { color: var(--teal-700); font-weight: 750; }
.legal-footer { padding-top: 0; }
.site-footer { padding: 72px 0 22px; color: #b7cbce; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 70px; }
.brand-light > span { color: #fff; }.brand-light > span span { color: #54d6ca; }
.footer-brand p { max-width: 270px; margin: 18px 0 0; color: #9bb3b7; font-size: 13px; line-height: 1.7; }
.footer-grid nav { display: grid; align-content: start; gap: 10px; }
.footer-grid h2 { margin: 5px 0 8px; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .7px; }
.footer-grid nav a { width: fit-content; color: #b0c4c7; font-size: 12px; transition: color .2s; }.footer-grid nav a:hover { color: #6de2d7; }
.footer-bottom { margin-top: 58px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(153,191,195,.2); color: #90aaae; font-size: 10px; }
.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 20px; }

.reveal { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: .8fr 1.2fr; gap: 22px; }
  .dashboard-window { width: 600px; }
  .phone-mockup { right: -2px; }
  .hero h1 { font-size: 50px; }
  .structure-grid, .permissions-grid { gap: 60px; }
  .app-phone { left: -10px; }
  .app-phone.right-phone { right: -12px; }
}

@media (max-width: 1024px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .main-nav { gap: 19px; }
  .main-nav > a { font-size: 12px; }
  .header-actions { gap: 14px; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; text-align: center; margin: auto; }
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { width: min(100%, 730px); margin: 38px auto 0; }
  .dashboard-window { width: calc(100% - 50px); }
  .phone-mockup { right: 0; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .module-card, .module-card:nth-last-child(-n + 2) { grid-column: auto; }
  .module-card:last-child { grid-column: 1 / -1; }
  .module-featured { grid-column: 1 / -1; }
  .structure-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .permissions-grid { gap: 55px; }
  .app-layout { grid-template-columns: 1fr; }
  .app-copy { max-width: 680px; text-align: center; margin-inline: auto; }
  .app-badges, .app-copy ul { justify-content: center; }
  .app-showcase { width: min(100%, 680px); margin: auto; }
  .steps li { padding-inline: 16px; }
  .benefits-grid { gap: 48px; }
  .faq-grid { gap: 55px; }
  .footer-grid { gap: 35px; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .menu-toggle { width: 42px; height: 42px; padding: 10px; display: grid; align-content: center; gap: 5px; position: relative; z-index: 102; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle span { width: 22px; height: 2px; display: block; background: var(--navy-900); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 70px 0 auto;
    height: calc(100dvh - 70px);
    padding: 34px 24px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
  }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav > a { padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .header-actions { display: none; }
  .mobile-actions { margin-top: 26px; display: grid; gap: 10px; }
  .mobile-actions .button { width: 100%; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(42px, 7.2vw, 58px); }
  .hero-visual { min-height: 470px; }
  .dashboard-window { width: calc(100% - 40px); }
  .trust-inner { padding: 20px 0; flex-direction: column; gap: 8px; }
  .trust-inner p { margin: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .structure-grid, .permissions-grid, .benefits-grid, .proof-grid, .faq-grid { grid-template-columns: 1fr; }
  .structure-copy, .permissions-copy, .benefits-copy { max-width: 680px; }
  .org-visual, .permission-panel { width: min(100%, 620px); margin-inline: auto; }
  .permissions-copy { grid-row: 1; }
  .app-copy ul { max-width: 520px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li:nth-child(-n+2) { border-bottom: 1px solid #dfe8e7; }
  .faq-intro { position: static; }
  .benefits-grid { gap: 34px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid nav:last-child { grid-column: 2 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .brand { font-size: 19px; }.brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; padding: 112px 0 72px; }
  .hero h1 { margin-top: 20px; font-size: clamp(38px, 11.5vw, 51px); letter-spacing: -2.4px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { flex-wrap: wrap; gap: 9px 13px; }
  .hero-visual { min-height: 345px; margin-top: 36px; }
  .dashboard-window { width: calc(100% - 38px); top: 0; }
  .dashboard-body { height: 280px; grid-template-columns: 88px 1fr; }
  .mock-sidebar { padding: 11px 7px; }
  .mock-sidebar li { padding: 6px 4px; }
  .mock-sidebar > small { margin-top: 16px; }
  .mock-content { padding: 12px; }
  .mock-cards { gap: 5px; margin-top: 11px; }
  .mock-cards > div { min-height: 78px; padding: 7px; grid-template-columns: 20px 1fr; }
  .mock-cards i { width: 20px; height: 20px; }
  .mock-panel { margin-top: 8px; padding: 8px; }
  .mock-event { padding: 5px 2px; }
  .mock-event:nth-child(3) { display: none; }
  .phone-mockup { width: 125px; height: 255px; right: -3px; padding: 5px; border-radius: 22px; }
  .phone-screen { border-radius: 15px; }
  .app-head { padding: 19px 8px 6px; }
  .app-hero-card { margin-inline: 7px; padding: 8px; }
  .app-hero-card small { margin-bottom: 7px; }
  .app-section-title, .app-grid, .app-next { margin-inline: 7px; }
  .app-grid { gap: 4px; }.app-grid div { height: 35px; padding: 4px; }.app-grid i { width: 13px; height: 13px; }
  .app-next { margin-top: 6px; padding: 5px; }.app-next > i { width: 20px; height: 20px; }
  .app-nav { height: 27px; padding: 4px; }
  .note-security { display: none; }
  .trust-items { max-width: 100%; gap: 8px; flex-wrap: wrap; justify-content: center; font-size: 11px; }
  .trust-items span { white-space: normal; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .structure-copy h2, .permissions-copy h2, .app-copy h2, .benefits-copy h2, .faq-intro h2 { font-size: 34px; letter-spacing: -1.5px; }
  .problem-grid, .module-grid, .benefit-list { grid-template-columns: 1fr; }
  .module-card, .module-card:nth-last-child(-n + 2), .module-card:last-child, .module-featured { grid-column: auto; }
  .problem-card { min-height: auto; }
  .transition-pill { padding-left: 13px; gap: 8px; font-size: 9px; }
  .module-featured { grid-column: auto; grid-template-columns: 1fr; gap: 25px; padding: 25px; }
  .people-preview { transform: none; }
  .structure-section { padding: 74px 0 70px; }
  .structure-grid { gap: 45px; }
  .org-visual { padding: 20px 12px; }
  .org-main { padding: 11px; }
  .org-branches { gap: 5px; }
  .org-branches > div { padding-inline: 4px; }
  .permissions-grid { gap: 45px; }
  .permission-panel { padding: 19px; }
  .permission-foot { margin-inline: -19px; margin-bottom: -19px; padding-inline: 19px; }
  .app-layout { gap: 25px; }
  .app-copy ul { grid-template-columns: 1fr; text-align: left; width: fit-content; }
  .app-badges { flex-wrap: wrap; }
  .app-badges > span { flex: 1; }
  .app-showcase { min-height: 430px; transform: scale(.83); transform-origin: top center; margin-bottom: -70px; }
  .app-phone { left: -70px; }
  .app-phone.right-phone { right: -70px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { border-right: 0; border-bottom: 1px solid #dfe8e7; }
  .steps li:nth-child(-n+2) { border-bottom: 1px solid #dfe8e7; }
  .steps li:last-child { border-bottom: 0; }
  .modules-section { padding-bottom: 68px; }
  .steps-section { padding: 72px 0 58px; }
  .steps-section .section-heading { margin-bottom: 34px; }
  .benefits-section { padding-top: 68px; }
  .proof-section { padding: 68px 0; }
  .proof-grid { gap: 34px; }
  .proof-copy h2 { font-size: 34px; letter-spacing: -1.5px; }
  .proof-cards article { min-height: auto; padding: 19px; grid-template-columns: 40px 1fr; }
  .proof-cards strong { width: 38px; height: 38px; border-radius: 9px; }
  .benefits-grid { gap: 32px; }
  .benefit-list article { min-height: auto; }
  .faq-section { padding: 68px 0; }
  .faq-grid { gap: 45px; }
  .faq-item button { padding-block: 20px; font-size: 14px; }
  .final-cta { padding: 82px 0; }
  .cta-inner h2 { font-size: 38px; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .demo-form { padding: 16px; }
  .demo-form-grid { grid-template-columns: 1fr; }
  .demo-form-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid nav:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .legal-main { padding: 112px 0 58px; }
  .legal-content { padding: 34px 24px; border-radius: 14px; }
  .legal-nav { display: none; }
}
.hero { min-height: 840px; background: radial-gradient(circle at 70% 2%, rgba(63, 214, 199, .19), transparent 27%), linear-gradient(180deg, #f7fcfb 0%, #fff 74%); }
.hero::after { content: ""; width: min(38vw, 520px); height: min(38vw, 520px); position: absolute; right: -13vw; top: 15%; border: 1px solid rgba(8, 127, 120, .10); border-radius: 50%; box-shadow: 0 0 0 48px rgba(8, 127, 120, .025), 0 0 0 96px rgba(8, 127, 120, .018); pointer-events: none; }
.hero-copy h1 { max-width: 630px; font-size: clamp(38px, 4.5vw, 67px); line-height: 1.04; letter-spacing: -3.4px; }
.hero-copy > p { max-width: 540px; font-size: 17px; line-height: 1.72; }
.hero-actions { margin-top: 31px; }
.hero-actions::after { content: "Demonstracao guiada, sem compromisso"; flex-basis: 100%; color: #5b7478; font-size: 11px; font-weight: 700; letter-spacing: .1px; }
.hero-visual { filter: drop-shadow(0 35px 45px rgba(7, 55, 62, .09)); }
.trust-strip { border: 0; background: var(--navy-950); color: #d4e5e5; }
.trust-inner { min-height: 92px; }
.trust-inner p { color: #fff; font-weight: 750; }
.trust-items { gap: clamp(14px, 2.6vw, 35px); }
.trust-items span { color: #b8d1d2; font-weight: 650; }
.trust-items i { width: 22px; height: 22px; color: #78ded5; background: rgba(81, 214, 202, .13); font-size: 8px; font-style: normal; font-weight: 800; }
.problem-section { background: linear-gradient(180deg, #f4f8f8, #fff 82%); }
.problem-grid { gap: 16px; }
.problem-card { border-radius: 18px; box-shadow: none; }
.problem-card:hover { border-color: rgba(8, 127, 120, .36); box-shadow: 0 18px 40px rgba(8, 48, 58, .08); }
.module-featured { border-color: #cce9e5; background: linear-gradient(125deg, #edf9f6, #fff 62%); }
.proof-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #062f3a, #064953); }

@media (max-width: 374px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .eyebrow { width: auto; padding-inline: 10px; font-size: 9px; line-height: 1.35; text-align: left; }
  .hero h1 { font-size: 36px; }
  .hero-points { display: grid; justify-content: start; text-align: left; }
  .dashboard-body { grid-template-columns: 73px 1fr; }
  .mock-sidebar li span { display: none; }
  .mock-sidebar li { justify-content: center; }
  .mock-sidebar i { text-align: center; }
  .mock-cards > div:nth-child(3) { display: none; }
  .mock-cards { grid-template-columns: 1fr 1fr; }
  .transition-pill { width: 100%; justify-content: center; }
  .org-main > b { display: none; }
  .org-branches strong { font-size: 7px; }
  .permission-panel { padding-inline: 14px; }
  .permission-foot { margin-inline: -14px; padding-inline: 14px; }
  .app-badges { flex-direction: column; }
  .app-showcase { transform: scale(.72); margin-bottom: -115px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid nav:last-child { grid-column: auto; }
}

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


.thank-you-page { min-height: 100vh; background: linear-gradient(140deg, #edf8f6, #f9fcfb, #dceeea); }
.thank-you-main { width: min(100% - 40px, 680px); min-height: 100vh; margin: 0 auto; display: grid; align-content: center; gap: 42px; }
.thank-you-main .brand { justify-self: center; color: var(--navy-900); text-decoration: none; }
.thank-you-card { padding: 52px 42px; text-align: center; border: 1px solid #d8e8e5; border-radius: 22px; background: #fff; box-shadow: 0 22px 60px rgba(6,47,58,.12); }
.thank-you-card h1 { margin: 15px auto 14px; color: var(--navy-900); font-size: clamp(30px, 5vw, 46px); }
.thank-you-card p:not(.section-kicker) { max-width: 490px; margin: 0 auto 28px; color: #527076; line-height: 1.65; }
.thank-you-icon { width: 54px; height: 54px; margin: 0 auto 22px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--teal-700); font-size: 29px; font-weight: 800; }

.thank-you-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(6, 47, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 47, 58, .035) 1px, transparent 1px),
    linear-gradient(135deg, #f6fbfa 0%, #eef8f5 45%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.thank-you-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(8, 127, 120, .13), transparent 32%),
    linear-gradient(295deg, rgba(242, 184, 75, .18), transparent 28%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.thank-you-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  align-content: center;
  gap: clamp(34px, 5vw, 62px);
}

.thank-you-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.thank-you-header .brand {
  color: var(--teal-700);
  text-decoration: none;
}

.thank-you-status,
.thank-you-badge {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  border: 1px solid rgba(8, 127, 120, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 28px rgba(8, 48, 58, .06);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.thank-you-badge svg {
  width: 18px;
  height: 18px;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .72fr);
  align-items: stretch;
  gap: 20px;
}

.thank-you-copy,
.thank-you-panel {
  border: 1px solid rgba(180, 211, 208, .8);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 85px rgba(6, 47, 58, .12);
}

.thank-you-copy {
  min-height: 540px;
  padding: clamp(38px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px 14px 14px 30px;
  overflow: hidden;
  position: relative;
}

.thank-you-copy::after {
  content: "";
  width: 36%;
  min-width: 220px;
  position: absolute;
  inset: 0 0 0 auto;
  opacity: .92;
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(8, 127, 120, .09) 38% 48%, transparent 48% 58%, rgba(242, 184, 75, .16) 58% 66%, transparent 66%),
    linear-gradient(180deg, rgba(8, 127, 120, .08), transparent);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.thank-you-copy > * {
  position: relative;
  z-index: 1;
}

.thank-you-copy h1 {
  max-width: 720px;
  margin: 24px 0 20px;
  color: var(--navy-900);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

.thank-you-copy p {
  max-width: 640px;
  margin: 0;
  color: #49666d;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.thank-you-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.thank-you-panel {
  padding: clamp(28px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px 30px 30px 14px;
  background:
    linear-gradient(180deg, rgba(4, 31, 39, .96), rgba(6, 69, 76, .96)),
    #062f3a;
  color: #fff;
}

.thank-you-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.thank-you-panel-top span {
  color: #88e7df;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.thank-you-panel-top strong {
  padding: 7px 10px;
  color: #173235;
  border-radius: 999px;
  background: #f2b84b;
  font-size: 11px;
  text-transform: uppercase;
}

.thank-you-steps {
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.thank-you-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.thank-you-steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #8be5dc;
  border: 1px solid rgba(139, 229, 220, .26);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 850;
}

.thank-you-steps strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.thank-you-steps p {
  margin: 0;
  color: #b5ced1;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .thank-you-main { width: min(calc(100% - 32px), 640px); padding: 24px 0; align-content: start; }
  .thank-you-header { align-items: flex-start; flex-direction: column; }
  .thank-you-hero { grid-template-columns: 1fr; }
  .thank-you-copy, .thank-you-panel { border-radius: 22px; }
  .thank-you-copy { min-height: auto; padding: 36px 24px; }
  .thank-you-copy::after { opacity: .5; width: 44%; min-width: 150px; }
  .thank-you-copy h1 { font-size: clamp(42px, 13vw, 64px); }
  .thank-you-actions { align-items: stretch; flex-direction: column; }
  .thank-you-actions .button { width: 100%; }
}

@media (max-width: 420px) {
  .thank-you-main { width: min(calc(100% - 24px), 640px); }
  .thank-you-status { display: none; }
  .thank-you-copy { padding: 32px 20px; }
  .thank-you-copy h1 { font-size: 40px; }
  .thank-you-copy p { font-size: 15px; }
  .thank-you-panel { padding: 22px 18px; }
  .thank-you-steps li { grid-template-columns: 36px 1fr; gap: 12px; }
  .thank-you-steps li > span { width: 36px; height: 36px; border-radius: 10px; }
}
/* Visual refinements for the trust strip and contextual demo section. */
.trust-strip {
  background: #062f3a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(255,255,255,.08);
}
.trust-inner {
  min-height: 94px;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 44px);
}
.trust-inner p {
  max-width: 400px;
  color: #ffffff;
  line-height: 1.45;
}
.trust-items {
  flex: 1;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
}
.trust-items span {
  min-height: 42px;
  position: relative;
  padding: 0 2px;
  color: #d7eeee;
  line-height: 1.35;
}
.trust-items span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 18px;
  position: absolute;
  right: clamp(-13px, -1vw, -7px);
  top: 50%;
  background: rgba(215, 238, 238, .18);
  transform: translateY(-50%);
}
.trust-items i {
  width: 24px;
  height: 24px;
  color: #84eee4;
  background: rgba(81, 214, 202, .16);
  box-shadow: 0 0 0 1px rgba(132, 238, 228, .08);
}
.proof-section {
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(83, 221, 210, .16), transparent 28%),
    linear-gradient(135deg, #052b35 0%, #064953 58%, #087b76 100%);
}
.proof-grid { position: relative; }
.proof-section .section-kicker {
  color: #62ddd2;
  background: rgba(98, 221, 210, .09);
  border-color: rgba(98, 221, 210, .18);
}
.proof-copy h2 { color: #f3ffff; }
.proof-copy h2 em { color: #62ddd2; }
.proof-copy p { color: #c0d6d9; }
.proof-cards article {
  border-color: rgba(177, 229, 225, .18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(2, 28, 34, .18);
}
.proof-cards strong {
  color: #87f0e6;
  background: rgba(98, 221, 210, .13);
}
.proof-cards h3 { color: #ffffff; }
.proof-cards p { color: #bdd3d6; }

@media (max-width: 820px) {
  .trust-inner {
    align-items: flex-start;
    padding: 22px 0;
  }
  .trust-items {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .trust-inner p { max-width: none; }
  .trust-items { display: grid; grid-template-columns: 1fr; }
  .trust-items span {
    width: 100%;
    min-height: 36px;
  }
  .trust-items span::after { display: none; }
  .proof-section { padding-top: 76px; }
}
