:root {
  --green: #00a83d;
  --green-dark: #0f6850;
  --green-deep: #156455;
  --gray: #cccccc;
  --ink: #101827;
  --muted: #64727f;
  --soft: #f5f7f9;
  --line: #e6ebf0;
  --white: #ffffff;
  --yellow: #ffc400;
  --footer: #111827;
  --shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --container: 1088px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 86px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-130%);
  transition: transform 0.18s ease;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid rgba(230, 235, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 184px 190px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 86px;
}

.brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
}

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

.icp-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.1;
}

.icp-note img {
  width: 90px;
  height: auto;
  margin: -30px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 15px;
  font-weight: 300;
  text-align: right !important;
}

.main-nav a {
  white-space: nowrap;
}

.nav-mobile-only,
.mobile-nav-actions {
  display: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn-large {
  min-width: 158px;
  min-height: 54px;
  border-radius: 9px;
}

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

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

.btn-yellow {
  color: #333;
  border-color: #8fffb3;
  background: #8fffb3;
}

.btn-ghost-light {
  gap: 9px;
  color: #fff;
  border-color: #8fffb3;
  background: transparent;
}

.btn-icon {
  gap: 10px;
}

.btn-icon span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.btn-svg-icon svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  appearance: none;
  color: var(--ink);
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
}

.menu-toggle span {
  position: relative;
  margin: auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before,
.menu-toggle.is-open span::after {
  top: 0;
  background: #2359a7;
}

.menu-toggle.is-open span::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 765px;
  background: #fff;
}

.hero::before {
  position: absolute;
  left: max(-60px, calc((100vw - var(--container)) / 2 - 400px));
  top: 312px;
  z-index: 1;
  width: clamp(830px, 62vw, 1080px);
  height: clamp(160px, 11vw, 205px);
  border: 5px solid var(--green);
  border-right: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
  content: "";
  clip-path: inset(0 0 0 100%);
  animation: hero-stroke-draw-reverse 2.3s cubic-bezier(0.22, 1, 0.36, 1) 1.65s forwards;
}

@keyframes hero-stroke-draw {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-stroke-draw-reverse {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
  padding: 74px 0 60px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  padding-left: 30px;
  top:-20px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 4.75vw, 59px);
  line-height: 1.19;
  letter-spacing: -1.7px;
  font-weight: 600;
}

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

.hero-actions-row {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}

.hero-subtitle {
  max-width: 455px;
  margin: 48px 0 12px;
  color: #607f80;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero-subtitle strong {
  font-weight: 700;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  width: 112px;
  height: 48px;
}

.avatar-stack img {
  width: 112px;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
  
}

.stars {
  color: var(--yellow);
  font-size: 19px;
  letter-spacing: 2px;
}

.companies-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  margin: 0px 0 0px;
  color: #25364d;
  font-size: 18px;
  font-weight: 700;
}

.proof-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 3px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  line-height: 1;
}

.hero-proof-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(400px, 100%);
}

.hero-proof-badges img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.hero-proof-badges img:first-child {
  width: 170px;
}

.hero-proof-badges img:last-child {
  width: 155px;
}

.hero-proof-badges span {
  width: 1px;
  height: 34px;
  background: #f45a63;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 590px;
  height: 690px;
  margin-top: -88px;
  margin-left: -95px;
  pointer-events: none;
  --hero-person-width: 146%;
  --hero-person-x: -20.7%;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  z-index: 3;
  border: 4px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.hero-media::before {
  left: 5.4%;
  top: 6.5%;
  width: 102%;
  height: 64%;
  transform: rotate(-24deg);
}

.hero-media::after {
  left: 8.6%;
  top: 32%;
  width: 85%;
  height: 64%;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(22deg);
}

.hero-media::before,
.hero-media::after {
  clip-path: inset(0 100% 0 0);
  animation: hero-stroke-draw 2.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-media::before {
  animation-delay: 0.42s;
}

.hero-media::after {
  animation-delay: 0.78s;
}

.hero-person {
  position: relative;
  z-index: 2;
  width: var(--hero-person-width);
  height: auto;
  max-width: none;
  transform: translateX(var(--hero-person-x));
}

.hero-media picture {
  display: contents;
}

.clients-section {
  padding: 48px 0 72px;
  text-align: center;
}

.clients-section h2 {
  margin: 0 0 58px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -1px;
}

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

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(128px, 1fr));
  align-items: center;
  gap: 30px 42px;
  max-width: 1050px;
  margin: 0 auto;
}

