:root {
  --navy: #081A35;
  --navy-2: #102D50;
  --green: #0D9F78;
  --green-dark: #08775C;
  --mint: #EAF8F3;
  --mint-2: #F2FBF8;
  --surface-alt: #F8FBFA;
  --text: #111827;
  --muted: #667085;
  --border: #E4E8ED;
  --danger: #EF5E67;
  --blue: #3A78D0;
  --purple: #8D54D6;
  --shadow: 0 10px 35px rgba(8, 26, 53, 0.06);
  --shadow-hover: 0 18px 45px rgba(8, 26, 53, 0.11);
  --radius: 16px;
  --container: 1200px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.compact {
  max-width: 850px;
  margin-bottom: 40px;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 10px 0 13px;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.14;
}

.section-heading h2 span {
  color: var(--green);
}

.section-heading p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg:last-child {
  transform: translateX(4px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 8px 18px rgba(13, 159, 120, .2);
}

.button-primary:hover {
  box-shadow: 0 12px 25px rgba(13, 159, 120, .28);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 5px 14px rgba(8, 26, 53, .035);
}

.button-secondary:hover {
  border-color: #cbd5df;
  box-shadow: var(--shadow);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 12px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(228, 232, 237, .72);
  background: rgba(255, 255, 255, .94);
  animation: navIn .65s ease both;
  transition: box-shadow .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 30px rgba(8, 26, 53, .07);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  min-height: 76px;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 32px;
  transition: min-height .25s ease;
}

.scrolled .nav-shell {
  min-height: 66px;
}

.brand {
  width: 182px;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 36px);
}

.desktop-nav a,
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--green);
}

