:root {
  --color-yellow: #F8B800;
  --color-yellow-dark: #E6A800;
  --color-yellow-soft: #FFF4CC;
  --color-black: #171717;
  --color-dark: #252525;
  --color-gray: #666666;
  --color-light: #FAF8F1;
  --color-white: #FFFFFF;
  --color-border: #E8E1D2;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-light);
  color: var(--color-black);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
p,
a,
li,
button,
input,
textarea,
select {
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
}

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

p {
  color: var(--color-gray);
}

p strong,
.lead strong {
  color: var(--color-black);
  font-weight: 800;
}

.fa-solid {
  line-height: 1;
}

.navbar {
  background: rgba(250, 248, 241, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  padding: 0.35rem 0;
}

.navbar-brand img,
.site-footer .logo img {
  display: block;
 width: 168px;
  height: auto;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:focus-visible {
  background: var(--color-yellow-soft);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 999px;
  transition: background 160ms ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-black);
  transition: transform 180ms ease, top 180ms ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-link {
  color: var(--color-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-yellow-dark);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.8rem 1.35rem;
}

.navbar .btn {
  padding: 0.68rem 1.05rem;
  font-size: 0.88rem;
}

.navbar .navbar-cta-mobile {
  margin-left: auto;
  margin-right: 0.55rem;
  padding: 0.58rem 0.78rem;
  font-size: 0.76rem;
  white-space: nowrap;
}

.btn-primary {
  --bs-btn-bg: var(--color-yellow);
  --bs-btn-border-color: var(--color-yellow);
  --bs-btn-color: var(--color-black);
  --bs-btn-hover-bg: var(--color-yellow-dark);
  --bs-btn-hover-border-color: var(--color-yellow-dark);
  --bs-btn-hover-color: var(--color-black);
  --bs-btn-active-bg: var(--color-yellow-dark);
  --bs-btn-active-border-color: var(--color-yellow-dark);
  --bs-btn-active-color: var(--color-black);
  --bs-btn-focus-shadow-rgb: 248, 184, 0;
  --bs-btn-focus-box-shadow: 0 0 0 0.22rem rgba(248, 184, 0, 0.36);
  background: var(--color-yellow);
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
  box-shadow: 0 12px 22px rgba(248, 184, 0, 0.24);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-primary:first-child:active {
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  color: var(--color-black);
}

.btn-primary:focus {
  box-shadow:
    0 0 0 0.18rem rgba(23, 23, 23, 0.18),
    0 0 0 0.38rem rgba(248, 184, 0, 0.36),
    0 12px 22px rgba(248, 184, 0, 0.24);
}

.btn-primary:active,
.btn-primary:first-child:active {
  box-shadow: 0 12px 22px rgba(248, 184, 0, 0.24);
}

.btn-primary:disabled {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  opacity: 0.72;
}

.btn-primary:focus-visible {
  box-shadow:
    0 0 0 0.18rem rgba(23, 23, 23, 0.18),
    0 0 0 0.38rem rgba(248, 184, 0, 0.36),
    0 12px 22px rgba(248, 184, 0, 0.24);
  outline: 0;
}

.btn-outline-dark {
  border: 2px solid var(--color-black);
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--color-black);
  color: var(--color-white);
}

.hero-section {
  position: relative;
  padding: 9.5rem 0 5rem;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(248, 184, 0, 0.18), transparent 24rem),
    linear-gradient(120deg, rgba(255, 244, 204, 0.9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-container {
  max-width: 1680px;
  padding-right: clamp(1rem, 4vw, 4.5rem);
  padding-left: clamp(1rem, 4vw, 4.5rem);
}

.hero-copy {
  max-width: 570px;
}

.hero-copy .eyebrow {
  font-size: 0.78rem;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(1.95rem, 3vw, 2.65rem);
}

.hero-copy .lead {
  max-width: 560px;
  font-size: 0.98rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-lightbox-trigger {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-lightbox-trigger:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.hero-mockup {
  width: min(100%, 1040px);
}

.container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--color-yellow-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  max-width: 640px;
  margin-top: 1.1rem;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 1.35rem;
}

.hero-actions .btn {
  padding: 0.68rem 1.12rem;
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
}

.trust-row span,
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-row span {
  white-space: nowrap;
}

.trust-row i {
  flex: 0 0 auto;
  color: var(--color-yellow-dark);
}

.card-soft {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 5rem 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-intro p {
  font-size: 1.03rem;
}

.issue-card {
  height: 100%;
  padding: 1.35rem;
}

.issue-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--color-yellow);
  font-weight: 800;
}

.issue-card p {
  margin: 0.65rem 0 0;
  color: var(--color-gray);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  font-weight: 800;
}

.feature-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
  font-size: 0.95rem;
}

.demo-section,
.packages-section,
.faq-section {
  background: var(--color-white);
}

.demo-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  padding: 0;
}

.demo-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-light);
  font: inherit;
  cursor: zoom-in;
}

.demo-image-wrap:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: -3px;
}

.demo-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.mobile-shot-wrap img {
  object-position: top center;
}

