:root {
  --green-950: #052b1b;
  --green-900: #073820;
  --green-800: #0a4b2b;
  --green-700: #0c6138;
  --gold-600: #b8873c;
  --gold-500: #d3a65b;
  --gold-300: #f0d5a2;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --muted: #626b68;
  --text: #101915;
  --line: rgba(5, 43, 27, 0.12);
  --shadow: 0 28px 70px rgba(5, 43, 27, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 4%, rgba(211, 166, 91, 0.22), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(5, 43, 27, 0.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 36%, #fff 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, rgba(184, 135, 60, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(184, 135, 60, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 50%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid rgba(5, 43, 27, 0.08);
  backdrop-filter: blur(20px);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-950);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.16rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-950);
  background: linear-gradient(135deg, #ffffff, #f4e7d1);
  border: 1px solid rgba(184, 135, 60, 0.32);
  box-shadow: 0 14px 28px rgba(5, 43, 27, 0.12);
}

.brand-icon svg {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #34423c;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--green-800);
}

.nav-button {
  padding: 12px 18px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(5, 43, 27, 0.18);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
}

.hero-section {
  padding: 82px 0 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 52px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--green-900);
  background: #fff;
  border: 1px solid rgba(184, 135, 60, 0.25);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(5, 43, 27, 0.06);
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(211, 166, 91, 0.18);
}

.hero-copy h1 {
  color: var(--green-950);
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 650px;
  color: #47524e;
  font-size: 1.18rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s ease;
  font-family: inherit;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  box-shadow: 0 18px 34px rgba(5, 43, 27, 0.24);
}

.button.secondary {
  color: var(--green-950);
  background: #fff;
  border-color: rgba(184, 135, 60, 0.28);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-proof div {
  padding-left: 16px;
  border-left: 3px solid var(--gold-500);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--green-950);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-left: 0;
  border-radius: 30px;
  filter: drop-shadow(0 32px 55px rgba(5, 43, 27, 0.18));
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.72;
}

.glow-one {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 8%;
  background: rgba(211, 166, 91, 0.34);
}

.glow-two {
  width: 360px;
  height: 360px;
  left: 3%;
  bottom: 2%;
  background: rgba(5, 43, 27, 0.18);
}

.logo-strip {
  padding: 20px 0;
}

.strip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.strip-grid span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 135, 60, 0.22);
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 800;
}

section {
  padding: 88px 0;
}

