:root {
  --bg: #070a08;
  --bg-soft: #0b0f0c;
  --surface: #101611;
  --surface-strong: #141c16;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f4f7f3;
  --muted: #aab4aa;
  --muted-dark: #758076;
  --accent: #16a35a;
  --accent-deep: #0f8f4d;
  --accent-soft: rgba(22, 163, 90, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1540px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.page-shell {
  width: min(100% - 72px, var(--container));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: 100vw;
  min-height: 102px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(40px, 5vw, 84px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 52px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.button {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid rgba(22, 163, 90, 0.72);
  border-radius: var(--radius);
  color: var(--text);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
}

.header-cta:hover {
  border-color: var(--accent);
  background: rgba(22, 163, 90, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 102px);
  margin-left: calc(50% - 50vw);
  padding: clamp(58px, 7.4vh, 74px) clamp(40px, 5vw, 84px) 120px clamp(96px, 7.6vw, 128px);
  background: var(--bg);
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -35%;
  width: 600px;
  height: 430px;
  background: radial-gradient(circle, rgba(22, 163, 90, 0.34), rgba(22, 163, 90, 0.13) 34%, transparent 68%);
  filter: blur(58px);
  opacity: 0.58;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(7, 10, 8, 0), rgba(7, 10, 8, 0.96));
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: min(1260px, calc(100vw - 180px));
  animation: heroReveal 720ms ease both;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1260px;
  margin-bottom: 28px;
  font-size: clamp(63px, 5.72vw, 97px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span:last-child {
  white-space: nowrap;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 41px;
  color: rgba(244, 247, 243, 0.78);
  font-size: clamp(20px, 1.28vw, 23px);
  line-height: 1.55;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  max-width: 940px;
  margin-bottom: 49px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  flex: 0 1 auto;
  min-width: 0;
}

.benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.benefit-item:hover .benefit-icon {
  transform: none;
}

.benefit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 1;
  filter: saturate(1.04) contrast(1.02);
  animation: benefitPhotoFloat 3.8s ease-in-out infinite, benefitPhotoTilt 6.2s ease-in-out infinite;
  transform-origin: center;
  transition: filter 220ms ease, transform 220ms ease;
}

.benefit-item:nth-child(2) .benefit-icon img {
  animation-delay: 160ms;
}

.benefit-item:nth-child(3) .benefit-icon img {
  animation-delay: 320ms;
}

.benefit-item:hover .benefit-icon img {
  filter: saturate(1.12) contrast(1.05);
  transform: translateY(-7px) rotate(-3deg) scale(1.1);
}

.benefit-item strong {
  display: block;
  margin-bottom: 11px;
  color: var(--text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.benefit-text > span {
  display: block;
  color: rgba(244, 247, 243, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

@keyframes benefitPhotoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.06);
  }
}

@keyframes benefitPhotoTilt {
  0%,
  100% {
    rotate: -2deg;
  }

  48% {
    rotate: 3deg;
  }

  76% {
    rotate: -1deg;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 241px;
  min-height: 65px;
  padding: 0 31px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 19px;
  font-weight: 800;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: #19b766;
}

.button-secondary {
  border-color: rgba(22, 163, 90, 0.72);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(22, 163, 90, 0.08);
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: 50%;
  min-height: 100%;
  pointer-events: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -19%;
  width: min(49vw, 790px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(22, 163, 90, 0.18);
  box-shadow:
    0 0 0 140px rgba(22, 163, 90, 0.008),
    0 0 0 280px rgba(22, 163, 90, 0.012);
  opacity: 0.62;
}

.hero-art::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -8%;
  width: min(31vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 90, 0.1), rgba(22, 163, 90, 0.03) 42%, transparent 68%);
  filter: blur(54px);
  opacity: 0.42;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1320px) {
  h1 span:last-child {
    white-space: normal;
  }
}

.section-head {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  margin-bottom: 6px;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.pricing-section h2,
.cases h2 {
  grid-column: 1 / -1;
  max-width: none;
  white-space: nowrap;
}

.pricing-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -1px;
  padding: 120px clamp(40px, 5vw, 84px) 110px clamp(96px, 7.6vw, 128px);
  background:
    radial-gradient(circle at 8% 0%, rgba(22, 163, 90, 0.045), transparent 34rem),
    var(--bg);
  overflow: hidden;
  z-index: 1;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 8, 0.92) 0%,
    rgba(7, 10, 8, 0.72) 42%,
    rgba(7, 10, 8, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: #101611;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.32);
}

.pricing-card-featured {
  transform: scale(1.03);
  border-color: rgba(22, 163, 90, 0.42);
  background: linear-gradient(180deg, rgba(22, 163, 90, 0.11), rgba(16, 22, 17, 1) 48%);
}

.pricing-card-featured:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(22, 163, 90, 0.62);
}

.pricing-top {
  margin-bottom: 28px;
}

.pricing-top h3 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-top strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  transform-origin: left center;
  animation: pricePulseMove 4.2s ease-in-out infinite;
  will-change: transform, color;
}

.pricing-card:nth-child(2) .pricing-top strong {
  animation-delay: 180ms;
}

.pricing-card:nth-child(3) .pricing-top strong {
  animation-delay: 360ms;
}

.pricing-card:hover .pricing-top strong {
  color: #ffffff;
  animation-duration: 2.8s;
}

@keyframes pricePulseMove {
  0%,
  100% {
    transform: translateY(0) scale(1);
    color: var(--text);
  }

  42% {
    transform: translateY(-4px) scale(1.035);
    color: #ffffff;
  }

  68% {
    transform: translateY(2px) scale(0.99);
    color: rgba(244, 247, 243, 0.9);
  }
}

.pricing-desc,
.pricing-note {
  color: rgba(244, 247, 243, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-desc {
  max-width: 420px;
  margin-bottom: 0;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
}

.pricing-note {
  margin: 0 0 34px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-button {
  width: 100%;
  margin-top: auto;
}

.cases {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 120px clamp(40px, 5vw, 84px) 104px clamp(96px, 7.6vw, 128px);
  background: var(--bg);
  overflow: hidden;
}

.cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 8, 1) 0%,
    rgba(7, 10, 8, 0.94) 42%,
    rgba(7, 10, 8, 0) 100%
  );
  pointer-events: none;
}

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

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f1510;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.case-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  color: rgba(244, 247, 243, 0.56);
  background:
    linear-gradient(135deg, rgba(22, 163, 90, 0.16), transparent 42%),
    linear-gradient(180deg, #151d17, #0b0f0c);
  font-size: 14px;
  font-weight: 800;
}

.case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.case-card:hover .case-media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.case-body {
  padding: 22px;
}

.case-body h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.25;
}

.case-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.case-body li {
  position: relative;
  padding-left: 16px;
}

.case-body li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.cases-more-link {
  display: block;
  width: fit-content;
  margin: 22px 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.cases-more-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.cases-more-link::after {
  content: " ->";
}


.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px clamp(40px, 5vw, 84px) 38px clamp(96px, 7.6vw, 128px);
  border-top: 1px solid var(--border);
  background: #060806;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.footer-brand p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.footer-nav a {
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 700;
}

.footer-policy {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: rgba(117, 128, 118, 0.56);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-policy:hover {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.pricing-card.reveal:nth-child(2),
.case-card.reveal:nth-child(2),
.case-card.reveal:nth-child(5) {
  transition-delay: 70ms;
}

.pricing-card.reveal:nth-child(3),
.case-card.reveal:nth-child(3),
.case-card.reveal:nth-child(6) {
  transition-delay: 140ms;
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .page-shell {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 0 28px;
  }

  .logo {
    font-size: 23px;
  }

  .logo-mark {
    width: 31px;
    height: 31px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
    padding: 18px 28px;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 12px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 74px 60px 86px;
  }

  .hero-content {
    max-width: 100%;
  }

  .pricing-section,
  .cases {
    padding-right: 60px;
    padding-left: 60px;
  }

  .hero-art {
    position: absolute;
    inset: 0 -18% 0 auto;
    width: 66vw;
    min-height: 100%;
    opacity: 0.6;
    pointer-events: none;
  }

  h1 span:last-child {
    white-space: normal;
  }

  .hero-benefits {
    max-width: 100%;
    gap: 28px;
  }

  .benefit-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    flex-basis: 250px;
  }

  .benefit-icon {
    width: 68px;
    height: 68px;
  }

  .benefit-item strong {
    font-size: 29px;
  }

  .benefit-text > span {
    font-size: 14px;
  }

  .section-head,
  .pricing-grid,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 28px;
  }

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

  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }

  .section-head {
    align-items: start;
  }

  .site-footer {
    padding-right: 60px;
    padding-left: 60px;
  }

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

  .pricing-section h2,
  .cases h2 {
    white-space: normal;
  }

}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
  }

  .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .logo {
    font-size: 21px;
  }

  .logo-mark {
    width: 29px;
    height: 29px;
  }

  .site-header.is-open {
    padding: 18px 20px;
  }

  .hero {
    padding: 54px 20px 46px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0 0 32px;
    padding: 26px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(16, 22, 17, 0.82);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  }

  .benefit-item {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 13px;
    flex: initial;
    text-align: center;
    padding: 6px 10px;
  }

  .benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: rgba(255, 255, 255, 0.08);
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }

  .benefit-item strong {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .benefit-text > span {
    font-size: 12px;
    line-height: 1.45;
  }

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

  .button {
    min-width: 0;
    min-height: 58px;
    font-size: 17px;
  }

  .section-head,
  .pricing-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }

  .pricing-section {
    margin-top: -1px;
    padding: 58px 20px 68px;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px;
  }

  .pricing-card:hover,
  .pricing-card-featured:hover {
    transform: none;
  }

  .pricing-top {
    margin-bottom: 22px;
  }

  .pricing-top strong {
    font-size: 42px;
  }

  .pricing-desc,
  .pricing-note,
  .pricing-card ul {
    font-size: 15px;
  }

  .cases {
    padding: 78px 20px 68px;
  }

  .case-body {
    padding: 20px;
  }

  .case-body h3 {
    font-size: 18px;
  }

  .case-card:hover {
    transform: none;
  }

  .pricing-button {
    width: 100%;
  }

  .site-footer {
    padding: 58px 20px 30px;
  }

  .footer-brand {
    gap: 22px;
    margin-bottom: 34px;
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .site-header,
  .site-header.is-open,
  .hero,
  .pricing-section,
  .cases,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero-benefits {
    padding: 22px 10px;
    border-radius: 18px;
  }

  .benefit-item {
    padding: 4px 7px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-item strong {
    font-size: 22px;
  }

  .benefit-text > span {
    font-size: 11px;
  }

  .hero-actions {
    gap: 12px;
  }
}
