:root {
  --bg: #f4fbef;
  --hero: #e7f9dc;
  --card: #ffffff;
  --ink: #082416;
  --muted: #637865;
  --green: #0b7b35;
  --green-2: #09b642;
  --green-soft: #d9f0cf;
  --leaf: #2fa84f;
  --lime: #bceb75;
  --line: #cfe8c7;
  --danger: #ff5f67;
  --shadow: 0 18px 42px rgba(19, 58, 27, 0.09);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  overflow-wrap: anywhere;
  transition: background 180ms ease, color 180ms ease;
}

body,
button,
input {
  font-family: Arial, Helvetica, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  cursor: pointer;
  overflow-wrap: anywhere;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1068px, calc(100% - 112px));
  margin: 0 auto;
}

.landing-screen main {
  position: relative;
  overflow: hidden;
}

.landing-screen main::before,
.landing-screen main::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.26;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing-screen main::before {
  left: -36px;
  top: 340px;
  width: 250px;
  height: 250px;
  background-image: url("assets/decor/decor-plant-pot.png");
  transform: rotate(-6deg);
  opacity: 0.62;
}

.landing-screen main::after {
  right: -24px;
  top: 900px;
  width: 290px;
  height: 290px;
  background-image: url("assets/decor/decor-hanging.png");
  transform: rotate(8deg);
  opacity: 0.72;
}

.landing-screen main > * {
  position: relative;
  z-index: 2;
}

.landing-screen .section.container {
  position: relative;
}

.landing-screen .section.container::before,
.landing-screen .section.container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.52;
  z-index: 1;
}

.landing-screen .section.container > * {
  position: relative;
  z-index: 2;
}

#how.section.container::after {
  right: -26px;
  top: 12px;
  width: 180px;
  height: 180px;
  background-image: url("assets/decor/decor-ivy.png");
  opacity: 0.72;
}

#diagnostics.section.container::before {
  display: none;
}

#pricing.section.container::after {
  right: -34px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  background-image: url("assets/decor/decor-hanging.png");
  opacity: 0.72;
}

#faq.section.container::before {
  left: -72px;
  top: -6px;
  width: 210px;
  height: 210px;
  background-image: url("assets/decor/decor-hanging.png");
  opacity: 0.78;
}

.hero-band {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(240, 251, 232, 0.78) 38%, rgba(229, 247, 219, 0.94) 100%);
  padding: 22px 0 56px;
}

.hero-band::before {
  display: none;
}

.hero-band::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 196px;
  width: 210px;
  height: 250px;
  background: url("assets/decor/decor-plant-pot.png") no-repeat center / contain;
  opacity: 0.92;
  pointer-events: none;
  z-index: 2;
}

.landing-hero-shell {
  width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.hero-band > .topbar.container,
.hero-band > .hero.container {
  display: none;
}

.landing-hero-topbar {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 88px;
  padding: 24px 42px;
  border: 1px solid rgba(207, 232, 199, 0.94);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(40, 83, 48, 0.08);
  position: relative;
  z-index: 2;
}

.hero-cta-top {
  min-width: 236px;
}

.landing-hero-main {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 10px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.landing-hero-copy,
.landing-hero-visual {
  position: relative;
  z-index: 3;
}

.landing-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 4.4vw, 72px);
  line-height: 1.08;
  font-weight: 900;
}

.landing-hero-chip {
  width: fit-content;
  min-height: 44px;
  margin: 0 0 24px;
  padding: 0 18px;
  border: 1px solid #d6ead0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fcf5;
  color: #58725c;
  font-size: 21px;
  font-weight: 700;
}

.landing-hero-chip span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-hero-chip span img {
  width: 18px;
  height: 18px;
}

.landing-hero-highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.landing-hero-highlight::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 2%;
  bottom: -12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(164, 225, 145, 0.14), rgba(164, 225, 145, 0.7), rgba(164, 225, 145, 0.14));
  transform: rotate(-1.5deg);
}

.landing-hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: #5b705d;
}

.landing-hero-actions {
  gap: 18px;
  flex-wrap: wrap;
}

.hero-main-button {
  min-width: 238px;
}

.hero-main-button .hero-button-icon {
  filter: brightness(0) invert(1);
}

.landing-hero-visual {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
}

.landing-hero-bg {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
  opacity: 1;
  z-index: 2;
}

.landing-hero-bg-left {
  left: 26px;
  top: 126px;
  width: 210px;
  height: 228px;
  background-image: url("assets/guide-plants/plant-2.webp");
  background-position: center;
  border-radius: 28px;
  transform: rotate(-8deg);
}

.landing-hero-bg-right {
  right: -28px;
  top: 70px;
  width: 220px;
  height: 250px;
  background-image: url("assets/guide-plants/plant-1.webp");
  background-position: center;
  border-radius: 28px;
  transform: rotate(8deg);
}

.landing-hero-pedestal {
  position: absolute;
  left: 54%;
  bottom: 20px;
  width: 300px;
  height: 88px;
  border-radius: 999px 999px 24px 24px;
  background: linear-gradient(180deg, #ffffff, #e7ece5);
  box-shadow: 0 26px 60px rgba(53, 88, 58, 0.22);
  transform: translateX(-50%);
}

.landing-hero-phone {
  position: relative;
  z-index: 2;
  width: 354px;
  height: 602px;
  padding: 16px;
  border: 6px solid #1b1d1f;
  border-radius: 54px;
  background: linear-gradient(180deg, #232528, #090a0b);
  box-shadow: 0 40px 80px rgba(16, 23, 18, 0.34);
}

.landing-hero-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 118px;
  height: 26px;
  border-radius: 999px;
  background: #111315;
  transform: translateX(-50%);
  z-index: 3;
}

.landing-hero-phone img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

.landing-hero-report-card {
  position: absolute;
  right: 8px;
  top: 114px;
  z-index: 3;
  width: 320px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 60px rgba(43, 73, 47, 0.16);
}

.landing-hero-report-state {
  width: fit-content;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid #d3eacb;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #5c9052;
  background: #f8fdf5;
  font-size: 14px;
  font-weight: 800;
}

.landing-hero-report-plant {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ebf0e8;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
}

.landing-hero-report-plant img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.landing-hero-report-plant b,
.landing-hero-report-meter b {
  color: var(--ink);
  font-size: 16px;
}

.landing-hero-report-plant span,
.landing-hero-report-block p,
.landing-hero-report-block small,
.landing-hero-report-meter small,
.landing-hero-badge span {
  color: #677a68;
  font-weight: 600;
}

.landing-hero-report-plant span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.landing-hero-report-block {
  margin-bottom: 18px;
}

.landing-hero-report-block small,
.landing-hero-report-meter small {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.landing-hero-report-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
}

.landing-hero-report-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.landing-hero-report-meter {
  margin-bottom: 18px;
}

.landing-hero-report-meter-head,
.landing-hero-report-meter > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.landing-hero-report-meter span {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e6f0e3;
  overflow: hidden;
}

.landing-hero-report-meter span i {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f8f40, #63bf56);
}

.landing-hero-report-button {
  width: 100%;
  min-height: 48px;
  justify-content: space-between;
  font-size: 15px;
}

.landing-hero-badge {
  position: absolute;
  left: 31%;
  bottom: 36px;
  z-index: 4;
  width: 292px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 45px rgba(42, 76, 46, 0.14);
  transform: translateX(-50%);
}

.landing-hero-badge b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.landing-hero-badge span {
  font-size: 14px;
}

.landing-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 1;
}

.landing-decoration-top {
  top: -14px;
  left: -18px;
  width: 240px;
  transform: rotate(-11deg);
  opacity: 0.96;
  z-index: 4;
}

.landing-decoration-bottom {
  right: -48px;
  bottom: -6px;
  width: 264px;
  transform: rotate(8deg);
  opacity: 0.94;
  z-index: 2;
}

