:root {
  --zion-orange: #ff8400;
  --zion-orange-2: #ff9c32;
  --zion-dark: #0f1115;
  --zion-darker: #0a0b0f;
  --zion-gray: #b6bcc9;
  --zion-card: #131621;
  --zion-border: rgba(255, 255, 255, 0.06);
  --font-heading: 'Unbounded', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(255, 132, 0, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(255, 132, 0, 0.06), transparent 20%),
    var(--zion-darker);
  color: #f7f9fb;
  min-height: 100vh;
  scroll-behavior: smooth;
}

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

.landing-header {
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar {
  padding: 0.9rem 0;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar.scrolled {
  background: rgba(8, 9, 13, 0.95);
  border-bottom: 1px solid var(--zion-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.2px;
}

.navbar .nav-link {
  color: var(--zion-gray);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.navbar .btn {
  font-weight: 600;
  letter-spacing: -0.2px;
}

.brand-mark {
  width: 80px;
  height: 30px;
  border-radius: 0px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-section {
  position: relative;
  padding: 160px 0 140px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d0f16 0%, #0b0d14 45%, #0d0f19 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 132, 0, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(255, 132, 0, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(15, 17, 22, 0) 0%, rgba(15, 17, 22, 0.9) 80%);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #858585;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--zion-gray);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 25vw;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.under-construction-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, #0d0f16 0%, #0b0d14 45%, #0d0f19 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.under-construction-hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 132, 0, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(255, 132, 0, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(15, 17, 22, 0) 0%, rgba(15, 17, 22, 0.85) 80%);
  pointer-events: none;
}

.uc-logo {
  max-width: 280px;
  margin: 0 auto;
}

.uc-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.uc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  color: #fff;
}

.uc-subtitle {
  color: var(--zion-gray);
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--zion-orange), #ff6f0f);
  border: none;
  color: #0d0f12;
  box-shadow: 0 12px 40px rgba(255, 132, 0, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #ff9c32, var(--zion-orange));
  color: #0d0f12;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  border-color: var(--zion-orange);
  color: var(--zion-orange);
  background: rgba(255, 132, 0, 0.1);
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 132, 0, 0.12);
  color: var(--zion-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.hero-card {
  background: rgba(20, 23, 31, 0.8);
  border: 1px solid var(--zion-border);
  border-radius: 20px;
  padding: 20px;
  height: 22vw;
  width: 37vw;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 132, 0, 0.15);
  color: var(--zion-orange);
}

.hero-video-placeholder {
  background: linear-gradient(135deg, #171c2a, #141826);
  border: 1px solid var(--zion-border);
  height: 20vw;
  width: 35vw;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: #0b0d14;
  position: relative;
  z-index: 1;
}

.play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--zion-orange), #ff6f0f);
  color: #0f1115;
  box-shadow: 0 15px 45px rgba(255, 132, 0, 0.4);
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.mini-stat {
  border: 1px solid var(--zion-border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.mini-stat .label {
  color: var(--zion-gray);
  font-size: 0.85rem;
}

.mini-stat .value {
  font-size: 1.6rem;
  font-weight: 700;
}

.mini-stat .meta {
  color: var(--zion-gray);
  font-size: 0.8rem;
}

.hero-badges .badge-pill {
  border: 1px solid var(--zion-border);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--zion-gray);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-badges i {
  color: var(--zion-orange);
  margin-right: 6px;
}

.hero-badges .badge-pill:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, var(--zion-orange), #ff6f0f);
  color: #ffffff;
  border-color: rgba(255, 132, 0, 0.6);
  box-shadow: 0 20px 70px rgba(255, 132, 0, 0.28), 0 0 25px rgba(255, 132, 0, 0.15);
}

.hero-badges .badge-pill:hover i {
  color: #ffffff;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.features-section,
.benefits-section,
.pricing-section {
  background: linear-gradient(180deg, rgba(18, 20, 27, 0.9), rgba(12, 14, 20, 0.95));
}

.feature-card {
  background: var(--zion-card);
  border: 1px solid var(--zion-border);
  padding: 22px;
  border-radius: 16px;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 132, 0, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 132, 0, 0.15);
  color: var(--zion-orange);
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}

.text-muted b {
  color: var(--zion-orange) !important;
  font-weight: 700;
}

.text-zion-orange {
  color: var(--zion-orange) !important;
}

.about-section {
  background: linear-gradient(145deg, #0c0f16 0%, #0b0d14 100%);
  border-top: 1px solid var(--zion-border);
  border-bottom: 1px solid var(--zion-border);
}

.about-content {
  max-width: 980px;
  margin: 0 auto;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--zion-border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 132, 0, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.about-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.about-number-suffix {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.about-label {
  color: var(--zion-gray);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.about-number::after {
  content: '+';
  margin-left: 4px;
  color: #fff;
  font-size: 1.4rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-section {
  background: linear-gradient(145deg, #0f121a 0%, #0c0f17 100%);
  border-top: 1px solid var(--zion-border);
  border-bottom: 1px solid var(--zion-border);
}

.trust-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.trust-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: trustScroll 22s linear infinite;
}

.trust-logo-card {
  min-width: 140px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--zion-border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-logo-card:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 132, 0, 0.28), 0 0 18px rgba(255, 132, 0, 0.18);
  border-color: rgba(255, 132, 0, 0.45);
}

.trust-logo-img {
  max-height: 100px;
  max-width: 120px;
  width: auto;
  height: auto;
  filter: grayscale(15%);
  object-fit: contain;
}

.trust-logo-text {
  font-weight: 700;
  letter-spacing: 0.3px;
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.feature-card h5 {
  margin-bottom: 10px;
}

.feature-card li {
  margin-bottom: 6px;
}

.feature-card li i {
  color: var(--zion-orange);
  margin-right: 6px;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--zion-border);
  border-radius: 12px;
  padding: 12px;
}

.benefit-item .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 132, 0, 0.14);
  color: var(--zion-orange);
}

.benefits-card {
  background: var(--zion-card);
  border: 1px solid var(--zion-border);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefits-rotator {
  width: 100%;
  height: 460px;
  max-height: 65vh;
  min-height: 460px;
  border-radius: 14px;
  border: 1px solid var(--zion-border);
  background: linear-gradient(135deg, #161a25, #121621);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.benefits-rotator::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.benefits-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-orange {
  background: var(--zion-orange);
}

.dot-green {
  background: #4ade80;
}

.dot-red {
  background: #f43f5e;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--zion-border);
  border-radius: 14px;
  padding: 14px;
}

.stat-card .label {
  color: var(--zion-gray);
  margin-bottom: 4px;
}

.stat-card .value {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-card .meta {
  color: var(--zion-gray);
  font-size: 0.9rem;
}

.benefits-card .card-body {
  padding: 0;
  flex: 1;
}

.chart-placeholder {
  background: linear-gradient(135deg, #161a25, #121621);
  border: 1px solid var(--zion-border);
  border-radius: 14px;
  padding: 16px;
}

.placeholder-graph {
  position: relative;
  height: 120px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(255, 132, 0, 0.08), transparent 60%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 100%);
  overflow: hidden;
}

.pulse-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--zion-orange);
  border-radius: 50%;
  left: 18%;
  top: 42%;
  box-shadow: 0 0 0 rgba(255, 132, 0, 0.5);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 132, 0, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 16px rgba(255, 132, 0, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 132, 0, 0);
  }
}

.pricing-card {
  background: var(--zion-card);
  border: 1px solid var(--zion-border);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0;
}

.pricing-card .price-meta {
  font-size: 0.95rem;
  color: var(--zion-gray);
  margin-left: 4px;
}

.pricing-card ul {
  padding-left: 0;
  margin-bottom: 0;
}

.pricing-card li {
  margin-bottom: 8px;
}

.pricing-card li i {
  color: var(--zion-orange);
  margin-right: 6px;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: rgba(255, 132, 0, 0.6);
  box-shadow: 0 15px 50px rgba(255, 132, 0, 0.25);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 70px rgba(255, 132, 0, 0.28), 0 0 25px rgba(255, 132, 0, 0.15);
  border-color: rgba(255, 132, 0, 0.5);
}

.pricing-card.featured:hover {
  box-shadow: 0 24px 80px rgba(255, 132, 0, 0.35), 0 0 35px rgba(255, 132, 0, 0.2);
}

.sports-section {
  background: linear-gradient(145deg, #0f121a 0%, #0c0f17 100%);
  border-top: 1px solid var(--zion-border);
  border-bottom: 1px solid var(--zion-border);
}

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

.sport-card {
  position: relative;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--zion-border);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sport-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 60px rgba(255, 132, 0, 0.28), 0 0 20px rgba(255, 132, 0, 0.18);
  border-color: rgba(255, 132, 0, 0.6);
}

.sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  transition: opacity 0.25s ease;
}

.sport-card:hover .sport-overlay {
  opacity: 0.85;
}

.sport-name {
  position: relative;
  font-family: 'Unbounded', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.sport-futbol {
  background-image: url('../img/soccer-field-stadium.jpg');
}

.sport-futsal {
  background-image: url('../img/futsal-court.jpg');
}

.sport-hockey {
  background-image: url('../img/hockey-wallpaper-1.jpg');
}

.sport-basket {
  background-image: url('../img/basketball-court-card-1.jpg');
}

.sport-handball {
  background-image: url('../img/handball-court-card-1.jpg');
}

.sport-rugby {
  background-image: url('../img/rugby-court-card-1.jpg');
}

@media (max-width: 991px) {
  .sports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .sports-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.cta-card {
  background: linear-gradient(135deg, #161b2a, #121725);
  border: 1px solid var(--zion-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(145deg, #0c0f16 0%, #0b0d14 100%);
  border-top: 1px solid var(--zion-border);
}

.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 132, 0, 0.15);
  color: var(--zion-orange);
  font-size: 1.3rem;
}

.contact-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-link {
  color: var(--zion-gray);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--zion-orange);
}

.contact-map-card {
  position: relative;
  height: 320px;
  border-radius: 18px;
  border: 1px solid var(--zion-border);
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(255, 132, 0, 0.12), rgba(255, 132, 0, 0) 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 132, 0, 0.1), rgba(255, 132, 0, 0) 40%),
    linear-gradient(145deg, #111421 0%, #0b0d14 100%);
}

.map-canvas {
  position: absolute;
  inset: 0;
}

.contact-map-card .map-title {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid var(--zion-border);
  backdrop-filter: blur(6px);
}

.contact-map-card .map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #0b0d14;
  font-size: 1.6rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
  filter: brightness(1.05);
}
.landing-footer {
  background: #0c0e13;
  border-top: 1px solid var(--zion-border);
  color: var(--zion-gray);
}

.landing-footer a {
  color: #fff;
  font-weight: 600;
}

.landing-footer a:hover {
  color: white;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--zion-border);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social i {
  font-size: 1.1rem;
}

.footer-social:hover {
  color: #0d0f12;
  border-color: rgba(255, 132, 0, 0.6);
  background: linear-gradient(135deg, var(--zion-orange), #ff9c32);
  box-shadow: 0 8px 28px rgba(255, 132, 0, 0.28);
  transform: translateY(-2px);
}

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--zion-border);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-social i {
  font-size: 1rem;
}

.header-social:hover {
  color: #ffffff;
  border-color: rgba(255, 132, 0, 0.6);
  background: linear-gradient(135deg, var(--zion-orange), #ff9c32);
  box-shadow: 0 8px 28px rgba(255, 132, 0, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 140px 0 120px;
    min-height: 90vh;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-card {
    margin-top: 24px;
  }

  .hero-section {
    padding: 120px 0 100px;
  }

  .hero-logo {
    max-width: 60vw;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 260px;
  }

  .hero-card {
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .hero-video-placeholder {
    width: 100%;
    max-width: 520px;
    height: 220px;
  }

  .contact-map-card {
    height: 260px;
  }

  .pricing-card {
    text-align: left;
  }
}

