*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

:root {
  --red: #cc0000;
  --red-dark: #9b0000;
  --red-light: #fff0f0;
  --gray-bg: #f8f8f8;
  --pink-bg: #fce4e4;
  --dark: #111111;
  --text: #444;
  --text-light: #777;
  --border: #e5e5e5;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font-heading: "Gilroy Heavy", "Gilroy-Heavy", "Arial Black", "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.red-text {
  color: var(--red);
}

.centered {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.35);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text);
  font-size: 0.95rem;
  max-width: 540px;
  margin-bottom: 22px;
}

.feature-list {
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  font-size: 0.82rem;
  padding: 9px 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: #1a0000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 40%, rgba(100, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 6px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 420px;
  margin: 16px 0 20px;
}

.hero-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 28px;
}

.hero-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right {
  flex-shrink: 0;
}

.hero-tagline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-align: right;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-tagline .red-text {
  color: var(--red);
}

.red-light-section {
  background: #ffe8e8;
}

.video-panel-section {
  background: #fff;
  padding-top: 0;
}

.video-panel {
  width: 100%;
  max-width: 1120px;
  aspect-ratio: 16 / 9;
  margin: 38px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.video-panel-desc {
  max-width: 820px;
  margin: 16px auto 0;
}

.video-panel iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.zerona-section {
  background: linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
  overflow: hidden;
}

.zerona-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  max-width: 900px;
}

.zerona-content .section-heading {
  max-width: 420px;
}

.zerona-content .section-desc {
  max-width: 430px;
}

.zerona-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
  transition: transform 0.55s ease, filter 0.55s ease;
}

.zerona-img-wrap:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.22));
}

.zerona-img-wrap .section-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.zerona-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.zerona-section.is-expanded .zerona-more {
  max-height: 360px;
  opacity: 1;
  padding-top: 16px;
}

.zerona-more .section-desc {
  margin-bottom: 18px;
  line-height: 1.72;
}

.zerona-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.zerona-read-more {
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: 800 0.92rem/1 var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.zerona-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.zerona-benefits {
  margin: 18px 0 0;
}

.zerona-more .zerona-benefits {
  margin-top: 0;
}

.red-light-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.red-light-img-wrap .section-img {
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.section-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.availability-note {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
}

.offer-section {
  background: #fff;
}

.offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.offer-card-img-wrap {
  position: relative;
}

.offer-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.offer-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.offer-card-body {
  padding: 24px;
}

.offer-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.offer-card-sub {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}

.offer-card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.offer-card-list li {
  font-size: 0.88rem;
  color: var(--text);
}

.learn-more {
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.learn-more:hover {
  color: var(--red-dark);
  gap: 8px;
}

.radiant-section {
  background: #fce4e4;
}

.radiant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.radiant-img-wrap .section-img {
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.athletic-section {
  background: var(--dark);
}

.athletic-section .section-label {
  color: #cc4444;
}

.athletic-section .section-heading {
  color: #fff;
}

.athletic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.athletic-card-big {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.athletic-card-big img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.athletic-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}

.sport-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.sport-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: transform var(--transition), filter var(--transition);
  cursor: default;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.sport-icon-img:hover {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1.1);
}

.chart-img {
  width: 100%;
  border-radius: 10px;
}

.why-section {
  background: #fce4e4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(204, 0, 0, 0.12);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(204, 0, 0, 0.12);
}

.why-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

.testimonials-section {
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.testimonial-card {
  background: #f8f8f8;
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5a623;
  font-size: 0.95rem;
  margin-bottom: 12px;
  background: #fff8ee;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid #f5e2b8;
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.faq-section {
  background: var(--red-light);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item.open {
  border-color: var(--red);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--red);
  background: var(--red-light);
}

.pricing-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 6px;
}

.pricing-phone {
  display: inline-block;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.pricing-phone:hover {
  color: var(--red-dark);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-banner {
  background: var(--red);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: #0d0d0d;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 14px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.footer-brand-lockup .footer-logo {
  margin-bottom: 0;
}

.footer-brand-lockup span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.footer-socials a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.privacy-page {
  background: #f7f7f7;
}

.privacy-hero {
  padding: 120px 0 24px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.privacy-content.section-pad {
  padding-top: 26px;
}

.privacy-hero-inner {
  max-width: 820px;
  text-align: center;
}

.privacy-hero .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.privacy-container {
  max-width: 980px;
}

.privacy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
  padding: clamp(28px, 5vw, 58px);
}

.privacy-card h2,
.privacy-card h3 {
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.18;
}

.privacy-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: 18px;
}

.privacy-card h3 {
  font-size: 1.12rem;
  margin: 34px 0 12px;
}

.privacy-card p,
.privacy-card li {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.75;
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 18px;
  list-style: disc;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.privacy-card table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.privacy-card th,
.privacy-card td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.privacy-card th {
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.privacy-card th:last-child,
.privacy-card td:last-child {
  border-right: 0;
}

.privacy-card tbody tr:nth-child(even) td {
  background: #fff7f7;
}

.privacy-card tr:last-child td {
  border-bottom: 0;
}

.service-detail-page {
  background: #fff;
}

.service-detail-hero {
  padding: 126px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--pink-bg) 100%);
}

.service-detail-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.service-detail-copy h1 {
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 14px 0 18px;
}

.service-detail-copy p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 26px;
}

.service-detail-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-highlight-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.service-highlight-grid span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.service-highlight-grid h3,
.service-article h2,
.service-article h3 {
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.16;
}

.service-highlight-grid h3 {
  font-size: 1.2rem;
  margin: 8px 0 8px;
}

.service-highlight-grid p,
.service-article p {
  color: var(--text);
  line-height: 1.72;
}

.service-content-section {
  background: #f7f7f7;
}

.service-content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.14);
}

.service-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 42px);
  max-height: 820px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #f1f1f1;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.service-article::-webkit-scrollbar {
  width: 8px;
}

