/* ============================================================
   VARAMMA GYM — Design System
   Dark charcoal / black + bright orange accent
   ============================================================ */

/* ---------- CSS Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #17181c;
  color: #f5f5f5;
  font-family: "Inter", "Manrope", "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid #f26a3d;
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: #e4572e;
  color: #0b0d10;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0b0d10;
}
::-webkit-scrollbar-thumb {
  background: #2a3038;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e4572e;
}

/* ---------- Variables ---------- */
:root {
  --bg: #171a1f;
  --bg-soft: #14171c;
  --black: #0b0d10;
  --card: #1d2229;
  --card-hover: #232a33;
  --orange: #e4572e;
  --orange-bright: #f26a3d;
  --white: #f5f5f5;
  --muted: #9aa0a6;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --font-display: "Bebas Neue", "Oswald", "Anton", "Archivo Black", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", "Manrope", "Montserrat", system-ui, sans-serif;
  --container: 1240px;
  --header-h: 78px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.text-orange {
  color: var(--orange-bright);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.eyebrow-line {
  width: 42px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 18px;
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  max-width: 520px;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-head.center + * {
  margin-top: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(228, 87, 46, 0.28);
}

.btn-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 12px 32px rgba(242, 106, 61, 0.42);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-bright);
  background: rgba(228, 87, 46, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 6px;
}

.btn-block {
  width: 100%;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}

.link-more:hover svg {
  transform: translateX(4px);
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(11, 13, 16, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--black);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}

.brand-mark .mark-slash {
  transition: transform 0.4s var(--ease);
}

.brand:hover .mark-slash {
  transform: translateX(2px);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--white);
}

.brand-text em {
  font-style: normal;
  color: var(--orange-bright);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7cdd4;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid var(--border);
  background: rgba(11, 13, 16, 0.98);
  padding: 20px 24px 28px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu .nav-link {
  font-size: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-link::after {
  display: none;
}

.mobile-menu-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 72px;
  background:
    radial-gradient(58% 46% at 82% 12%, rgba(228, 87, 46, 0.16), transparent 62%),
    radial-gradient(40% 40% at 6% 92%, rgba(228, 87, 46, 0.08), transparent 60%),
    linear-gradient(180deg, #101216 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(23, 26, 31, 0.9));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hex {
  position: absolute;
  width: 200px;
  height: auto;
  pointer-events: none;
}

.hex-top {
  top: 130px;
  right: -60px;
  opacity: 0.75;
}

.hex-bottom {
  bottom: 40px;
  left: -70px;
  transform: rotate(28deg);
}

.hero-grid-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.4vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}

.hero-sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-tags li {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}

.hero-tags li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-figure {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
}

.hero-figure::before,
.hero-figure::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-figure::before {
  inset: 0;
  background: linear-gradient(200deg, rgba(16, 18, 22, 0.18) 0%, transparent 42%, rgba(11, 13, 16, 0.62) 100%);
}

.hero-figure::after {
  bottom: 0;
  left: 0;
  height: 5px;
  width: 62%;
  background: var(--orange);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-figure .figure-glow {
  position: absolute;
  inset: -18% -18% auto auto;
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, rgba(242, 106, 61, 0.34), transparent 65%);
  filter: blur(18px);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  flex: none;
}

.hero-badge-icon svg {
  width: 24px;
  height: 24px;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: var(--white);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  z-index: 3;
  height: 88px;
  overflow: hidden;
  margin-top: -44px;
}

.marquee-strip {
  background: var(--white);
  transform: rotate(-2deg) scale(1.04);
  height: 110px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-group span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: 0.14em;
  color: var(--black);
  padding: 0 28px;
  white-space: nowrap;
}

.marquee-group span::before {
  content: "\2726";
  color: var(--orange);
  margin-right: 56px;
  font-size: 0.72em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   FEATURES
   ============================================================ */
.section-features {
  background: var(--bg);
}

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

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--card-hover);
  border-color: rgba(242, 106, 61, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(228, 87, 46, 0.12);
  border: 1px solid rgba(228, 87, 46, 0.28);
  color: var(--orange-bright);
  margin-bottom: 22px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover .feature-icon {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(228, 87, 46, 0.14), 0 0 32px rgba(242, 106, 61, 0.55);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  background: var(--black);
  overflow: hidden;
}

.geo-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid var(--border-strong);
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, transparent 40%, rgba(11, 13, 16, 0.66) 100%);
}

.about-frame {
  position: absolute;
  z-index: 2;
  inset: -18px auto auto -18px;
  width: 46%;
  height: 46%;
  border: 2px solid var(--orange);
  border-radius: 12px;
  pointer-events: none;
}

.about-stamp {
  position: absolute;
  z-index: 3;
  bottom: -34px;
  right: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(228, 87, 46, 0.4);
}

.stamp-number {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.stamp-number span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 28px;
}

.stamp-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin-top: 6px;
}

.about-copy {
  padding: 24px 0;
}

.about-text {
  color: var(--muted);
  font-size: 17px;
  margin-top: 24px;
  max-width: 540px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.about-highlights li:hover {
  border-color: rgba(242, 106, 61, 0.5);
  transform: translateY(-3px);
}

.hl-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: rgba(228, 87, 46, 0.14);
  color: var(--orange-bright);
}