.client-logo-grid img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}

.demo-section {
  padding: 82px 0 88px;
  border-top: 12px solid #f4f6f8;
  border-bottom: 12px solid #f4f6f8;
  background: #fff;
}

.demo-grid {
  display: grid;
  grid-template-columns: 540px 1fr;
  align-items: center;
  gap: 34px;
}

.video-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}

.video-card img {
  width: 100%;
}

.video-lazy {
  position: relative;
  min-height: 216px;
  background: #0f172a;
}

.video-lazy vturb-smartplayer {
  display: block;
  width: 100%;
}

.video-load-button {
  display: block;
  position: relative;
  width: 100%;
  min-height: 300px;
  padding: 0;
  border: 0;
  background: #0f172a;
  cursor: pointer;
}

.video-load-button img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.94;
}

.video-load-button picture {
  display: block;
  width: 100%;
  height: 100%;
}

.video-play-icon {
  position: absolute;
  left: 49.6%;
  top: 47%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(0, 168, 61, 0.92);
  box-shadow: 0 18px 42px rgba(0, 168, 61, 0.32);
  transform: translate(-50%, -50%);
}

.video-play-icon::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  content: "";
}

.demo-copy {
  padding-left: 6px;
}

.demo-copy h2 {
  margin: 0 0 22px;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: -1px;
  font-weight: 600;
}

.demo-copy > p {
  margin: 0 0 22px;
  color: #5e6576;
  font-size: 14px;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #31405a;
  font-size: 18px;
  font-weight: 300;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  content: "\2713";
}

.check-list.soft {
  gap: 19px;
}

.check-list.soft li {
  color: #6b7280;
  font-size: 16px;
}

.demo-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
}

.demo-actions .btn-outline {
  min-width: 302px;
}

.palm-section {
  overflow: hidden;
  padding: 82px 0 58px;
}

.palm-grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.palm-copy h2 {
  margin: 0 0 28px;
  font-size: 43px;
  line-height: 1.07;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.palm-copy h2 span {
  color: var(--green);
}

.palm-copy p {
  max-width: 560px;
  margin: 0 0 42px;
  color: #6b8b8d;
  font-size: 18px;
  line-height: 1.3;
}

.palm-media {
  position: relative;
  min-height: 436px;
}

.palm-media picture {
  position: absolute;
  top: -90px;
  left: -48px;
  width: 700px;
  max-width: none;
}

.palm-media img {
  max-width: 680px;
  height: auto;
}

.security-section {
  padding: 18px 0 88px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 600;
}

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

.section-title p {
  margin: 13px 0 0;
  color: #333b4c;
  font-size: 17px;
  font-weight: 500;
}

.security-panel {
  overflow: hidden;
  margin: 52px auto 0;
  border: 1px solid #fff;
  border-radius: 14px;
  background: var(--green-dark);
  box-shadow: 0 24px 55px rgba(0, 168, 61, 0.16);
}

.security-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 0;
  background: #fff;
}

.security-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 0 20px;
  border: 3px solid var(--green-dark);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  color: var(--green);
  background: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.security-tab-icon {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

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

.security-content {
  min-height: 350px;
  padding: 56px 78px 58px;
  color: #fff;
}

.security-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
}

.security-pane[hidden] {
  display: none !important;
}

.security-pane.active {
  display: grid;
}

.security-pane ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-pane ul:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.78);
}

.security-pane li {
  position: relative;
  padding-left: 37px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.security-pane li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  content: "\2713";
}

.api-pane.active {
  display: block;
}

.api-pane > div {
  max-width: 860px;
}

.api-pane h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
}

.api-pane p {
  max-width: 790px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}

.api-pane a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0 0 34px;
  padding: 0 30px;
  border: 2px solid #8fffb3;
  border-radius: 13px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.api-pane strong,
.api-pane small {
  display: block;
}

.api-pane strong {
  margin-bottom: 34px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.api-pane small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 400;
}

.testimonials-section {
  padding: 18px 0 76px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 62px;
}

.testimonial-card {
  min-height: 220px;
  padding: 31px 31px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
}