.service-article::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.service-article h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.service-article h3 {
  font-size: 1.35rem;
  margin: 34px 0 12px;
}

.service-article p + p {
  margin-top: 12px;
}

.service-zigzag {
  display: grid;
  gap: 28px;
}

.service-zigzag-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.07);
}

.service-zigzag-row:nth-child(even) .service-zigzag-media {
  order: 2;
}

.service-zigzag-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-zigzag-row:hover .service-zigzag-media img {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.15);
}

.service-zigzag-copy h2,
.service-zigzag-copy h3 {
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.16;
}

.service-zigzag-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.service-zigzag-copy h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 10px;
}

.service-zigzag-copy p {
  color: var(--text);
  line-height: 1.72;
}

.service-zigzag-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service-zigzag-list li {
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.55;
}

.service-zigzag-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .service-detail-hero-inner,
  .service-content-layout,
  .service-highlight-grid,
  .service-zigzag-row {
    grid-template-columns: 1fr;
  }

  .service-zigzag-row:nth-child(even) .service-zigzag-media {
    order: 0;
  }

  .service-detail-media img {
    height: auto;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-article {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 520px) {
  .service-gallery {
    grid-template-columns: 1fr;
  }
}

.footer-col h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-cta {
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 4px 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 48px 24px 40px;
  }

  .hero-right {
    align-self: flex-start;
  }

  .hero-tagline {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    text-align: left;
    white-space: normal;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  .red-light-inner,
  .radiant-inner,
  .athletic-inner,
  .offer-cards,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .radiant-img-wrap {
    order: -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-btns {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .feature-list.two-col {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 20px;
  }
}

:root {
  --red: #ff1010;
  --red-dark: #d80000;
  --red-light: #ffe0e0;
  --pink-bg: #ffe0e0;
  --dark: #070707;
  --text: #6d6874;
  --text-light: #86808b;
  --border: #f0ecec;
  --radius: 18px;
  --shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.container {
  max-width: 980px;
  padding: 0 22px;
}

.section-pad {
  padding: 86px 0;
}

.btn {
  padding: 14px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 0;
}

.section-label {
  color: var(--red);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.section-desc {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.42;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #030303;
  border: 0;
}

.nav-inner {
  height: 80px;
  max-width: 100%;
  padding: 0 20px;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 128px;
}

.logo-img {
  height: 54px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: #fff;
  padding: 0;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: none;
  color: var(--red);
}

.nav-actions {
  gap: 16px;
}

.hamburger {
  display: none;
}

.hamburger span {
  width: 25px;
  height: 4px;
}

.hero {
  min-height: 0;
  display: block;
  padding: 66px 0 96px;
  background: #fff;
  overflow: visible;
}

.hero-bg {
  position: relative;
  z-index: 0;
  width: min(906px, calc(100% - 44px));
  height: clamp(300px, 36vw, 448px);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

.hero-bg-img {
  object-position: center center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(85, 0, 0, .26));
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 0 22px;
  margin-top: calc(clamp(300px, 36vw, 448px) * -1);
}

.hero-text,
.hero-right {
  min-height: clamp(300px, 36vw, 448px);
  display: flex;
  flex-direction: column;
}

.hero-text {
  padding: 210px 0 0 38px;
}

.hero-badge {
  order: 0;
  width: max-content;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: .72rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero-title {
  order: 1;
  max-width: 360px;
  font-size: clamp(2.3rem, 4.4vw, 3.55rem);
  line-height: 1.05;
  margin: 0 0 28px;
}

.hero-sub {
  color: #fff;
  font-size: inherit;
  font-weight: 900;
}

.hero-intro {
  order: 2;
  color: var(--dark);
  font-size: .98rem;
  line-height: 1.18;
  font-weight: 800;
  max-width: 420px;
  margin: 0 0 14px;
}

.hero-desc {
  order: 3;
  color: var(--text);
  max-width: 420px;
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}

.hero-list {
  order: 4;
  grid-template-columns: 1fr 1fr;
  gap: 7px 34px;
  margin: -102px 0 28px 460px;
  min-width: 420px;
}

.hero-list li {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.2;
}

.hero-text .btn {
  order: 5;
  width: max-content;
}

.hero-right {
  justify-content: center;
  padding-top: 122px;
}

.hero-tagline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  line-height: 1;
}

.hero {
  position: relative;
}

.hero-content {
  display: block;
  width: min(906px, calc(100% - 44px));
  margin-inline: auto;
  padding: 0;
}

.hero-text {
  width: 100%;
  min-height: clamp(300px, 36vw, 448px);
  padding: 135px 0 0 30px;
}

.hero-title {
  max-width: 330px;
  font-size: clamp(1.95rem, 3.15vw, 2.48rem);
  line-height: 1.06;
}

.hero-right {
  position: absolute;
  left: calc(50% - 65px);
  right: calc((100% - min(906px, calc(100% - 44px))) / 2 + 20px);
  top: 312px;
  min-height: 0;
  padding: 0;
}

.hero-tagline {
  font-size: clamp(2.2rem, 3.75vw, 3rem);
}

.hero-intro {
  margin-top: 52px;
}

.hero-list {
  margin: -98px 0 28px 460px;
}

.red-light-section,
.radiant-section,
.why-section,
.faq-section {
  background: var(--pink-bg);
}

.red-light-inner,
.radiant-inner {
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  max-width: 900px;
}

.red-light-img-wrap .section-img,
.radiant-img-wrap .section-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-list.two-col {
  gap: 8px 30px;
}

.feature-list li {
  color: var(--text);
  font-size: .83rem;
  line-height: 1.15;
}

.availability-note {
  color: var(--red);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.offer-section {
  padding: 92px 0 120px;
}

.offer-cards {
  max-width: 860px;
  margin: 42px auto 0;
  gap: 34px;
}

.offer-card {
  border: 0;
  border-radius: 8px;
  padding: 18px 18px 42px;
  box-shadow: 0 22px 36px rgba(0, 0, 0, .24);
}

.offer-card-img {
  height: 285px;
  border-radius: 16px;
}

.offer-card-badge {
  top: 17px;
  left: 24px;
  background: rgba(255, 255, 255, .5);
  font-size: .8rem;
  font-weight: 800;
}

.offer-card-body {
  padding: 22px 0 0;
}

.offer-card-title {
  font-size: 1.45rem;
  line-height: 1.08;
}

.offer-card-sub {
  color: var(--red);
  font-size: .9rem;
  font-weight: 800;
}

.offer-card-list li {
  color: var(--text);
  font-size: .84rem;
}

.learn-more {
  color: #111;
  font-size: .95rem;
}

.radiant-content .feature-list {
  gap: 0;
}

.radiant-content .feature-list li {
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  padding: 14px 0;
}

.athletic-section {
  background: #fff;
}

.athletic-section .section-label {
  color: var(--red);
}

.athletic-section .section-heading {
  color: var(--dark);
  max-width: 420px;
  margin-inline: auto;
}

.athletic-inner {
  max-width: 720px;
  margin: 30px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.athletic-card-big {
  border-radius: 28px;
}

.athletic-card-big img {
  height: 430px;
}

.athletic-card-label {
  top: 0;
  bottom: auto;
  background: none;
  padding: 28px 26px;
  font-size: 1.7rem;
  line-height: 1.06;
}

.athletic-card-label span {
  display: block;
  font-size: .78rem;
  margin-bottom: 12px;
  line-height: 1;
}

.chart-img {
  height: 430px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 28px;
}

.sport-icons {
  width: calc(200% + 86px);
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.sport-icon-img {
  width: 55px;
  height: 55px;
  background: none;
  border-radius: 0;
  padding: 0;
}

.why-grid {
  gap: 28px;
}

.why-card {
  min-height: 180px;
  border: 0;
  border-radius: 8px;
  padding: 34px 28px 24px;
  box-shadow: none;
  background: linear-gradient(#fff 58%, #ff7777 130%);
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff0f0;
}

.testimonials-section {
  padding: 96px 0 116px;
}

.testimonials-grid {
  gap: 22px;
  margin-top: 76px;
}

.testimonial-card {
  background: #fafafa;
  border: 0;
  border-radius: 10px;
  padding: 28px 24px;
}

.stars {
  background: none;
  border: 0;
  color: #ffc02c;
  padding: 0;
}

.testimonial-text {
  font-style: normal;
}

.faq-inner {
  max-width: 860px;
}

.faq-item {
  border: 0;
  border-radius: 9px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .13);
}

.faq-question {
  padding: 22px 26px;
}

.pricing-section {
  background: var(--pink-bg);
  padding-top: 0;
}

.pricing-grid {
  max-width: 600px;
  gap: 32px;
}

.pricing-card,
.pricing-card.featured {
  background: linear-gradient(#fff 66%, #ff7777 130%);
  border: 0;
  border-radius: 9px;
  padding: 28px 28px 24px;
  text-align: left;
}

.pricing-amount {
  color: #111;
  font-size: 1.45rem;
}

.cta-banner {
  padding: 34px 0;
}

.cta-inner {
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.cta-text h2 {
  margin: 0;
}

.footer {
  background: #000000;
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1280px;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-logo {
  display: block;
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .hero-list {
    margin-left: 390px;
    min-width: 360px;
  }

  .nav-links {
    gap: 16px;
  }

  .athletic-inner {
    gap: 42px;
  }

  .sport-icons {
    width: calc(200% + 42px);
  }
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-inner {
    height: 68px;
  }
  .logo-img {
    height: 44px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 18px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .nav-actions .nav-cta {
    display: none;
  }
  .hero {
    padding: 34px 0 70px;
  }

  .hero-bg {
    height: 420px;
  }

  .hero-content {
    display: block;
    margin-top: -420px;
  }

  .hero-text,
  .hero-right {
    min-height: 0;
  }

  .hero-text {
    padding: 150px 20px 0;
  }

  .hero-title {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .hero-right {
    display: none;
  }

  .hero-intro {
    margin-top: 86px;
  }

  .hero-list {
    min-width: 0;
    margin: 22px 0 26px;
    grid-template-columns: 1fr;
  }

  .red-light-inner,
  .radiant-inner,
  .athletic-inner,
  .offer-cards,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .red-light-img-wrap .section-img,
  .radiant-img-wrap .section-img,
  .athletic-card-big img,
  .chart-img {
    height: auto;
    max-height: none;
  }

  .sport-icons {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .footer-inner {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .hero-bg {
    width: calc(100% - 28px);
    height: 390px;
    border-radius: 18px;
  }

  .hero-content {
    margin-top: -390px;
  }

  .hero-text {
    padding: 132px 10px 0;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-intro {
    margin-top: 86px;
  }

  .offer-card-img {
    height: 220px;
  }

  .testimonials-grid {
    margin-top: 42px;
  }
}

.hero-overlay {
  display: none;
  background: none;
}

.hero-bg {
  box-shadow: none;
}

.hero-text {
  padding: 142px 0 0 34px;
}

.hero-badge {
  margin-bottom: 10px;
}

.hero-title {
  max-width: 385px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.45vw, 2.72rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-right {
  top: 356px;
  left: calc(50% - 108px);
  right: calc((100% - min(906px, calc(100% - 44px))) / 2 + 28px);
}

.hero-tagline {
  font-size: clamp(2rem, 3.35vw, 2.72rem);
  line-height: .98;
  text-align: right;
  white-space: nowrap;
  color: var(--red);
}

.hero-tagline .red-text {
  color: var(--red);
}

.hero-intro {
  margin-top: 84px;
  margin-bottom: 12px;
  max-width: 430px;
}

.hero-desc {
  max-width: 430px;
}

.hero-list {
  margin: -102px 0 30px 470px;
  gap: 9px 34px;
}

.hero-text .btn {
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hero-overlay {
    display: none;
  }

  .hero-text {
    padding: 128px 18px 0;
  }

  .hero-title {
    max-width: 305px;
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .hero-intro {
    margin-top: 140px;
    max-width: 315px;
    line-height: 1.2;
  }

  .hero-list {
    width: 100%;
    min-width: 0;
    margin: 22px 0 26px;
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: block;
    position: absolute;
    z-index: 2;
    top: 338px;
    left: 20px;
    right: 18px;
    min-height: 0;
    padding: 0;
    margin-top: 0;
  }

  .hero-tagline {
    color: var(--red);
    font-size: 1.65rem;
    line-height: 1;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-text {
    padding: 122px 12px 0;
  }

  .hero-title {
    max-width: 285px;
    font-size: 1.72rem;
  }

  .hero-intro {
    margin-top: 132px;
    max-width: 300px;
  }

  .hero-list {
    margin: 20px 0 24px;
  }

  .hero-right {
    top: 332px;
    left: 30px;
  }

  .hero-tagline {
    font-size: 1.42rem;
  }
}

.circle-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  border: 2px solid var(--red);
  border-radius: 50%;
  flex: 0 0 15px;
}

.circle-check::after {
  content: "";
  width: 4px;
  height: 7px;
  border: solid var(--red);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.hero-list li {
  align-items: flex-start;
  gap: 9px;
}

.red-light-img-wrap .section-img {
  object-fit: contain;
  object-position: center top;
  background: var(--pink-bg);
}

.offer-card-img {
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.offer-card-badge {
  border-radius: 50px;
}

.radiant-img-wrap .section-img {
  object-fit: contain;
  object-position: center top;
  background: var(--pink-bg);
}

.offer-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.offer-card-list .circle-check {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
}

.learn-more {
  gap: 14px;
  color: #111;
}

.learn-more-arrow {
  position: relative;
  width: 42px;
  height: 2px;
  background: #111;
  flex: 0 0 42px;
}

.learn-more-arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  border: 7px solid transparent;
  border-left-color: #111;
  transform: translateY(-50%);
}

.testimonials-section {
  background: #fff;
  padding: 140px 0 150px;
}

.testimonials-section .section-label {
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.testimonials-section .section-heading {
  font-size: clamp(2.55rem, 4.2vw, 3.45rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  margin-top: 0;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-height: 285px;
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fbfbfb;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: none;
}

.testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.avatar-pink { background: #ffe0e0; color: #d01818; }
.avatar-blue { background: #dceeff; color: #2367b7; }
.avatar-yellow { background: #fff6bd; color: #e24343; }
.avatar-green { background: #d8fff0; color: #5a7770; }

.stars {
  display: block;
  color: #ffb400;
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 18px;
}

.testimonial-text {
  color: #6d6874;
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #070707;
  font-size: 0.95rem;
  font-weight: 800;
  border: 0;
  padding: 0;
}

.testimonial-carousel {
  position: relative;
  margin-top: 82px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-prev { left: -58px; }
.testimonial-next { right: -58px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #ffd0d0;
  cursor: pointer;
}

.testimonial-dot.active {
  width: 24px;
  border-radius: 20px;
  background: var(--red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  color: var(--red);
  flex: 0 0 24px;
}

.faq-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-right: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.25s ease, top 0.25s ease;
}

.faq-item.open .faq-icon::before {
  top: 9px;
  transform: rotate(225deg);
}

.pricing-section {
  background: var(--pink-bg);
  padding: 124px 0 126px;
}

.pricing-section .section-heading {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: #7b727b;
  font-size: 1.08rem;
  line-height: 1.35;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  gap: 42px;
  margin: 22px auto 0;
}

.pricing-card,
.pricing-card.featured {
  background: linear-gradient(#fff 58%, #fff4f4 74%, #ff7474 122%);
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  padding: 30px 32px 34px;
  text-align: left;
}

.pricing-card:hover {
  transform: none;
  box-shadow: none;
}

.pricing-title {
  color: #070707;
  font-size: 1.35rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.pricing-desc,
.pricing-session,
.pricing-note {
  color: #4f4a51;
  font-size: 1rem;
  line-height: 1.25;
}

.pricing-session {
  margin: 28px 0 24px;
}

.pricing-amount {
  color: #070707;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 22px;
}

.pricing-note {
  margin-bottom: 22px;
}

.pricing-card .btn {
  width: 100%;
  background: #fff;
  border-color: #fff;
  color: var(--red);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 16px 24px;
}

.cta-banner {
  background: #ed0000;
  padding: 52px 0 58px;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.cta-text h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-btns .btn {
  min-width: 250px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
}

.cta-btns .btn-white {
  color: var(--red);
}

.cta-btns .btn-red {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

@media (max-width: 1024px) {
  .testimonial-card { flex-basis: calc((100% - 24px) / 2); }
  .testimonial-prev { left: -18px; }
  .testimonial-next { right: -18px; }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 82px 0 92px;
  }

  .testimonial-carousel { margin-top: 54px; }
  .testimonial-card { flex-basis: 100%; }
  .testimonial-nav { top: auto; bottom: -7px; transform: none; }
  .testimonial-prev { left: 0; }
  .testimonial-next { right: 0; }
  .testimonial-dots { margin-inline: 52px; }

  .pricing-section {
    padding: 86px 0 92px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: min(100%, 330px);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .circle-check {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}

.hero-title {
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-sub {
  display: block;
  margin-top: 0.08em;
  line-height: 1.36;
}

.hero-sub span {
  display: block;
}

.hero-sub span + span {
  margin-top: 0.1em;
}

.hero-intro,
.section-desc,
.testimonial-text,
.faq-answer p {
  overflow-wrap: anywhere;
}

.testimonial-carousel {
  overflow: visible;
  padding-inline: 2px;
}

.testimonial-nav {
  display: grid;
  place-items: center;
}

.section-img,
.offer-card-img,
.chart-img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-title {
    line-height: 1.26;
  }

  .hero-intro {
    margin-top: 122px;
  }

  .pricing-card,
  .pricing-card.featured,
  .testimonial-card {
    padding-inline: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    line-height: 1.28;
  }

  .hero-intro {
    margin-top: 116px;
  }

  .cta-text h2,
  .pricing-section .section-heading,
  .testimonials-section .section-heading {
    line-height: 1.14;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScaleIn {
  from {
    opacity: 0;
    transform: scale(0.975) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-badge,
.hero-title,
.hero-intro,
.hero-desc,
.hero-list li,
.hero-text .btn,
.hero-tagline {
  opacity: 0;
  animation: heroRise 0.75s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-badge { animation-delay: 0.08s; }
.hero-title { animation-delay: 0.18s; }
.hero-tagline { animation-delay: 0.32s; }
.hero-intro { animation-delay: 0.42s; }
.hero-desc { animation-delay: 0.5s; }
.hero-list li:nth-child(1) { animation-delay: 0.58s; }
.hero-list li:nth-child(2) { animation-delay: 0.63s; }
.hero-list li:nth-child(3) { animation-delay: 0.68s; }
.hero-list li:nth-child(4) { animation-delay: 0.73s; }
.hero-list li:nth-child(5) { animation-delay: 0.78s; }
.hero-list li:nth-child(6) { animation-delay: 0.83s; }
.hero-text .btn { animation-delay: 0.9s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.2, .8, .2, 1), transform 0.75s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-image {
  transform: scale(0.975) translateY(22px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-image.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.red-light-img-wrap .section-img,
.radiant-img-wrap .section-img,
.athletic-card-big,
.chart-img,
.offer-card-img {
  transition: transform 0.55s ease, box-shadow 0.55s ease, filter 0.55s ease;
}

.red-light-img-wrap .section-img:hover,
.radiant-img-wrap .section-img:hover,
.athletic-card-big:hover,
.chart-img:hover {
  transform: translateY(-4px) scale(1.01);
}

.offer-card,
.why-card,
.pricing-card,
.testimonial-card,
.faq-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.offer-card:hover,
.why-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
}

.btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.learn-more-arrow,
.testimonial-dot,
.testimonial-nav {
  transition: transform 0.28s ease, background-color 0.28s ease, width 0.28s ease, color 0.28s ease;
}

.learn-more:hover .learn-more-arrow {
  transform: translateX(5px);
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.testimonials-grid {
  transition: transform 0.52s cubic-bezier(.22, .8, .2, 1);
}

.faq-answer p {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .testimonial-nav:hover {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-badge,
  .hero-title,
  .hero-intro,
  .hero-desc,
  .hero-list li,
  .hero-text .btn,
  .hero-tagline {
    opacity: 1;
    transform: none;
  }
}

.video-testimonial-desc {
  max-width: 640px;
  margin: 14px auto 0;
}

.video-testimonial-card {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 0 !important;
  overflow: hidden;
  background: #111;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.video-testimonial-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.video-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-testimonial-card.is-playing::after {
  opacity: 0;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, background-color 0.28s ease, opacity 0.28s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.video-testimonial-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-testimonial-card.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading,
.hero-title,
.hero-tagline,
.offer-card-title,
.why-card-title,
.pricing-title,
.pricing-amount,
.athletic-card-label,
.cta-text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0;
}

body,
p,
li,
a,
button,
.section-label,
.section-desc,
.hero-badge,
.hero-intro,
.hero-desc,
.feature-list,
.offer-card-sub,
.offer-card-list,
.testimonial-text,
.testimonial-author,
.faq-question,
.faq-answer,
.pricing-desc,
.pricing-session,
.pricing-note,
.pricing-subtitle,
.cta-text p,
.footer,
.btn {
  font-family: var(--font-body);
}

.section-heading,
.pricing-section .section-heading,
.testimonials-section .section-heading,
.cta-text h2 {
  line-height: 1.12;
}

.hero-title {
  line-height: 1.22;
}

.hero-sub {
  line-height: 1.38;
}

.section-desc,
.feature-list li,
.offer-card-list li,
.testimonial-text,
.faq-answer p,
.pricing-desc,
.pricing-session,
.pricing-note,
.cta-text p,
.footer-tagline {
  line-height: 1.55;
}

.hero-title {
  max-width: 410px;
  font-size: clamp(2rem, 3.15vw, 2.5rem);
  line-height: 1.2;
}

.hero-sub {
  line-height: 1.34;
}

.hero-intro {
  max-width: 455px;
  font-size: 0.94rem;
  line-height: 1.32;
}

.hero-desc {
  max-width: 455px;
  font-size: 0.88rem;
  line-height: 1.58;
}

.section-heading {
  font-size: clamp(1.9rem, 3.35vw, 2.62rem);
  line-height: 1.12;
  text-wrap: balance;
}

.red-light-content,
.radiant-content {
  min-width: 0;
}

.offer-card-title {
  font-size: 1.32rem;
  line-height: 1.16;
}

.why-card-title {
  font-size: 1rem;
  line-height: 1.22;
}

.athletic-card-label {
  font-size: 1.45rem;
  line-height: 1.14;
}

.testimonials-section .section-heading {
  font-size: clamp(2.15rem, 3.45vw, 3rem);
  line-height: 1.1;
}

.testimonial-text {
  font-size: 0.86rem;
  line-height: 1.62;
}

.faq-question {
  font-size: 0.98rem;
  line-height: 1.3;
}

.pricing-section .section-heading {
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.pricing-title {
  font-size: 1.24rem;
  line-height: 1.18;
}

.pricing-amount {
  font-size: clamp(1.65rem, 2.4vw, 1.95rem);
  line-height: 1.08;
}

.pricing-card .pricing-phone {
  display: inline-block;
  margin: -10px 0 18px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 800;
}

.pricing-card .btn,
.cta-btns .btn {
  font-size: 0.96rem;
  line-height: 1.25;
}

.cta-text h2 {
  font-size: clamp(1.7rem, 2.65vw, 2.15rem);
  line-height: 1.15;
  text-wrap: balance;
}

.nav-links a {
  font-size: 0.74rem;
}

@media (max-width: 768px) {
  .hero-title {
    max-width: 330px;
    font-size: 1.78rem;
    line-height: 1.22;
  }

  .section-heading,
  .testimonials-section .section-heading,
  .pricing-section .section-heading {
    font-size: clamp(1.75rem, 8vw, 2.18rem);
  }

  .offer-card-title,
  .pricing-title {
    font-size: 1.18rem;
  }

  .cta-text h2 {
    font-size: 1.72rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    max-width: 310px;
    font-size: 1.62rem;
    line-height: 1.24;
  }

  .hero-sub {
    line-height: 1.4;
  }

  .section-heading,
  .testimonials-section .section-heading,
  .pricing-section .section-heading {
    font-size: 1.85rem;
    line-height: 1.16;
  }

  .faq-question {
    font-size: 0.92rem;
  }
}

.navbar .nav-inner,
.footer .footer-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer-inner {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 0 22px 40px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.footer-brand-lockup .footer-logo {
  display: block;
  height: 50px;
  width: auto;
  margin: 0;
}

.footer-brand-lockup span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .footer .footer-inner {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 22px;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.booking-modal.open {
  display: flex;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: var(--pink-bg);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.booking-modal.open .booking-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.booking-header {
  max-width: 520px;
  margin-bottom: 24px;
}

.booking-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.booking-header p,
.booking-form label {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
  font: 500 0.95rem/1.35 var(--font-body);
  padding: 13px 14px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 16, 16, 0.12);
}

.booking-form textarea {
  resize: vertical;
  margin-top: 16px;
}

.booking-message {
  min-height: 22px;
  margin: 16px 0;
  color: var(--red);
  font: 700 0.9rem/1.4 var(--font-body);
}

.booking-message.success {
  color: #087a37;
}

.booking-submit {
  width: 100%;
  text-align: center;
}

body.booking-lock {
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-dialog {
    padding: 28px 20px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .zerona-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .zerona-img-wrap {
    order: -1;
  }
}

@media (max-width: 640px) {
  .zerona-img-wrap .section-img {
    height: auto;
    max-height: 390px;
  }

  .zerona-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 1101px) {
  .navbar .nav-links {
    display: flex;
  }

  .navbar .hamburger {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar .nav-inner {
    height: 68px;
    gap: 16px;
  }

  .navbar .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    background: rgba(3, 3, 3, 0.98);
    padding: 12px 0 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  }

  .navbar .nav-links.open {
    display: flex;
  }

  .navbar .nav-links a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
  }

  .navbar .nav-actions {
    display: none;
  }

  .navbar .hamburger {
    display: flex !important;
    margin-left: auto;
  }
}