/* ─────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────── */
:root {
  --orange: #F26522;
  --orange-dark: #d4551a;
  --black: #111213;
  --dark: #1a1b1e;
  --dark2: #222529;
  --mid: #2e3035;
  --slate: #3c3f46;
  --white: #ffffff;
  --gray-text: #9ea3ad;
  --text-body: #cdd0d7;

  /* Typography */
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Navbar height */
  --navbar-h: 70px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ─────────────────────────────────────────
   NAVBAR — CUSTOM (no Bootstrap navbar)
───────────────────────────────────────── */
.tn-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.tn-navbar.scrolled {
  background: rgba(17, 18, 19, 0.96);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 101, 34, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tn-brand { text-decoration: none; flex-shrink: 0; }
.tn-logo-img { height: 42px; width: auto; display: block; }

/* Desktop nav links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.tn-nav-link {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.tn-nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.tn-nav-link:hover,
.tn-nav-link.active {
  color: var(--orange) !important;
}

.tn-nav-link:hover::after,
.tn-nav-link.active::after {
  width: calc(100% - 28px);
}

/* CTA button in nav — always orange, immune to scroll state */
.btn-nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 7px;
  padding: 8px 20px !important;
  font-weight: 700;
  margin-left: 6px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
  /* Reset underline pseudo-element */
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.btn-nav-cta::after { display: none !important; }
.btn-nav-cta::before { display: none !important; }

.btn-nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
  color: #fff !important;
}

/* Ensure btn-nav-cta is always consistently styled regardless of scroll or section bg */
.tn-navbar .btn-nav-cta,
.tn-navbar.scrolled .btn-nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
}

.tn-navbar .btn-nav-cta:hover,
.tn-navbar.scrolled .btn-nav-cta:hover {
  background: var(--orange-dark) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   HAMBURGER BUTTON
───────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(242, 101, 34, 0.12);
  border: 1.5px solid rgba(242, 101, 34, 0.4);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.hamburger-btn:hover {
  background: rgba(242, 101, 34, 0.22);
  border-color: var(--orange);
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              width 0.3s ease;
  transform-origin: center;
}

/* Open state — animate to X */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────
   MOBILE DRAWER OVERLAY
───────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ─────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  height: 100vh;
  background: var(--dark2);
  border-left: 1px solid var(--mid);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--mid);
  flex-shrink: 0;
}

.drawer-logo { height: 36px; width: auto; }

.drawer-close {
  width: 38px;
  height: 38px;
  background: rgba(242, 101, 34, 0.1);
  border: 1px solid rgba(242, 101, 34, 0.25);
  border-radius: 8px;
  color: var(--orange);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.drawer-close:hover {
  background: var(--orange);
  color: #fff;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 4px;
  flex: 1;
}

.drawer-link {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
  border: 1px solid transparent;
}

.drawer-link:hover {
  background: rgba(242, 101, 34, 0.1);
  color: var(--orange);
  padding-left: 24px;
  border-color: rgba(242, 101, 34, 0.2);
}

.drawer-cta {
  margin-top: 12px;
  background: var(--orange);
  color: #fff !important;
  border-color: var(--orange);
  text-align: center;
  font-weight: 700;
}

.drawer-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  padding-left: 18px;
  color: #fff !important;
}

.drawer-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--mid);
  flex-shrink: 0;
}

.drawer-footer p {
  font-size: 0.78rem;
  color: var(--gray-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  padding-top: calc(var(--navbar-h) + 40px);
  padding-bottom: 60px;
  width: 100%;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 101, 34, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 101, 34, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -160px; right: -120px;
  max-width: 60vw;
}

.hero-orb-2 {
  width: 340px; height: 340px;
  background: var(--orange-dark);
  bottom: -80px; left: -80px;
  max-width: 50vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 101, 34, 0.1);
  border: 1px solid rgba(242, 101, 34, 0.28);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ── HERO TITLE FIX: clean two-line layout on all screen sizes ── */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 26px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stat-item {
  border-left: 3px solid var(--orange);
  padding-left: 14px;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}

/* Dashboard card */
.hero-dashboard-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  min-width: 0;
  overflow: hidden;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mid);
}