.testimonial-card p {
  min-height: 86px;
  margin: 18px 0 22px;
  color: #536074;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.58;
}

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

.testimonial-card strong {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-card span {
  color: #64748b;
  font-size: 12px;
}

.pricing-section {
  padding: 74px 0 88px;
  background: #f6f8fb;
}

.billing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 48px auto 30px;
  padding: 7px;
  border: 1px solid #dfe7ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 36, 64, 0.08);
}

.billing-tabs button {
  min-width: 150px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #435169;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

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

.billing-tabs button > span {
  display: inline-block;
  margin-left: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1f5aa8;
  background: #edf3ff;
  font-size: 12px;
  font-weight: 700;
}

.discount-bolt {
  color: var(--green);
  font-weight: 700;
  margin: 0;
  padding: 0;
  background: transparent;
}

.billing-tabs button.active > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.billing-tabs button.active .discount-bolt {
  color: #90f1ad;
}

.included-title {
  margin-bottom: 20px;
  text-align: center;
  color: #3b4658;
  font-size: 16px;
  font-weight: 600;
}

.included-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto 48px;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid #d8dee6;
  border-radius: 999px;
  color: #151b27;
  background: #fff;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

.included-list li::after {
  margin-left: 10px;
  color: #48ab53;
  font-weight: 700;
  content: "\2713";
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 34px 30px 24px;
  border: 1px solid #e0e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(28, 44, 71, 0.08);
}

.price-card.featured {
  color: var(--ink);
  border: 2px solid var(--green-dark);
  background: #fffdf8;
  box-shadow: 0 30px 70px rgb(164 255 0 / 16%);
  transform: translateY(-8px);
}

.price-card h3 {
  margin: 0 0 10px;
  color: #202a38;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 600;
}

.price-card.featured h3,
.price-card.featured h4,
.price-card.featured li,
.price-card.featured .price,
.price-card.featured .price small {
  color: inherit;
}

.price {
  margin: 10px 0 26px;
  color: #101827;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

.price small {
  color: #8a97aa;
  font-size: 13px;
  font-weight: 500;
}

.price-total {
  display: block;
  margin-top: 8px;
  color: #6f7d91;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.price-total[hidden] {
  display: none;
}

.price-card h4 {
  margin: 0 0 22px;
  padding-top: 22px;
  border-top: 1px solid #e8eef5;
  color: #415067;
  font-size: 16px;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(15, 104, 80, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.plan-person {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  color: #333;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(15, 104, 80, 0.18);
  border: 1px solid #333;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.price-card.featured .plan-trial {
  background: var(--green-dark);
}

.price-card li {
  position: relative;
  padding-left: 31px;
  color: #47566b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  content: "\2713";
}

.price-card.featured li::before {
  color: var(--green);
}

.sold-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 999px;
  color: #f0f0f0;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.addon {
  position: static;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e8eef5;
  color: #526176;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.featured .addon {
  color: #526176;
}

.addon label {
  display: block;
  margin-top: 5px;
  padding: 9px 6px;
  color: #1f5132;
  background: #e9fff0;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
}

.addon input {
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
  vertical-align: middle;
}

.consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 34px;
  margin: 4px 0 31px;
  border: 1px solid #d9e2eb;
  border-radius: 999px;
  color: #65758a;
  font-size: 15px;
  font-weight: 600;
}

.price-card.custom {
  text-align: center;
}

.price-card.custom ul {
  text-align: left;
}

.price-card.custom .plan-person {
  margin-top: auto;
}

.plan-consultant {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 58px 0 30px;
  text-align: center;
}

.plan-consultant p {
  margin: 0;
  color: #5b6c84;
  font-size: 18px;
  font-weight: 500;
}

.plan-consultant a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 260px;
  min-height: 58px;
  padding: 0 28px;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(30, 49, 80, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trial-banner {
  margin: 0 auto;
  max-width: 980px;
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #116451, #0a9a42);
  text-align: center;
}

.trial-banner strong {
  display: block;
  margin-bottom: 22px;
  font-size: 27px;
  font-weight: 600;
}

.trial-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: var(--green);
  background: #fff;
  font-size: 26px;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.paperless-section {
  overflow: hidden;
  padding: 76px 0 74px;
}

.paperless-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.paperless-copy h2 {
  margin: 0 0 44px;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 600;
}

.paperless-copy h2 span {
  color: var(--green);
}

.paperless-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 22px;
  width: 720px;
  max-width: calc(100vw - 48px);
  margin-left: -18px;
}

.paperless-metrics-grid img {
  width: 100%;
  min-width: 0;
}

.paperless-copy p {
  max-width: 560px;
  margin: 64px 0 0;
  color: #56757c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.paperless-copy p strong {
  font-weight: 700;
}

.sustainability-seal {
  width: 450px;
  max-width: none;
  margin-left: 50px;
}

.sustainability-seal img {
  width: 100%;
  height: auto;
}

.faq-section {
  padding: 86px 0 78px;
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 846px;
  margin: 70px auto 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #dce3ea;
  border-radius: 10px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 21px 54px 18px 26px;
  color: #232b3b;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 26px;
  top: 21px;
  color: #9aa4b2;
  content: "⌄";
}

.faq-list details[open] summary::after {
  content: "⌃";
}

.faq-list p {
  margin: 0;
  padding: 0 26px 25px;
  color: #677386;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-cta {
  display: grid;
  justify-items: center;
  gap: 23px;
  margin-top: 72px;
}

.faq-cta > span {
  color: #697586;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 260px;
  min-height: 58px;
  padding: 0 28px;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(30, 49, 80, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.whatsapp-mini-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.4 4 15c0 2.2.6 4.3 1.7 6.1L4 29l8.1-1.6c1.2.4 2.5.6 3.9.6 6.6 0 12-5.4 12-12S22.6 3 16 3zm0 22c-1.2 0-2.3-.2-3.3-.6l-.5-.2-4.7.9 1-4.5-.3-.5c-.8-1.5-1.3-3.2-1.3-5.1 0-5 4.1-9.1 9.1-9.1S25.1 10 25.1 15 21 25 16 25zm5-6.8c-.3-.1-1.7-.8-1.9-.9-.3-.1-.5-.1-.7.1-.2.3-.8.9-.9 1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.5-1.5-1.8-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.1 3.3 5.2 4.6 3.1 1.2 3.1.8 3.7.8.6-.1 1.7-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.2-.3-.2-.5-.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.4 4 15c0 2.2.6 4.3 1.7 6.1L4 29l8.1-1.6c1.2.4 2.5.6 3.9.6 6.6 0 12-5.4 12-12S22.6 3 16 3zm0 22c-1.2 0-2.3-.2-3.3-.6l-.5-.2-4.7.9 1-4.5-.3-.5c-.8-1.5-1.3-3.2-1.3-5.1 0-5 4.1-9.1 9.1-9.1S25.1 10 25.1 15 21 25 16 25zm5-6.8c-.3-.1-1.7-.8-1.9-.9-.3-.1-.5-.1-.7.1-.2.3-.8.9-.9 1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.5-1.5-1.8-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.5-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.1 3.3 5.2 4.6 3.1 1.2 3.1.8 3.7.8.6-.1 1.7-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.2-.3-.2-.5-.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.media-section {
  padding: 68px 0 72px;
  text-align: center;
  background: #fff;
}

.media-section h2 {
  margin: 0 0 42px;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}

.media-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  align-items: center;
  gap: 46px;
  max-width: 790px;
  margin: 0 auto;
}

.media-logo-grid img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.app-section {
  padding: 76px 0 70px;
  color: #fff;
  background: var(--green);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 180px;
}

.app-section h2 {
  margin: 0 0 24px;
  font-size: 43px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1px;
}

.app-section p {
  margin: 0 0 34px;
  font-size: 16px;
}

.store-row {
  display: flex;
  gap: 16px;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 7px;
  min-width: 164px;
  min-height: 62px;
  padding: 9px 15px;
  border-radius: 9px;
  color: #fff;
  background: #050608;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.store-icon {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.store-button small {
  display: block;
  color: #b9c0cc;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.1;
}

.qr-card {
  width: 220px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(0, 62, 28, 0.18);
}

.consultant-cta {
  padding: 86px 0 96px;
  background: #f6f8fb;
}

.consultant-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 58px 56px 52px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #116451, #0a9a42);
  text-align: center;
  box-shadow: 0 32px 70px rgba(31, 80, 154, 0.22);
}

.consultant-card h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3.9vw, 48px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1px;
}

.consultant-card p {
  max-width: 690px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.consultant-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.consultant-actions .btn {
  min-width: 245px;
  min-height: 58px;
  border-radius: 13px;
  font-size: 17px;
  font-weight: 600;
}

.consultant-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultant-card li {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
}

.consultant-card li::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border-radius: 50%;
  color: #333;
  background: #b5ffcd;
  font-size: 13px;
  content: "\2713";
}

.site-footer {
  color: #8c96a6;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr 230px;
  gap: 36px;
  padding: 58px 0 47px;
}

.footer-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px !important;
  color: #fff !important;
  text-decoration: none;
}