.eyebrow {
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.problem-section {
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(211, 166, 91, 0.22), transparent 30%),
    linear-gradient(135deg, var(--green-950), #021a11);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.problem-grid h2,
.testimonial-grid h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.problem-card {
  padding: 34px;
  border: 1px solid rgba(240, 213, 162, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.problem-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.problem-card p:last-child {
  margin-bottom: 0;
}

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

.section-heading h2,
.section-copy h2,
.faq-grid h2,
.demo-card h2 {
  color: var(--green-950);
  font-size: clamp(2.2rem, 4.7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.section-heading p,
.section-copy p,
.faq-grid p,
.demo-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.mock-dashboard,
.phone-preview,
.steps-grid article,
.industry-grid article,
.benefit-grid article,
.testimonial-card,
.faq-list details,
.demo-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 43, 27, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.mock-dashboard {
  padding: 28px;
}

.mock-header,
.mock-brand,
.welcome-card,
.chart-top,
.payment-top,
.payment-body,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-header {
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.mock-brand {
  gap: 10px;
}

.mock-brand span {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
}

.mock-bell {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
}

.welcome-card {
  margin: 18px 0;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.welcome-card p {
  color: var(--green-950);
  font-weight: 900;
  margin-bottom: 4px;
}

.welcome-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.metric-grid article {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.metric-grid span,
.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-grid strong {
  color: var(--green-950);
  font-size: 1.45rem;
  margin: 3px 0;
}

.metric-grid small {
  color: var(--green-700);
  font-weight: 900;
}

.metric-grid small.warning {
  color: #c47026;
}

.chart-card {
  margin-top: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.chart-top span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-700);
  background: rgba(12, 97, 56, 0.08);
  font-weight: 900;
}

.chart-lines {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding-top: 24px;
}

.chart-lines i {
  display: block;
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--green-700), rgba(12, 97, 56, 0.2));
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.quick-actions span {
  padding: 14px 10px;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.platform-copy {
  display: grid;
  gap: 18px;
}

.feature-mini {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(5, 43, 27, 0.08);
}

.feature-mini strong {
  display: block;
  color: var(--green-950);
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.feature-mini p {
  color: var(--muted);
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 70px;
}

.reverse {
  grid-template-columns: 1.06fr 0.94fr;
}

.section-copy p {
  max-width: 610px;
}

.stack-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.stack-list > div {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(5, 43, 27, 0.05);
}

.icon-box {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: var(--green-900);
  font-weight: 950;
  font-size: 0.8rem;
}

.icon-box.gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-300));
  color: var(--green-950);
}

.stack-list strong {
  display: block;
  color: var(--green-950);
  margin-bottom: 3px;
}

.stack-list p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.crm-section {
  background: #fff;
}

.phone-preview {
  max-width: 440px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: auto -60px -100px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(211, 166, 91, 0.16);
}

.phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-950);
  margin-bottom: 24px;
}

.phone-top svg {
  width: 70px;
  height: 70px;
  color: var(--green-900);
}

.phone-preview h3 {
  position: relative;
  z-index: 1;
  color: var(--green-950);
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.phone-preview > p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin-bottom: 24px;
}

.phone-list {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.phone-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.phone-list div:last-child {
  border-bottom: 0;
}

.phone-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  background: var(--green-900);
  font-weight: 900;
}

.phone-list span.gold-bg {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-300));
  color: var(--green-950);
}

.phone-list strong {
  color: var(--green-950);
}

.phone-list small {
  color: var(--muted);
}

.automation-panel,
.payment-panel {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 50%, rgba(211, 166, 91, 0.22), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: 24px;
}

.automation-panel strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.automation-panel div {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 11px 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}

.automation-panel div span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.automation-panel div span.gold-dot {
  background: var(--gold-500);
}

.payments-section {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.payment-top span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
}

.payment-body {
  align-items: center;
  margin-top: 18px;
}

.payment-body small,
.payment-body em,
.donut span {
  display: block;
  color: rgba(255,255,255,0.76);
  font-style: normal;
}

.payment-body strong {
  display: block;
  font-size: 1.9rem;
  margin: 4px 0;
}

.payment-body em {
  color: #79e5aa;
}

.donut {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--green-950) 52%, transparent 53%),
    conic-gradient(var(--gold-500) 0 85%, rgba(255,255,255,0.16) 85% 100%);
  color: #fff;
  font-weight: 950;
  text-align: center;
}

.donut span {
  font-size: 0.7rem;
  margin-top: -32px;
}

.how-section {
  background: var(--green-950);
}

