:root {
  --color-black: #111111;
  --color-orange: #ff6b00;
  --color-white: #ffffff;
  --color-gray: #2b2b2b;
  --color-muted: rgba(255, 255, 255, 0.72);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--color-white);
  background: var(--color-black);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 5px;
  border: 2px solid rgba(255, 107, 0, 0.78);
  background: var(--color-white);
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav a,
.header-cta,
.btn {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 34px) clamp(20px, 5vw, 72px) 46px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.82) 42%, rgba(17, 17, 17, 0.36) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.16) 48%, rgba(17, 17, 17, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-top: 32px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--color-orange);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.88;
  font-weight: 900;
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  line-height: 1.04;
  font-weight: 800;
}

.hero-text {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border: 1px solid var(--color-orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff7f22;
  border-color: #ff7f22;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-stats {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: 70px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats article {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section-block {
  padding: 104px clamp(20px, 5vw, 72px);
}

.features {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 76px);
  background:
    linear-gradient(180deg, #111111 0%, #171717 50%, #111111 100%);
}

.section-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.96;
  font-weight: 900;
}

.section-heading p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--color-white);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--color-orange);
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 48px;
}

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

.feature-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--color-gray);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 506px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.2), rgba(43, 43, 43, 0.96)),
    var(--color-gray);
}

.feature-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.16);
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: auto 0 0;
  color: var(--color-white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
  font-weight: 900;
}

.feature-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.services {
  color: var(--color-black);
  background: var(--color-white);
}

.services-heading {
  position: static;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.services-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.services-heading h2 {
  max-width: 760px;
}

.services-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 8px;
  background: #f2f2f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--color-black);
}

.service-card span {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 46px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1;
  font-weight: 900;
}

.service-card p {
  margin: 16px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.6;
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.94), rgba(255, 107, 0, 0.78)),
    var(--color-orange);
  color: var(--color-white);
}

.service-card-featured span {
  background: rgba(17, 17, 17, 0.18);
  color: var(--color-white);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border-radius: 8px;
  background: var(--color-black);
  color: var(--color-white);
}

.service-cta p {
  grid-column: 1;
  margin: 0 0 8px;
  color: var(--color-orange);
  font-weight: 900;
  text-transform: uppercase;
}

.service-cta h3 {
  grid-column: 1;
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.service-cta .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 170px;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(180deg, #111111 0%, #161616 100%);
}

.about-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-gray);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.72)),
    linear-gradient(90deg, rgba(255, 107, 0, 0.22), rgba(255, 107, 0, 0));
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 220px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.about-badge strong {
  display: block;
  color: var(--color-orange);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
  font-weight: 900;
}

.about-badge span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-content {
  max-width: 720px;
}

.about-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.about-content > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.75;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.about-pillars article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--color-gray);
}

.about-pillars span {
  display: block;
  color: var(--color-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-pillars p {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.55;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.values-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.audience {
  color: var(--color-black);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

.audience-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.audience-header h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.audience-header > p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

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

.audience-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--color-orange);
}

.audience-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--color-orange);
  font-weight: 900;
}

.audience-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  line-height: 1;
  font-weight: 900;
}

.audience-card p {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.62;
}

.audience-card strong {
  display: block;
  margin-top: 26px;
  color: var(--color-orange);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.audience-card-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.12);
}

.audience-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-card-dark span {
  background: rgba(255, 107, 0, 0.2);
}

.audience-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: #eaeaea;
}

.audience-note p {
  max-width: 820px;
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: 1.05rem;
  line-height: 1.55;
}

.text-link-dark {
  flex: 0 0 auto;
  color: var(--color-black);
}

.proof {
  background:
    linear-gradient(180deg, #111111 0%, #171717 100%);
}

.proof-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.proof-header h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.proof-rating {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--color-gray);
}

.proof-rating strong {
  display: block;
  color: var(--color-orange);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
  font-weight: 900;
}

.proof-rating span {
  display: block;
  margin-top: 10px;
  color: var(--color-white);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-rating p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.92fr));
  gap: 16px;
}

.testimonial-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--color-gray);
}

.testimonial-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.18), rgba(43, 43, 43, 0.98)),
    var(--color-gray);
}

.testimonial-score {
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.16);
  color: var(--color-orange);
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: auto 0 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.48;
  font-weight: 700;
}

.testimonial-card footer {
  margin-top: 28px;
}

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

.testimonial-card footer strong {
  color: var(--color-white);
  font-size: 1.04rem;
}

.testimonial-card footer span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.proof-strip article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-strip strong {
  display: block;
  color: var(--color-white);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.plans {
  color: var(--color-black);
  background: var(--color-white);
}

.plans-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.plans-header h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.plans-header > p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

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

.plan-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #f2f2f2;
  color: var(--color-black);
}

.plan-card-featured {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  transform: translateY(-18px);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card-featured .plan-label {
  background: rgba(255, 107, 0, 0.22);
}

.plan-card h3 {
  margin: 34px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
}

.plan-card p {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.62;
}

.plan-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card ul {
  display: grid;
  gap: 14px;
  margin: auto 0 28px;
  padding: 34px 0 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(17, 17, 17, 0.74);
  line-height: 1.45;
  font-weight: 700;
}

.plan-card-featured li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-orange);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  backdrop-filter: none;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--color-gray);
  border-color: var(--color-gray);
}