.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot-r { background: #ff5f57; }
.dash-dot-y { background: #febc2e; }
.dash-dot-g { background: #28c840; }

.dash-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-left: auto;
  font-weight: 600;
}

.dash-metric {
  background: var(--mid);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 8px;
}

.dash-metric-label {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.dash-metric-val {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.dash-metric-val span { color: var(--orange); font-size: 0.8rem; font-weight: 600; }

.dash-chart-wrap { background: var(--mid); border-radius: 10px; padding: 14px; }

.dash-chart-label {
  font-size: 0.7rem;
  color: var(--gray-text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.dash-bar-wrap {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 56px;
}

.dash-bar {
  flex: 1;
  background: var(--slate);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}

.dash-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.2s ease;
}

.dash-months {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.65rem;
  color: var(--gray-text);
}

.dash-alert-box {
  flex: 1;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.alert-orange { background: rgba(242, 101, 34, 0.12); color: var(--orange); }
.alert-green  { background: rgba(40, 200, 64, 0.1); color: #28c840; }

.float-badge {
  position: absolute;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.45);
  z-index: 5;
  animation: floatAnim 3s ease-in-out infinite;
  white-space: nowrap;
}

.float-badge-1 { top: -16px; left: -18px; }
.float-badge-2 { bottom: 18px; right: -18px; animation-delay: 1.5s; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
section { padding: 90px 0; }

#about        { background: var(--dark); }
#how          { background: var(--dark); }
#testimonials { background: var(--dark); }
#faq          { background: var(--dark); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.section-title span { color: var(--orange); }

.section-desc {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
  font-weight: 400;
}

.text-body-muted { color: var(--text-body); line-height: 1.8; font-size: 1rem; }

.divider-orange {
  width: 52px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px 0 28px;
}

/* ─────────────────────────────────────────
   GLOBAL BUTTONS
───────────────────────────────────────── */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 30px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242, 101, 34, 0.4);
  color: #fff;
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 11px 28px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────── */
#strip { background: var(--orange); padding: 13px 0; overflow: hidden; }

.strip-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.strip-item {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.strip-item i { font-size: 1rem; opacity: 0.75; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-img-wrap { position: relative; }

.about-img-inner {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 20px;
  overflow: hidden;
}

.about-img-graphic {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--mid) 100%);
  position: relative;
}

.about-accent {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(242, 101, 34, 0.18);
}
.about-accent-1 { top: -80px; left: -80px; width: 300px; height: 300px; }
.about-accent-2 { bottom: -100px; right: -100px; width: 260px; height: 260px; border-color: rgba(242, 101, 34, 0.1); }

.about-big-num {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about-big-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 500;
}

.about-mini-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.about-mini-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
}

.about-mini-label {
  font-size: 0.72rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.about-mini-divider { width: 1px; background: var(--mid); }

.about-float-card {
  position: absolute;
  background: var(--orange);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(242, 101, 34, 0.35);
  z-index: 3;
}

.about-float-card-1 { top: -20px; right: -20px; }
.about-float-card-2 { bottom: -20px; left: -20px; }

.about-float-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-float-txt {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.about-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.about-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.tab-btn {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.28s;
}

.tab-btn:hover { color: var(--orange); border-color: rgba(242, 101, 34, 0.2); }
.tab-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.feature-tab-panel { display: none; }
.feature-tab-panel.active { display: block; animation: fadeSlide 0.38s ease; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feat-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover {
  border-color: rgba(242, 101, 34, 0.3);
  transform: translateY(-4px);
}

.feat-icon {
  width: 50px; height: 50px;
  background: rgba(242, 101, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.feat-card:hover .feat-icon { background: rgba(242, 101, 34, 0.2); }
.feat-icon i { font-size: 1.4rem; color: var(--orange); }

.feat-card h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}

.feat-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.feat-list li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-list li::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.step-line { position: relative; }

.step-line::after {
  content: '';
  position: absolute;
  top: 38px; left: 50%; right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.step-last::after { display: none; }

.step-num {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(242, 101, 34, 0.14);
}

.step-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s;
}

.step-card:hover { border-color: rgba(242, 101, 34, 0.4); }

.step-card h5 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.step-card p { font-size: 0.87rem; color: var(--gray-text); line-height: 1.65; }

/* ─────────────────────────────────────────
   DASHBOARD ROLES
───────────────────────────────────────── */
.role-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 34px 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.role-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, var(--dark2) 0%, rgba(242, 101, 34, 0.07) 100%);
}

.role-card.featured::before {
  content: 'MOST POWERFUL';
  position: absolute;
  top: 18px; right: -26px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.role-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }

.role-icon { font-size: 2.3rem; margin-bottom: 16px; display: block; }

.role-card h4 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.role-badge {
  display: inline-block;
  background: rgba(242, 101, 34, 0.14);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}

.role-feature-list { list-style: none; padding: 0; margin: 0; }

.role-feature-list li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.role-feature-list li:last-child { border-bottom: none; }
.role-feature-list li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.role-no { color: var(--gray-text) !important; opacity: 0.4; }
.role-disabled { opacity: 0.4; }

/* ─────────────────────────────────────────
   STATS BAND
───────────────────────────────────────── */
#stats { background: var(--orange); padding: 70px 0; }

.stat-block { text-align: center; }

.stat-block-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-block-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi-slide { padding: 10px 14px; }

.testi-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  transition: border-color 0.3s;
}

.testi-card:hover { border-color: rgba(242, 101, 34, 0.3); }

.testi-quote-icon {
  font-size: 2.8rem;
  color: var(--orange);
  opacity: 0.28;
  position: absolute;
  top: 16px; right: 22px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-stars {
  color: var(--orange);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 0.93rem; }
.testi-role { font-size: 0.78rem; color: var(--gray-text); margin-top: 2px; }

.slick-dots li button:before { color: var(--gray-text); }
.slick-dots li.slick-active button:before { color: var(--orange); }

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 38px 30px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, var(--dark2) 0%, rgba(242, 101, 34, 0.06) 100%);
  transform: scale(1.03);
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pricing-plan {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-price small { font-size: 1.4rem; color: var(--orange); }

.pricing-period {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-top: 4px;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--mid);
  padding-top: 20px;
}

.pricing-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--orange); flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--gray-text); }

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.accordion-item {
  background: var(--dark2);
  border: 1px solid var(--mid) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  background: var(--dark2);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(355deg);
}

.accordion-button:not(.collapsed) {
  background: rgba(242, 101, 34, 0.1);
  color: var(--orange);
}

.accordion-body {
  background: var(--dark2);
  color: var(--gray-text);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid var(--mid);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-info-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 30px;
}

.contact-card-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 26px;
  letter-spacing: 0.03em;
}

.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }

.contact-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(242, 101, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap i { font-size: 1.2rem; color: var(--orange); }

.contact-label {
  font-size: 0.75rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-val { font-size: 0.93rem; color: var(--white); font-weight: 500; }

.contact-link { color: var(--white); text-decoration: none; transition: color 0.25s; }
.contact-link:hover { color: var(--orange); }

.contact-form-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 34px;
}

.form-control,
.form-select {
  background: var(--mid);
  border: 1px solid var(--slate);
  color: var(--white);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
  background: var(--mid);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}

.form-control::placeholder { color: var(--gray-text); }

.form-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-select option { background: var(--dark2); color: var(--white); }

/* Map wrap — lazy loaded */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--mid);
  margin-top: 24px;
  min-height: 220px;
}

