:root {
  --bg: #050505;
  --bg-2: #090a0c;
  --panel: #0d0f12;
  --panel-2: #121418;
  --panel-3: #17191d;
  --orange: #ff6400;
  --orange-hot: #ff7a00;
  --orange-dark: #c83b00;
  --text: #f5f5f5;
  --muted: #a9adb4;
  --muted-2: #777d85;
  --line: rgba(255,255,255,.10);
  --orange-line: rgba(255,100,0,.36);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 14px;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,100,0,.08), transparent 34rem),
    #050505;
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: soft-light;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 13px,
      rgba(255,255,255,.018) 13px,
      rgba(255,255,255,.018) 14px
    );
}

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

.wide-shell {
  width: min(100%, 1774px);
  margin-inline: auto;
}

.section {
  padding: clamp(70px, 8vw, 112px) 0;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--orange-hot);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(255,100,0,.16);
  background: rgba(4,4,5,.88);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 36px), var(--shell));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.34));
}

.nav-logo-desktop {
  height: 52px;
  max-width: 300px;
}

.nav-logo-mobile {
  display: none;
  height: 47px;
  max-width: 105px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #c9cbd0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  padding: 9px 15px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(255,100,0,.18), rgba(255,100,0,.05));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0d0f12;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,100,0,.20);
  background: #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(transparent, #050505);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-brand {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 24px 18px 18px;
}

.hero-brand img {
  display: block;
  width: min(520px, 52vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.42));
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.hero-image {
    display: block;
    width: 75%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,100,0,.05), transparent 20%, transparent 80%, rgba(255,100,0,.05)),
    linear-gradient(180deg, transparent 80%, rgba(5,5,5,.45));
}

.hero-spark {
  position: absolute;
  z-index: 1;
  width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-hot), transparent);
  filter: drop-shadow(0 0 10px var(--orange));
  animation: sparkSlide 7s ease-in-out infinite alternate;
}

.hero-spark-a {
  left: -10%;
  top: 28%;
  transform: rotate(-8deg);
}

.hero-spark-b {
  right: -10%;
  bottom: 18%;
  transform: rotate(7deg);
  animation-delay: -3.5s;
}

@keyframes sparkSlide {
  from { translate: -50px 0; opacity: .25; }
  to { translate: 100px 0; opacity: .85; }
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: 0 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange-dark));
  box-shadow: 0 14px 34px rgba(255,100,0,.20);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255,100,0,.30);
}

.button-secondary {
  border-color: #565b62;
  background: rgba(8,9,11,.88);
}

.button-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,100,0,.08);
}

.hero-note {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 20px auto 34px;
  padding: 0 20px;
  color: #bfc2c7;
  text-align: center;
}

.quick-strip {
  position: relative;
  z-index: 4;
  margin-top: -2px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,100,0,.16);
  background:
    linear-gradient(180deg, #0e1013, #08090b);
}

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

.quick-item {
  min-width: 0;
  min-height: 128px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

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

.quick-icon {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.quick-item h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.quick-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2,
.pricing-main h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: .90;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.section-heading h2 span,
.contact-copy h2 span {
  color: var(--orange-hot);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.showcase {
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto;
  height: 480px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,100,0,.07), transparent 65%);
}

.showcase-stage {
  position: relative;
  z-index: 1;
  padding: 8px;
  border: 1px solid rgba(255,100,0,.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,100,0,.06), transparent 24%),
    #090a0c;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  transform-style: preserve-3d;
  transition: transform .18s ease;
}

.showcase-stage::before,
.showcase-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.showcase-stage::before {
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(100deg, transparent, rgba(255,100,0,.38), transparent);
  opacity: .35;
  filter: blur(8px);
}

.showcase-stage::after {
  left: 8%;
  right: 8%;
  bottom: -24px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.55), transparent 68%);
  filter: blur(10px);
}

.showcase-image {
  width: 100%;
  border-radius: 12px;
}

.showcase-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,.04), transparent 22%, transparent 70%, rgba(255,100,0,.05));
}

.plugin-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.plugin-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #b8bcc2;
  background: rgba(255,255,255,.018);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plugin-tags span:last-child {
  border-color: rgba(255,100,0,.45);
  color: var(--orange-hot);
}

.pricing-band {
  padding: clamp(54px, 6vw, 82px) 0;
  border-block: 1px solid rgba(255,100,0,.16);
  background:
    linear-gradient(90deg, rgba(255,100,0,.06), transparent 30%, transparent 70%, rgba(255,100,0,.04)),
    #0a0b0d;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .55fr) minmax(220px, .55fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-main {
  padding: 10px 24px 10px 0;
}

.pricing-main h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}

.pricing-main p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
}

.pricing-main strong {
  color: #fff;
}