.how-section .section-heading h2,
.how-section .section-heading p {
  color: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps-grid article {
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.steps-grid span {
  display: inline-flex;
  color: var(--gold-300);
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.steps-grid h3 {
  color: #fff;
}

.steps-grid p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}

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

.industry-grid article {
  padding: 22px;
  text-align: center;
  color: var(--green-950);
  font-weight: 900;
  background: #fff;
}

.benefits-section {
  background: #fff;
}

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

.benefit-grid article {
  padding: 28px;
  background: #fff;
}

.benefit-grid h3 {
  color: var(--green-950);
  margin-bottom: 8px;
}

.benefit-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonial-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 26%, rgba(211, 166, 91, 0.22), transparent 28%),
    linear-gradient(135deg, #021a11, var(--green-950));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.testimonial-grid > div > p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
  font-size: 1.04rem;
}

.testimonial-card {
  padding: 36px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(240, 213, 162, 0.18);
  box-shadow: none;
}

.testimonial-card p {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.45;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: rgba(255,255,255,0.68);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
}

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

.faq-list details {
  padding: 21px 24px;
  box-shadow: 0 10px 24px rgba(5, 43, 27, 0.05);
}

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

.faq-list p {
  margin: 12px 0 0;
}

.demo-section {
  padding-top: 40px;
}

.demo-card {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 38px;
  align-items: center;
  padding: 44px;
  background:
    radial-gradient(circle at 86% 22%, rgba(211, 166, 91, 0.18), transparent 34%),
    #fff;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
  font-size: 0.9rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font: inherit;
}

.demo-form textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.demo-form select {
  cursor: pointer;
  background: #fff;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: 3px solid rgba(211, 166, 91, 0.22);
  border-color: var(--gold-500);
}

.demo-form small,
.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.demo-form .button.secondary {
  width: 100%;
}

.hidden {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-950);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.contact-bar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 10px 0;
}

.contact-bar a:hover {
  color: #fff;
}

.services-section {
  background: #fff;
}

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

.service-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 43, 27, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.service-grid h3 {
  color: var(--green-950);
  margin-bottom: 8px;
}

.service-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.ai-section {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.chat-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.chat-bubble {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-bubble.customer {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-950);
}

.chat-bubble.bot {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
}

.chat-bubble.system {
  background: rgba(211, 166, 91, 0.18);
  border: 1px solid rgba(184, 135, 60, 0.28);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.outcome-list {
  margin: 0;
  padding-left: 20px;
  color: #fff;
}

.outcome-list li {
  margin-bottom: 14px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.outcome-list li:last-child {
  margin-bottom: 0;
}

.outcome-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.demo-copy .demo-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-weight: 800;
}

.demo-copy .demo-contact a {
  color: var(--green-800);
}

.demo-copy .demo-contact a:hover {
  color: var(--green-950);
}

.booking-widget {
  display: grid;
  gap: 16px;
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-tab {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-950);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.booking-tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
}

.booking-panel {
  min-height: 520px;
}

.calendly-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.calendly-inline-widget {
  min-width: 280px;
  height: 520px;
}

.calendly-fallback {
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.2s ease;
  box-shadow: 0 18px 34px rgba(5, 43, 27, 0.28);
}

.sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 50;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--green-950);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.legal-card {
  width: min(760px, 100%);
  padding: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--green-950);
  margin: 24px 0 8px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-card h2 {
  color: var(--green-950);
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-updated,
.legal-lead {
  color: var(--muted);
}

.legal-steps {
  color: var(--muted);
  padding-left: 20px;
}

.legal-contact {
  margin: 24px 0;
}

.legal-card a:not(.button) {
  color: var(--green-800);
  font-weight: 800;
}

.legal-card .button {
  margin-top: 12px;
}

.footer {
  padding: 48px 0;
  color: rgba(255,255,255,0.72);
  background: var(--green-950);
}

.footer-brand {
  color: #fff;
}

.footer p {
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1040px) {
  .hero-grid,
  .problem-grid,
  .dashboard-showcase,
  .two-column,
  .reverse,
  .testimonial-grid,
  .faq-grid,
  .demo-card {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  .platform-copy {
    grid-template-columns: repeat(3, 1fr);
  }

  .phone-preview {
    max-width: 520px;
  }

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

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

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-button {
    text-align: center;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

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

  .hero-proof,
  .metric-grid,
  .quick-actions,
  .platform-copy,
  .benefit-grid,
  .steps-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-bar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .sticky-cta {
    display: flex;
  }

  section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }
}

@media (min-width: 781px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 520px) {
  .mock-dashboard,
  .phone-preview,
  .demo-card {
    padding: 22px;
    border-radius: 22px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card p {
    font-size: 1.16rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