.demo-image-wrap--pro img {
  filter: saturate(0.96) contrast(1.03);
}

.demo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-zoom-indicator {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-black);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

.demo-lightbox-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
}

.demo-lightbox-modal .modal-header {
  gap: 0.75rem;
}

.demo-lightbox-modal .modal-title {
  margin-right: auto;
}

.lightbox-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lightbox-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black);
}

.lightbox-tool:hover,
.lightbox-tool:focus {
  background: var(--color-yellow-dark);
}

.demo-lightbox-modal .modal-body {
  overflow: auto;
  padding: 0;
  background: var(--color-light);
  text-align: center;
  touch-action: pan-x pan-y;
}

.demo-lightbox-image {
  display: block;
  width: min(100%, 1200px);
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 160ms ease;
}

.demo-card__content {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.15rem;
}

.demo-card__content h3 {
  margin: 0;
  font-size: 1.15rem;
}

.demo-card__content p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.92rem;
  line-height: 1.5;
}

.price-card,
.contact-form {
  height: 100%;
  padding: 1.7rem;
}

.contact-submit-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  height: 100%;
  padding: 2rem;
  border-color: rgba(248, 184, 0, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 244, 204, 0.88), rgba(255, 255, 255, 0) 64%),
    var(--color-white);
}

.contact-submit-note__badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-submit-note h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.contact-submit-note p {
  max-width: 520px;
  margin: 0;
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 600;
  white-space: pre-line;
}

.contact-submit-note--error {
  min-height: auto;
  margin-bottom: 1rem;
  padding: 1rem;
  border-color: #dc3545;
  background: #fff5f5;
}

.contact-submit-note--error .contact-submit-note__badge {
  background: #dc3545;
  color: var(--color-white);
}

.contact-submit-note--error h3 {
  font-size: 1.1rem;
}

.one-time-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 840px;
  margin: -1rem auto 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(244, 196, 48, 0.45);
  border-radius: 22px;
  background: var(--color-yellow-soft);
  color: var(--color-black);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.one-time-banner i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-yellow);
  font-size: 1.15rem;
}

.one-time-banner strong,
.one-time-banner span {
  display: block;
}

.one-time-banner strong {
  margin-bottom: 0.15rem;
  font-size: 1rem;
  font-weight: 900;
}

.one-time-banner span {
  color: var(--color-dark);
  font-weight: 700;
}

.price-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.price-card li {
  margin-bottom: 0.55rem;
  color: var(--color-dark);
  font-weight: 600;
}

.packages-actions {
  margin-top: 2rem;
}

.packages-actions .btn {
  display: inline-flex;
}

.role-card {
  position: relative;
  height: 100%;
  padding: 1.55rem;
  overflow: hidden;
}

.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--color-yellow);
}

.role-card-muted::before {
  background: var(--color-black);
}

.role-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--color-yellow-soft);
  color: var(--color-yellow-dark);
  font-size: 1.2rem;
}

.role-card-muted .role-icon {
  background: var(--color-black);
  color: var(--color-white);
}

.role-kicker {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-gray);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.role-card h3 {
  margin: 0;
}

.role-card p {
  margin-bottom: 1.2rem;
}

.role-note {
  margin: 1.35rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: var(--color-yellow-soft);
  color: var(--color-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.role-card-muted .role-note {
  background: var(--color-light);
}

.role-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.role-points span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-light);
  color: var(--color-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.role-points i {
  color: var(--color-yellow-dark);
}

.role-pro-point {
  padding-right: 5.6rem;
}

.role-pro-point small {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--color-yellow);
  transform: translateY(-10px);
}

.price {
  margin: 0.8rem 0 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.small-price {
  font-size: 2.35rem;
}

.price-note {
  color: var(--color-dark);
  font-weight: 700;
}

.cost-notice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  border: 2px solid var(--color-yellow);
  border-radius: 24px;
  background: var(--color-yellow-soft);
  color: var(--color-black);
}

.cost-notice strong,
.cost-notice span {
  display: block;
}

.cost-notice strong {
  font-weight: 800;
}

.cost-notice span {
  color: var(--color-dark);
  font-weight: 600;
}

.badge-soft {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--color-yellow-soft);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(248, 184, 0, 0.18), rgba(255, 255, 255, 0)),
    var(--color-light);
}

.cta-band strong {
  color: var(--color-white);
  font-weight: 800;
}

.cta-panel {
  padding: 2rem;
  border-radius: 28px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

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

.cta-panel h2 {
  color: var(--color-white);
}

.needs-section {
  background:
    linear-gradient(135deg, rgba(255, 244, 204, 0.84), rgba(250, 248, 241, 0) 58%),
    var(--color-light);
}

.needs-panel {
  padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.needs-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.needs-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 1.45rem;
  font-size: 1.02rem;
}

.needs-copy .btn {
  align-self: flex-start;
}

.future-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.25rem;
  border-radius: 24px;
  background: var(--color-black);
  color: var(--color-white);
}

.future-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.future-list {
  display: grid;
  gap: 0.85rem;
}

.future-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.future-item:first-child {
  border-top: 0;
}

.future-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 1.1rem;
}