.price-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255,100,0,.25);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255,100,0,.07), transparent 46%),
    #101216;
}

.price-card > span {
  color: #c0c4ca;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.price-card strong {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-style: italic;
  font-weight: 800;
  line-height: .9;
}

.price-card strong sup {
  color: var(--orange);
  font-size: .45em;
}

.price-card small {
  margin-top: 8px;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: .92rem;
  text-transform: uppercase;
}

.price-card-custom {
  border-color: rgba(255,100,0,.48);
}

.price-card-custom strong {
  color: var(--orange-hot);
  font-size: 3.35rem;
}

.faq {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,100,0,.055), transparent 28rem),
    #060708;
}

.faq-heading {
  margin-bottom: 28px;
}

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

.faq-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background:
    linear-gradient(140deg, rgba(255,100,0,.025), transparent 30%),
    #0d0f12;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.faq-item:hover {
  border-color: rgba(255,100,0,.26);
}

.faq-item.open {
  border-color: rgba(255,100,0,.50);
  background:
    linear-gradient(140deg, rgba(255,100,0,.065), transparent 38%),
    #0d0f12;
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  border: 0;
  color: #f1f2f4;
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.16;
}

.faq-question i {
  position: relative;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255,100,0,.42);
  border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  background: var(--orange-hot);
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .32s ease;
}

.faq-answer > div {
  padding: 0 18px 20px;
  border-top: 1px solid rgba(255,255,255,.055);
}

.faq-answer p {
  margin: 16px 0 0;
  color: #b5bac1;
  font-size: .92rem;
  line-height: 1.72;
}

.faq-answer strong {
  color: #fff;
}

.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,100,0,.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,100,0,.09), transparent 30rem),
    #090a0c;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background:
    repeating-linear-gradient(
      145deg,
      transparent 0,
      transparent 38px,
      rgba(255,100,0,.04) 39px,
      transparent 40px
    );
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(3.3rem, 5.8vw, 5.7rem);
}

.contact-copy > p:last-of-type {
  max-width: 550px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-points {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.contact-points span {
  color: #bfc2c7;
  font-size: .88rem;
}

.contact-points span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 10px;
  background: var(--orange);
  vertical-align: 4px;
}

.contact-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,100,0,.32);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255,100,0,.065), transparent 35%),
    #101216;
  box-shadow: 0 26px 80px rgba(0,0,0,.40);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #d4d7db;
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #363a40;
  border-radius: 7px;
  outline: 0;
  color: #fff;
  background: #08090b;
  padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: #0a0b0d;
  box-shadow: 0 0 0 3px rgba(255,100,0,.11);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--orange-hot);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-hot), #de4200);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(255,100,0,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,100,0,.26);
}

.form-note,
.security-note {
  margin: 0;
  color: #767c84;
  font-size: .74rem;
  line-height: 1.5;
}

.security-note {
  margin-top: -6px;
  color: #646a72;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.5;
}

.form-alert-error {
  border: 1px solid rgba(255,100,0,.55);
  background: rgba(255,100,0,.08);
  color: #ffd4b8;
}

.sent-state {
  min-height: 290px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px;
}

.sent-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-hot);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.sent-state h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.sent-state p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,100,0,.20);
  background: #030304;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: #6f747b;
  font-size: .76rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.footer-brand img {
  display: block;
  width: min(290px, 32vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.38));
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s cubic-bezier(.2,.75,.25,1),
    transform .7s cubic-bezier(.2,.75,.25,1);
}

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

.hero-reveal {
  transform: scale(.985);
}

.hero-reveal.visible {
  transform: scale(1);
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

@media (max-width: 1040px) {
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .pricing-main {
    grid-column: 1 / -1;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #0b0d10;
    box-shadow: 0 22px 60px rgba(0,0,0,.45);
  }

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

  .nav-links a {
    padding: 11px 12px;
  }

  .nav-links a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    margin-top: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 10vw, 4.7rem);
  }

  .section-copy {
    max-width: 720px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-brand img {
    width: min(300px, 72vw);
  }
}

@media (max-width: 620px) {
  .shell,
  .nav-shell {
    width: min(calc(100% - 22px), var(--shell));
  }

  .nav-logo-desktop {
    display: none;
  }

  .nav-logo-mobile {
    display: block;
    height: 46px;
    max-width: 110px;
  }

  .hero-brand {
    padding: 18px 10px 14px;
  }

  .hero-brand img {
    width: min(330px, 78vw);
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-brand img {
    width: min(285px, 82vw);
  }

  .hero-actions {
    margin-top: 14px;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-bottom: 24px;
  }

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

  .quick-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .pricing-main h2,
  .contact-copy h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

  .pricing-main {
    grid-column: auto;
    padding-right: 0;
  }

  .price-card {
    min-height: 190px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 20px 16px;
  }

  .sent-state {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
