/*
 Theme Name:   HelloSports Child Theme
 Theme URI:    https://hellosports.sinnla.com
 Description:  HelloSports App Landing Page – Child Theme for Divi
 Author:       SINNLA / Christian
 Template:     Divi
 Version:      1.0.0
*/

/* ============================================================
   HELLO SPORTS – DESIGN SYSTEM
   Primärfarbe:   Blau  #1a3a6b (SINNLA-Blau)
   Akzentfarbe:   Orange #f07c00 (SINNLA-Orange)
   Hintergrund:   Dunkelblau #0d1f3c
   Text hell:     #ffffff
   Text mittel:   #b0c4de
   Grau:          #1e2d45
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --hs-blue:        #1a3a6b;
  --hs-blue-dark:   #0d1f3c;
  --hs-blue-mid:    #1e2d45;
  --hs-orange:      #f07c00;
  --hs-orange-dark: #c96500;
  --hs-white:       #ffffff;
  --hs-light:       #b0c4de;
  --hs-font-head:   'Barlow Condensed', sans-serif;
  --hs-font-body:   'Inter', sans-serif;
  --hs-radius:      12px;
  --hs-transition:  0.35s ease;
}

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Global Reset / Base ---- */
body {
  font-family: var(--hs-font-body);
  background-color: var(--hs-blue-dark);
  color: var(--hs-white);
  overflow-x: hidden;
}

/* ---- Divi Overrides ---- */
#page-container {
  background-color: var(--hs-blue-dark);
}

.et_pb_section {
  padding: 80px 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

#main-header,
#main-header.et-fixed-header {
  background-color: rgba(13, 31, 60, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 124, 0, 0.2);
  transition: background-color var(--hs-transition);
}

#main-header .et_pb_menu__logo img,
#main-header .logo_container img {
  max-height: 48px !important;
}

/* ============================================================
   OFF-CANVAS NAVIGATION
   ============================================================ */

#hs-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hs-transition);
}

#hs-offcanvas-overlay.active {
  opacity: 1;
  pointer-events: all;
}

#hs-offcanvas {
  position: fixed;
  top: 0;
  left: -380px;
  width: 360px;
  height: 100vh;
  background: var(--hs-blue-dark);
  border-right: 2px solid var(--hs-orange);
  z-index: 9999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

#hs-offcanvas.open {
  left: 0;
}

.hs-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(240, 124, 0, 0.2);
}

.hs-offcanvas-header img {
  height: 44px;
  width: auto;
}

.hs-offcanvas-close {
  background: none;
  border: none;
  color: var(--hs-white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--hs-transition);
}

.hs-offcanvas-close:hover {
  color: var(--hs-orange);
}

.hs-offcanvas-nav {
  padding: 32px 28px;
  flex: 1;
}

.hs-offcanvas-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-offcanvas-nav ul li {
  border-bottom: 1px solid rgba(176, 196, 222, 0.1);
}

.hs-offcanvas-nav ul li a {
  display: block;
  padding: 16px 0;
  font-family: var(--hs-font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hs-white);
  text-decoration: none;
  transition: color var(--hs-transition), padding-left var(--hs-transition);
}

.hs-offcanvas-nav ul li a:hover {
  color: var(--hs-orange);
  padding-left: 8px;
}

.hs-offcanvas-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(240, 124, 0, 0.2);
}

.hs-lang-switcher {
  display: flex;
  gap: 12px;
}

.hs-lang-switcher a {
  font-family: var(--hs-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hs-light);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(176, 196, 222, 0.3);
  border-radius: 4px;
  transition: all var(--hs-transition);
}

.hs-lang-switcher a.active,
.hs-lang-switcher a:hover {
  color: var(--hs-orange);
  border-color: var(--hs-orange);
}

/* Hamburger Button */
#hs-hamburger {
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 9997;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#hs-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--hs-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

#hs-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hs-hamburger.open span:nth-child(2) {
  opacity: 0;
}

#hs-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 60, 0.3) 0%,
    rgba(13, 31, 60, 0.5) 50%,
    rgba(13, 31, 60, 0.85) 100%
  );
  z-index: 1;
}

.hs-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hs-hero-eyebrow {
  font-family: var(--hs-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hs-hero-headline {
  font-family: var(--hs-font-head);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--hs-white);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.hs-hero-headline span {
  color: var(--hs-orange);
}

.hs-hero-subline {
  font-family: var(--hs-font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--hs-light);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* App Download Buttons */
.hs-app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hs-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hs-white);
  color: var(--hs-blue-dark);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--hs-radius);
  font-family: var(--hs-font-body);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--hs-transition);
  border: 2px solid transparent;
}

.hs-app-btn:hover {
  background: transparent;
  color: var(--hs-white);
  border-color: var(--hs-white);
}

.hs-app-btn svg {
  width: 24px;
  height: 24px;
}