.footer-logo img {
  width: 188px;
  height: auto;
  margin: 0;
}

.footer-brand p {
  max-width: 185px;
  margin: 0 0 17px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-address {
  max-width: 240px;
  margin: 0 0 20px;
  color: #aab4c3;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
}

.social-links {
  display: flex;
  gap: 11px;
}

.social-links a {
  display: inline-grid !important;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-links a[aria-label="YouTube"] svg path:last-child {
  fill: var(--footer);
}

.site-footer h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.site-footer a {
  display: block;
  margin-bottom: 14px;
  color: #8c96a6;
  font-size: 13px;
  font-weight: 500;
}

.footer-badges {
  display: block;
  width: 230px;
  height: auto;
  align-self: start;
  object-fit: contain;
}

.footer-badges img {
  width: 100%;
  height: auto;
}

.copyright {
  padding: 23px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #727b8a;
  font-size: 12px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: min(250px, calc(100vw - 44px));
  color: #263247;
  text-decoration: none;
}

.whatsapp-float-message {
  position: relative;
  display: block;
  padding: 12px 14px;
  border-radius: 18px 18px 6px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 29, 49, 0.18);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.whatsapp-float-message::after {
  position: absolute;
  right: 27px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
  content: "";
}

.whatsapp-float-message strong {
  color: #174c8d;
  font-weight: 700;
}

.whatsapp-float-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: #19c66b;
  box-shadow: 0 16px 32px rgba(0, 168, 61, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-button::after {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #ff4059;
  content: "";
}

.whatsapp-float-button .whatsapp-mini-icon {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover .whatsapp-float-button {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 168, 61, 0.34);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(760px, calc(100vw - 32px));
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(216, 225, 234, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 2px;
  color: #1d293b;
  font-size: 13px;
  font-weight: 700;
}

.cookie-copy {
  min-width: 0;
}

.cookie-copy p {
  margin: 0;
  color: #455268;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cookie-banner a {
  display: inline;
  margin: 0;
  color: var(--green);
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  min-width: 0;
}

.cookie-btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.cookie-btn-muted {
  color: #344154;
  border-color: #d8e1ea;
  background: #fff;
}

@media (hover: hover) {
  .btn:hover,
  .store-button:hover,
  .plan-trial:hover,
  .plan-consultant a:hover,
  .whatsapp-link:hover,
  .trial-banner a:hover,
  .api-pane a:hover,
  .cookie-btn:hover,
  .mobile-nav-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  }

  .video-load-button:hover .video-play-icon {
    transform: translate(-50%, calc(-50% - 2px));
    box-shadow: 0 22px 48px rgba(0, 168, 61, 0.38);
  }

  .menu-toggle:hover,
  .security-tabs button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  }
}

.btn:focus-visible,
.store-button:focus-visible,
.plan-trial:focus-visible,
.plan-consultant a:focus-visible,
.whatsapp-link:focus-visible,
.trial-banner a:focus-visible,
.api-pane a:focus-visible,
.cookie-btn:focus-visible,
.main-nav a:focus-visible,
.billing-tabs button:focus-visible,
.security-tabs button:focus-visible,
.video-load-button:focus-visible,
.whatsapp-float:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(0, 168, 61, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 184px 1fr 44px;
  }

  .icp-note {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 92;
  }

  .brand {
    position: relative;
    z-index: 92;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    gap: 0;
    padding: 102px 28px 30px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    text-align: left !important;
    overflow-y: auto;
  }

  .main-nav.is-open a {
    width: 100%;
    min-height: 60px;
    padding: 17px 0;
    color: #1d2736;
    border-bottom: 1px solid #eef2f6;
    font-size: 19px;
    font-weight: 500;
    text-align: left !important;
    white-space: normal;
  }

  .main-nav.is-open .nav-mobile-only {
    display: block;
  }

  .main-nav.is-open .mobile-nav-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .main-nav.is-open .mobile-nav-actions a {
    min-height: 60px;
    padding: 0 22px;
    border: 2px solid var(--green);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    text-align: center !important;
  }

  .hero-grid,
  .demo-grid,
  .palm-grid,
  .paperless-grid,
  .app-grid {
    gap: 36px;
  }

  .hero-person {
    width: var(--hero-person-width);
  }

  .palm-media picture {
    width: 700px;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .demo-grid,
  .palm-grid,
  .paperless-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-media {
    margin: 0 auto;
  }

  .hero-actions-row {
    margin-top: -10px;
  }

  .hero-subtitle {
    margin-top: 0px;
  }

  .hero-person {
    width: var(--hero-person-width);
    transform: translateX(var(--hero-person-x));
  }

  .clients-section h2,
  .section-title h2,
  .paperless-copy h2,
  .palm-copy h2 {
    font-size: 36px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .demo-grid {
    text-align: left;
  }

  .demo-copy h2 {
    font-size: 34px;
  }

  .demo-actions {
    flex-wrap: wrap;
  }

  .demo-actions .btn,
  .demo-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .palm-media {
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .palm-media picture {
    position: static;
    width: min(100%, 700px);
  }

  .palm-copy {
    width: 100%;
    min-width: 0;
  }

  .security-tabs,
  .security-pane,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .security-tabs button {
    min-height: 60px;
    border-bottom: 3px solid var(--green-dark);
    border-radius: 12px;
  }

  .security-content {
    padding: 32px 28px;
  }

  .security-pane ul:first-child {
    border-right: 0;
  }

  .consultant-actions,
  .consultant-card ul {
    flex-direction: column;
    align-items: stretch;
  }

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

  .included-list {
    justify-content: center;
  }

  .sustainability-seal {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .app-grid {
    gap: 42px;
  }

  .qr-card {
    margin: 0 auto;
  }

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 98px;
  }

  body {
    padding-top: 72px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .header-inner {
    position: relative;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    grid-template-columns: 1fr 44px;
    min-height: 72px;
    padding-right: 58px;
  }

  .menu-toggle {
    display: grid !important;
    position: absolute;
    top: 14px;
    right: auto;
    left: auto;
    right: 0;
    z-index: 95;
    flex: 0 0 44px;
    margin-left: auto;
    grid-column: auto;
    justify-self: auto;
    border-color: #dfe6ee;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  }

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

  .icp-note {
    position: relative;
    z-index: 92;
    display: flex;
    flex: 1 1 auto;
    gap: 4px;
    min-width: 0;
    margin-right: 58px;
    color: #6b7280;
    font-size: 7.5px;
    line-height: 1.05;
  }

  .icp-note img {
    width: 52px;
    max-width: 52px;
    margin: -16px 0;
  }

  .hero-grid {
    display: grid;
  }

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.16;
    letter-spacing: -0.6px;
    order: 1;
  }

  .hero-actions-row,
  .store-row,
  .billing-tabs {
    flex-direction: column;
  }

  .billing-tabs {
    width: 100%;
    border-radius: 22px;
  }

  .hero-actions-row .btn,
  .store-button,
  .billing-tabs button {
    width: 100%;
  }

  .clients-section h2,
  .demo-copy h2,
  .palm-copy h2,
  .palm-copy p,
  .section-title h2,
  .section-title p,
  .paperless-copy h2,
  .paperless-copy p,
  .consultant-card h2,
  .consultant-card p,
  .check-list li,
  .companies-proof {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .client-logo-grid,
  .demo-grid,
  .palm-grid,
  .security-panel,
  .pricing-grid,
  .paperless-grid,
  .app-grid {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    order: 2;
    width: min(100%, 390px);
    height: 560px;
    overflow: visible;
    --hero-person-width: 182%;
    --hero-person-x: -22.4%;
  }

  .hero-media::before {
    left: -9%;
    top: -3%;
    width: 128%;
    height: 48%;
    transform: rotate(-20deg);
  }

  .hero-media::after {
    left: 10%;
    top: 20%;
    width: 124%;
    height: 50%;
    transform: rotate(20deg);
  }

  .hero-person {
    width: var(--hero-person-width);
    transform: translateX(var(--hero-person-x));
  }

  .hero-actions-row {
    order: 3;
  }

  .hero-subtitle {
    order: 4;
  }

  .rating-row {
    order: 5;
  }

  .companies-proof {
    order: 6;
  }

  .hero-proof-badges {
    order: 7;
  }

  .companies-proof {
    display: grid;
    grid-template-columns: 23px minmax(0, 1fr);
    align-items: flex-start;
    font-size: 17px;
    line-height: 1.25;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }

  .rating-row {
    flex-wrap: wrap;
  }

  .hero-proof-badges {
    width: 100%;
    max-width: none;
    gap: 12px;
  }

  .hero-proof-badges img:first-child {
    width: 180px;
  }

  .hero-proof-badges img:last-child {
    width: 180px;
  }

  .hero-proof-badges span {
    height: 30px;
  }

  .clients-section,
  .demo-section,
  .palm-section,
  .security-section,
  .testimonials-section,
  .pricing-section,
  .paperless-section,
  .faq-section,
  .media-section,
  .app-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .clients-section h2,
  .section-title h2,
  .paperless-copy h2,
  .palm-copy h2,
  .app-section h2 {
    font-size: 32px;
  }

  .check-list li {
    font-size: 16px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }

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

  .price-card {
    min-height: auto;
  }

  .addon {
    position: static;
    margin-top: 24px;
  }

  .trial-banner strong,
  .trial-banner a {
    font-size: 22px;
  }

  .paperless-copy p {
    margin-top: 36px;
  }

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

  .paperless-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-left: 0;
  }

  .media-logo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
  }

  .media-logo-grid img {
    height: 78px;
  }

  .consultant-cta {
    padding: 58px 0 66px;
  }

  .consultant-card {
    padding: 38px 24px 34px;
    border-radius: 22px;
  }

  .consultant-card p {
    font-size: 16px;
  }

  .included-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .included-list li {
    justify-content: center;
    width: auto;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .included-list li:nth-child(3),
  .included-list li:nth-child(4) {
    grid-column: 1 / -1;
  }

  .store-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .store-button {
    width: calc(50% - 5px);
    min-width: 0;
    grid-template-columns: 24px 1fr;
    gap: 6px;
    min-height: 58px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .store-icon {
    width: 23px;
    height: 23px;
  }

  .palm-media {
    max-height: 450px;
    overflow: visible;
  }

  .palm-media picture {
    position: relative;
    left: -11%;
    width: 700px;
    max-width: none;
    transform: translateX(-50%);
  }

  .whatsapp-float {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .whatsapp-float-message {
    display: none;
  }

  .whatsapp-float-button {
    width: 62px;
    height: 62px;
  }

  .whatsapp-float-button .whatsapp-mini-icon {
    width: 35px;
    height: 35px;
  }

  .cookie-banner {
    bottom: 12px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    width: calc(100vw - 24px);
    padding: 12px;
  }

  .cookie-copy strong {
    font-size: 12px;
  }

  .cookie-copy p {
    font-size: 11px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .cookie-btn {
    min-width: 0;
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px);
  }

  .brand img {
    width: 118px;
  }

  .icp-note {
    gap: 3px;
    margin-right: 2px;
    margin-left: 12px;
    font-size: 9.8px;
  }

  .icp-note img {
    width: 100px;
    max-width: 100px;
    margin: -13px -20px;
  }

  .hero-grid,
  .hero-copy,
  .hero-media {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 36px);
    overflow-wrap: break-word;
    text-align: center;
  }

  .hero-actions-row,
  .hero-subtitle,
  .rating-row,
  .companies-proof,
  .hero-proof-badges {
    width: 100%;
    max-width: 100%;
  }

  .hero-subtitle,
  .proof-text {
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .companies-proof {
    font-size: 22px;
  }

  .hero-proof-badges {
    width: 100%;
    max-width: none;
  }

  .hero-media {
    height: min(560px, calc((100vw - 48px) * 1.46));
  }

  .hero-person {
    width: var(--hero-person-width);
    max-width: none;
    transform: translateX(var(--hero-person-x));
  }

  .clients-section h2 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 26px;
  }

  .client-logo-grid {
    gap: 18px;
  }
}

/* Mobile and tablet landscape stabilization */
@media (min-width: 621px) and (max-width: 900px) {
  .hero-grid {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(38px, 5.8vw, 48px);
    line-height: 1.11;
    letter-spacing: -1px;
  }

  .hero-actions-row {
    margin-top: 22px;
  }

  .hero-subtitle {
    margin-top: 30px;
  }

  .hero-media {
    width: min(100%, 520px);
    height: 610px;
    --hero-person-width: 150%;
    --hero-person-x: -20%;
  }
}

@media (orientation: landscape) and (min-width: 901px) and (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 184px 190px 1fr 44px;
    min-height: 78px;
  }

  .icp-note {
    display: flex;
  }

  .menu-toggle {
    grid-column: 4;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 24px;
    padding: 58px 0 54px;
  }

  .hero-copy {
    top: 0;
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 4.6vw, 53px);
    line-height: 1.12;
  }

  .hero-actions-row {
    margin-top: 22px;
  }

  .hero-subtitle {
    margin-top: 34px;
  }

  .hero-media {
    width: min(48vw, 520px);
    height: 590px;
    margin-top: -48px;
    margin-left: -44px;
    --hero-person-width: 142%;
    --hero-person-x: -18%;
  }
}

@media (orientation: landscape) and (max-width: 1180px) and (max-height: 700px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-top: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .header-inner {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 44px;
    gap: 18px;
    min-height: 72px;
    padding-right: 0;
  }

  .brand img {
    width: 150px;
  }

  .icp-note {
    display: none;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    padding: 86px 28px 24px;
  }

  .main-nav.is-open a {
    min-height: 46px;
    padding: 10px 0;
    font-size: 16px;
  }

  .main-nav.is-open .mobile-nav-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    padding-top: 14px;
  }

  .main-nav.is-open .mobile-nav-actions a {
    min-height: 50px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    align-items: center;
    gap: 20px;
    padding: 32px 0 38px;
  }

  .hero-copy {
    display: block;
    top: 0;
    padding-left: 0;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(30px, 4.7vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.9px;
    text-align: left;
  }

  .hero-actions-row {
    flex-direction: row;
    gap: 12px;
    margin-top: 18px;
  }

  .hero-actions-row .btn {
    width: auto;
  }

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

  .hero-subtitle {
    max-width: 500px;
    margin: 20px 0 10px;
    font-size: 15px;
    line-height: 1.28;
  }

  .rating-row {
    gap: 10px;
    margin-top: 6px;
  }

  .avatar-stack {
    width: 96px;
    height: 42px;
  }

  .avatar-stack img {
    width: 96px;
  }

  .stars {
    font-size: 17px;
  }

  .companies-proof {
    display: flex;
    align-items: center;
    margin: 8px 0 12px;
    font-size: 15px;
    line-height: 1.2;
  }

  .hero-proof-badges {
    width: min(330px, 100%);
    gap: 12px;
  }

  .hero-proof-badges img {
    height: 46px;
  }

  .hero-proof-badges img:first-child {
    width: 132px;
  }

  .hero-proof-badges img:last-child {
    width: 130px;
  }

  .hero-proof-badges span {
    height: 26px;
  }

  .hero-media {
    order: initial;
    width: min(38vw, 370px);
    height: min(52vw, 410px);
    min-height: 330px;
    margin: 0 auto;
    overflow: visible;
    --hero-person-width: 142%;
    --hero-person-x: -18%;
  }

  .hero-media::before {
    left: 0;
    top: 4%;
    width: 110%;
    height: 56%;
  }

  .hero-media::after {
    left: 8%;
    top: 30%;
    width: 92%;
    height: 58%;
  }

  .clients-section,
  .demo-section,
  .palm-section,
  .security-section,
  .testimonials-section,
  .pricing-section,
  .paperless-section,
  .faq-section,
  .media-section,
  .app-section,
  .consultant-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .whatsapp-float-message {
    display: none;
  }

  .cookie-banner {
    width: min(620px, calc(100vw - 24px));
  }
}

@media (orientation: landscape) and (max-width: 900px) and (max-height: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    padding: 24px 0 30px;
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .hero-actions-row {
    margin-top: 14px;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 14px;
  }

  .companies-proof {
    font-size: 14px;
  }

  .hero-media {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero::before,
  .hero-media::before,
  .hero-media::after {
    clip-path: none;
    animation: none;
  }
}