.future-item h3 {
  margin-bottom: 0.35rem;
  color: var(--color-white);
  font-size: 1rem;
}

.future-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.steps div {
  padding: 1.3rem;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-yellow);
  font-weight: 800;
}

.steps strong {
  display: block;
}

.install-note {
  margin: 1.5rem auto 0;
  text-align: center;
  font-weight: 700;
}

.security-box {
  padding: 1.3rem;
  border-radius: 22px;
  background: var(--color-yellow-soft);
  border: 1px solid var(--color-border);
}

.security-box strong,
.security-box span {
  display: block;
}

.security-box span {
  color: var(--color-gray);
}

.security-box i {
  margin-right: 0.45rem;
  color: var(--color-yellow-dark);
}

.contact-section {
  scroll-margin-top: 96px;
}

.contact-sticky {
  position: sticky;
  top: 120px;
}

.form-label {
  color: var(--color-dark);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-yellow-dark);
  box-shadow: 0 0 0 0.2rem rgba(248, 184, 0, 0.18);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.check-grid label,
.privacy-check {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-light);
  font-weight: 700;
}

.privacy-check label {
  flex: 1 1 0;
  margin: 0;
}

.privacy-check .invalid-feedback {
  flex-basis: 100%;
  margin-top: 0;
  padding-left: 1.95rem;
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
}

.accordion-item {
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
}

.accordion-button {
  position: relative;
  padding-right: 3.5rem;
  color: var(--color-black);
  font-weight: 800;
}

.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  margin-left: 0;
  transform: translateY(-50%);
}

.accordion-button:not(.collapsed) {
  background: var(--color-yellow-soft);
  color: var(--color-black);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 184, 0, 0.18);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--color-black);
  color: var(--color-white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-yellow);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .hero-section {
    padding-top: 8rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-mockup {
    width: min(100%, 860px);
  }

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

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

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

  .contact-sticky {
    position: static;
  }

}

@media (max-width: 767.98px) {
  .section {
    padding: 2.75rem 0;
  }

  .hero-section {
    padding-bottom: 2.75rem;
  }

  .section-intro {
    margin-bottom: 1.75rem;
  }

  .hero-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-media {
    margin-top: 0.85rem;
  }

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

  .hero-actions .btn {
    display: inline-flex;
    justify-content: center;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 0.32rem;
  }

  .trust-row span {
    gap: 0.3rem;
    min-height: 30px;
    padding: 0.28rem 0.42rem;
    font-size: 0.68rem;
  }

  .trust-row span:nth-child(3) {
    width: fit-content;
  }

  .one-time-banner {
    align-items: flex-start;
    margin-top: -0.5rem;
    padding: 0.95rem;
  }

  .one-time-banner i {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .feature-grid,
  .check-grid,
  .role-points,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 1.5rem;
  }

  .contact-section .row {
    --bs-gutter-y: 1.15rem;
  }

  .contact-sticky p:last-child {
    margin-bottom: 0;
  }

  .accordion-button {
    padding-right: 3.2rem;
    line-height: 1.35;
  }

  .accordion-button::after {
    right: 1rem;
  }

  .demo-lightbox-modal .modal-header {
    align-items: center;
    padding: 0.85rem;
  }

  .demo-lightbox-modal .modal-title {
    font-size: 0.95rem !important;
  }

  .lightbox-tool {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .demo-lightbox-image {
    width: 100%;
    max-height: 76vh;
  }

  .needs-copy,
  .future-box,
  .future-item {
    text-align: center;
  }

  .needs-copy {
    align-items: center;
  }

  .needs-copy .btn,
  .future-kicker {
    align-self: center;
  }

  .future-item {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .navbar-brand {
    width: 142px;
  }

  .navbar-brand img {
    width: 142px;
  }

  .navbar .navbar-cta-mobile {
    padding: 0.52rem 0.62rem;
    font-size: 0.68rem;
  }

  .hero-section {
    padding-top: 7.4rem;
  }

  .role-card,
  .price-card,
  .contact-form {
    padding: 1.2rem;
  }
}

[data-aos] {
  opacity: 0;
  transition-duration: 720ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--aos-delay, 0ms);
}

[data-aos="fade-up"] {
  transform: translate3d(0, 28px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -28px, 0);
}

[data-aos="fade-in"] {
  transform: none;
}

[data-aos="zoom-in"] {
  transform: scale(0.96);
}

[data-aos="zoom-out"] {
  transform: scale(1.04);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 780px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #222222;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.cookie-banner-content p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-content a {
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-secondary {
  background: #eeeeee;
  color: #222222;
}

.cookie-btn-primary {
  background: #f4b000;
  color: #222222;
}

.btn-apiari {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  background: #222222;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  width: fit-content;
}

.btn-apiari:hover{
 color: #ffffff;
 background: #343434;
  }

.cookie-preferences-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9998;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  background: #222222;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.cookie-preferences-button:hover {
  opacity: 0.9;
}

@media (max-width: 575px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  .cookie-preferences-button {
    left: 12px;
    bottom: 12px;
    font-size: 0.8rem;
  }
}