.hl-icon svg {
  width: 14px;
  height: 14px;
}

.about-cta {
  margin-top: 36px;
}

/* ============================================================
   TRAINING
   ============================================================ */
.section-training {
  background: var(--bg);
}

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

.training-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.training-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 61, 0.45);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.training-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.training-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.training-card:hover .training-media img {
  transform: scale(1.08);
}

.training-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(11, 13, 16, 0.1), rgba(11, 13, 16, 0.55));
}

.training-index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  padding: 2px 10px;
  line-height: 1.5;
}

.training-body {
  padding: 24px 22px 26px;
}

.training-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.training-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 10px 0 18px;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

/* ============================================================
   PRICING
   ============================================================ */
.section-pricing {
  background: var(--black);
  overflow: hidden;
}

.section-pricing .hero-grid {
  opacity: 0.6;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 34px 34px;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 61, 0.4);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #232a33, #1d2229);
  border-color: rgba(242, 106, 61, 0.55);
  box-shadow: 0 28px 64px rgba(228, 87, 46, 0.18);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  border-radius: 18px 18px 0 0;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(228, 87, 46, 0.45);
}

.pricing-head h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.pricing-head p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  min-height: 44px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
}

.featured .price-amount {
  color: var(--orange-bright);
}

.price-per {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-features {
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cfd4da;
  font-size: 14.5px;
  padding: 9px 0;
}

.tick {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: rgba(228, 87, 46, 0.16);
  color: var(--orange-bright);
  margin-top: 1px;
}

.tick svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   SUCCESS
   ============================================================ */
.section-success {
  background: var(--bg);
}

.success-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.collage-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.collage-item:hover img {
  transform: scale(1.07);
}

.collage-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(11, 13, 16, 0.25), rgba(11, 13, 16, 0.72));
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.collage-item:hover::after {
  opacity: 0.6;
}

.collage-item figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
}

.caption-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 13, 16, 0.7);
  border: 1px solid rgba(242, 106, 61, 0.6);
  padding: 7px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.item-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.item-b { grid-column: 3 / 4; grid-row: 1 / 2; }
.item-c { grid-column: 4 / 5; grid-row: 1 / 2; }
.item-d { grid-column: 3 / 5; grid-row: 2 / 3; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--orange-bright);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange-bright);
}

.stat-label {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.success-statement {
  text-align: center;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  margin: 44px auto 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background: var(--black);
}

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

.testimonial-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #d4d9de;
  font-size: 15.5px;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
}

.testimonial-card footer div {
  display: flex;
  flex-direction: column;
}

.quote-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
  letter-spacing: 0.03em;
}

.quote-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange-bright);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}

.cta-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1526506118085-60ce8714f8c5?q=80&w=1700&auto=format&fit=crop");
  background-size: cover;
  background-position: center 40%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 60% at 50% 60%, rgba(228, 87, 46, 0.24), transparent 70%),
    linear-gradient(180deg, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0.78));
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.4vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 860px;
}

.cta-sub {
  color: #d4d9de;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6c7278;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228, 87, 46, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #e5484d;
}

.form-status {
  font-size: 14px;
  font-weight: 600;
  min-height: 22px;
  color: #7fd1a0;
}

.form-status.error {
  color: #f36a6a;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
}

.ci-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: rgba(228, 87, 46, 0.12);
  border: 1px solid rgba(228, 87, 46, 0.24);
  color: var(--orange-bright);
}

.ci-icon svg {
  width: 22px;
  height: 22px;
}

.contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ci-value {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}

a.ci-value:hover {
  color: var(--orange-bright);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 340px;
}

.social-list {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--muted);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.social-list a svg {
  width: 20px;
  height: 20px;
}

.social-list a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14.5px;
}

.footer-col ul a {
  color: var(--muted);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--orange-bright);
  padding-left: 4px;
}

.footer-contact ul li {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 13.5px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--orange-bright);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: clamp(3.6rem, 11vw, 6rem);
  }

  .hero-tags {
    justify-content: flex-start;
  }

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

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

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

  .about-media {
    max-width: 620px;
  }

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

  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 860px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 32px);
  }

  .hero-badge {
    right: 4px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .success-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px;
  }

  .item-a { grid-column: 1 / 2; grid-row: 1 / 3; }
  .item-b { grid-column: 2 / 3; grid-row: 1 / 2; }
  .item-c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .item-d { display: none; }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(2.3rem, 9.5vw, 3rem);
  }

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

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

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

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

  .contact-form-wrap {
    padding: 26px 20px;
  }

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

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

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    justify-content: center;
  }

  .about-stamp {
    right: 12px;
    bottom: -24px;
    padding: 16px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .collage-item figcaption {
    left: 12px;
    bottom: 12px;
  }

  .caption-tag {
    font-size: 9.5px;
    padding: 6px 10px;
  }

  .cta-banner {
    padding: 96px 0;
  }

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

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

  .marquee {
    height: 72px;
  }

  .marquee-strip {
    height: 92px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

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