.desktop-nav svg,
.login-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 48px;
  background:
    radial-gradient(circle at 82% 15%, rgba(13, 159, 120, .05), transparent 25%),
    linear-gradient(#fff, #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .39fr) minmax(590px, .61fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  padding: 14px 0 20px;
  animation: heroUp .8s .1s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-badge {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero h1 {
  max-width: 510px;
  margin: 17px 0 18px;
  color: var(--navy);
  font-size: clamp(39px, 3.75vw, 57px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy > p {
  max-width: 455px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.trust-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 23px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #557067;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
}

/* Dashboard mockup */
.dashboard-wrap {
  min-width: 0;
  animation: dashboardIn .9s .2s cubic-bezier(.2, .7, .2, 1) both;
  perspective: 1200px;
}

.dashboard-window {
  display: grid;
  min-height: 505px;
  grid-template-columns: 155px 1fr;
  overflow: hidden;
  border: 1px solid #e7ebef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(8, 26, 53, .13), 0 3px 8px rgba(8, 26, 53, .04);
}

.dash-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 12px 14px;
  color: #fff;
  background: linear-gradient(160deg, #16375e 0%, #0b2242 70%, #081a35 100%);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 5px 20px;
  font-size: 10px;
  line-height: 1.15;
}

.dash-brand strong {
  font-size: 11px;
}

.dash-logo-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.dash-sidebar nav {
  display: grid;
  gap: 5px;
}

.dash-sidebar nav span {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 600;
}

.dash-sidebar nav .active {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.dash-sidebar nav svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.dash-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.avatar {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #c48666, #704b42);
  font-size: 11px;
  font-weight: 800;
}

.dash-profile strong,
.dash-profile small {
  display: block;
  line-height: 1.35;
}

.dash-profile strong {
  font-size: 9px;
}

.dash-profile small {
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
}

.dash-main {
  min-width: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(145deg, #fbfcfd, #f7faf9);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.stat-card {
  position: relative;
  min-width: 0;
  min-height: 79px;
  padding: 12px 11px;
  overflow: hidden;
  border: 1px solid #e3e8ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(8, 26, 53, .045);
}

.stat-card:nth-child(5),
.stat-card:nth-child(6) {
  grid-column: span 1;
}

.stat-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--accent);
}

.stat-card.blue { --accent: var(--blue); }
.stat-card.red { --accent: #ed4f60; background: #fffafa; }
.stat-card.green { --accent: var(--green); background: #fbfffd; }
.stat-card.purple { --accent: var(--purple); background: #fcfaff; }

.stat-card small {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #77808c;
  font-size: 7px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-card i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.stat-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  white-space: nowrap;
}

.chart-card {
  margin-top: 18px;
  padding: 15px 16px 14px;
  border: 1px solid #e5eaee;
  border-radius: 11px;
  background: #fff;
}

.chart-card h3 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8b95a2;
  font-size: 7px;
}

.chart-legend span {
  width: 8px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
}

.chart-area {
  display: grid;
  height: 252px;
  grid-template-columns: 28px 1fr;
  margin-top: 10px;
}

.y-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 7px 20px 0;
  color: #98a0ab;
  font-size: 6px;
  text-align: right;
}

.plot {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 19px;
}

.grid-lines {
  position: absolute;
  z-index: 0;
  inset: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-lines i {
  width: 100%;
  height: 1px;
  background: #edf0f2;
}

.bars {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: space-around;
  gap: 5px;
  padding: 5px 8px 0;
}

.bar {
  position: relative;
  width: clamp(5px, 2.1%, 10px);
  height: 0;
  padding: 0;
  border: 0;
  border-radius: 4px 4px 1px 1px;
  outline-offset: 2px;
  background: var(--navy-2);
  cursor: pointer;
  transition: height .85s cubic-bezier(.2, .75, .2, 1), filter .2s ease, transform .2s ease;
}

.dashboard-window.chart-visible .bar {
  height: var(--bar);
}

.bar:nth-child(2n) { transition-delay: 70ms; }
.bar:nth-child(3n) { transition-delay: 140ms; }
.bar.green { background: var(--green); }
.bar:hover,
.bar:focus-visible { filter: brightness(1.12); transform: scaleX(1.18); }

.bar span {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 7px);
  left: 50%;
  min-width: 72px;
  padding: 6px 7px;
  border-radius: 6px;
  opacity: 0;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 15px rgba(8, 26, 53, .2);
  font-size: 6px;
  line-height: 1.4;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .2s ease, transform .2s ease;
}

.bar span::after {
  position: absolute;
  top: 100%;
  left: 50%;
  border: 4px solid transparent;
  border-top-color: var(--navy);
  content: "";
  transform: translateX(-50%);
}

.bar:hover span,
.bar:focus-visible span,
.bar.featured span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.bar.featured span {
  bottom: calc(100% + 8px);
}

.x-labels {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 3px 2px 0;
  color: #929ba7;
  font-size: 6px;
}

.social-proof {
  margin-top: 42px;
  padding: 28px 0 40px;
  border-top: 1px solid #e9edf0;
  text-align: center;
}

.social-proof > p {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.partner img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.partner strong,
.partner small {
  display: block;
}

.partner strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.partner small {
  color: var(--muted);
  font-size: 9px;
}

.partner-review {
  position: relative;
  max-width: 690px;
  margin: 18px auto 0;
  padding: 17px 22px 15px;
  border: 1px solid #d9ece5;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  color: #1E293B;
  background: #f8fcfa;
  box-shadow: 0 8px 24px rgba(8, 26, 53, .045);
  text-align: left;
}

.partner-review p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

.partner-review footer {
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

/* Features */
.features-section {
  background: linear-gradient(180deg, #fbfdfc, #fff);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card {
  min-height: 230px;
  padding: 30px 25px 25px;
  text-align: center;
}

.feature-card:hover,
.benefit-card:hover {
  border-color: #d3e6df;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.icon-orb {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  transition: transform .3s ease;
}

.feature-card:hover .icon-orb,
.benefit-card:hover .icon-orb {
  transform: scale(1.06);
}

.icon-orb svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.feature-card h3,
.benefit-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.feature-card p,
.benefit-card p {
  max-width: 315px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

/* Planning */
.planning-section {
  padding-top: 94px;
}

.planning-grid {
  display: grid;
  grid-template-columns: .41fr .59fr;
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.planning-copy h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.16;
}

.planning-copy > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #52606f;
  font-size: 12px;
  line-height: 1.6;
}

.check-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
}

.planning-demo {
  padding: 26px;
  border: 1px solid #d9f0e8;
  border-radius: 18px;
  background: linear-gradient(145deg, #f2fbf8, #edfaf6);
  box-shadow: 0 12px 35px rgba(13, 159, 120, .07);
  animation: softFloat 6s ease-in-out infinite;
}

.stock-alert,
.day-plan {
  overflow: hidden;
  border: 1px solid #e5eaee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(8, 26, 53, .055);
}

.stock-alert {
  margin-bottom: 15px;
}

.stock-alert header,
.day-plan header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 17px;
}

.stock-alert h3,
.day-plan h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.stock-alert header span {
  padding: 5px 10px;
  border-radius: 5px;
  color: #d84758;
  background: #ffebee;
  font-size: 9px;
  font-weight: 700;
}

.stock-alert > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-top: 1px solid #edf0f2;
  color: #515b69;
  font-size: 10px;
}

.stock-alert > div svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--danger);
  stroke-width: 2;
}

.stock-alert > div strong {
  color: var(--navy);
  font-size: 10px;
}

.stock-alert > div small {
  color: var(--danger);
  font-size: 8px;
}

.day-plan header {
  border-bottom: 1px solid #edf0f2;
}

.day-plan header span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.day-plan i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #24b889;
}

.appointment-list {
  padding: 5px 17px;
}

.appointment {
  display: grid;
  grid-template-columns: 45px 75px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 37px;
  border-bottom: 1px solid #f0f2f4;
  color: #647080;
  font-size: 8px;
  transition: background .2s ease, transform .2s ease;
}

.js .planning-demo .appointment {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .45s ease, transform .45s ease, background .2s ease;
}

.js .planning-demo.visible .appointment {
  opacity: 1;
  transform: translateX(0);
}

.js .planning-demo.visible .appointment:nth-child(1) { transition-delay: 220ms; }
.js .planning-demo.visible .appointment:nth-child(2) { transition-delay: 330ms; }
.js .planning-demo.visible .appointment:nth-child(3) { transition-delay: 440ms; }

.appointment:hover {
  background: #fbfefd;
  transform: translateX(2px);
}

.appointment time,
.appointment strong {
  color: var(--navy);
  font-weight: 700;
}

.appointment em {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

.day-plan > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 10px 17px 14px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.day-plan > a svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Benefits */
.benefits-section {
  background: linear-gradient(180deg, #fff, #fbfdfc);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.benefit-card {
  min-height: 280px;
  padding: 28px 20px 24px;
  text-align: center;
}

.benefit-card .blue {
  color: #2c73d8;
  background: #eef5ff;
}

.benefit-card .purple {
  color: #8851d8;
  background: #f5effe;
}

.benefit-card h3 {
  font-size: 15px;
}

.benefit-card p {
  max-width: 220px;
  font-size: 11px;
}

/* Pricing */
.pricing-section {
  padding-top: 16px;
  background: #fbfdfc;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #dfe9e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(8, 26, 53, .08);
}

.price-panel {
  padding: 38px 42px 31px;
  text-align: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 10px;
  font-weight: 700;
}

.price-badge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  margin: 8px 0 -1px;
}

.price > strong {
  color: var(--green);
  font-size: clamp(58px, 6vw, 79px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1;
}

.price > span {
  padding-bottom: 10px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.price > span small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.price-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px auto 7px;
  color: #9aa2ac;
  font-size: 9px;
}

.price-or::before,
.price-or::after {
  width: 55px;
  height: 1px;
  content: "";
  background: #e3e7eb;
}

.price-or span {
  margin: auto;
}

.quarterly {
  margin-bottom: 16px;
  color: var(--navy);
}

.quarterly strong,
.quarterly small {
  display: block;
}

.quarterly strong {
  font-size: 13px;
  font-weight: 700;
}

.quarterly small {
  margin-top: 2px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.button-wide {
  width: 100%;
  min-height: 52px;
}

.button-wide svg:first-child {
  width: 18px;
  height: 18px;
}

.price-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
  color: #77818e;
  font-size: 8px;
}

.price-trust li {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.price-trust svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.included-panel {
  position: relative;
  min-height: 500px;
  padding: 40px 42px;
  overflow: hidden;
  border-left: 1px solid #e2efeb;
  background: linear-gradient(145deg, #f7fdfb, #effaf6);
}

.included-panel header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.included-panel header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.crown {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #cbe9df;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
}

.crown svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.included-panel ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.included-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #475365;
  font-size: 11px;
  font-weight: 600;
}

.included-panel li > span {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #12a477;
}

.included-panel li svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.security-illustration {
  position: absolute;
  right: 9px;
  bottom: -2px;
  width: 230px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-container {
  max-width: 1080px;
}

.accordion {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8, 26, 53, .035);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item.open {
  border-color: #dbe6e2;
  box-shadow: 0 10px 28px rgba(8, 26, 53, .055);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 30px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.faq-item button > svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .3s ease;
}

.faq-item.open button > svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 56px 17px 59px;
  color: #1E293B;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
}

.faq-tools {
  padding: 0 56px 18px 59px;
}

.faq-tools > p {
  padding: 0;
}

.faq-tools > p:first-child {
  margin-bottom: 12px;
}

.faq-tools > p:last-child {
  margin-top: 13px;
}

.faq-tools ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
}

.faq-tools li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-tools li svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
}

/* Final CTA and footer */
.final-cta-section {
  padding: 0 0 36px;
}

.final-cta {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 30px 38px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(102, 224, 188, .18), transparent 34%),
    linear-gradient(135deg, #08775c, #07564c 55%, #073b3a);
  box-shadow: 0 14px 35px rgba(8, 119, 92, .16);
}

.final-cta h2 {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
}

.final-cta > div:last-child {
  flex: 0 0 auto;
  text-align: center;
}

.button-light {
  min-height: 48px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 22px rgba(3, 35, 32, .18);
}

.button-light svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}

.final-cta small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .65);
  font-size: 8px;
}

.site-footer {
  padding: 52px 0 19px;
  color: #fff;
  background: #06172F;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr .85fr 1fr;
  gap: 80px;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 185px;
  height: auto;
  margin-bottom: 13px;
  border-radius: 5px;
  background: #fff;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.7;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.whatsapp img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h3 {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.footer-column a {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .055);
  font-size: 10px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.social-links svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dashboardIn {
  from { opacity: 0; transform: translateX(28px) rotateY(-2deg); }
  to { opacity: 1; transform: translateX(0) rotateY(0); }
}

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

/* Responsive */
@media (max-width: 1200px) {
  .nav-shell {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .brand { width: 165px; }
  .desktop-nav { gap: 20px; }
  .nav-actions { gap: 12px; }

  .hero-grid {
    grid-template-columns: minmax(335px, .4fr) minmax(550px, .6fr);
    gap: 25px;
  }

  .hero h1 { font-size: 47px; }
  .dashboard-window { grid-template-columns: 135px 1fr; }
  .dash-main { padding-inline: 14px; }
  .stat-card { padding-inline: 8px; }
}

@media (max-width: 1050px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--navy);
    stroke-width: 2;
  }

  .menu-toggle .close-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .close-icon { display: block; }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 76px 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    padding: 0 4%;
    opacity: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 35px rgba(8, 26, 53, .08);
    transform: translateY(-10px);
    transition: max-height .35s ease, opacity .25s ease, transform .35s ease, padding .35s ease;
  }

  .site-header.scrolled .mobile-nav { inset-block-start: 66px; }

  .mobile-nav.open {
    z-index: 20;
    max-height: calc(100vh - 66px);
    padding-block: 14px 22px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 11px 5px;
    border-bottom: 1px solid #f0f2f4;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav .button { margin-top: 9px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 720px;
    margin: auto;
    text-align: center;
  }

  .hero h1,
  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .dashboard-wrap {
    width: min(100%, 800px);
    margin: auto;
  }

  .dashboard-window { grid-template-columns: 150px 1fr; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { min-height: 250px; }

  .planning-grid {
    grid-template-columns: .45fr .55fr;
    gap: 35px;
  }

  .planning-demo { padding: 20px; }
  .appointment { grid-template-columns: 40px 65px 1fr; }
  .appointment em { display: none; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 36px; }

  .planning-grid,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .planning-copy {
    max-width: 670px;
  }

  .planning-demo {
    max-width: 700px;
  }

  .included-panel {
    min-height: 445px;
    border-top: 1px solid #e2efeb;
    border-left: 0;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta > div:last-child {
    width: 100%;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .container { width: min(91%, 520px); }
  .section { padding: 62px 0; }

  .nav-shell { min-height: 68px; }
  .scrolled .nav-shell { min-height: 62px; }
  .brand { width: 153px; }
  .mobile-nav { inset-block-start: 68px; }
  .site-header.scrolled .mobile-nav { inset-block-start: 62px; }

  .hero {
    padding-top: 28px;
  }

  .hero-copy { padding-top: 5px; }

  .hero h1 {
    margin-block: 15px;
    font-size: clamp(35px, 10.5vw, 48px);
    line-height: 1.09;
  }

  .hero h1 br:nth-of-type(2) { display: none; }

  .hero-copy > p {
    max-width: 470px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }

  .trust-list {
    align-items: flex-start;
    gap: 9px;
    flex-wrap: wrap;
  }

  .trust-list li {
    width: calc(50% - 5px);
    justify-content: center;
    white-space: normal;
  }

  .trust-list li:last-child { width: 100%; }

  .dashboard-window {
    min-height: 420px;
    grid-template-columns: 74px 1fr;
    border-radius: 12px;
  }

  .dash-sidebar { padding: 13px 7px 10px; }
  .dash-brand { justify-content: center; margin-inline: 0; }
  .dash-brand > span:last-child { display: none; }
  .dash-logo-icon { width: 32px; height: 32px; flex-basis: 32px; }
  .dash-sidebar nav span { justify-content: center; padding-inline: 5px; }
  .dash-sidebar nav span { font-size: 0; }
  .dash-sidebar nav svg { width: 17px; height: 17px; }
  .dash-profile { justify-content: center; }
  .dash-profile > span:last-child { display: none; }

  .dash-main { padding: 13px 9px 10px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .stat-card { min-height: 63px; padding: 9px 7px; }
  .stat-card small { font-size: 6px; }
  .stat-card strong { font-size: 14px; }

  .chart-card { margin-top: 10px; padding: 10px 8px 8px; }
  .chart-area { height: 194px; grid-template-columns: 20px 1fr; }
  .bars { gap: 2px; padding-inline: 3px; }
  .bar { width: 5px; }
  .bar span { min-width: 59px; font-size: 5px; }

  .social-proof { margin-top: 30px; padding-bottom: 26px; }

  .section-heading h2 { font-size: 31px; }
  .section-heading h2 br { display: none; }
  .section-heading p { font-size: 13px; }

  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 26px 21px;
  }

  .benefit-card { min-height: 0; }

  .planning-copy h2 { font-size: 31px; }
  .planning-copy h2 br { display: none; }
  .planning-copy > p { font-size: 13px; }

  .planning-demo {
    padding: 12px;
    border-radius: 14px;
  }

  .stock-alert header,
  .day-plan header {
    padding-inline: 13px;
  }

  .stock-alert > div {
    grid-template-columns: auto 1fr;
    padding-inline: 13px;
  }

  .stock-alert > div small {
    grid-column: 2;
  }

  .appointment-list { padding-inline: 13px; }
  .appointment { grid-template-columns: 37px 68px 1fr; gap: 5px; }
  .appointment strong { font-size: 7px; }

  .price-panel,
  .included-panel {
    padding: 30px 21px;
  }

  .price-trust {
    gap: 7px;
    flex-wrap: wrap;
  }

  .included-panel { min-height: 465px; }
  .security-illustration { right: -15px; width: 205px; }

  .faq-item button {
    grid-template-columns: 28px 1fr 18px;
    gap: 9px;
    min-height: 64px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .faq-answer p {
    padding: 0 18px 17px 49px;
    font-size: 11px;
  }

  .partner-review {
    padding: 15px 17px 14px;
  }

  .partner-review p {
    font-size: 12px;
  }

  .faq-tools {
    padding: 0 18px 17px 49px;
  }

  .faq-tools > p {
    padding: 0;
  }

  .faq-tools ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .final-cta-section { padding-bottom: 24px; }

  .final-cta {
    gap: 22px;
    padding: 27px 23px;
    text-align: center;
  }

  .final-cta > div:last-child { text-align: center; }
  .final-cta .button { width: 100%; padding-inline: 13px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .dashboard-window { grid-template-columns: 61px 1fr; }
  .dash-main { padding-inline: 7px; }
  .chart-area { height: 176px; }
  .x-labels span:nth-child(2),
  .x-labels span:nth-child(4) { display: none; }
  .price > strong { font-size: 62px; }
  .price > span { font-size: 14px; }
  .included-panel header h3 { font-size: 13px; }
}

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