:root {
  --ink: #171717;
  --muted: #62666b;
  --line: #e5e2dc;
  --surface: #ffffff;
  --soft: #f7f4ef;
  --orange: #f28c18;
  --orange-dark: #b96008;
  --charcoal: #101010;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 226, 220, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  background: #000;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #343434;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  content: "";
  height: 2px;
  left: 0;
  right: 0;
  bottom: -7px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 56px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52) 43%, rgba(0, 0, 0, 0.12) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02) 42%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffb75a;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(3.4rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--orange);
  color: #111;
  box-shadow: 0 14px 32px rgba(242, 140, 24, 0.32);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn.outline {
  border-color: var(--line);
  background: #fff;
}

.hero-stats {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-stats span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  color: #fff;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: #fff;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
}

.section,
.process,
.sales-strip,
.commercial-section,
.b-guide,
.trailer-guide,
.media-section,
.contact-section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.sales-strip {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--orange);
  color: #111;
}

.sales-strip .eyebrow {
  color: #111;
}

.sales-strip h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.sales-strip .btn.primary {
  background: #111;
  color: #fff;
  box-shadow: none;
}

.b-spotlight {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 86px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #111 0%, #202020 58%, #3a250b 100%);
  color: #fff;
}

.b-spotlight-copy {
  max-width: 850px;
}

.b-spotlight-copy h2 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.b-spotlight-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.13rem;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.b-spotlight-prices {
  display: grid;
  gap: 14px;
}

.b-spotlight-prices article {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.b-spotlight-prices span {
  color: #ffbd68;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.b-spotlight-prices strong {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
}

.b-spotlight-prices small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section-heading p:not(.eyebrow),
.media-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.commercial-section {
  background: var(--soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.benefit-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.22rem;
  font-weight: 900;
}

.benefit-grid p {
  color: var(--muted);
}

.b-guide {
  background: #fff;
}

.b-guide-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  margin-top: 30px;
}

.b-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.b-panel.accent {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.b-panel h3 {
  font-size: 1.45rem;
}

.formula-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.formula-list div {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.formula-list strong,
.b-panel strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.formula-list p,
.b-panel p,
.source-note {
  color: var(--muted);
}

.b-panel.accent p,
.b-panel.accent .source-note {
  color: rgba(255, 255, 255, 0.72);
}

.b-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.b-panel li::before {
  content: "+";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.source-note {
  margin: 20px 0 0;
  font-size: 0.92rem;
}

.feature-card,
.price-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.feature-card.main-training {
  border-color: var(--orange);
  box-shadow: 0 18px 44px rgba(242, 140, 24, 0.16);
}

.inline-badge {
  top: 18px;
  right: 18px;
}

.feature-card p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff0dd;
  color: #141414;
  border: 2px solid var(--orange);
  font-weight: 900;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1.28fr);
  gap: 34px;
  align-items: start;
  background: var(--charcoal);
  color: #fff;
}

.media-copy {
  position: sticky;
  top: 110px;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.dynamic-gallery {
  display: grid;
  gap: 14px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  border-radius: 8px;
  background: #000;
}

.gallery-stage img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.35s ease;
}

.gallery-stage.is-changing img {
  opacity: 0.35;
  transform: scale(1.015);
}

.gallery-stage figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.gallery-stage figcaption strong {
  font-size: 1.25rem;
}

.gallery-stage figcaption span {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-thumb {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.gallery-thumb img {
  width: 100%;
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-thumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 900;
}

.gallery-thumb.is-active {
  border-color: var(--orange);
  background: rgba(242, 140, 24, 0.2);
}

.trailer-guide {
  background: #fff;
}

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.trailer-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.trailer-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 900;
}

.trailer-grid p {
  color: var(--muted);
}

.trailer-grid .highlight {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.trailer-grid .highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  background: var(--soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline div {
  padding-top: 18px;
  border-top: 3px solid var(--orange);
}

.timeline span {
  color: var(--orange-dark);
  font-weight: 900;
}

.pricing-section {
  background: #fff;
}

.discount-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: -10px 0 24px;
  padding: 18px 20px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: #fff6e9;
}

.discount-callout strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
}

.discount-callout span {
  color: #3d3328;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.price-card.b-price-card {
  border-color: var(--orange);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 112px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 46px;
  background: var(--soft);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #343434;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d0c6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 140, 24, 0.22);
  border-color: var(--orange);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #e8e2d9;
  background: #111;
}

.site-footer p {
  margin: 0;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(340px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.96);
  transform-origin: right bottom;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-panel-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #075e54;
  color: #fff;
}

.whatsapp-panel-header strong,
.whatsapp-panel-header small {
  display: block;
}

.whatsapp-panel-header small {
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
}

.whatsapp-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}

.whatsapp-panel-body {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #efe6dd;
}

.chat-bubble {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: #1f2a22;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.chat-bubble.alt {
  justify-self: end;
  background: #dcf8c6;
}

.whatsapp-start {
  display: flex;
  justify-content: center;
  margin: 14px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #25d366;
  color: #07170d;
  font-weight: 900;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: #25d366;
  color: #08170d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

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

.whatsapp-float .whatsapp-avatar {
  width: 46px;
  height: 46px;
}

.whatsapp-dot {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 13px;
  height: 13px;
  border: 2px solid #25d366;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .sales-strip,
  .b-spotlight,
  .b-guide-layout,
  .media-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .media-copy {
    position: static;
  }

  .feature-grid,
  .benefit-grid,
  .trailer-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .discount-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 118px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28));
  }

  .trust-band,
  .feature-grid,
  .timeline,
  .gallery-stage {
    min-height: 420px;
  }

  .gallery-stage img {
    height: 420px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-thumb img {
    height: 88px;
  }

  .section,
  .process,
  .sales-strip,
  .b-spotlight,
  .commercial-section,
  .b-guide,
  .trailer-guide,
  .media-section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

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

  .formula-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-panel {
    bottom: 68px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}