/* Map placeholder shown before iframe loads */
.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-text);
  font-size: 0.88rem;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.5;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.tn-footer {
  background: var(--dark2);
  border-top: 1px solid var(--mid);
  padding: 64px 0 32px;
}

.footer-logo { height: 46px; width: auto; margin-bottom: 4px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 22px;
}

/* Social icons */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social a {
  width: 38px; height: 38px;
  background: var(--mid);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 1rem;
  transition: all 0.28s;
  text-decoration: none;
  border: 1px solid transparent;
}

.footer-social a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* Footer headings */
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 2px; }

.footer-links a {
  color: var(--gray-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  line-height: 1.4;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links a:hover i { transform: translateX(2px); }

/* Footer contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--orange);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact a:hover { color: var(--orange); }

.footer-top { padding-bottom: 48px; }

.footer-bottom {
  border-top: 1px solid var(--mid);
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: var(--gray-text);
  margin: 0;
}

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
#backTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.4);
}

#backTop.show { opacity: 1; transform: translateY(0); }
#backTop:hover { background: var(--orange-dark); color: #fff; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* Show hamburger on mobile/tablet, hide desktop links */
@media (max-width: 991px) {
  .nav-links-desktop { display: none; }
  .hamburger-btn { display: flex; }

  /* Hero: stack properly, no overflow */
  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
  }

  .hero-dashboard-img { padding: 0 4px; }
  .hero-dashboard-card { margin-top: 36px; padding: 18px; }
  .float-badge-1, .float-badge-2 { display: none; }

  .dash-metric { padding: 10px 12px; }
  .dash-metric-val { font-size: 1.2rem; }
  .dash-alert-box { font-size: 0.72rem; padding: 8px 10px; }

  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-5px); }

  .about-float-card-1 { top: -14px; right: -14px; }
  .about-float-card-2 { bottom: -14px; left: -14px; }
}