.plans-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: #eaeaea;
}

.plans-note strong {
  color: var(--color-orange);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plans-note span {
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.55;
}

.faq {
  background:
    linear-gradient(180deg, #111111 0%, #171717 100%);
}

.faq-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.faq-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--color-gray);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 22px 64px 22px 24px;
  color: var(--color-white);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.16);
  color: var(--color-orange);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.faq-support {
  position: sticky;
  top: 40px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.18), rgba(43, 43, 43, 1)),
    var(--color-gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-support span {
  color: var(--color-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-support h3 {
  margin: 34px 0 0;
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
}

.faq-support p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  color: var(--color-black);
  background: var(--color-white);
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  line-height: 0.94;
  font-weight: 900;
}

.contact-content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-info article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  background: #f2f2f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-info span {
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info strong {
  color: var(--color-black);
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: #181818;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.fake-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.2), transparent 46%),
    linear-gradient(180deg, #222222 0%, #141414 100%);
}

.fake-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 58px 58px;
}

.map-road {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #f4f4f4;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.road-atletas {
  left: -12%;
  top: 43%;
  width: 124%;
  height: 54px;
  transform: rotate(-8deg);
}

.road-performance {
  left: 54%;
  top: -10%;
  width: 56px;
  height: 118%;
  justify-content: center;
  padding-left: 0;
  transform: rotate(12deg);
}

.road-performance span {
  transform: rotate(90deg);
  white-space: nowrap;
}

.road-energia {
  left: -8%;
  top: 18%;
  width: 70%;
  height: 42px;
  transform: rotate(17deg);
}

.road-vitalidade {
  right: -18%;
  bottom: 28%;
  width: 76%;
  height: 44px;
  transform: rotate(22deg);
}

.map-block {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 136px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.block-park {
  top: 14%;
  right: 9%;
}

.block-shop {
  left: 9%;
  top: 32%;
}

.block-station {
  right: 14%;
  bottom: 22%;
}

.map-pin {
  position: absolute;
  left: 51%;
  top: 39%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
}

.pin-dot {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--color-white);
  border-radius: 50% 50% 50% 10px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 900;
  transform: rotate(-45deg);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.pin-dot span {
  transform: rotate(45deg);
}

.pin-label {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 28px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  backdrop-filter: blur(14px);
}

.map-card span {
  color: var(--color-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1;
  font-weight: 900;
}

.map-card p {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.site-footer {
  padding: 68px clamp(20px, 5vw, 72px) 28px;
  background: var(--color-black);
  color: var(--color-white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-brand p {
  max-width: 320px;
  margin: 24px 0 28px;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.footer-brand .btn {
  width: max-content;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 12px;
  color: var(--color-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

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

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

.footer-contact .text-link {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.78) 100%),
      linear-gradient(0deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.12) 54%, rgba(17, 17, 17, 0.76) 100%);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .section-block {
    padding: 76px 20px;
  }

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

  .section-heading {
    position: static;
  }

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

  .feature-card,
  .feature-card-large {
    min-height: 230px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .service-cta {
    grid-template-columns: 1fr;
  }

  .service-cta .btn {
    grid-column: 1;
    grid-row: auto;
    width: max-content;
  }

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

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-pillars article {
    min-height: 160px;
  }

  .audience-header,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 290px;
  }

  .audience-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link-dark {
    flex: 0 1 auto;
  }

  .proof-header,
  .testimonials-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 280px;
  }

  .plans-header,
  .plans-grid,
  .plans-note {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card-featured {
    min-height: 430px;
    transform: none;
  }

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

  .faq-support {
    position: static;
  }

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

  .contact-map {
    min-height: 420px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 76px;
    padding: 18px 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 116px 16px 28px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-stats article {
    min-height: 82px;
  }

  .section-block {
    padding: 62px 16px;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .feature-card {
    padding: 22px;
  }

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

  .service-card {
    min-height: 235px;
    padding: 22px;
  }

  .service-cta {
    padding: 24px;
  }

  .service-cta .btn {
    width: 100%;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }

  .about-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .about-pillars article {
    padding: 22px;
  }

  .about-pillars p {
    margin-top: 32px;
  }

  .audience-card,
  .audience-note {
    padding: 22px;
  }

  .audience-card {
    min-height: 260px;
  }

  .proof-rating,
  .testimonial-card,
  .proof-strip article {
    padding: 22px;
  }

  .plan-card,
  .plans-note {
    padding: 22px;
  }

  .plan-card,
  .plan-card-featured {
    min-height: 400px;
  }

  .faq-item summary {
    padding: 20px 56px 20px 20px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

  .faq-support {
    padding: 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-info article {
    padding: 20px;
  }

  .contact-map {
    min-height: 390px;
  }

  .map-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 22px;
  }

  .site-footer {
    padding: 54px 16px 26px;
  }

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

  .footer-brand .btn {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 42px;
  }
}
