:root {
  --green-dark: #0e5f2e;
  --green: #35c759;
  --green-soft: #dcfce7;
  --ink: #07110b;
  --ink-soft: #26332b;
  --muted: #66756c;
  --line: rgba(14, 95, 46, 0.13);
  --white: #ffffff;
  --wash: #f5f8f6;
  --shadow: 0 24px 70px rgba(7, 17, 11, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #f7fbf8;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(53, 199, 89, 0.18);
  border-top-color: var(--green);
  animation: spin 0.9s linear infinite;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 22px;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(14, 95, 46, 0.12);
  backdrop-filter: blur(22px);
}

.navbar {
  width: min(1180px, 100%);
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 650;
  color: rgba(7, 17, 11, 0.72);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 12px 28px rgba(14, 95, 46, 0.2);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14, 95, 46, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
  transition: transform 0.25s ease;
}

.section-shell,
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc((100vw - 1180px) / -2);
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 23%, rgba(53, 199, 89, 0.3), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(14, 95, 46, 0.15), transparent 32%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 74%);
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 95, 46, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 95, 46, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.field-line {
  position: absolute;
  width: 56vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(53, 199, 89, 0.7), transparent);
  transform: rotate(-16deg);
  opacity: 0.55;
}

.line-one {
  left: -12%;
  top: 36%;
}

.line-two {
  right: -14%;
  bottom: 23%;
}

.particle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(53, 199, 89, 0.8);
  animation: float 7s ease-in-out infinite;
}

.p1 { left: 14%; top: 24%; }
.p2 { left: 47%; top: 16%; animation-delay: 1.2s; }
.p3 { right: 18%; top: 66%; animation-delay: 2.1s; }
.p4 { left: 33%; bottom: 18%; animation-delay: 3s; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(53, 199, 89, 0.16);
}

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

h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: clamp(3rem, 6vw, 6.45rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.68;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
}

.hero-bullets span,
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(14, 95, 46, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: #183522;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(14, 95, 46, 0.07);
}

.hero-bullets span::before,
.price-card li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.hero-actions,
.trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 18px 36px rgba(14, 95, 46, 0.24), 0 0 40px rgba(53, 199, 89, 0.15);
}

.btn-secondary,
.btn-plan {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(14, 95, 46, 0.16);
}

.trust-badges {
  margin-top: 26px;
}

.trust-badges span {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 0.78rem;
  color: var(--muted);
}

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

.hero-glow {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 199, 89, 0.32), transparent 68%);
  filter: blur(4px);
  animation: breathe 5s ease-in-out infinite;
}

.main-mockup {
  position: relative;
  z-index: 2;
  width: min(610px, 112%);
  filter: drop-shadow(0 34px 54px rgba(7, 17, 11, 0.2));
  animation: float 7s ease-in-out infinite;
}

.floating-card,
.metric-pill {
  position: absolute;
  z-index: 3;
  width: min(250px, 48vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 0.88rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.card-diagnosis {
  left: -18px;
  top: 18%;
  animation: float 6s ease-in-out infinite 0.4s;
}

.card-alert {
  right: -10px;
  bottom: 20%;
  animation: float 6.6s ease-in-out infinite 1.1s;
}

.metric-pill {
  right: 14%;
  top: 10%;
  width: 170px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.metric-pill span {
  display: block;
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.section {
  padding: 110px 0;
}

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

.section-heading h2,
.ai-copy h2,
.dashboard-copy h2,
.final-cta h2 {
  margin: 12px 0 14px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.section-heading p,
.ai-copy p,
.dashboard-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.feature-grid,
.benefit-grid,
.notification-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.timeline-step,
.benefit-item,
.notification,
.testimonial,
.price-card,
.dashboard-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(7, 17, 11, 0.06);
}

.feature-card {
  min-height: 232px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 199, 89, 0.42);
  box-shadow: 0 26px 64px rgba(14, 95, 46, 0.12);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 95, 46, 0.12), rgba(53, 199, 89, 0.2));
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--green-dark);
}

.icon-chat::before { width: 24px; height: 16px; left: 11px; top: 12px; border-radius: 5px; }
.icon-chat::after { width: 8px; height: 8px; left: 16px; top: 25px; transform: rotate(45deg); }
.icon-camera::before { width: 25px; height: 18px; left: 10px; top: 15px; border-radius: 5px; }
.icon-camera::after { width: 8px; height: 8px; left: 19px; top: 20px; border-radius: 50%; background: var(--white); }
.icon-audio::before { width: 5px; height: 24px; left: 14px; top: 11px; border-radius: 10px; box-shadow: 8px 4px 0 var(--green-dark), 16px -2px 0 var(--green-dark); }
.icon-chart::before { width: 6px; height: 22px; left: 12px; bottom: 11px; border-radius: 6px; box-shadow: 10px -8px 0 var(--green-dark), 20px -2px 0 var(--green-dark); }
.icon-bell::before { width: 22px; height: 21px; left: 12px; top: 12px; border-radius: 12px 12px 7px 7px; }
.icon-bell::after { width: 10px; height: 4px; left: 18px; top: 34px; border-radius: 4px; }
.icon-mic::before { width: 13px; height: 24px; left: 17px; top: 9px; border-radius: 12px; }
.icon-mic::after { width: 24px; height: 12px; left: 11px; top: 24px; border: 3px solid var(--green-dark); border-top: 0; border-radius: 0 0 18px 18px; background: transparent; }

