:root {
  --ink: #101112;
  --muted: #5e626a;
  --line: #e5e7eb;
  --panel: #ffffff;
  --soft: #f7f7f4;
  --gold: #f6b51f;
  --gold-dark: #d79100;
  --green: #43bd3d;
  --green-dark: #24911f;
  --cyan: #27c8e8;
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.12);
}

* {
  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(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  padding: 0;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
}

.site-header.is-scrolled {
  top: 12px;
  padding: 0 20px;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.brand img {
    background: #fff;
    border-radius: 50%;
    height: 84px;
    width: 84px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.34));
  padding: 3px;
}
.is-scrolled .brand {padding: 5px;}
.is-scrolled .brand img {    height: 64px;
    width: 64px;}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 2px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.site-nav .nav-wa {
  gap: 8px;
  margin-left: 10px;
  min-height: 48px;
  padding-inline: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 28px rgba(67, 189, 61, 0.28);
  font-size: 0.95rem;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item > a::after {
  content: "\f107";
  margin-left: 7px;
  font: var(--fa-font-solid);
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: rotate(180deg);
}

.submenu-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 268px;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 10, 12, 0.96);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.dropdown-menu .dropdown-menu {
  top: -12px;
  left: 100%;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.dropdown-menu li:hover > .dropdown-menu,
.dropdown-menu li:focus-within > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li::before {
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  content: "";
}

.site-nav .dropdown-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 10px 18px;
  color: #ffffff;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: none;
  white-space: nowrap;
}

.site-nav .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

.dropdown-menu .has-dropdown > a::after {
  content: "\f105";
  margin-left: auto;
  padding-left: 18px;
  font: var(--fa-font-solid);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 132px 0 44px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgb(0 0 0 / 88%) 20%, rgb(0 0 0 / 0%) 100%), url(../img/hero-section_background.webp);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(120px, 1fr);
  align-items: end;
  gap: 34px;
  min-height: 552px;
}

.hero-copy {
  align-self: center;
  padding-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 16px;
  padding: 0 18px;
  color: #171717;
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(246, 181, 31, 0.28);
  font-size: 0.94rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 5.35vw, 4.25rem);
  line-height: 1.25;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 strong,
.cta h2 strong {
  color: var(--gold);
}

.hero h2 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.65vw, 2.25rem);
  line-height: 1.05;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.12;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn i {
  font-size: 2rem;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(67, 189, 61, 0.3);
}

.btn-primary::before {
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: rotate(18deg);
  animation: buttonShine 3s ease-in-out infinite;
}

.btn>* {
  position: relative;
  z-index: 1;
}

.btn-outline {
  color: #ffffff;
  border: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.22);
}

.btn-outline:hover {
  box-shadow: 0 14px 28px rgba(246, 181, 31, 0.18);
}

.btn-outline img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(82px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 690px;
}

.hero-benefits article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 112px;
  text-align: center;
}

.hero-benefits img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(246, 181, 31, 0.12));
  animation: iconFloat 3.4s ease-in-out infinite;
}

.hero-benefits article:nth-child(2) img {
  animation-delay: 0.25s;
}

.hero-benefits article:nth-child(3) img {
  animation-delay: 0.5s;
}

.hero-benefits article:nth-child(4) img {
  animation-delay: 0.75s;
}

.hero-benefits article:nth-child(5) img {
  animation-delay: 1s;
}

.hero-benefits span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.25;
}

.hero-badge {
  justify-self: end;
  align-self: end;
  width: min(180px, 62%);
  margin-bottom: 48px;
  animation: floatBadge 3.8s ease-in-out infinite;
}

.hero-badge img {
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.45));
}

.feature-strip {
  padding: 30px 0 32px;
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  position: relative;
  min-height: 190px;
  border-radius: 8px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-card:hover img {
  transform: scale(1.06);
}

.feature-card:hover span {
  transform: translateX(-50%) translateY(-3px);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 54%);
}

.feature-card span {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 148px;
  padding: 0 13px;
  color: #161616;
  border-radius: 8px;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: transform 0.24s ease;
}