.hs-app-btn.outline {
  background: transparent;
  color: var(--hs-white);
  border-color: rgba(255,255,255,0.4);
}

.hs-app-btn.outline:hover {
  border-color: var(--hs-orange);
  color: var(--hs-orange);
}

/* ============================================================
   SPORT SWITCHER (Sölden-Style)
   ============================================================ */

.hs-sport-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(13, 31, 60, 0.7);
  border: 1px solid rgba(240, 124, 0, 0.4);
  border-radius: 50px;
  padding: 6px;
  gap: 4px;
  backdrop-filter: blur(8px);
}

.hs-sport-switcher button {
  background: none;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--hs-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hs-light);
  cursor: pointer;
  transition: all var(--hs-transition);
}

.hs-sport-switcher button.active {
  background: var(--hs-orange);
  color: var(--hs-white);
}

/* Hero Stats Sidebar (Sölden-Style) */
.hs-hero-stats {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-hero-stat {
  background: rgba(13, 31, 60, 0.75);
  border: 1px solid rgba(240, 124, 0, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 80px;
  text-decoration: none;
  transition: all var(--hs-transition);
}

.hs-hero-stat:hover {
  border-color: var(--hs-orange);
  background: rgba(240, 124, 0, 0.15);
}

.hs-hero-stat-value {
  font-family: var(--hs-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--hs-orange);
  display: block;
  line-height: 1;
}

.hs-hero-stat-label {
  font-family: var(--hs-font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--hs-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   SECTION HEADERS (Global)
   ============================================================ */

.hs-section-label {
  font-family: var(--hs-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--hs-orange);
}

.hs-section-title {
  font-family: var(--hs-font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--hs-white);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
}

.hs-section-title span {
  color: var(--hs-orange);
}

.hs-section-subtitle {
  font-family: var(--hs-font-body);
  font-size: 17px;
  color: var(--hs-light);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.hs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.hs-feature-card {
  background: var(--hs-blue-mid);
  border: 1px solid rgba(240, 124, 0, 0.15);
  border-radius: var(--hs-radius);
  padding: 36px 28px;
  transition: all var(--hs-transition);
  position: relative;
  overflow: hidden;
}

.hs-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hs-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hs-transition);
}

.hs-feature-card:hover {
  border-color: rgba(240, 124, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.hs-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(240, 124, 0, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.hs-feature-title {
  font-family: var(--hs-font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--hs-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hs-feature-text {
  font-family: var(--hs-font-body);
  font-size: 15px;
  color: var(--hs-light);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS – STEPS
   ============================================================ */

.hs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.hs-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--hs-orange), rgba(240,124,0,0.2));
  z-index: 0;
}

.hs-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hs-step-number {
  width: 80px;
  height: 80px;
  background: var(--hs-blue-dark);
  border: 3px solid var(--hs-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--hs-font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--hs-orange);
}

.hs-step-title {
  font-family: var(--hs-font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--hs-white);
  margin-bottom: 12px;
}

.hs-step-text {
  font-family: var(--hs-font-body);
  font-size: 14px;
  color: var(--hs-light);
  line-height: 1.6;
}

/* ============================================================
   CHALLENGES
   ============================================================ */

.hs-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.hs-challenge-card {
  background: var(--hs-blue-mid);
  border-radius: var(--hs-radius);
  overflow: hidden;
  border: 1px solid rgba(240, 124, 0, 0.1);
  transition: all var(--hs-transition);
}

.hs-challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 124, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.hs-challenge-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hs-challenge-body {
  padding: 24px;
}

.hs-challenge-type {
  font-family: var(--hs-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin-bottom: 8px;
}

.hs-challenge-name {
  font-family: var(--hs-font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--hs-white);
  margin-bottom: 16px;
}

.hs-challenge-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hs-challenge-points {
  background: var(--hs-orange);
  color: var(--hs-white);
  font-family: var(--hs-font-head);
  font-size: 16px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
}

.hs-challenge-days {
  font-family: var(--hs-font-body);
  font-size: 13px;
  color: var(--hs-light);
}

/* ============================================================
   MARQUEE / PARTNER LOGOS
   ============================================================ */

.hs-marquee-section {
  background: var(--hs-blue-mid);
  border-top: 1px solid rgba(240, 124, 0, 0.15);
  border-bottom: 1px solid rgba(240, 124, 0, 0.15);
  padding: 40px 0;
  overflow: hidden;
}

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

.hs-marquee-track:hover {
  animation-play-state: paused;
}

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

.hs-marquee-item {
  font-family: var(--hs-font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color var(--hs-transition);
}

.hs-marquee-item:hover {
  color: var(--hs-orange);
}

.hs-marquee-item::after {
  content: '◆';
  color: var(--hs-orange);
  font-size: 10px;
}

/* ============================================================
   GAMIFICATION / LEVEL SYSTEM
   ============================================================ */

.hs-levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.hs-level-card {
  background: var(--hs-blue-mid);
  border-radius: var(--hs-radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--hs-transition);
  position: relative;
  overflow: hidden;
}

.hs-level-card.bronze  { border-color: #cd7f32; }
.hs-level-card.silver  { border-color: #c0c0c0; }
.hs-level-card.gold    { border-color: #ffd700; }
.hs-level-card.platin  { border-color: #e5e4e2; background: linear-gradient(135deg, var(--hs-blue-mid), rgba(229,228,226,0.08)); }

.hs-level-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hs-level-badge {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.hs-level-name {
  font-family: var(--hs-font-head);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hs-level-card.bronze  .hs-level-name { color: #cd7f32; }
.hs-level-card.silver  .hs-level-name { color: #c0c0c0; }
.hs-level-card.gold    .hs-level-name { color: #ffd700; }
.hs-level-card.platin  .hs-level-name { color: #e5e4e2; }

.hs-level-pts {
  font-family: var(--hs-font-body);
  font-size: 13px;
  color: var(--hs-light);
  margin-bottom: 16px;
}

.hs-level-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.hs-level-perks li {
  font-family: var(--hs-font-body);
  font-size: 13px;
  color: var(--hs-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hs-level-perks li::before {
  content: '✓';
  color: var(--hs-orange);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   STATISTICS GRID
   ============================================================ */

.hs-stats-section {
  background: linear-gradient(135deg, var(--hs-blue) 0%, var(--hs-blue-dark) 100%);
  padding: 80px 0;
}

.hs-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.hs-stat-item {}

.hs-stat-number {
  font-family: var(--hs-font-head);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--hs-orange);
  line-height: 1;
  display: block;
}

.hs-stat-label {
  font-family: var(--hs-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hs-light);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   APP DOWNLOAD CTA
   ============================================================ */

.hs-cta-section {
  background: var(--hs-orange);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.hs-cta-section::before {
  content: 'HELLO SPORTS';
  position: absolute;
  font-family: var(--hs-font-head);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hs-cta-text h2 {
  font-family: var(--hs-font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--hs-white);
  line-height: 0.95;
  margin-bottom: 16px;
}

.hs-cta-text p {
  font-family: var(--hs-font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
  line-height: 1.6;
}

.hs-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.hs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hs-white);
  color: var(--hs-orange);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--hs-radius);
  font-family: var(--hs-font-body);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--hs-transition);
  border: 2px solid transparent;
}

.hs-cta-btn:hover {
  background: transparent;
  color: var(--hs-white);
  border-color: var(--hs-white);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.hs-faq {
  max-width: 800px;
  margin: 48px auto 0;
}

.hs-faq-item {
  border-bottom: 1px solid rgba(176, 196, 222, 0.15);
}

.hs-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.hs-faq-question-text {
  font-family: var(--hs-font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hs-white);
  letter-spacing: 0.02em;
  transition: color var(--hs-transition);
}

.hs-faq-question:hover .hs-faq-question-text {
  color: var(--hs-orange);
}

.hs-faq-icon {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(240, 124, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--hs-orange);
  transition: all var(--hs-transition);
}

.hs-faq-item.open .hs-faq-icon {
  background: var(--hs-orange);
  color: var(--hs-white);
  transform: rotate(45deg);
}

.hs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.hs-faq-item.open .hs-faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.hs-faq-answer p {
  font-family: var(--hs-font-body);
  font-size: 15px;
  color: var(--hs-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.hs-footer {
  background: #080f1e;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(240, 124, 0, 0.2);
}

.hs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hs-footer-brand p {
  font-family: var(--hs-font-body);
  font-size: 14px;
  color: var(--hs-light);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.hs-footer-col h4 {
  font-family: var(--hs-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin-bottom: 20px;
}

.hs-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer-col ul li {
  margin-bottom: 10px;
}

.hs-footer-col ul li a {
  font-family: var(--hs-font-body);
  font-size: 14px;
  color: var(--hs-light);
  text-decoration: none;
  transition: color var(--hs-transition);
}

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

.hs-footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(176, 196, 222, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hs-footer-bottom p {
  font-family: var(--hs-font-body);
  font-size: 13px;
  color: rgba(176, 196, 222, 0.5);
}

.hs-footer-bottom a {
  color: rgba(176, 196, 222, 0.5);
  text-decoration: none;
  transition: color var(--hs-transition);
}

.hs-footer-bottom a:hover {
  color: var(--hs-orange);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hs-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hs-hero-stats {
    display: none;
  }
  .hs-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .hs-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hs-hero-content {
    padding: 0 20px;
  }
  .hs-steps::before {
    display: none;
  }
  .hs-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hs-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  #hs-offcanvas {
    width: 100%;
    left: -100%;
  }
}