.feature-card h3,
.timeline-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p,
.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.voice-example {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #f1fbf4;
  color: var(--green-dark);
  font-weight: 760;
  line-height: 1.45;
}

.how,
.benefits,
.pricing,
.faq {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--wash);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 95, 46, 0.08), rgba(53, 199, 89, 0.72), rgba(14, 95, 46, 0.08));
}

.timeline-step {
  position: relative;
  padding: 30px;
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  font-weight: 900;
  box-shadow: 0 0 0 10px #effaf2;
}

.ai-section,
.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}

.simple-mockup {
  width: min(360px, 100%);
  margin-top: 32px;
  filter: drop-shadow(0 24px 44px rgba(7, 17, 11, 0.18));
}

.chat-showcase {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(14, 95, 46, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 251, 246, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(53, 199, 89, 0.12), transparent 28%);
  box-shadow: var(--shadow);
}

.chat-card {
  max-width: 82%;
  padding: 15px 17px;
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1.46;
}

.chat-card.user {
  justify-self: end;
  color: var(--white);
  background: var(--green-dark);
}

.chat-card.ai {
  justify-self: start;
  color: #193321;
  background: var(--white);
  border: 1px solid rgba(14, 95, 46, 0.12);
}

.image-chat::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-right: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.32);
}

.benefit-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-item {
  min-height: 112px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  color: #16331f;
  font-size: 1.05rem;
  font-weight: 850;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 199, 89, 0.18), transparent 28%),
    var(--white);
}

.dashboard-copy {
  max-width: 540px;
}

.finance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.finance-stats span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.finance-stats strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.dashboard-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-panel {
  position: absolute;
  left: 0;
  top: 26px;
  z-index: 2;
  width: min(390px, 82%);
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
}

.panel-top,
.ledger span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.panel-top strong,
.ledger strong {
  color: var(--green-dark);
}

.bar-chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 24px 0;
}

.bar-chart span {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 30px rgba(53, 199, 89, 0.18);
}

.ledger {
  display: grid;
  gap: 10px;
}

.dashboard-visual img {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: min(560px, 88%);
  filter: drop-shadow(0 34px 54px rgba(7, 17, 11, 0.19));
}

.alerts-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(53, 199, 89, 0.16), transparent 26%),
    #061109;
  color: var(--white);
}

.alerts-section .section-heading p,
.alerts-section .section-kicker {
  color: #b8f3c7;
}

.notification-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notification {
  min-height: 132px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  line-height: 1.55;
}

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

.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px;
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(53, 199, 89, 0.32), transparent 35%),
    linear-gradient(145deg, #07110b, #0e5f2e 72%);
  transform: translateY(-16px);
  box-shadow: 0 30px 86px rgba(14, 95, 46, 0.27);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: var(--radius);
  color: #07220f;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.plan-badge.muted {
  color: var(--green-dark);
  background: var(--green-soft);
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.price {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: currentColor;
  opacity: 0.66;
  font-size: 0.95rem;
}

.price-card ul {
  min-height: 248px;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 13px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card .btn {
  width: 100%;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  min-height: 210px;
  padding: 28px;
  color: #183522;
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 650;
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 120px 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(53, 199, 89, 0.34), transparent 34%),
    linear-gradient(135deg, #020503, #0b2e17 54%, #061109);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.btn-mega {
  min-height: 64px;
  margin-top: 18px;
  padding: 0 34px;
  color: #061109;
  background: var(--green);
  box-shadow: 0 0 60px rgba(53, 199, 89, 0.38);
  font-size: 1rem;
}

.site-footer {
  padding: 48px 20px 28px;
  background: #f7faf8;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.footer-inner img {
  width: 145px;
}

.footer-inner p,
.copyright {
  color: var(--muted);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 750;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: var(--white);
}

.copyright {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.14s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.82; }
  50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 980px) {
  .site-header {
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(14, 95, 46, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: #f2fbf4;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .ai-section,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .feature-grid,
  .timeline,
  .pricing-grid,
  .testimonial-grid,
  .notification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    height: 58px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-bullets,
  .feature-grid,
  .timeline,
  .pricing-grid,
  .testimonial-grid,
  .notification-grid,
  .benefit-grid,
  .finance-stats {
    grid-template-columns: 1fr;
  }

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

  .trust-badges span {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .main-mockup {
    width: 112%;
  }

  .floating-card {
    display: none;
  }

  .metric-pill {
    right: 0;
    top: 0;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading {
    text-align: left;
  }

  .chat-card {
    max-width: 100%;
  }

  .dashboard-visual {
    min-height: 430px;
  }

  .dashboard-panel {
    position: relative;
    width: 100%;
  }

  .dashboard-visual img {
    width: 112%;
    right: -28px;
    bottom: -24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .btn-mega {
    width: 100%;
    padding-inline: 16px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