.section {
  padding: 42px 0;
  background: #ffffff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}

.section-title span {
  width: min(94px, 18vw);
  height: 1px;
  background: #b6bbc3;
  transform: scaleX(0);
  transform-origin: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.1;
  font-weight: 1000;
  text-transform: uppercase;
}

.why-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.why-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.why-item:first-child {
  padding-left: 0;
}

.why-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.why-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.why-item h3,
.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.why-item p,
.price-card p,
.testimonial-card p,
.faq-item p,
.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-item ul,
.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.why-item li,
.price-card li {
  display: flex;
  gap: 8px;
  align-items: start;
  color: #202329;
  font-size: 0.94rem;
  line-height: 1.25;
}

.why-item li i,
.price-card li i {
  color: var(--green-dark);
  margin-top: 2px;
}

.pricing {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

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

.price-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 220px;
  padding: 20px;
  border: 2px solid rgba(67, 189, 61, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 17, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(16, 17, 18, 0.12);
}

.price-card-accent {
  border-color: rgba(246, 181, 31, 0.78);
  background: linear-gradient(135deg, #ffffff, #fff8e6);
}

.price-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.price-card strong {
  display: block;
  margin: 2px 0 16px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
}

.price-card-accent strong {
  color: var(--gold-dark);
}

.testimonials {
  background: #ffffff;
}

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

.testimonial-card {
  display: grid;
  gap: 14px;
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.person {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  text-align: left;
}

.person>div {
  display: grid;
  gap: 2px;
}

.person>div span {
  font-weight: 900;
}

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

.avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0f5c83;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd7b5, #51b6e9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.avatar-alt {
  color: #8a3c39;
  background: linear-gradient(135deg, #ffcad4, #f3b44f);
}

.faq {
  background: #ffffff;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 74px;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-weight: 900;
  line-height: 1.2;
}

.faq-item button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.faq-item button i {
  color: var(--green-dark);
  transition: transform 0.2s ease;
}

.faq-item p {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-item.is-open p {
  max-height: 160px;
  padding: 0 16px 18px 60px;
}

.cta {
  padding: 26px 0 36px;
  background: #ffffff;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 184px;
  padding: 22px 32px 44px;
  color: #ffffff;
  border-radius: 8px;
  background: #111111;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.cta-image {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background-image: url("../img/cta-section_background.webp");
  background-position: left center;
  background-size: cover;
}

.cta-copy,
.cta-button {
  position: relative;
  z-index: 1;
}

.cta-copy {
  grid-column: 2;
}

.cta h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.cta-button {
  min-width: 252px;
}

.trust-list {
  position: relative;
  z-index: 1;
  grid-column: 2 / 4;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  align-self: end;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  transform: none;
  pointer-events: auto;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.floating-wa {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 32px rgba(36, 145, 31, 0.35);
  animation: waPulse 2s ease-in-out infinite;
}

.floating-wa i {
  font-size: 1.9rem;
}

.site-footer {
  padding: 58px 0 62px;
  color: #ffffff;
  background: #656879;
}

.footer-container {
  display: grid;
  grid-template-columns: 330px 190px 190px 390px;
  gap: 72px;
  width: min(1244px, calc(100% - 80px));
  margin-inline: auto;
  align-items: start;
  justify-content: center;
}

.footer-brand img {
  width: 258px;
  height: auto;
  margin: 0 auto 22px 0;
}

.footer-brand p {
  max-width: 318px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.62;
}

.footer-brand strong {
  font-weight: 900;
}

.footer-column,
.footer-info {
  display: grid;
  align-content: start;
}

.footer-column h3,
.footer-info h3 {
  margin: 0 0 30px;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.1;
}

.footer-column a {
  width: fit-content;
  margin-bottom: 27px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.25;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  opacity: 0.78;
  transform: translateX(4px);
}

.footer-info p {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.58;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #55596a;
  border-radius: 50%;
  background: #ffffff;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: #f4f4f6;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.07);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 16px 32px rgba(36, 145, 31, 0.35), 0 0 0 0 rgba(67, 189, 61, 0.36);
  }

  50% {
    box-shadow: 0 16px 32px rgba(36, 145, 31, 0.35), 0 0 0 12px rgba(67, 189, 61, 0);
  }
}

@keyframes buttonShine {

  0%,
  42% {
    left: -55%;
  }

  64%,
  100% {
    left: 130%;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .site-header {
    width: min(940px, calc(100% - 28px));
    min-height: 60px;
    padding: 0;
  }

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    gap: 6px;
    width: min(420px, calc(100vw - 22px));
    max-height: calc(100vh - 100px);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(14, 15, 18, 0.98), rgba(6, 7, 9, 0.98));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-shadow: none;
  }

  .site-nav > a,
  .nav-item > a {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr 42px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .submenu-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    min-height: 44px;
    color: #ffffff;
    border: 0;
    background: rgba(255, 255, 255, 0.09);
    cursor: pointer;
  }

  .submenu-toggle i {
    transition: transform 0.2s ease;
  }

  .nav-item.is-submenu-open > .submenu-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu,
  .dropdown-menu .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    max-height: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s ease;
  }

  .nav-item.is-submenu-open > .dropdown-menu {
    max-height: 72vh;
    overflow: auto;
    padding: 8px 0 10px 10px;
  }

  .nav-item.is-submenu-open .dropdown-menu .dropdown-menu {
    max-height: none;
    padding-left: 12px;
    overflow: visible;
  }

  .dropdown-menu li {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dropdown-menu li::before {
    display: none;
  }

  .site-nav .dropdown-menu a {
    min-height: 36px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    font-size: 0.86rem;
    white-space: normal;
  }

  .dropdown-menu .has-dropdown > a::after {
    display: inline-block;
    transform: rotate(90deg);
  }

  .site-nav .nav-wa {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 620px;
  }

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

  .hero-badge {
    justify-self: end;
    align-self: start;
    margin: -130px 4px 16px 0;
    width: 145px;
  }

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

  .why-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-item {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .price-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 210px 24px 24px;
  }

  .cta-image {
    width: 100%;
    height: 220px;
    background-position: center top;
  }

  .cta-panel::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.9));
  }

  .cta-copy {
    grid-column: auto;
  }

  .cta-button {
    width: fit-content;
  }

  .trust-list {
    grid-column: auto;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
    transform: none;
    pointer-events: auto;
  }

  .footer-container {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 42px;
    width: min(940px, calc(100% - 44px));
  }

  .footer-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .feature-card span {
    font-size: 1.5rem;
    bottom: 20px;
  }

  .container {
    width: min(100% - 32px, 520px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 32px);
    min-height: 58px;
    padding: 0;
  }

  .site-header.is-scrolled {
    top: 10px;
    padding: 0 14px;
  }

  .brand img {

  }

  .hero {
    padding-top: 100px;
  }

  .hero-bg {
    background-image: linear-gradient(180deg, rgb(0 0 0 / 69%) 0%, rgb(0 0 0 / 73%) 47%, rgb(0 0 0 / 80%) 100%), url(../img/hero-section_background.webp);
    background-position: 66% top;
  }

  .hero-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .eyebrow {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero h1 {
    /* font-size: clamp(2.65rem, 15vw, 4rem); */
    max-width: 60vw;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero h2 {
    font-size: 1.45rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 60px;
    padding-inline: 18px;
  }

  .hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-benefits article {
    width: calc(50% - 6px);
    min-height: 92px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    position: absolute;
    top: 30vw;
    right: -10px;
    width: 110px;
    margin: 0;
    justify-self: auto;
    align-self: auto;
  }

  .feature-strip {
    padding-top: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: 210px;
  }

  .section {
    padding: 24px 0;
  }

  .section-title {
    gap: 12px;
  }

  .section-title h2 {
    font-size: 1.32rem;
  }

  .why-panel {
    padding: 18px;
  }

  .why-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .why-item img {
    width: 46px;
    height: 46px;
  }

  .why-item ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    gap: 8px;
    border: 0;
    border-radius: 20px;
    background: #fdfdfd;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05), inset 0 2px 0 rgba(255,255,255,1);
    position: relative;
    overflow: visible;
    margin-top: 24px;
  }

  .price-card::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 16px;
    right: 16px;
    height: 30px;
    background: #239530;
    border-radius: 20px 20px 0 0;
    z-index: -1;
  }

  .price-card.price-card-accent::before {
    background: var(--gold, #d4af37);
  }

  .price-card img {
    height: 180px;
    margin: -10px auto 16px;
    /* filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.1)); */
    transform: scale(1.05);
  }

  .price-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111;
    margin: 0;
  }

  .price-card p {
    font-size: 1.05rem;
    color: #6c757d;
    margin: 0;
  }

  .price-card strong {
    font-size: 3.2rem;
    font-weight: 900;
    color: #239530;
    line-height: 1;
    margin: 4px 0 20px;
    letter-spacing: -1.5px;
  }

  .price-card.price-card-accent strong {
    color: var(--gold-dark);
  }

  .price-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    /* background: #f4f5f7; */
    padding: 24px 32px;
    border-radius: 16px;
    width: fit-content;
    margin: 0 auto;
  }

  .price-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #111;
  }

  .price-card li i {
    color: #239530;
    font-size: 1.1rem;
  }

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

  .faq-item.is-open p {
    padding-left: 16px;
  }

  .cta {
    padding-bottom: 86px;
  }

  .cta-panel {
    display: flex;
    flex-direction: column;
    padding: 170px 20px 30px;
    text-align: center;
    align-items: center;
    gap: 16px;
  }

  .cta-image {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 190px;
    border-radius: 8px 8px 0 0;
    background-position: center top;
  }

  .cta-panel::before {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.85) 150px, #111111 190px);
  }

  .cta h2 {
    font-size: 2rem;
  }

  .trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-left: 0;
  }

  .floating-wa {
    display: inline-flex;
  }

  .site-footer {
    padding: 42px 0 48px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    width: min(100% - 40px, 520px);
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    width: 214px;
    margin-bottom: 18px;
    margin: auto;
  }

  .footer-brand p {
    max-width: none;
    font-size: 0.96rem;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-info {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column h3,
  .footer-info h3 {
    margin-bottom: 18px;
  }

  .footer-column a {
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .footer-info p {
    margin-bottom: 18px;
    font-size: 0.98rem;
  }

  .footer-socials {
    justify-content: center;
  }
}