@media (max-width: 767px) {
  /* Critical: prevent ALL horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  section { padding: 56px 0; }
  .step-line::after { display: none; }
  .hero-stats { gap: 18px; }

  /* Mobile hero title — constrained to viewport */
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    word-break: break-word;
  }

  /* Dashboard card on mobile: compact & clean */
  .hero-dashboard-card {
    padding: 16px;
    border-radius: 14px;
  }

  .dash-metric { padding: 10px; }
  .dash-metric-val { font-size: 1rem; }
  .dash-metric-label { font-size: 0.65rem; }
  .dash-chart-wrap { padding: 10px; }
  .dash-alert-box { font-size: 0.7rem; padding: 7px 8px; gap: 4px; }
  .dash-title { font-size: 0.78rem; }

  .contact-form-card { padding: 22px 16px; }
  .contact-info-card { padding: 22px 16px; }

  .footer-heading { font-size: 0.8rem; }
  .footer-links a { font-size: 0.85rem; }

  /* Marquee strip: prevent overflow */
  #strip { overflow: hidden; }
  .strip-track { animation-duration: 22s; }

  /* Hero stats wrap nicely */
  .hero-stat-num { font-size: 1.7rem; }
  .hero-stat-label { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-subtitle { font-size: 0.93rem; max-width: 100%; }
  .btn-orange, .btn-outline-orange { font-size: 0.88rem; padding: 11px 20px; }

  .hero-stats { gap: 14px; }
  .hero-stat-num { font-size: 1.5rem; }

  .dash-metric-val { font-size: 0.95rem; }
  .pricing-card { padding: 26px 18px; }
  .role-card { padding: 24px 18px; }

  /* Float badges hidden on mobile */
  .float-badge { display: none !important; }

  #backTop { bottom: 18px; right: 18px; width: 40px; height: 40px; font-size: 1rem; }

  /* Navbar: ensure no overflow */
  .tn-navbar .container { padding-left: 14px; padding-right: 14px; }
}