.landing-hero-benefits {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 10px 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.landing-hero-benefit {
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(53, 92, 59, 0.08);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.landing-hero-benefit > span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef8ea;
}

.landing-hero-benefit > span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.landing-hero-benefit b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.landing-hero-benefit small {
  color: #6f826f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.hero-button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.hero-main-button,
.hero-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topbar {
  min-height: 74px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  background: url("assets/logo-tree-transparent.png") center / contain no-repeat;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-text {
  color: var(--ink);
  font-size: 22px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #566d58;
  font-size: 13px;
  font-weight: 700;
  flex: 1 1 auto;
}

.topnav a {
  white-space: nowrap;
}

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

.top-actions {
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.btn {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #fff;
  background: var(--green);
}

.btn.primary:hover {
  box-shadow: 0 12px 22px rgba(11, 123, 53, 0.22);
}

.btn.ghost {
  color: var(--green);
  background: #fff;
  border-color: #c5e5bd;
}

.btn.large {
  min-height: 46px;
  padding: 0 18px;
  font-size: 16px;
}

.btn.compact {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.btn.wide {
  width: 100%;
}

.btn.darker {
  background: #08762f;
}

.btn.danger {
  min-height: 32px;
  color: #8f0007;
  border: 4px solid #ffc3c6;
  background: var(--danger);
  font-size: 11px;
}

.hero {
  padding: 30px 25px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
  gap: 38px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

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

.hero h1 {
  max-width: 630px;
  margin-bottom: 24px;
  font-size: clamp(41px, 4vw, 45px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  max-width: 555px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 27px;
}

.hero-pills span {
  min-height: 32px;
  padding: 9px 14px;
  border: 1px solid #c9e8c3;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.analysis-preview {
  width: min(386px, 100%);
  justify-self: end;
  padding: 34px 24px 18px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.analysis-preview img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  border-radius: 18px;
}

.analysis-preview .report-label {
  margin: 15px 10px 6px;
  color: var(--green);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.analysis-preview h2 {
  margin: 0 10px 8px;
  font-size: 24px;
  line-height: 1.1;
}

.analysis-preview strong {
  display: block;
  margin: 0 10px 7px;
  color: #ff3838;
  font-size: 15px;
  line-height: 1.2;
}

.analysis-preview p:not(.report-label) {
  margin: 0 10px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
}

.analysis-preview .btn {
  margin-left: 0;
}

.section {
  padding: 68px 0 0;
}

.fig-showcase-section {
  padding-top: 56px;
}

.fig-showcase {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.fig-showcase-media {
  min-height: 310px;
  overflow: hidden;
  border-radius: 18px;
  background: #eaf4e2;
}

.fig-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.fig-showcase-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

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

.fig-section-grid a {
  min-height: 54px;
  padding: 14px;
  border: 1px solid #d9ead2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: var(--green);
  background: #f7fcf4;
  font-size: 13px;
  font-weight: 900;
}

.section-title {
  max-width: 650px;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.steps-grid {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 39px 43px;
}

.step-card {
  min-height: 180px;
  padding: 27px 26px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
}

.step-num {
  width: 51px;
  height: 51px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.step-card h3 {
  margin: 3px 0 12px;
  font-size: 24px;
  line-height: 1.05;
}

.step-card p,
.small-card p,
.feature-card p,
.care-card p,
.limit-card p,
.price-card p,
.faq-item p,
.contact-card p,
.subhead,
.app-card p,
.plant-card p,
.full-report p,
.full-report li,
.full-report dd,
.full-report dt {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 500;
}

.audience-grid,
.feature-grid,
.care-grid,
.example-photo-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}

.example-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.small-card,
.example-photo-card,
.feature-card,
.care-card,
.limit-card,
.price-card,
.contact-card,
.app-card,
.plant-card,
.full-report {
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.small-card {
  min-height: 157px;
  padding: 25px 21px 15px;
}

.example-photo-card {
  overflow: hidden;
  min-height: 258px;
  position: relative;
}

.example-photo-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.example-photo-badge {
  position: absolute;
  left: 18px;
  top: 126px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(17, 70, 47, 0.12);
}

.example-photo-badge img,
.section-icon-badge img {
  width: 22px;
  height: 22px;
  display: block;
}

.example-photo-card h3 {
  margin: 24px 18px 8px 72px;
  font-size: 18px;
}

.example-photo-card p {
  margin: 0 18px 18px 72px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.small-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.05;
}

.small-card p {
  min-height: 45px;
  margin-bottom: 10px;
}

.section-gap {
  margin-top: 67px;
}

.feature-grid {
  gap: 35px 45px;
}

.section-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f5fff0 0%, #e4f6d9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.small-card .section-icon-badge {
  margin-bottom: 18px;
}

.feature-card {
  min-height: 130px;
  padding: 27px 22px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-items: start;
}

.brand-mark.mini {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 8px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.feature-card h3 {
  margin: -1px 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.feature-card p {
  grid-column: 1 / -1;
  margin: 0;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 256px;
  gap: 45px;
  align-items: start;
}

.result-card {
  min-height: 328px;
  padding: 11px 32px 11px 22px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 42px;
  align-items: center;
}

.result-card img {
  width: 168px;
  height: 305px;
  object-fit: cover;
  border-radius: 18px;
}

.result-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.result-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ff3838;
  font-size: 14px;
  line-height: 1.1;
}

.leaf-list,
.stop-list {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.leaf-list li,
.stop-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 7px;
}

.leaf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 13px;
  background:
    radial-gradient(ellipse at 72% 25%, var(--lime) 0 32%, transparent 33%),
    radial-gradient(ellipse at 40% 64%, var(--leaf) 0 46%, transparent 47%);
}

.stop-list li::before {
  content: "×";
  position: absolute;
  left: 1px;
  top: -5px;
  color: #ff1e24;
  font-size: 30px;
  font-weight: 500;
}

.limit-card {
  min-height: 258px;
  padding: 35px 29px 24px;
}

.limit-card h3,
.contact-card h3 {
  margin-bottom: 18px;
  font-size: 21px;
}

.meter {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--green-soft);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
}

.limit-card b {
  display: block;
  margin: 22px 0 50px;
  font-size: 14px;
}

.ai-flow-section {
  padding-top: 92px;
}

.ai-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.ai-flow-copy {
  min-width: 0;
}

.ai-flow-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.ai-flow-steps {
  display: grid;
  gap: 16px;
}

.ai-step {
  position: relative;
  min-height: 118px;
  padding: 22px 24px 20px 74px;
  border: 1px solid #d9ead2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 32px rgba(19, 58, 27, 0.05);
  opacity: 0.68;
  transform: translateX(0);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.ai-step::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 62px;
  bottom: -18px;
  width: 2px;
  background: #d4eacb;
}

.ai-step:last-child::before {
  display: none;
}

.ai-step span {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #e5f4df;
  font-size: 12px;
  font-weight: 900;
}

.ai-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.1;
}

.ai-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.ai-step.active {
  border-color: #bde6b0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(19, 58, 27, 0.1);
  opacity: 1;
  transform: translateX(12px);
}

.ai-step.active span {
  color: #fff;
  background: var(--green);
}

.ai-flow-stage {
  position: sticky;
  top: 110px;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(233, 248, 224, 0.9)),
    #f7fcf4;
  box-shadow: var(--shadow);
}

.ai-flow-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(11, 123, 53, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.ai-orbit {
  position: absolute;
  border: 1px solid rgba(11, 123, 53, 0.14);
  border-radius: 999px;
  animation: orbitPulse 5.4s ease-in-out infinite;
}

.ai-orbit.one {
  width: 360px;
  height: 360px;
  right: -92px;
  top: -78px;
}

.ai-orbit.two {
  width: 520px;
  height: 520px;
  left: -190px;
  bottom: -210px;
  animation-delay: -1.8s;
}

.ai-device {
  position: absolute;
  left: 74px;
  top: 58px;
  width: min(380px, calc(100% - 148px));
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(19, 58, 27, 0.14);
}

.ai-device-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.ai-device-top span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 20px 0 0 #bceb75, 40px 0 0 #d9f0cf;
}

.ai-device-top b {
  margin-left: 44px;
}

.ai-device-top i {
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.ai-scan {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-radius: 24px;
  background: #eaf4e2;
}

.ai-scan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: rgba(188, 235, 117, 0.94);
  box-shadow: 0 0 24px rgba(188, 235, 117, 0.8);
  animation: scanMove 3.2s ease-in-out infinite;
}

.scan-point {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(11, 123, 53, 0.16);
  animation: pointPulse 2.4s ease-in-out infinite;
}

.point-one {
  left: 38%;
  top: 24%;
}

.point-two {
  left: 56%;
  top: 48%;
  animation-delay: -0.7s;
}

.point-three {
  left: 30%;
  top: 68%;
  animation-delay: -1.2s;
}

.ai-progress {
  height: 12px;
  margin: 18px 2px 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9f0cf;
}

.ai-progress span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  animation: progressBreath 3.2s ease-in-out infinite;
}

.ai-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ai-result-tags b,
.ai-result-tags span {
  min-height: 32px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.ai-result-tags b {
  color: #fff;
  background: var(--green);
}

.ai-result-tags span {
  color: var(--green);
  background: #eaf7e3;
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateY(16px);
  }
  50% {
    transform: translateY(280px);
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes progressBreath {
  0%,
  100% {
    width: 58%;
  }
  50% {
    width: 92%;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan-line,
  .scan-point,
  .ai-progress span,
  .ai-orbit {
    animation: none;
  }
}

.care-grid {
  margin-top: 10px;
}

.care-card {
  min-height: 192px;
  padding: 29px 28px;
}

.care-card h3 {
  margin: 28px 0 16px;
  font-size: 20px;
}

.pricing-grid {
  margin: 67px auto 0;
  width: min(730px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.price-card {
  min-height: 359px;
  padding: 15px 24px 17px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge-free {
  color: #288977;
  background: #74ebf1;
}

.badge-hot {
  color: #1d8328;
  background: var(--lime);
}

.price-card h3 {
  margin: 7px 0 8px;
  font-size: 20px;
}

.price {
  margin: 0 0 11px;
  color: var(--ink) !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.price-card .leaf-list {
  margin-top: 23px;
  min-height: 98px;
}

.price-card .btn {
  width: 156px;
  margin: 0 auto;
  display: flex;
}

.faq-section {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 234px;
  gap: 35px;
  align-items: end;
}

.faq-main .section-title {
  margin-bottom: 31px;
}

.faq-item {
  min-height: 68px;
  margin-bottom: 23px;
  padding: 18px 26px 12px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 11px;
}

.contact-card {
  min-height: 248px;
  padding: 32px 26px 20px;
}

.contact-card p {
  margin-bottom: 38px;
  font-size: 12px;
}

.footer {
  padding: 44px 0 34px;
  background: #062817;
  color: #dbeadc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 0.6fr 0.6fr 0.6fr;
  gap: 44px;
}

.footer .brand-text,
.side-brand .brand-text {
  color: #fff;
}

.footer p {
  max-width: 308px;
  margin: 22px 0 42px;
  color: #b7cbb8;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.footer small {
  color: #8faa92;
  font-size: 11px;
  font-weight: 500;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
}

.footer nav a {
  color: #b7cbb8;
  font-size: 12px;
  font-weight: 500;
}

.auth-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  background: var(--bg);
}

.auth-visual {
  padding: 142px 42px 50px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.auth-visual::before,
.auth-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
}

.auth-visual::before {
  width: 160px;
  height: 102px;
  left: -70px;
  top: 92px;
  background: rgba(188, 235, 117, 0.18);
  transform: translateX(-22px) rotate(18deg) scale(0.8);
}

.auth-visual::after {
  width: 96px;
  height: 62px;
  right: -36px;
  bottom: 96px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(18px) rotate(-20deg) scale(0.82);
}

.auth-mark {
  width: 180px;
  height: 105px;
  margin: 0 0 40px 10px;
  position: relative;
  z-index: 1;
}

.auth-mark::before {
  left: 0;
  top: 31px;
  width: 119px;
  height: 88px;
  background: #2fa84f;
}

.auth-mark::after {
  left: 86px;
  top: 0;
  width: 98px;
  height: 66px;
  background: var(--lime);
}

.auth-visual h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  font-size: 29px;
  line-height: 1.18;
}

.auth-visual p {
  position: relative;
  z-index: 1;
  color: #dbeadc;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
}

.auth-screen.auth-typing .auth-mark {
  animation: accountMarkPulse 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.auth-screen.auth-typing .auth-visual::before {
  animation: accountLeafSweep 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.auth-screen.auth-typing .auth-visual::after {
  animation: accountLeafSweepSmall 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 70ms both;
}

@keyframes accountMarkPulse {
  0% {
    transform: translateX(0) scale(1);
  }
  38% {
    transform: translateX(8px) scale(1.035);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes accountLeafSweep {
  0% {
    opacity: 0;
    transform: translateX(-22px) rotate(18deg) scale(0.8);
  }
  42% {
    opacity: 1;
  }
  100% {
    opacity: 0.78;
    transform: translateX(18px) rotate(18deg) scale(1);
  }
}

@keyframes accountLeafSweepSmall {
  0% {
    opacity: 0;
    transform: translateX(18px) rotate(-20deg) scale(0.82);
  }
  42% {
    opacity: 1;
  }
  100% {
    opacity: 0.72;
    transform: translateX(-10px) rotate(-20deg) scale(1);
  }
}

.auth-form-wrap {
  display: grid;
  place-items: center;
  padding: 70px 20px;
}

.auth-form {
  width: 264px;
  min-height: 458px;
  padding: 38px 32px 32px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.auth-form h2 {
  margin-bottom: 4px;
  font-size: 30px;
}

.auth-form p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.auth-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
}

.auth-form input {
  height: 44px;
  padding: 0 16px;
  border: 1px solid #c4e4bb;
  border-radius: 13px;
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  outline: none;
}

.auth-form .btn {
  margin-top: 12px;
}

.form-message {
  min-height: 18px;
  margin: -4px 0 6px !important;
  color: var(--green) !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.form-message.error {
  color: #e43131 !important;
}

.auth-link {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.dashboard-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 182px minmax(0, 1fr);
  align-items: start;
  background: var(--bg);
}

.sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  padding: 29px 14px;
  overflow: hidden;
  background: #062817;
  color: #dbeadc;
  display: flex;
  flex-direction: column;
}

.sidebar::before,
.sidebar::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
}

.sidebar::before {
  width: 112px;
  height: 112px;
  left: -62px;
  top: 92px;
  background: rgba(188, 235, 117, 0.16);
  transform: translateX(-22px) rotate(18deg) scale(0.8);
}

.sidebar::after {
  width: 72px;
  height: 42px;
  right: -30px;
  bottom: 118px;
  background: rgba(47, 168, 79, 0.28);
  transform: translateX(-8px) rotate(-22deg) scale(0.82);
}

.side-brand {
  align-items: flex-start;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.side-brand .brand-mark {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.side-brand .brand-text {
  font-size: 16px;
  line-height: 1.08;
}

.side-nav {
  margin-top: 31px;
  display: grid;
  gap: 17px;
  position: relative;
  z-index: 1;
}

.side-nav a {
  min-height: 31px;
  padding: 9px 14px;
  border-radius: 9px;
  color: #dbeadc;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.side-nav a.active {
  background: #1f7130;
  color: #fff;
  font-weight: 800;
}

.side-nav a.locked {
  color: rgba(219, 234, 220, 0.58);
}

.side-nav a.locked::after {
  content: " тариф";
  margin-left: 4px;
  color: #c8f17d;
  font-size: 9px;
  font-weight: 900;
}

.side-help-card {
  width: 100%;
  margin-top: auto;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(6, 40, 23, 0.16);
  position: relative;
  z-index: 1;
}

.side-help-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(6, 40, 23, 0.22);
}

.side-help-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #e3f5df;
  color: var(--green);
}

.side-help-icon img {
  width: 22px;
  height: 22px;
}

.side-help-card b {
  font-size: 14px;
}

.side-help-card small {
  color: var(--muted);
  line-height: 1.25;
}

.dashboard-screen:not([hidden]) .sidebar::before {
  animation: sidebarLeafDrift 780ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
}

.dashboard-screen:not([hidden]) .sidebar::after {
  animation: sidebarLeafDriftSmall 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms both;
}

.dashboard-screen:not([hidden]) .side-brand {
  animation: sidebarItemIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.dashboard-screen:not([hidden]) .side-nav a {
  animation: sidebarItemIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(1) {
  animation-delay: 80ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(2) {
  animation-delay: 130ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(3) {
  animation-delay: 180ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(4) {
  animation-delay: 230ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(5) {
  animation-delay: 280ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(6) {
  animation-delay: 330ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(7) {
  animation-delay: 380ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(8) {
  animation-delay: 430ms;
}

.dashboard-screen:not([hidden]) .side-nav a:nth-child(9) {
  animation-delay: 480ms;
}

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

@keyframes sidebarLeafDrift {
  from {
    opacity: 0;
    transform: translateX(-22px) rotate(18deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(18deg) scale(1);
  }
}

@keyframes sidebarLeafDriftSmall {
  from {
    opacity: 0;
    transform: translateX(18px) rotate(-22deg) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-22deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-screen:not([hidden]) .sidebar::before,
  .dashboard-screen:not([hidden]) .sidebar::after,
  .dashboard-screen:not([hidden]) .side-brand,
  .dashboard-screen:not([hidden]) .side-nav a,
  .auth-screen.auth-typing .auth-mark,
  .auth-screen.auth-typing .auth-visual::before,
  .auth-screen.auth-typing .auth-visual::after {
    animation: none;
  }

  .sidebar::before,
  .sidebar::after,
  .auth-visual::before,
  .auth-visual::after {
    opacity: 1;
  }
}

.app-main {
  padding: 45px 36px 70px;
}

.dashboard-toolbar {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.dashboard-search-wrap,
.dashboard-notification-wrap {
  position: relative;
}

.dashboard-search {
  min-height: 62px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.dashboard-search span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-search span img {
  width: 20px;
  height: 20px;
}

.dashboard-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.dashboard-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-icon-button,
.dashboard-profile-button {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.dashboard-icon-button {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 21px;
}

.dashboard-icon-button > span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-icon-button > span img {
  width: 22px;
  height: 22px;
}

.dashboard-icon-button i {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.dashboard-profile-button {
  min-height: 56px;
  padding: 8px 12px 8px 8px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dashboard-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #c7f0ba, #e9f9db);
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.dashboard-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-profile-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.dashboard-profile-copy b {
  font-size: 14px;
}

.dashboard-profile-copy small {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-search-results,
.dashboard-notification-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 8;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.dashboard-notification-popover {
  left: auto;
  right: 0;
  width: 340px;
}

.dashboard-search-item,
.dashboard-notification-item {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  display: grid;
  gap: 4px;
  color: inherit;
  background: transparent;
  text-align: left;
}

.dashboard-search-item:hover,
.dashboard-notification-item:hover {
  background: rgba(47, 168, 79, 0.08);
}

.dashboard-search-item b,
.dashboard-notification-item b {
  font-size: 14px;
}

.dashboard-search-item span,
.dashboard-notification-item span,
.dashboard-notification-empty {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.app-view {
  width: 100%;
  max-width: 1480px;
}

.app-view.view-enter {
  animation: appViewEnter 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.app-view.benefit-view {
  max-width: 1480px;
}

.app-view.overview-view,
.app-view.settings-view,
.app-view.calendar-view,
.app-view.notes-view,
.app-view.tools-view {
  max-width: 1480px;
}

.app-view h1 {
  margin-bottom: 7px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
}

.subhead {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.45;
}

.app-cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 29px;
  align-items: start;
}

.app-card {
  min-height: 240px;
  padding: 34px 30px 30px;
}

.app-card h2 {
  margin-bottom: 24px;
  font-size: 25px;
  line-height: 1.1;
}

.limit-box b {
  display: block;
  margin: 16px 0 22px;
  font-size: 14px;
}

.access-box {
  min-height: 262px;
}

.access-box h2 {
  margin-bottom: 15px;
}

.access-box .price {
  margin-bottom: 12px;
  font-size: 34px !important;
}

.access-box p {
  max-width: 100%;
  font-size: 12px;
}

.access-box .leaf-list {
  margin: 14px 0 18px;
}

.access-box .btn {
  width: 100%;
}

.access-box.active-subscription .price {
  color: var(--green);
  font-size: 26px !important;
}

.subscription-message {
  display: block;
  margin: 14px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.subscription-feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 26px;
}

.subscription-feature-card {
  min-width: 0;
  min-height: 300px;
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.subscription-feature-card.pro {
  background: #123124;
  color: #fff;
}

.subscription-feature-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green);
  background: #e5f4df;
  font-size: 12px;
  font-weight: 900;
}

.subscription-feature-card.pro span {
  color: #173d2b;
  background: #c8f17d;
}

.subscription-feature-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.1;
}

.subscription-feature-card .leaf-list li {
  font-size: 15px;
  line-height: 1.45;
}

.subscription-feature-card.pro .leaf-list li {
  color: #e5f4df;
}

.app-view[data-view="subscription"] .pricing-grid {
  margin-top: 24px;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.plan-card.active {
  border-color: var(--green);
  box-shadow: 0 18px 40px rgba(47, 168, 79, 0.18);
}

.plan-card.paid {
  background: #fafff7;
}

.plan-card .plan-limit {
  margin: -8px 0 14px;
  color: #214632;
  font-size: 13px;
  font-weight: 900;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-card.pro .plan-limit {
  color: #c8f17d;
}

.package-panel,
.unit-economics-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.package-grid article {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  background: #f7fcf4;
  border: 1px solid #dcebd7;
}

.package-grid span,
.unit-economics-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.package-grid b {
  display: block;
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.package-grid .btn {
  width: 100%;
}

.package-grid .btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.unit-economics-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: #f7fcf4;
  border: 1px solid #dcebd7;
}

.unit-economics-panel h2 {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.1;
}

.payment-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.payment-panel[hidden] {
  display: none;
}

.payment-panel-head {
  margin-bottom: 18px;
}

.payment-panel-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: 999px;
  color: #173d2b;
  background: #c8f17d;
  font-size: 12px;
  font-weight: 900;
}

.payment-panel-head h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.payment-panel-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.payment-form {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(110px, 0.45fr) minmax(110px, 0.45fr);
  gap: 14px;
  align-items: end;
}

.payment-plan-picker {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-plan-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #234231;
  font-size: 12px;
  font-weight: 900;
}

.payment-plan-picker label {
  min-width: 0;
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d8e6d4;
  border-radius: 14px;
  background: #f8fbf5;
  color: #173d2b;
  font-size: 13px;
  font-weight: 900;
}

.payment-plan-picker input {
  accent-color: var(--green);
}

.payment-plan-picker b {
  white-space: nowrap;
}

.payment-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  color: #234231;
}

.payment-field.wide {
  grid-column: span 1;
}

.payment-field input,
.payment-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8e6d4;
  border-radius: 14px;
  padding: 0 14px;
  color: #183225;
  background: #f8fbf5;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.payment-field input:focus,
.payment-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.12);
}

.payment-form .btn {
  min-height: 48px;
}

.payment-consents {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #d8e6d4;
  border-radius: 14px;
  background: #f8fbf5;
}

.payment-provider-note {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid #b9d9af;
  border-radius: 14px;
  background: #eef8e9;
}

.payment-provider-note b {
  display: block;
  margin-bottom: 4px;
  color: #173d2b;
  font-size: 13px;
}

.payment-provider-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.payment-message {
  grid-column: 1 / -1;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.cabinet-hero {
  min-height: 250px;
  padding: 30px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(188, 235, 117, 0.22) 0 16%, transparent 17%),
    #123124;
}

.cabinet-hero h1 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.08;
}

.cabinet-hero .eyebrow {
  color: #bceb75;
}

.cabinet-hero .subhead {
  max-width: 560px;
  color: #cfe3d1;
  line-height: 1.45;
}

.cabinet-hero img {
  width: 260px;
  height: 210px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.cabinet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-hero-card {
  max-width: 420px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(207, 232, 199, 0.2);
}

.profile-hero-card span,
.profile-hero-card small {
  display: block;
  color: #cfe3d1;
  font-size: 12px;
  line-height: 1.4;
}

.profile-hero-card b {
  display: block;
  margin: 6px 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.overview-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overview-stats article {
  min-height: 112px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.overview-stats span,
.overview-stats small,
.cabinet-section-card span,
.mode-content span,
.mode-schedule span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.overview-stats b {
  display: block;
  margin: 8px 0 3px;
  color: var(--green);
  font-size: 30px;
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.settings-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.settings-profile-card {
  gap: 18px;
}

.settings-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.settings-card-head--avatar-first {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.settings-card-head.compact h3,
.settings-card-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.settings-avatar-editor {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.settings-card-head--avatar-first .settings-avatar-editor {
  order: -1;
  justify-items: start;
}

.settings-avatar-preview {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #dff4d7, #eef9e5);
  color: var(--green);
  font-size: 42px;
  font-weight: 900;
}

.settings-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.settings-highlight-card {
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid #dcebd7;
  border-radius: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #f8fcf3, #eef8e6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.settings-highlight-card span {
  color: #58806a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.settings-highlight-card b {
  color: #163322;
  font-size: 19px;
  line-height: 1.2;
}

.settings-highlight-card small {
  color: #5d7565;
  font-size: 13px;
  line-height: 1.45;
}

.settings-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px;
}

.settings-segment label {
  position: relative;
  min-height: 50px;
  border: 1px solid #d8e6d4;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  background: #fbfdf8;
  color: #183225;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.settings-segment input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.settings-segment-binary label span {
  display: inline-block;
  min-width: 26px;
}

.settings-segment label:has(input:checked) {
  border-color: rgba(11, 123, 53, 0.45);
  background: linear-gradient(180deg, #eef8e6, #e0f4d7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 0 0 3px rgba(11, 123, 53, 0.08);
}

.settings-notification-card {
  padding: 18px;
  border: 1px solid #dcebd7;
  border-radius: 18px;
  background: #f7fcf4;
}

.settings-toggle-list {
  display: grid;
  gap: 12px;
}

.settings-toggle-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #234231;
}

.settings-toggle-list input {
  accent-color: var(--green);
}

.settings-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.settings-profile-card,
.settings-preview-card {
  border-radius: 26px;
}

.settings-profile-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 244, 0.98));
}

.settings-preview-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 238, 0.98));
}

.settings-side-column {
  display: grid;
  gap: 18px;
}

.settings-card,
.settings-preview-card {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.settings-card {
  display: grid;
  gap: 16px;
}

.settings-field {
  display: grid;
  gap: 7px;
  color: #234231;
  font-size: 12px;
  font-weight: 900;
}

.settings-field input,
.settings-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #d8e6d4;
  border-radius: 14px;
  background: #f8fbf5;
  color: #183225;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.settings-field input:focus,
.settings-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.12);
}

.settings-live {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.settings-live div {
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  background: #f7fcf4;
  border: 1px solid #dcebd7;
}

.settings-live span,
.settings-preview-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.settings-live b,
.settings-preview-card h2 {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.settings-preview-card p {
  margin: 10px 0 18px;
  color: #355241;
  font-size: 14px;
  line-height: 1.5;
}

.settings-checklist {
  margin: 0;
  padding-left: 18px;
  color: #355241;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .settings-layout {
    grid-template-columns: 1fr;
  }

  .settings-live {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar,
  .settings-dashboard,
  .settings-grid-two {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar-actions {
    justify-content: space-between;
  }

  .dashboard-notification-popover {
    width: min(340px, calc(100vw - 40px));
  }
}

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

.cabinet-section-card {
  min-width: 0;
  min-height: 292px;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
}

.cabinet-section-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  border-radius: 13px;
  object-fit: cover;
}

.cabinet-section-card span {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.cabinet-section-card h3 {
  margin: 7px 0 9px;
  font-size: 18px;
  line-height: 1.12;
}

.cabinet-section-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.mode-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #cfe8c7;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-weight: 900;
}

.mode-tabs button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.mode-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.mode-visual,
.mode-panel,
.mode-schedule article {
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mode-visual {
  min-height: 390px;
  overflow: hidden;
}

.mode-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.mode-panel {
  min-height: 390px;
  padding: 30px;
}

.mode-content {
  display: none;
}

.mode-content.active {
  display: block;
}

.mode-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 900;
}

.mode-content h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.mode-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

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

.mode-schedule article {
  min-height: 118px;
  padding: 22px;
}

.mode-schedule b {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 18px;
}

.calendar-hero,
.notes-hero,
.tools-hero {
  min-height: 300px;
  padding: 42px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 38px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 123, 53, 0.96), rgba(18, 49, 36, 0.96)),
    #123124;
}

.calendar-hero h1,
.notes-hero h1,
.tools-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

.calendar-hero .eyebrow,
.notes-hero .eyebrow,
.tools-hero .eyebrow {
  color: #c8f17d;
}

.calendar-hero .subhead,
.notes-hero .subhead,
.tools-hero .subhead {
  max-width: 760px;
  margin-bottom: 0;
  color: #dcebdd;
  font-size: 17px;
  line-height: 1.45;
}

.calendar-hero-device {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.calendar-hero-device img,
.notes-hero img,
.tools-hero img {
  width: 100%;
  height: 230px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.calendar-hero-device figcaption {
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
}

.calendar-hero-device span,
.calendar-hero-device small,
.calendar-toolbar p,
.calendar-form label,
.calendar-empty,
.calendar-task p,
.notes-empty,
.note-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.calendar-hero-device b {
  display: block;
  margin: 5px 0 4px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.calendar-layout,
.notes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

.calendar-panel,
.notes-panel {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.calendar-main-panel,
.calendar-side-panel,
.notes-panel {
  padding: 32px;
}

.calendar-main-panel {
  background: #f3faee;
}

.calendar-app-strip {
  min-height: 132px;
  margin-bottom: 26px;
  padding: 20px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 22px;
  align-items: center;
  background: #fff;
}

.calendar-app-strip p {
  margin: 8px 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calendar-app-strip b {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.calendar-app-strip img {
  width: 160px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
}

.calendar-app-dot {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  display: block;
  background: #dff5d3;
  position: relative;
}

.calendar-app-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--green);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
}

.calendar-toolbar h2 {
  margin-bottom: 4px;
  font-size: 27px;
  line-height: 1.1;
  text-transform: capitalize;
}

.calendar-toolbar p {
  margin: 0;
}

.calendar-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--green);
  background: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin: 22px 0 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  font-weight: 900;
}

.calendar-day {
  min-width: 0;
  min-height: 98px;
  padding: 9px;
  border: 1px solid #dcebd5;
  border-radius: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: hidden;
  background: #fff;
  text-align: left;
}

.calendar-day.muted {
  opacity: 0.42;
}

.calendar-day.selected {
  border-color: var(--green);
  background: #eaf7e4;
  box-shadow: 0 0 0 2px rgba(11, 123, 53, 0.12);
}

.calendar-day.today .calendar-day-num {
  color: #fff;
  background: var(--green);
}

.calendar-day-num {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.calendar-day-tasks {
  display: grid;
  gap: 4px;
}

.calendar-day-tasks i,
.calendar-task-type {
  width: 100%;
  min-width: 0;
  padding: 4px 7px;
  border-radius: 999px;
  display: block;
  overflow: hidden;
  color: #0a5f2a;
  background: #e5f4df;
  font-size: 10px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day-tasks i.feed,
.calendar-task-type.feed {
  color: #7c5a13;
  background: #fff1c4;
}

.calendar-day-tasks i.photo,
.calendar-task-type.photo {
  color: #2f5c84;
  background: #e2f0ff;
}

.calendar-day-tasks i.repot,
.calendar-task-type.repot {
  color: #73511e;
  background: #f2e5d1;
}

.calendar-day-tasks i.light,
.calendar-task-type.light {
  color: #6d4f00;
  background: #fff7d6;
}

.calendar-day-tasks i.done {
  opacity: 0.56;
  text-decoration: line-through;
}

.calendar-side-stack {
  display: grid;
  gap: 18px;
}

.calendar-side-panel h2,
.calendar-side-panel h3,
.notes-panel h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.calendar-form,
.notes-form {
  display: grid;
  gap: 14px;
}

.calendar-form label,
.notes-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.calendar-form input,
.calendar-form select,
.notes-form input,
.notes-form select,
.notes-form textarea,
.report-note-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #cfe8c7;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #f7fcf4;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.calendar-form input,
.calendar-form select,
.notes-form input,
.notes-form select {
  height: 42px;
  padding: 0 13px;
}

.calendar-form input[type="date"],
.notes-form input[type="date"] {
  color-scheme: light;
  padding-right: 10px;
}

.calendar-form input[type="date"]::-webkit-datetime-edit,
.notes-form input[type="date"]::-webkit-datetime-edit {
  color: var(--ink);
  font-weight: 900;
}

.calendar-form input[type="date"]::-webkit-calendar-picker-indicator,
.notes-form input[type="date"]::-webkit-calendar-picker-indicator {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 10px;
  background-color: #e5f4df;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3V6M17 3V6M4.5 9.5H19.5M6.5 5H17.5C18.6046 5 19.5 5.89543 19.5 7V18C19.5 19.1046 18.6046 20 17.5 20H6.5C5.39543 20 4.5 19.1046 4.5 18V7C4.5 5.89543 5.39543 5 6.5 5Z' stroke='%230b7b35' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
  opacity: 1;
}

.calendar-form input:focus,
.calendar-form select:focus,
.notes-form input:focus,
.notes-form select:focus,
.notes-form textarea:focus,
.report-note-form textarea:focus {
  border-color: var(--green);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.12);
}

.calendar-form select:not([multiple]),
.notes-form select:not([multiple]) {
  appearance: none;
  padding-right: 42px;
  background-color: #f7fcf4;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b7b35 50%),
    linear-gradient(135deg, #0b7b35 50%, transparent 50%),
    linear-gradient(180deg, #edf8e8, #f8fcf5);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%,
    100% 0;
  background-size: 6px 6px, 6px 6px, 42px 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.calendar-form option,
.notes-form option {
  color: var(--ink);
  background: #f7fcf4;
  font-weight: 800;
}

.notes-form textarea,
.report-note-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.calendar-day-list,
.notes-list,
.report-note-list {
  display: grid;
  gap: 12px;
}

.calendar-empty,
.notes-empty {
  margin: 0;
  padding: 18px;
  border-radius: 15px;
  background: #f7fcf4;
}

.calendar-task,
.note-card {
  padding: 14px;
  border: 1px solid #dfe9da;
  border-radius: 16px;
  display: grid;
  gap: 12px;
  background: #f7fcf4;
}

.calendar-task.done,
.note-card.done {
  opacity: 0.72;
}

.calendar-task h4 {
  margin: 9px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.calendar-task p,
.note-card p {
  margin: 0;
  font-weight: 600;
}

.calendar-task-actions,
.note-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-task-actions button,
.note-card-actions button {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  border: 1px solid #cfe8c7;
  font-size: 11px;
  font-weight: 900;
}

.calendar-task-actions button:last-child,
.note-card-actions button:last-child {
  color: #9d1b20;
  border-color: #ffc3c6;
  background: #fff5f5;
}

.notes-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.notes-hero img {
  height: 230px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.notes-list-head {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.notes-list-head h2 {
  margin-bottom: 0;
}

.notes-list-head .eyebrow {
  margin-bottom: 4px;
}

.notes-list-head > span {
  min-width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #e5f4df;
  font-size: 22px;
  font-weight: 900;
}

.note-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.note-card-head b {
  color: var(--green);
  font-size: 13px;
}

.report-note-form {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.tools-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.tools-hero img {
  height: 240px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.tool-tabs {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tabs button {
  min-height: 40px;
  max-width: 100%;
  padding: 0 15px;
  border: 1px solid #cfe8c7;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.tool-tabs button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.tool-tabs button.locked {
  color: #6a765f;
  background: #f5faef;
}

.tool-tabs span {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #173d2b;
  background: #c8f17d;
  font-size: 9px;
  font-weight: 900;
}

.tool-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.tool-panel {
  min-width: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tool-input-panel,
.tool-output-panel {
  padding: 24px;
}

.tool-form {
  display: none;
}

.tool-form.active {
  display: grid;
  gap: 15px;
}

.tool-form h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.1;
}

.tool-form p,
.tool-result-head p,
.tool-callout p,
.tool-mini-card p,
.timeline-list p,
.tools-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.tool-fields.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tool-form label,
.tool-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.tool-field > span {
  display: block;
}

.tool-form input,
.tool-form select,
.tool-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #cfe8c7;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #f7fcf4;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.tool-form input,
.tool-form select {
  min-height: 42px;
  padding: 0 12px;
}

.tool-form input[type="date"] {
  color-scheme: light;
  padding-right: 10px;
}

.tool-form input[type="date"]::-webkit-datetime-edit {
  color: var(--ink);
  font-weight: 900;
}

.tool-form input[type="date"]::-webkit-calendar-picker-indicator {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 10px;
  background-color: #e5f4df;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3V6M17 3V6M4.5 9.5H19.5M6.5 5H17.5C18.6046 5 19.5 5.89543 19.5 7V18C19.5 19.1046 18.6046 20 17.5 20H6.5C5.39543 20 4.5 19.1046 4.5 18V7C4.5 5.89543 5.39543 5 6.5 5Z' stroke='%230b7b35' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
  opacity: 1;
}

.tool-form input[type="file"] {
  min-height: 44px;
  padding: 6px 10px 6px 7px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-form input[type="file"]::file-selector-button {
  min-height: 30px;
  margin-right: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #119545);
  box-shadow: 0 8px 18px rgba(11, 123, 53, 0.16);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.tool-form input[type="file"]::-webkit-file-upload-button {
  min-height: 30px;
  margin-right: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #119545);
  box-shadow: 0 8px 18px rgba(11, 123, 53, 0.16);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.tool-form input[type="file"]:hover::file-selector-button,
.tool-form input[type="file"]:hover::-webkit-file-upload-button {
  background: linear-gradient(135deg, #086c2f, var(--green));
}

.tool-form input:focus,
.tool-form select:focus,
.tool-form textarea:focus {
  border-color: var(--green);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.12);
}

.tool-form select:not([multiple]) {
  appearance: none;
  padding-right: 42px;
  background-color: #f7fcf4;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b7b35 50%),
    linear-gradient(135deg, #0b7b35 50%, transparent 50%),
    linear-gradient(180deg, #edf8e8, #f8fcf5);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%,
    100% 0;
  background-size: 6px 6px, 6px 6px, 42px 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  text-overflow: ellipsis;
}

.tool-form option {
  color: var(--ink);
  background: #f7fcf4;
  font-weight: 800;
}

.tool-form select[multiple] {
  min-height: 130px;
  padding: 9px 12px;
}

.tool-form select[hidden] {
  display: none !important;
}

.plant-choice-list {
  width: 100%;
  max-height: 252px;
  padding: 10px;
  border: 1px solid #cfe8c7;
  border-radius: 18px;
  display: grid;
  gap: 10px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(247, 252, 244, 0.98), rgba(241, 249, 237, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.plant-choice {
  position: relative;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid #d8ebd0;
  border-radius: 15px;
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px !important;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.plant-choice:hover {
  border-color: rgba(47, 168, 79, 0.55);
  box-shadow: 0 10px 24px rgba(21, 78, 41, 0.08);
  transform: translateY(-1px);
}

.plant-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.plant-choice-mark {
  width: 24px;
  height: 24px;
  border: 2px solid #b8deae;
  border-radius: 8px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #eff8e9;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.plant-choice-mark::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px);
  transition: opacity 0.2s ease;
}

.plant-choice input:checked + .plant-choice-mark {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.12);
}

.plant-choice input:checked + .plant-choice-mark::after {
  opacity: 1;
}

.plant-choice:has(input:checked) {
  border-color: rgba(47, 168, 79, 0.72);
  background: linear-gradient(135deg, #ffffff 0%, #eff9ea 100%);
}

.plant-choice-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  line-height: 1.2;
}

.plant-choice-copy b {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plant-choice-copy small,
.plant-choice-empty {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.plant-choice-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed #cfe8c7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.tool-form textarea {
  min-height: 86px;
  padding: 12px;
  resize: vertical;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-output {
  display: grid;
  gap: 16px;
}

.tools-empty,
.tool-premium {
  min-height: 220px;
  padding: 24px;
  border-radius: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: #f7fcf4;
}

.tool-premium span,
.tool-result-head span {
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green);
  background: #e5f4df;
  font-size: 12px;
  font-weight: 900;
}

.tool-premium h2,
.tool-result-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.tool-result-head {
  padding: 24px;
  border-radius: 20px;
  display: grid;
  gap: 10px;
  color: #fff;
  background: #123124;
}

.tool-result-head span {
  color: #173d2b;
  background: #c8f17d;
}

.tool-result-head h2,
.tool-result-head p {
  color: #fff;
}

.tool-section,
.tool-callout,
.tool-mini-card,
.timeline-list article,
.tool-metrics article {
  min-width: 0;
  padding: 18px;
  border: 1px solid #dfe9da;
  border-radius: 16px;
  background: #f7fcf4;
}

.tool-loading-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5f4df;
}

.tool-loading-bar span {
  width: 42%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--green));
  background-size: 200% 100%;
  animation: tool-loading 1.15s linear infinite;
}

@keyframes tool-loading {
  from {
    transform: translateX(-100%);
    background-position: 0 0;
  }

  to {
    transform: translateX(240%);
    background-position: 200% 0;
  }
}

.tool-section h3,
.tool-callout h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.15;
}

.tool-checklist {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.tool-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.tool-checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  background: var(--green);
}

.tool-task-preview,
.timeline-list {
  display: grid;
  gap: 10px;
}

.tool-task-preview span {
  min-width: 0;
  padding: 11px 12px;
  border-radius: 13px;
  display: grid;
  gap: 4px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.tool-task-preview b,
.timeline-list span,
.tool-mini-card small {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.tool-callout.warning {
  border-color: #f1df9a;
  background: #fff8db;
}

.tool-card-grid,
.tool-metrics,
.before-after {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tool-mini-card b,
.tool-metrics b,
.timeline-list b {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.tool-mini-card small {
  display: block;
}

.room-map {
  min-height: 240px;
  border: 2px solid #d7e8ce;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(207, 232, 199, 0.52) 1px, transparent 1px),
    linear-gradient(rgba(207, 232, 199, 0.52) 1px, transparent 1px),
    #f7fcf4;
  background-size: 42px 42px;
}

.room-map span {
  position: absolute;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(11, 123, 53, 0.18);
}

.room-window { top: 12px; left: 34%; }
.room-sill { top: 54px; left: 30%; }
.room-table { top: 110px; left: 15%; }
.room-shelf { top: 126px; right: 15%; }
.room-balcony { right: 18px; bottom: 18px; }

.health-scale {
  min-height: 46px;
  padding: 8px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: #e5f4df;
}

.health-scale span {
  height: 100%;
  border-radius: inherit;
  display: block;
  background: linear-gradient(90deg, #dfaf3f, var(--green));
}

.health-scale b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.timeline-list article {
  background: #fff;
}

.before-after {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after article {
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f7fcf4;
}

.before-after img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.before-after span {
  display: block;
  padding: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.harvest-bars {
  min-height: 160px;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 34px;
  background: #f7fcf4;
}

.harvest-bars span {
  width: 70px;
  border-radius: 12px 12px 6px 6px;
  background: var(--green);
}

.harvest-bars span:first-child {
  background: #dfaf3f;
}

.tool-flash {
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.benefit-hero {
  min-height: 220px;
  padding: 30px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(223, 175, 63, 0.22) 0 12%, transparent 13%),
    radial-gradient(circle at 96% 8%, rgba(87, 160, 92, 0.32) 0 24%, transparent 25%),
    #123124;
}

.benefit-hero h1 {
  max-width: 580px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
}

.benefit-hero .eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 20px;
  border-radius: 999px;
  color: #2f583c;
  background: #eff7e9;
}

.benefit-hero .subhead {
  max-width: 640px;
  margin-bottom: 0;
  color: #cfe3d1;
  font-size: 16px;
  line-height: 1.45;
}

.benefit-hero-kpi {
  position: relative;
  z-index: 1;
  width: min(190px, 100%);
  flex: 0 0 190px;
  padding: 22px 20px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}

.benefit-hero-kpi span,
.benefit-hero-kpi small,
.benefit-kpi span,
.benefit-kpi small,
.benefit-field small,
.benefit-chart p,
.benefit-cost-row span,
.benefit-details-grid span,
.benefit-sources p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.benefit-hero-kpi b {
  display: block;
  margin: 8px 0 4px;
  color: #246b3c;
  font-size: 30px;
  line-height: 1;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(330px, 420px) minmax(0, 1fr);
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

.benefit-panel {
  border: 1px solid #dfe9da;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.benefit-input-panel {
  padding: 28px;
  background: #ecf4e7;
}

.benefit-panel-head h2,
.benefit-chart h2 {
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.1;
}

.benefit-panel-head p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

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

.benefit-field {
  min-width: 0;
  min-height: 82px;
  padding: 12px 14px;
  border: 1px solid #dde6d6;
  border-radius: 10px;
  display: grid;
  align-content: start;
  gap: 4px;
  background: #fff;
}

.benefit-field.wide {
  grid-column: 1 / -1;
}

.benefit-field span {
  color: #6c7a69;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
}

.benefit-field input,
.benefit-field select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.benefit-field select {
  appearance: none;
  padding: 10px 42px 10px 0;
  border-radius: 9px;
  background-color: transparent;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b7b35 50%),
    linear-gradient(135deg, #0b7b35 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 52%,
    calc(100% - 10px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benefit-field input:focus,
.benefit-field select:focus {
  border-radius: 9px;
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.11);
}

.benefit-field option {
  color: var(--ink);
  background: #f7fcf4;
  font-weight: 800;
}

.benefit-formula {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  color: #fff;
  background: #173d2b;
}

.benefit-formula span {
  display: block;
  margin-bottom: 8px;
  color: #bdd6c0;
  font-size: 12px;
  font-weight: 800;
}

.benefit-formula b {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.benefit-results {
  min-width: 0;
}

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

.benefit-kpi {
  min-height: 116px;
  padding: 18px;
}

.benefit-kpi b {
  display: block;
  margin: 8px 0 4px;
  color: #246b3c;
  font-size: clamp(21px, 2.4vw, 25px);
  line-height: 1.1;
}

.benefit-kpi.warning b {
  color: #7c5a13;
}

.benefit-chart {
  margin-top: 20px;
  padding: 26px 28px;
}

.benefit-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.benefit-chart-head span {
  align-self: flex-start;
  min-width: 92px;
  min-height: 36px;
  padding: 9px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #246b3c;
  background: #eaf4e2;
  font-weight: 900;
}

.benefit-bars {
  min-height: 190px;
  padding: 22px min(11vw, 70px) 0;
  border-bottom: 1px solid #e2e9de;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 8vw, 84px);
}

.benefit-bar-wrap {
  width: min(150px, 38%);
  min-width: 92px;
  text-align: center;
}

.benefit-bar-wrap b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.benefit-bar {
  width: 100%;
  min-height: 20px;
  border-radius: 9px 9px 5px 5px;
  transition: height 160ms ease;
}

.benefit-bar.market {
  background: #dfaf3f;
}

.benefit-bar.home {
  background: #57a05c;
}

.benefit-bar-wrap span {
  display: block;
  margin-top: 10px;
  color: #5d6659;
  font-size: 13px;
  font-weight: 800;
}

.benefit-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefit-costs,
.benefit-verdict,
.benefit-details,
.benefit-sources {
  padding: 26px 28px;
}

.benefit-costs h3,
.benefit-verdict h3,
.benefit-details h3,
.benefit-sources h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.benefit-cost-row {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) minmax(70px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.benefit-cost-row b {
  min-width: 48px;
  text-align: right;
  font-size: 13px;
}

.benefit-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eff4eb;
}

.benefit-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #57a05c;
}

.benefit-track.water i {
  background: #63a6d8;
}

.benefit-track.extras i {
  background: #dfaf3f;
}

.benefit-message {
  padding: 22px;
  border: 1px solid #e2eadf;
  border-radius: 12px;
  background: #f7faf4;
  text-align: center;
}

.benefit-message b {
  display: block;
  color: #246b3c;
  font-size: 17px;
  line-height: 1.25;
}

.benefit-message p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.benefit-details,
.benefit-sources {
  grid-column: 1 / -1;
}

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

.benefit-details-grid div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #e2eadf;
  border-radius: 10px;
  background: #f7faf4;
}

.benefit-details-grid span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.benefit-details-grid b {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.benefit-sources {
  margin-top: 20px;
}

.benefit-sources p {
  margin: 0;
  line-height: 1.45;
}

.water-calc-section {
  margin-top: 30px;
  padding: 28px;
}

.water-calc-section .eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 14px;
  border-radius: 999px;
  color: #173d2b;
  background: #c8f17d;
  font-size: 12px;
  font-weight: 900;
}

.water-calc-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.water-calc-fields {
  align-content: start;
}

.water-result-panel {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.water-result-hero {
  min-height: 146px;
  padding: 22px;
  border-radius: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 241, 125, 0.28) 0 18%, transparent 19%),
    #123124;
}

.water-result-hero span,
.water-result-hero small {
  color: #cfe3d1;
  font-size: 12px;
  font-weight: 800;
}

.water-result-hero b {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
}

.water-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.water-result-grid article {
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  background: #f7fcf4;
}

.water-result-grid span,
.water-detail-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.water-result-grid b {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.1;
}

.water-advice {
  padding: 16px 18px;
  border-radius: 16px;
  color: #234231;
  background: #fff8db;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.water-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1250px) {
  .benefit-bottom {
    grid-template-columns: 1fr;
  }
}

.app-section-title {
  margin: 68px 0 14px;
  font-size: 25px;
}

.app-section-title.first {
  margin-top: 33px;
}

.analysis-list,
.history-list {
  display: grid;
  gap: 16px;
}

.analysis-row,
.history-row {
  min-height: 47px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  min-width: 0;
}

.analysis-row b,
.history-row b,
.plant-card h2,
.plant-card p,
.cabinet-section-card h3,
.cabinet-section-card p,
.app-card,
.calendar-task,
.note-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.analysis-row span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.plants-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.plant-card {
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.plant-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.08;
}

.plant-card img {
  width: 100%;
  height: clamp(220px, 17vw, 300px);
  object-fit: cover;
  border-radius: 14px;
}

.plant-card p {
  margin: 20px 0 22px;
  font-size: 15px;
  line-height: 1.35;
  flex: 1;
}

.plant-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.plant-actions .btn {
  width: 100%;
  min-width: 0;
}

.plant-actions .btn.primary {
  min-height: 42px;
  padding: 0 14px;
}

.plant-actions .btn.darker {
  min-height: 42px;
}

.add-card {
  min-height: 520px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.add-card span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #31f24f;
  font-size: 75px;
  font-weight: 200;
  line-height: 0.8;
}

.empty-state {
  min-height: 190px;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.upload-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 24px;
  background: rgba(6, 40, 23, 0.42);
  display: grid;
  place-items: center;
}

.upload-card {
  position: relative;
  width: min(420px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 40, 23, 0.25);
}

.upload-card h2 {
  margin: 20px 0 8px;
  font-size: 25px;
}

.notice-card h2 {
  color: #e43131;
}

.upload-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--green);
  background: var(--bg);
  font-size: 26px;
  line-height: 1;
}

.inline-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 20px;
  background: rgba(4, 29, 15, 0.38);
  display: grid;
  place-items: center;
}

.inline-confirm {
  width: min(440px, 100%);
  padding: 24px;
  border: 1px solid #cfe8c7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 40, 23, 0.24);
}

.inline-confirm h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.inline-confirm p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.inline-confirm-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.plant-name-field {
  display: grid;
  gap: 8px;
  margin: 20px 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.plant-name-field input {
  height: 44px;
  padding: 0 16px;
  border: 1px solid #c4e4bb;
  border-radius: 13px;
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  outline: none;
}

.file-drop {
  min-height: 118px;
  padding: 20px;
  border: 1px dashed #9fd394;
  border-radius: 18px;
  background: #f7fcf4;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.file-drop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-drop span {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.file-drop small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.btn[disabled] {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.history-list {
  width: 100%;
  max-width: 1180px;
}

.history-row {
  grid-template-columns: 36px 1fr auto;
  min-height: 72px;
  padding: 16px 22px;
  border-radius: 22px;
  font-size: 16px;
}

.history-row .btn {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.guide-view {
  max-width: 1180px;
}

.assistant-teaser {
  margin-top: 30px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.assistant-teaser h2 {
  margin: 6px 0 10px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.assistant-teaser p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.guide-hero {
  min-height: 230px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f2faee 100%);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.guide-hero h1 {
  margin: 6px 0 12px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.guide-mark {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
}

.guide-search {
  margin: 28px 0 24px;
  min-height: 72px;
  padding: 14px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 16px;
}

.guide-search span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.guide-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
}

.guide-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.guide-topic-card {
  min-height: 182px;
  padding: 18px;
  border: 1px solid #e3eedc;
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 10px;
  align-content: start;
  box-shadow: 0 16px 40px rgba(6, 40, 23, 0.08);
}

.guide-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(6, 40, 23, 0.13);
}

.guide-topic-card img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  background: #edf8e7;
}

.guide-topic-card span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.guide-topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.guide-topic-card b {
  color: var(--green);
  font-size: 13px;
}

.guide-catalog-head {
  margin: 4px 0 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.guide-catalog-head h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.05;
}

.guide-catalog-head > span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #edf8e7;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.guide-card {
  min-height: 286px;
  padding: 14px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  align-items: start;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(6, 40, 23, 0.14);
}

.guide-card img {
  width: 100%;
  height: 148px;
  border-radius: 16px;
  object-fit: cover;
  background: #edf8e7;
}

.guide-card > span {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8f8df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.guide-card h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.12;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-more-button {
  margin: 22px auto 0;
  display: flex;
  width: max-content;
  max-width: 100%;
}

.guide-detail {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 26px;
}

.guide-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 18px;
  object-fit: cover;
}

.guide-detail-body > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.guide-detail-body h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.guide-detail-body > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.guide-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.guide-detail-grid article,
.guide-detail-lists section {
  padding: 16px;
  border-radius: 16px;
  background: #f7fcf4;
}

.guide-detail-grid b,
.guide-detail-lists h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.guide-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.guide-detail-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.guide-popular {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guide-popular h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

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

.guide-plant-grid article {
  min-height: 92px;
  padding: 16px;
  border: 1px solid #e3eedc;
  border-radius: 16px;
  background: #fbfff8;
  display: grid;
  align-content: start;
  gap: 7px;
}

.guide-plant-grid b {
  color: var(--ink);
  font-size: 16px;
}

.guide-plant-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.report-view {
  display: flex;
  justify-content: stretch;
}

.full-report {
  width: 100%;
  max-width: 1180px;
  padding: 34px;
  border-radius: 24px;
}

.full-report h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.05;
}

.full-report img {
  width: 100%;
  height: clamp(320px, 32vw, 460px);
  object-fit: cover;
  border-radius: 18px;
}

.full-report section {
  padding: 28px 8px 0;
}

.full-report h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.08;
}

.report-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 18px;
}

.report-status-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: #f7fcf4;
  border: 1px solid #dfead7;
  display: grid;
  gap: 10px;
}

.report-status-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-status-card b {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}

.report-status-card.report-status-single {
  max-width: 100%;
}

.report-status-card.severity-bad {
  background: #fff1f1;
  border-color: #f2c6c6;
}

.report-status-card.severity-bad span {
  color: #c53d3d;
}

.report-status-card.severity-medium {
  background: #fff5e9;
  border-color: #f3d2a1;
}

.report-status-card.severity-medium span {
  color: #cf7a11;
}

.report-status-card.severity-good {
  background: #eef9ee;
  border-color: #c7e6c7;
}

.report-status-card.severity-good span {
  color: #1f8a3b;
}

.guide-grid--diary {
  margin: 18px 0 14px;
}

.guide-card--diary {
  min-height: auto;
}

.guide-card--diary img {
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.guide-card--diary .guide-card-body {
  display: grid;
  gap: 6px;
}

.guide-card--diary .guide-card-body p,
.guide-card--diary .guide-card-body small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.report-compare-nav {
  margin: 20px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.report-compare-shell {
  padding-top: 18px;
}

.report-compare-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.report-compare-card {
  padding: 18px;
  border-radius: 20px;
  background: #f7fcf4;
  border: 1px solid #dfead7;
}

.report-compare-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-compare-card img {
  height: 240px;
  margin-bottom: 10px;
}

.report-compare-card p {
  margin: 0;
  color: #68806a;
}

.report-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-compare-grid section {
  padding: 22px;
  border-radius: 20px;
  background: #fbfdf8;
  border: 1px solid #e2ecdb;
}

@media (max-width: 900px) {
  .hero-band::before {
    display: none;
  }

  .hero-band::after {
    left: 8px;
    top: 210px;
    width: 156px;
    height: 188px;
    opacity: 0.86;
  }
}

.full-report h3 {
  margin: 24px 0 12px;
  font-size: 24px;
}

.full-report p,
.full-report li,
.full-report dd,
.full-report dt {
  font-size: 16px;
  line-height: 1.45;
}

.full-report .leaf-list li,
.full-report .stop-list li {
  margin-bottom: 14px;
}

.passport {
  text-align: center;
}

.passport .btn {
  margin: 8px auto 0;
}

.passport-content {
  margin-top: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #f7fcf4;
}

.assistant-view {
  max-width: 980px;
}

.assistant-shell {
  min-height: 720px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr) auto auto;
  gap: 18px;
}

.assistant-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.assistant-top h1 {
  margin: 6px 0 10px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.assistant-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.assistant-chat {
  max-height: 480px;
  padding: 18px;
  border-radius: 22px;
  background: #f7fcf4;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.assistant-message {
  max-width: 78%;
  padding: 16px 18px;
  border-radius: 22px;
  line-height: 1.45;
  font-size: 16px;
  font-weight: 600;
}

.assistant-message p {
  margin: 0;
}

.assistant-message.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 7px;
}

.assistant-message.user {
  align-self: flex-end;
  background: #dceeed;
  color: #136b6d;
  border-bottom-right-radius: 7px;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-suggestions button {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 17px;
  color: #136b6d;
  background: #dceeed;
  font-size: 14px;
  font-weight: 800;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.assistant-form input {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #f4f5f0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  outline: none;
}

.calendar-notice-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.passport dl {
  text-align: left;
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr;
  gap: 10px 16px;
  margin: 0;
}

.passport dt {
  color: var(--green);
  font-weight: 800;
}

.passport dd {
  margin: 0;
}

.note-btn {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: #8167ff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 40px, 760px);
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .analysis-preview {
    justify-self: start;
  }

  .steps-grid,
  .audience-grid,
  .example-photo-grid,
  .feature-grid,
  .care-grid,
  .report-layout,
  .pricing-grid,
  .faq-section,
  .fig-showcase,
  .subscription-feature-grid,
  .cabinet-section-grid,
  .guide-topic-grid,
  .guide-grid,
  .guide-detail,
  .guide-detail-grid,
  .guide-detail-lists,
  .guide-plant-grid,
  .mode-layout,
  .calendar-layout,
  .notes-layout,
  .tool-layout {
    grid-template-columns: 1fr;
  }

  .guide-card {
    grid-template-columns: 76px 1fr;
  }

  .guide-catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-card > span {
    grid-column: 2;
    justify-self: start;
  }

  .guide-card div {
    grid-column: 1 / -1;
  }

  .guide-card img {
    width: 76px;
    height: 68px;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .assistant-message {
    max-width: 92%;
  }

  .assistant-teaser,
  .assistant-top,
  .guide-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .example-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fig-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cabinet-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mode-visual,
  .mode-visual img {
    min-height: 300px;
  }

  .pricing-grid {
    gap: 28px;
    width: min(420px, 100%);
  }

  .app-view[data-view="subscription"] .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .unit-economics-panel {
    grid-template-columns: 1fr;
  }

  .benefit-layout,
  .water-calc-layout {
    grid-template-columns: 1fr;
  }

  .benefit-input-panel {
    max-width: 680px;
  }

  .payment-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-plan-picker {
    grid-template-columns: 1fr;
  }

  .payment-field.wide {
    grid-column: span 2;
  }

  .benefit-results {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero-band {
    padding-top: 12px;
  }

  .top-actions {
    width: 100%;
  }

  .top-actions .btn {
    flex: 1 1 150px;
  }

  .hero {
    padding-inline: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lead {
    margin-bottom: 30px;
  }

  .result-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .result-card img {
    width: 100%;
    height: 240px;
  }

  .dashboard-screen {
    grid-template-columns: 148px minmax(0, 1fr);
  }

  .side-brand .brand-text {
    font-size: 14px;
  }

  .app-main {
    padding: 26px 20px 60px;
  }

  .app-cards-row,
  .plants-grid,
  .example-photo-grid,
  .benefit-kpis,
  .benefit-bottom,
  .benefit-details-grid,
  .water-result-grid,
  .water-detail-grid,
  .overview-stats,
  .payment-form,
  .mode-schedule {
    grid-template-columns: 1fr;
  }

  .payment-field.wide {
    grid-column: span 1;
  }

  .cabinet-hero {
    grid-template-columns: 1fr;
  }

  .calendar-hero,
  .notes-hero,
  .tools-hero {
    display: block;
  }

  .calendar-hero-device,
  .notes-hero img,
  .tools-hero img {
    width: 100%;
    margin-top: 20px;
  }

  .cabinet-hero img {
    width: 100%;
    height: 230px;
  }

  .benefit-hero {
    display: block;
  }

  .benefit-hero-kpi {
    width: 100%;
    margin-top: 22px;
  }

  .benefit-chart-head {
    display: block;
  }

  .benefit-chart-head span {
    margin-top: 14px;
  }

  .plants-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .plant-card,
  .add-card {
    min-height: 0;
  }

  .plant-card img {
    height: clamp(210px, 42vw, 300px);
  }

  .history-row {
    grid-template-columns: 28px 1fr;
    border-radius: 22px;
  }

  .history-row .btn {
    grid-column: 2;
    justify-self: start;
  }

  .full-report {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 420px);
  }

  .topbar {
    padding: 16px;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero h1,
  .section-title {
    font-size: 30px;
  }

  .hero-pills span,
  .hero-actions .btn {
    width: 100%;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .fig-showcase,
  .fig-showcase-media,
  .fig-showcase-media img {
    min-height: 0;
  }

  .fig-showcase {
    padding: 18px;
  }

  .fig-section-grid,
  .cabinet-section-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-main {
    padding: 24px 8px 50px;
  }

  .dashboard-screen {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: auto;
    min-height: auto;
    height: auto;
    padding: 18px 14px;
  }

  .side-nav {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .side-nav a {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .plant-card {
    padding: 18px;
  }

  .plant-card h2 {
    font-size: 23px;
  }

  .plant-card img {
    height: 210px;
  }

  .plant-actions {
    grid-template-columns: 1fr;
  }

  .benefit-hero,
  .benefit-input-panel,
  .water-calc-section,
  .benefit-chart,
  .benefit-costs,
  .benefit-verdict,
  .benefit-details,
  .benefit-sources {
    padding: 22px;
  }

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

  .benefit-field select {
    min-height: 50px;
    font-size: 16px;
  }

  .payment-panel {
    padding: 20px;
  }

  .app-view[data-view="subscription"] .pricing-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .benefit-cost-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .benefit-cost-row b {
    text-align: left;
  }

  .benefit-bars {
    padding-inline: 0;
    gap: 18px;
  }

  .report-compare-gallery,
  .report-compare-grid {
    grid-template-columns: 1fr;
  }

  .calendar-main-panel,
  .calendar-side-panel,
  .notes-panel,
  .tool-input-panel,
  .tool-output-panel {
    padding: 18px;
  }

  .calendar-toolbar {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .calendar-icon-btn {
    width: 38px;
    height: 38px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    min-height: 70px;
    padding: 6px;
    border-radius: 10px;
  }

  .calendar-day-num {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 12px;
  }

  .calendar-day-tasks i {
    min-height: 6px;
    padding: 0;
    color: transparent;
    font-size: 0;
  }

  .tool-fields.two,
  .tool-card-grid,
  .tool-metrics,
  .before-after {
    grid-template-columns: 1fr;
  }

  .tool-tabs button {
    flex: 1 1 132px;
  }
}

@media (max-width: 620px) {
  .auth-screen {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 320px;
    padding: 60px 32px 36px;
  }
}

/* Targeted finish pass */
.fig-showcase-media img {
  object-position: center;
}

.landing-screen .pricing-grid {
  width: 100%;
  max-width: 1280px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.landing-screen .price-card {
  min-height: 390px;
}

.app-view[data-view="subscription"] .pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.app-view[data-view="subscription"] .subscription-feature-card {
  min-height: 430px;
  padding: 24px;
}

.app-view[data-view="subscription"] .subscription-feature-card h2 {
  font-size: 24px;
}

.app-view[data-view="subscription"] .subscription-feature-card .leaf-list li {
  font-size: 13px;
  line-height: 1.34;
}

.current-package-offer {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #cfe8c7;
  border-radius: 18px;
  background: #f7fcf4;
}

.current-package-offer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.current-package-offer b {
  display: block;
  margin: 7px 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.current-package-offer p {
  margin-bottom: 14px;
}

.current-package-offer .btn {
  width: 100%;
}

@media (max-width: 720px) {
  .passport {
    text-align: left;
  }

  .passport .btn {
    margin-left: 0;
  }

  .passport-content {
    padding: 16px;
    border-radius: 16px;
  }

  .passport dl {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .passport dt {
    margin-top: 8px;
  }

  .passport dd {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .guide-card {
    min-height: 0;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .guide-card img {
    width: 100%;
    height: 96px;
    border-radius: 12px;
  }

  .guide-card > span {
    top: 16px;
    right: 16px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  .guide-card h2 {
    font-size: 14px;
    line-height: 1.14;
  }

  .guide-card p {
    font-size: 11px;
    line-height: 1.28;
    -webkit-line-clamp: 4;
  }

  .calendar-day {
    min-height: 88px;
    padding: 6px 5px;
  }

  .calendar-day-tasks {
    gap: 3px;
  }

  .calendar-day-tasks i {
    min-height: 18px;
    max-width: 100%;
    padding: 2px 4px;
    color: var(--green);
    font-size: 8px;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Landing continuation in the same AI-scroll style */
.landing-screen .care-grid,
.landing-screen .pricing-grid,
.landing-screen .faq-section {
  position: relative;
}

.landing-screen .section:has(.care-grid),
.landing-screen #pricing,
.landing-screen .faq-section {
  isolation: isolate;
}

.landing-screen .section:has(.care-grid)::before,
.landing-screen #pricing::before,
.landing-screen .faq-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(188, 235, 117, 0.24), transparent 62%);
  filter: blur(3px);
  pointer-events: none;
}

.landing-screen .section:has(.care-grid)::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 10px;
}

.landing-screen #pricing::before {
  width: 520px;
  height: 520px;
  left: -180px;
  top: 110px;
}

.landing-screen .faq-section::before {
  display: none;
}

.landing-screen .care-card,
.landing-screen .price-card,
.landing-screen .faq-item,
.landing-screen .contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 232, 199, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 244, 0.88)),
    #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-screen .care-card::before,
.landing-screen .price-card::before,
.landing-screen .faq-item::before,
.landing-screen .contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime), transparent);
  opacity: 0.78;
}

.landing-screen .care-card::after,
.landing-screen .price-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(11, 123, 53, 0.12);
  border-radius: 999px;
}

.landing-screen .care-card:hover,
.landing-screen .price-card:hover,
.landing-screen .faq-item:hover,
.landing-screen .contact-card:hover {
  border-color: #bde6b0;
  box-shadow: 0 22px 54px rgba(19, 58, 27, 0.13);
  transform: translateY(-6px);
}

.landing-screen .care-card .brand-mark {
  filter: drop-shadow(0 10px 18px rgba(47, 168, 79, 0.18));
}

.landing-screen .care-card h3,
.landing-screen .price-card h3,
.landing-screen .faq-item h3 {
  position: relative;
}

.landing-screen .pricing-grid {
  align-items: stretch;
}

.landing-screen .price-card {
  display: flex;
  flex-direction: column;
}

.landing-screen .price-card .btn {
  margin-top: auto;
}

.landing-screen .badge {
  box-shadow: 0 8px 18px rgba(47, 168, 79, 0.12);
}

.landing-screen .faq-section {
  align-items: stretch;
}

.landing-screen .faq-main {
  min-width: 0;
}

.landing-screen .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal:nth-child(2) {
  transition-delay: 70ms;
}

.scroll-reveal:nth-child(3) {
  transition-delay: 140ms;
}

.scroll-reveal:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1180px) {
  .landing-screen .pricing-grid,
  .app-view[data-view="subscription"] .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-flow-layout {
    grid-template-columns: 1fr;
  }

  .ai-flow-stage {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .landing-screen .pricing-grid,
  .app-view[data-view="subscription"] .pricing-grid {
    grid-template-columns: 1fr;
  }

  .ai-flow-section {
    padding-top: 58px;
  }

  .ai-flow-layout {
    gap: 30px;
  }

  .ai-step {
    padding: 18px 18px 18px 62px;
  }

  .ai-step.active {
    transform: none;
  }

  .ai-flow-stage {
    min-height: 560px;
    border-radius: 24px;
  }

  .ai-device {
    left: 18px;
    top: 26px;
    width: calc(100% - 36px);
  }

  .ai-scan {
    height: 260px;
  }
}

@media (max-width: 1240px) {
  .landing-hero-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-hero-copy h1 {
    max-width: 820px;
  }

  .landing-hero-visual {
    min-height: 740px;
  }

  .landing-hero-report-card {
    right: 20px;
  }

  .landing-hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .landing-hero-topbar {
    padding: 18px 22px;
    flex-wrap: wrap;
  }

  .landing-hero-topbar .topnav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .landing-hero-main {
    padding: 24px 22px 18px;
  }

  .landing-hero-copy h1 {
    font-size: clamp(40px, 9vw, 56px);
  }

  .landing-hero-chip {
    font-size: 15px;
  }

  .landing-hero-visual {
    min-height: 660px;
  }

  .landing-hero-phone {
    width: min(100%, 320px);
    height: 560px;
  }

  .landing-hero-report-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 360px);
    margin: -42px 0 0 auto;
  }

  .landing-hero-badge {
    left: 24px;
    right: 24px;
    bottom: 18px;
    width: auto;
    transform: none;
  }

  .landing-hero-benefits {
    padding: 0 22px 24px;
  }
}

@media (max-width: 640px) {
  .landing-hero-shell {
    border-radius: 28px;
  }

  .hero-band::before {
    display: none;
  }

  .hero-band::after {
    display: none;
  }

  .landing-hero-topbar {
    padding: 14px 16px;
    gap: 12px;
  }

  .landing-hero-topbar .top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-hero-topbar .top-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .hero-cta-top {
    min-width: 0;
    width: 100%;
    min-height: 52px;
  }

  .hero-main-button {
    min-width: 0;
    width: 100%;
  }

  .landing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-hero-proof {
    align-items: flex-start;
  }

  .landing-hero-visual {
    min-height: 460px;
  }

  .landing-hero-bg-left {
    left: 4px;
    top: 42px;
    width: 110px;
    height: 130px;
  }

  .landing-hero-bg-right {
    right: 8px;
    top: 20px;
    width: 112px;
    height: 132px;
  }

  .landing-hero-phone {
    width: min(100%, 252px);
    height: 388px;
    border-radius: 42px;
  }

  .landing-hero-phone img {
    border-radius: 30px;
  }

  .landing-hero-report-card {
    width: 100%;
    max-width: 320px;
    margin-top: -10px;
  }

  .landing-hero-benefits {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy h1 {
    font-size: clamp(22px, 11vw, 44px);
    line-height: 0.98;
  }

  .landing-hero-chip {
    min-height: 40px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .landing-hero-lead {
    font-size: 16px;
    line-height: 1.45;
  }
}

.journey-section,
.showcase-section,
.refined-audience-section,
.refined-feature-section {
  position: relative;
}

.journey-shell {
  position: relative;
  padding: 8px 0 10px;
  text-align: center;
}

.journey-chip {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 18px;
  border: 1px solid rgba(171, 210, 154, 0.85);
  border-radius: 999px;
  background: rgba(252, 255, 249, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.journey-chip span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7fff1 0%, #ddefd1 100%);
}

.journey-chip img {
  width: 16px;
  height: 16px;
}

.journey-title {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 0.96;
}

.journey-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.journey-steps {
  position: relative;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 62px;
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 150, 74, 0.1) 0%, rgba(92, 150, 74, 0.5) 50%, rgba(92, 150, 74, 0.1) 100%);
}

.journey-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey-step-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f6ffef 0%, #e3f3d4 100%);
  border: 1px solid rgba(177, 210, 154, 0.92);
  box-shadow: 0 20px 46px rgba(36, 87, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journey-step-icon i {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
}

.journey-step-icon img {
  width: 38px;
  height: 38px;
}

.journey-step strong {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.04;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.journey-step:hover .journey-step-icon,
.journey-step:focus-visible .journey-step-icon {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(24, 84, 42, 0.14);
}

.showcase-shell {
  position: relative;
  margin-top: 10px;
  padding: 48px 42px;
  border-radius: 34px;
  border: 1px solid rgba(219, 234, 205, 0.95);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(252, 255, 248, 0.96) 40%, rgba(242, 250, 235, 0.98) 100%);
  box-shadow: 0 28px 72px rgba(31, 75, 40, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
  gap: 44px;
  overflow: hidden;
}

.showcase-copy .section-title {
  max-width: 720px;
  margin-bottom: 16px;
}

.showcase-lead {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.52;
}

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

.showcase-photo-card {
  position: relative;
  min-height: 194px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(28, 70, 38, 0.14);
}

.showcase-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 28, 12, 0.02) 40%, rgba(9, 28, 12, 0.78) 100%);
}

.showcase-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.showcase-photo-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.showcase-photo-card:hover img,
.showcase-photo-card:focus-visible img {
  transform: scale(1.04);
}

.showcase-report-side {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-report-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 26px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 58px rgba(33, 87, 43, 0.14);
  border: 1px solid rgba(220, 236, 208, 0.95);
}

.showcase-report-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-report-head span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
}

.showcase-report-head img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.showcase-report-head b {
  font-size: 22px;
}

.showcase-report-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.showcase-report-list div {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(221, 234, 214, 0.95);
}

.showcase-report-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.showcase-report-list dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.showcase-report-list dd {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.showcase-report-list div:nth-child(2) dd,
.showcase-report-list div:nth-child(3) dd,
.showcase-report-list div:nth-child(4) dd {
  font-size: 22px;
}

.showcase-report-button {
  margin-top: 22px;
}

.showcase-report-plant {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: 170px;
  max-width: 42%;
  pointer-events: none;
  filter: drop-shadow(0 16px 24px rgba(37, 92, 48, 0.12));
}

.refined-audience-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.refined-audience-card {
  min-height: 278px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(224, 236, 211, 0.95);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.98), rgba(248, 253, 243, 0.96) 46%, rgba(242, 250, 236, 0.98) 100%);
  box-shadow: 0 22px 56px rgba(31, 74, 39, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 20px;
  align-items: end;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.refined-audience-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.refined-audience-copy h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.02;
}

.refined-audience-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.refined-card-link {
  width: fit-content;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(164, 205, 144, 0.95);
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.refined-audience-card img {
  width: 100%;
  align-self: end;
  object-fit: contain;
  transition: transform 180ms ease;
}

.refined-audience-card:hover img,
.refined-audience-card:focus-visible img {
  transform: scale(1.03);
}

.refined-audience-card:hover .refined-card-link,
.refined-audience-card:focus-visible .refined-card-link {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.refined-feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.refined-feature-card {
  min-height: 214px;
  padding: 24px 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(221, 236, 208, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(32, 75, 40, 0.07);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px 18px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.refined-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f6fff0 0%, #dff2d1 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.refined-feature-icon img {
  width: 24px;
  height: 24px;
}

.refined-feature-copy h3 {
  margin: 2px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.refined-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.refined-feature-art {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  width: 128px;
  max-width: 58%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(39, 95, 49, 0.1));
  transition: transform 180ms ease;
}

.refined-feature-card:hover,
.refined-feature-card:focus-visible,
.refined-audience-card:hover,
.refined-audience-card:focus-visible {
  box-shadow: 0 24px 58px rgba(29, 76, 39, 0.12);
  transform: translateY(-2px);
}

.refined-feature-card:hover .refined-feature-art,
.refined-feature-card:focus-visible .refined-feature-art {
  transform: scale(1.04);
}

.refined-audience-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.refined-audience-card {
  min-height: 0;
  padding: 22px 24px;
  border-radius: 24px;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.refined-audience-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  background: linear-gradient(180deg, #f6fff0 0%, #dff2d1 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.refined-audience-icon img {
  width: 28px;
  height: 28px;
}

.refined-audience-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

.refined-audience-copy p {
  font-size: 16px;
  line-height: 1.5;
}

.refined-card-link {
  margin-top: 0;
  align-self: center;
  justify-self: end;
  background: #f3faed;
}

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

.refined-feature-card {
  min-height: 0;
  padding: 18px 20px;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  background: rgba(252, 255, 249, 0.96);
}

.refined-feature-copy h3 {
  margin: 2px 0 8px;
  font-size: 20px;
}

.refined-feature-copy p {
  font-size: 15px;
  line-height: 1.45;
}

.refined-feature-art {
  display: none;
}

.refined-feature-card:hover,
.refined-feature-card:focus-visible,
.refined-audience-card:hover,
.refined-audience-card:focus-visible {
  background: rgba(246, 251, 241, 0.98);
  box-shadow: 0 22px 48px rgba(29, 76, 39, 0.1);
  transform: translateY(-2px);
}

.refined-audience-card:hover .refined-card-link,
.refined-audience-card:focus-visible .refined-card-link {
  background: #eaf6df;
  color: var(--brand-dark);
  transform: none;
}

@media (max-width: 1180px) {
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-steps::before {
    display: none;
  }

  .showcase-shell {
    grid-template-columns: 1fr;
  }

  .showcase-report-side {
    min-height: 380px;
  }

  .refined-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .journey-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .journey-subtitle,
  .showcase-lead,
  .refined-audience-copy p,
  .refined-feature-copy p {
    font-size: 16px;
  }

  .journey-step strong {
    font-size: 22px;
  }

  .showcase-shell {
    padding: 30px 22px;
    gap: 28px;
  }

  .showcase-photo-grid,
  .refined-feature-grid {
    grid-template-columns: 1fr;
  }

  .refined-audience-card {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
  }

  .refined-audience-icon {
    justify-self: center;
    align-self: center;
  }

  .refined-card-link {
    justify-self: start;
  }

  .refined-feature-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .journey-chip {
    font-size: 13px;
    padding: 8px 14px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .journey-step {
    padding: 0;
  }

  .journey-step-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 16px;
  }

  .journey-step-icon img {
    width: 28px;
    height: 28px;
  }

  .showcase-photo-card {
    min-height: 156px;
  }

  .showcase-report-card {
    padding: 20px 18px;
  }

  .showcase-report-list dd {
    font-size: 22px;
  }

  .showcase-report-list div:nth-child(2) dd,
  .showcase-report-list div:nth-child(3) dd,
  .showcase-report-list div:nth-child(4) dd {
    font-size: 18px;
  }

  .showcase-report-plant {
    width: 122px;
    right: -6px;
    bottom: -16px;
  }

  .refined-audience-copy h3,
  .refined-feature-copy h3 {
    font-size: 22px;
  }
}

@media (max-width: 720px) {
  .passport {
    text-align: left;
  }

  .passport .btn {
    margin-left: 0;
  }

  .passport-content {
    padding: 16px;
    border-radius: 16px;
  }

  .passport dl {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .passport dt {
    margin-top: 8px;
  }

  .passport dd {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .guide-card {
    min-height: 0;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .guide-card img {
    width: 100%;
    height: 96px;
    border-radius: 12px;
  }

  .guide-card > span {
    top: 16px;
    right: 16px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  .guide-card h2 {
    font-size: 14px;
    line-height: 1.14;
  }

  .guide-card p {
    font-size: 11px;
    line-height: 1.28;
    -webkit-line-clamp: 4;
  }

  .calendar-day {
    min-height: 88px;
    padding: 6px 5px;
  }

  .calendar-day-tasks {
    gap: 3px;
  }

  .calendar-day-tasks i {
    min-height: 18px;
    max-width: 100%;
    padding: 2px 4px;
    color: var(--green);
    font-size: 8px;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
