@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ===== XENO IPTV PLAYER — THEME VARIABLES ===== */
:root {
  --primary: #0dcfb8;
  --primary-dark: #09a896;
  --primary-light: #5eeadb;
  --accent: #7c3aed;
  --accent-dark: #6d28d9;
  --dark: #0b1120;
  --dark-2: #111827;
  --dark-3: #1e293b;
  --dark-card: #162032;
  --text-main: #d1e8e2;
  --text-muted: #8da9b8;
  --text-light: #ffffff;
  --border: rgba(13, 207, 184, 0.2);
  --shadow: 0 8px 40px rgba(13, 207, 184, 0.12);
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--text-main);
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover { color: var(--primary-light); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-light);
}

/* ======= Preloader ======= */
#preloader {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999; background: var(--dark);
}
#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 28px); left: calc(50% - 28px);
  border: 4px solid var(--dark-3);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 56px; height: 56px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ======= Back to Top ======= */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 996;
  background: var(--primary); width: 42px; height: 42px;
  border-radius: 50%; opacity: 0; visibility: hidden;
  transition: all 0.35s; box-shadow: 0 4px 16px rgba(13,207,184,0.4);
}
.back-to-top i { color: var(--dark); font-size: 24px; line-height: 0; }
.back-to-top:hover { background: var(--primary-light); }
.back-to-top.active { opacity: 1; visibility: visible; }

/* ======= Header ======= */
#header {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
  z-index: 997;
  padding: 16px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
}
#header.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Logo text-based */
#header .logo a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#header .logo img { max-height: 44px; }

/* ======= Navbar ======= */
.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navbar li { position: relative; }
.navbar a, .navbar a:focus {
  display: flex; align-items: center;
  padding: 10px 0 10px 36px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: color 0.3s;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary);
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 9px 22px;
  margin-left: 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: #fff;
}

/* Mobile nav */
.mobile-nav-toggle {
  color: var(--primary); font-size: 26px;
  cursor: pointer; display: none; line-height: 0; transition: 0.4s;
}
.mobile-nav-toggle.bi-x { color: #fff; }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed; overflow: hidden;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  transition: 0.3s; z-index: 999;
}
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 15px; right: 15px; }
.navbar-mobile ul {
  display: block; position: absolute;
  top: 55px; right: 15px; bottom: 15px; left: 15px;
  padding: 10px 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-y: auto; transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a { color: var(--primary); }
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus { margin: 15px; }

/* ======= Hero Section ======= */
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #0d1a2e 50%, #130d2a 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,207,184,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
#hero h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
#hero .hero-img {
  position: relative;
}
#hero .hero-img::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(13,207,184,0.15), rgba(124,58,237,0.15));
  border-radius: 24px;
  filter: blur(30px);
  z-index: 0;
}
#hero .hero-img img {
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(13,207,184,0.2);
  position: relative; z-index: 1;
}

/* Hero Buttons */
.btn-get-started {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(13,207,184,0.3);
  margin-right: 12px;
}
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13,207,184,0.4);
  color: #fff;
}
.btn-outline-hero {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  padding: 13px 32px;
  border-radius: 10px;
  border: 2px solid var(--border);
  color: var(--text-main);
  transition: all 0.3s;
}
.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(13,207,184,0.06);
}

@media (max-width: 992px) {
  #hero { padding-top: 100px; text-align: center; }
  #hero .hero-img { margin-top: 40px; }
}

/* ======= Sections General ======= */
section { padding: 80px 0; }
.section-bg { background: var(--dark-2); }
.section-bg-alt { background: var(--dark-3); }

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(13,207,184,0.1);
  border: 1px solid rgba(13,207,184,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-heading span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ======= Stats Strip ======= */
.stats-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

@media (max-width: 576px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ======= About Section ======= */
.about-xeno .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  margin: 6px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s;
}
.about-xeno .feature-pill i { color: var(--primary); font-size: 17px; }
.about-xeno .feature-pill:hover {
  background: rgba(13,207,184,0.08);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn-learn-more:hover {
  background: var(--primary);
  color: var(--dark);
}

/* ======= CTA Strip ======= */
.cta {
  padding: 80px 0;
  background-image: url('../img/inner_banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(11,17,32,0.78);
}
.cta .container { position: relative; z-index: 1; }
.cta h3 {
  color: #fff;
  font-size: 1.8rem; font-weight: 800;
}
.cta p { color: rgba(255,255,255,0.8); font-size: 15px; }
.cta .cta-btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(13,207,184,0.3);
}
.cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,207,184,0.45);
}

/* ======= Why Xeno (Accordion) ======= */
.why-xeno { background: var(--dark); }
.why-xeno .side-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.why-xeno h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-xeno h3 strong { color: var(--primary); }
.why-xeno .lead-text { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }

.xeno-accordion { list-style: none; padding: 0; margin: 0; }
.xeno-accordion li {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.xeno-accordion li:hover { border-color: rgba(13,207,184,0.5); }
.xeno-accordion a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  font-size: 15px; font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none; position: relative;
}
.xeno-accordion a .num {
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800; font-size: 17px;
  min-width: 28px;
}
.xeno-accordion a:hover { color: var(--primary); }
.xeno-accordion a i { margin-left: auto; font-size: 20px; color: var(--text-muted); }
.xeno-accordion .icon-show { display: none; }
.xeno-accordion a.collapsed .icon-show { display: inline-block; }
.xeno-accordion a.collapsed .icon-close { display: none; }
.xeno-accordion p { padding: 0 20px 16px 60px; color: var(--text-muted); margin: 0; font-size: 14px; line-height: 1.7; }

