/* ============================================================
   EQUALIZER MMA — Global Stylesheet
   Brand: Red #CC0000 | Black #0A0A0A | White #FFFFFF
   Theme: UFC-inspired — bold, dark, aggressive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@400;500;600&display=swap');

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

:root {
  --red:       #CC0000;
  --red-dark:  #990000;
  --red-glow:  rgba(204, 0, 0, 0.35);
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark-2:    #1A1A1A;
  --dark-3:    #222222;
  --mid:       #333333;
  --light-mid: #555555;
  --gray:      #BBBBBB;
  --white:     #FFFFFF;
  --off-white: #E8E8E8;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.25s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.6);
  --shadow-red:0 4px 24px var(--red-glow);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }

p { color: var(--off-white); line-height: 1.8; font-size: 1.1rem; }

.section-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark-2); }
.section--black { background: var(--black); }

/* ── Red diagonal accent ── */
.red-slash {
  position: relative;
}
.red-slash::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  border-radius: 0 3px 3px 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  position: relative;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1.1rem 2.8rem;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .nav-logo-img {
  height: 110px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

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

.nav-cta {
  margin-left: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid var(--mid);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}

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

.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--dark-3);
  transition: color var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--red); }

.nav-mobile .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* Page top padding (fixed nav offset) */
.page-content { padding-top: 72px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(20%);
  z-index: 1;
}

/* White overlay on top of the image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 50%, rgba(255,255,255,0.82) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--black);
  font-size: clamp(3rem, 8vw, 6.5rem);
  text-shadow: none;
}

.hero .btn-outline {
  color: var(--black);
  border-color: var(--black);
}
.hero .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-size: 1.4rem;
  color: #111;
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-top: 0.25rem;
}

/* Red side stripe on hero */
.hero-stripe {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 2;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 20px,
    rgba(204,0,0,0.03) 20px, rgba(204,0,0,0.03) 21px
  );
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ── Section Headers ── */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered { text-align: center; }

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 560px;
}

.section-header.centered p {
  margin: 0 auto;
}

/* Red underline accent */
.section-header h2 .underline-red {
  position: relative;
  display: inline-block;
}
.section-header h2 .underline-red::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

/* ── Service Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--dark-2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-left-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.card-link:hover { gap: 0.85rem; }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.pricing-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card.featured {
  background: var(--dark-3);
  border-top: 4px solid var(--red);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.pricing-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.pricing-period {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  border-top: 1px solid var(--mid);
  padding-top: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--off-white);
  padding: 0.4rem 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; text-align: center; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.testimonial-card {
  background: var(--dark-2);
  padding: 2rem 2rem 2rem 2.5rem;
  position: relative;
  border-left: 4px solid var(--red);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--red);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--off-white);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 20px,
    rgba(0,0,0,0.08) 20px, rgba(0,0,0,0.08) 21px
  );
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.cta-banner .btn-outline {
  border-color: var(--white);
  color: var(--white);
  flex-shrink: 0;
}
.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  color: var(--white);
  font-size: 1rem;
}

/* Form */
.form-card {
  background: var(--dark-2);
  padding: 2.5rem;
  border-top: 4px solid var(--red);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-bottom: 2px solid var(--mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--red);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23CC0000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--dark-3); }

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; text-align: center; font-size: 1.05rem; }

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
}

/* ── Course / Seminar Cards ── */
.item-card {
  background: var(--dark-2);
  overflow: hidden;
  transition: all var(--transition);
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.item-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.item-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--mid);
  position: relative;
  overflow: hidden;
}

.item-card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 10px,
    rgba(204,0,0,0.05) 10px, rgba(204,0,0,0.05) 11px
  );
}

.item-card-badge {
  position: absolute;
  top: 1rem; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 1;
}

.item-card-body {
  padding: 1.5rem;
}

.item-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.meta-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.item-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.item-card p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* ── Feature Rows ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--dark-3);
}

.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

/* Online Courses feature grid */
.courses-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.course-feature-item {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.course-feature-item:hover { border-top-color: var(--red); }
.course-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.course-feature-item h4 {
  margin-bottom: 0.5rem;
}
.course-feature-item p {
  font-size: 1.1rem;
  color: var(--gray);
}
@media (max-width: 860px) {
  .courses-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .courses-features { grid-template-columns: 1fr; }
}

.feature-img-wrap {
  position: relative;
}

.feature-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--mid);
  position: relative;
  overflow: hidden;
}

.feature-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 10px,
    rgba(204,0,0,0.04) 10px, rgba(204,0,0,0.04) 11px
  );
}

/* Red corner accents */
.feature-img-wrap::before,
.feature-img-wrap::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--red);
  border-style: solid;
  z-index: 1;
}
.feature-img-wrap::before {
  top: -8px; left: -8px;
  border-width: 3px 0 0 3px;
}
.feature-img-wrap::after {
  bottom: -8px; right: -8px;
  border-width: 0 3px 3px 0;
}

.feature-text h2 {
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--off-white);
  font-size: 1.1rem;
  padding: 0.4rem 0;
}

.feature-list li::before {
  content: '▶';
  color: var(--red);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── Newsletter ── */
.newsletter-bar {
  background: var(--dark-2);
  padding: 4rem 0;
  border-top: 2px solid var(--mid);
  border-bottom: 2px solid var(--mid);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-text h3 { margin-bottom: 0.25rem; }
.newsletter-text p { color: var(--gray); font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 280px;
}

.newsletter-form input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form input::placeholder { color: var(--light-mid); }

.newsletter-form .btn {
  clip-path: none;
  border-radius: 0;
  white-space: nowrap;
}

/* ── Upcoming Schedule Table ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--red);
}

.schedule-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--dark-3);
  font-size: 0.95rem;
  color: var(--off-white);
  vertical-align: middle;
}

.schedule-table tr:hover td { background: var(--dark-2); }

.schedule-table .event-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}

.badge-red   { background: var(--red); color: var(--white); }
.badge-dark  { background: var(--mid); color: var(--off-white); }
.badge-open  { background: transparent; color: var(--red); border: 1px solid var(--red); }

/* ── Footer ── */
#footer {
  background: var(--dark);
  border-top: 2px solid var(--red);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--mid);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  transition: all var(--transition);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 1rem;
  color: var(--off-white);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-bottom a { color: var(--red); }

/* ── Utility ── */
.text-red   { color: var(--red); }
.text-gray  { color: var(--gray); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .hero-stats { gap: 2rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-inner { flex-direction: column; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--mid); border-bottom: none; }
}