@media (max-width: 991px) {
  .why-xeno .side-image { min-height: 280px; margin-bottom: 36px; }
}

/* ======= How It Works (Get Started) ======= */
.how-it-works { background: var(--dark-2); }
.step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  height: 100%;
}
.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step-card .step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card .step-icon {
  width: 60px; height: 60px;
  background: rgba(13,207,184,0.1);
  border: 1px solid rgba(13,207,184,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card .step-icon i { color: var(--primary); font-size: 26px; }
.step-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* ======= Upload Section ======= */
.upload-section { background: var(--dark); }
.upload-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.upload-card .alert {
  background: rgba(13,207,184,0.08);
  border: 1px solid rgba(13,207,184,0.25);
  color: var(--primary);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Form Controls */
.form-label { color: var(--text-muted); font-size: 13px; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-control, .form-select {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  transition: border-color 0.25s;
}
.form-control:focus, .form-select:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 3px rgba(13,207,184,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.input-group-text {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--primary);
}
.btn-xeno-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700; font-size: 14px;
  border: none; border-radius: 10px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-xeno-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-xeno-secondary {
  background: var(--dark-3);
  color: var(--text-muted);
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 24px;
  cursor: pointer; transition: all 0.3s;
}
.btn-xeno-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ======= Plans Section ======= */
.plans-section { background: var(--dark-2); }
.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity 0.35s;
}
.plan-card:hover {
  border-color: rgba(13,207,184,0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(13,207,184,0.2);
}
.plan-card:hover::before { opacity: 1; }
.plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--dark-card), rgba(13,207,184,0.06));
}
.plan-card.featured::before { opacity: 1; }
.plan-card.featured .plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.plan-badge { display: none; }
.plan-card .plan-icon {
  width: 56px; height: 56px;
  background: rgba(13,207,184,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.plan-card .plan-icon i { color: var(--primary); font-size: 26px; }
.plan-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}
.plan-card .plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

.whats-included {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.whats-included h5 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 14px; color: var(--text-muted);
}
.check-list li i { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

.notice-list { list-style: none; padding: 0; margin: 0; }
.notice-list li {
  padding: 6px 0 6px 18px;
  font-size: 14px; color: var(--text-muted);
  position: relative;
}
.notice-list li::before {
  content: "•";
  position: absolute; left: 0;
  color: var(--accent);
}

/* ======= TV Wall Mount Section ======= */
.tv-mount-section { background: var(--dark); }
.tv-mount-section p { color: var(--text-muted); line-height: 1.8; font-size: 15px; margin-bottom: 14px; }

/* ======= Contact Page ======= */
.contact .info-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact .info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact .info-item:last-child { margin-bottom: 0; }
.contact .info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(13,207,184,0.1);
  border: 1px solid rgba(13,207,184,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact .info-icon i { color: var(--primary); font-size: 20px; }
.contact .info-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.contact .info-value { color: var(--text-main); font-size: 15px; font-weight: 500; }
.contact .info-value a { color: var(--primary); }

.php-email-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.php-email-form .form-group { margin-bottom: 20px; }
.php-email-form label { color: var(--text-muted); font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.php-email-form input, .php-email-form textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.25s;
}
.php-email-form input:focus, .php-email-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,207,184,0.1);
}
.php-email-form input::placeholder, .php-email-form textarea::placeholder { color: var(--text-muted); }
.php-email-form button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none;
  padding: 13px 40px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.3s;
  width: 100%;
}
.php-email-form button:hover { opacity: 0.88; transform: translateY(-1px); }
.php-email-form .loading, .php-email-form .error-message, .php-email-form .sent-message { display: none; }
.php-email-form .loading { color: var(--text-muted); font-size: 14px; }
.php-email-form .error-message { color: #f87171; font-size: 14px; }
.php-email-form .sent-message { color: var(--primary); font-size: 14px; }

/* ======= Breadcrumbs ======= */
.breadcrumbs {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 28px;
}
.breadcrumbs h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.breadcrumbs ol { display: flex; list-style: none; padding: 0; margin: 0; gap: 8px; }
.breadcrumbs ol li { font-size: 13px; color: var(--text-muted); }
.breadcrumbs ol li + li::before { content: "›"; margin-right: 8px; }
.breadcrumbs ol li a { color: var(--primary); }

/* ======= Footer ======= */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-brand h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-brand address { font-size: 14px; color: var(--text-muted); line-height: 1.9; font-style: normal; }
.footer-brand address strong { color: var(--text-main); }

.footer-links h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 18px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { padding: 4px 0; }
.footer-links ul li a { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links ul li i { font-size: 16px; color: var(--primary); }

.footer-disclaimer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 14px; }
.footer-disclaimer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .copyright { font-size: 13px; color: var(--text-muted); }
.footer-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ======= Inner pages ======= */
.inner-content h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-top: 28px; margin-bottom: 10px; }
.inner-content h4:first-child { margin-top: 0; }
.inner-content p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.inner-content ul { color: var(--text-muted); font-size: 14px; line-height: 1.9; padding-left: 20px; }
.inner-content ul li { margin-bottom: 4px; }
.inner-content a { color: var(--primary); }
.inner-content a:hover { color: var(--primary-light); }

/* ======= Media queries ======= */
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { padding: 20px; }
  .step-card { margin-bottom: 20px; }
}
