.text-bold {
  font-weight: 700;
}

.social-share a:hover {
  background: var(--lime) !important;
  color: var(--graphite) !important;
}

:root {
  --graphite: #0b1310;
  --graphite-2: #101c17;
  --paper: #f4f7f2;
  --paper-2: #eaefe6;
  --ink: #0e1812;
  --steel: #5c6b63;
  --steel-soft: #8a978f;
  --lime: #16B57B;
  --lime-deep: #16B57B;
  --teal: #18c29c;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(14, 24, 18, .10);
  --maxw: 1280px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Decorative charge trace (signature element) ---------- */
.charge-trace {
  position: fixed;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  display: none;
}

@media(min-width:1100px) {
  .charge-trace {
    display: block;
  }
}

.charge-trace svg {
  height: 100%;
  width: 100%;
  overflow: visible;
}

/* ---------- Nav ---------- */
.navbar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  border-radius: 18px;
  background: rgba(11, 19, 16, .55);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.navbar.scrolled {
  background: rgba(11, 19, 16, .85);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
  border-color: rgba(255, 255, 255, .08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .mark {
  width: 48px;
  height: 48px;
  flex: none;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}

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

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 30px;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(87, 155, 120, 0.35);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

@media(max-width:880px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 10px 14px;
  }
}

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  z-index: 999;
  background: rgba(11, 19, 16, .96);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 2px;
}

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

.mobile-menu a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 10px;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, .06);
}

.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 78% 18%, #102219 0%, var(--graphite) 55%), var(--graphite);
  color: #fff;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  align-items: start;
  gap: 0;
  width: 100%;
}

.hero-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-top: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(182, 255, 60, .6);
  animation: pulseDot 2.2s infinite;
}

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

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

.connector-img-track:hover {
  animation-play-state: paused;
}

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

#charging-solutions {
  padding-bottom: 50px;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(182, 255, 60, .55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(182, 255, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(182, 255, 60, 0);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.4vw + 1rem, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgb(255, 255, 255);
  max-width: 480px;
  margin: 0 0 36px;
}

.store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  justify-content: flex-start;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .25s, box-shadow .25s;
}

.store-btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.store-btn.primary {
  background: var(--lime);
  color: var(--ink);
}

.store-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(19, 209, 124, 0.523);
}

.store-btn.ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
}

.store-btn.ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1);
}

/* ---------- Store Buttons Wrapper (Hero) ---------- */
.store-btns-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.store-btns-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 181, 123, 0.65), transparent);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.store-btns-wrapper::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  border: 1px solid rgba(22, 181, 123, 0);
  animation: storeRingPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes storeRingPulse {
  0%, 100% {
    border-color: rgba(22, 181, 123, 0.0);
    box-shadow: none;
  }
  50% {
    border-color: rgba(22, 181, 123, 0.32);
    box-shadow: 0 0 20px rgba(22, 181, 123, 0.13);
  }
}

.store-btns-wrapper:hover {
  border-color: rgba(22, 181, 123, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30), 0 0 22px rgba(22, 181, 123, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.store-btns-wrapper a {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-btns-wrapper a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.50) !important;
}

@media(max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    grid-column: 1;
    align-items: center;
    text-align: center;
  }

  .hero-left .trust-row {
    justify-content: center !important;
  }

  .hero p.lead {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    grid-column: 1;
    align-items: center;
    padding-top: 32px;
    width: 100%;
  }

  .store-btns-wrapper {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
  }
}

@media(max-width: 560px) {
  .store-btns-wrapper {
    flex-direction: column;
    gap: 10px;
    width: max-content;
    min-width: 220px;
    padding: 14px 12px;
  }

  .store-btns-wrapper a {
    display: flex !important;
    justify-content: center;
    width: 100%;
  }

  .store-btns-wrapper a img {
    width: auto !important;
    height: 50px !important;
    max-width: 100%;
    object-fit: contain;
  }

  .feature-stats {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .feature-stats-desc {
    font-size: 11px;
    max-width: 100%;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding-top: 22px;
}

.trust-row b {
  color: #fff;
  font-weight: 600;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, .62);
  z-index: 1;
}

@media(max-width:560px) {
  .wrap {
    padding: 0 20px;
  }

  .trust-row {
    gap: 14px 20px;
  }

  .hero-right {
    padding-top: 24px;
  }
}

/* ---------- Ticker ---------- */
.ticker-section {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  white-space: nowrap;
  padding: 0 28px;
}

.ticker-item b {
  color: var(--lime);
  font-weight: 600;
}

.ticker-item .sep {
  color: rgba(255, 255, 255, .25);
}

/* ---------- Section shared ---------- */
section {
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.7rem);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16.5px;
  color: var(--steel);
  line-height: 1.6;
}

.section-head.on-dark p {
  color: rgba(255, 255, 255, .6);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Features ---------- */
.feature-row {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 130px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr .85fr;
}

.feature-row.reverse .phone-col {
  order: -1;
}

.feature-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.feature-row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.feature-row p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--steel);
  max-width: 400px;
  margin-bottom: 26px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.anno-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  padding: 7px 12px;
  border-radius: 30px;
}

.anno-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-deep);
}

.phone-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone {
  width: 250px;
  background: var(--graphite);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(14, 24, 18, .22), 0 4px 0 rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, .08);
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/19.5;
  font-family: var(--font-body);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: var(--graphite);
  border-radius: 20px;
  z-index: 5;
}

.feature-stats {
  display: flex;
  gap: 32px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
}

.feature-stats>div {
  flex: 1;
  min-width: 0;
}

.feature-stats-desc {
  font-size: 12.5px;
  color: var(--steel);
  margin-top: 3px;
  max-width: 120px;
}

@media(max-width:900px) {
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-row.reverse .phone-col,
  .feature-row.reverse .text-col {
    order: initial;
  }

  .feature-row {
    margin-bottom: 90px;
  }

  .feature-row p {
    max-width: 100%;
  }
}

/* ---------- How it works (cable timeline) ---------- */
.how-section {
  background: var(--paper-2);
}

.cable-wrap {
  position: relative;
  padding-top: 10px;
}

.cable-line {
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--line-light);
  border-radius: 3px;
  overflow: hidden;
}

.cable-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.cable-fill.filled {
  width: 100%;
}

.cable-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.cable-step {
  text-align: center;
}

.cable-node {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .4s, box-shadow .4s;
}

.cable-node svg {
  width: 18px;
  height: 18px;
}

.cable-step.active .cable-node {
  border-color: var(--lime-deep);
  box-shadow: 0 0 0 6px rgba(182, 255, 60, .18);
}

.cable-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-soft);
  margin-bottom: 8px;
  display: block;
}

.cable-step .step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.cable-step p {
  font-size: 13px;
  color: var(--steel);
  max-width: 160px;
  margin: 0 auto;
}

@media(max-width:880px) {
  .cable-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cable-line {
    display: none;
  }

  .cable-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .cable-node {
    margin: 0;
    flex: none;
  }

  .cable-text {
    flex: 1;
    min-width: 0;
  }

  .cable-step p {
    margin: 0;
  }
}

/* ---------- Showcase ---------- */
.showcase-section {
  background: var(--graphite);
  color: #fff;
}

.showcase-gallery {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.showcase-gallery .phone {
  transition: transform .4s;
}

.showcase-gallery .phone:nth-child(1) {
  transform: rotate(-4deg) translateY(14px);
}

.showcase-gallery .phone:nth-child(3) {
  transform: rotate(4deg) translateY(14px);
}

.showcase-gallery .phone:hover {
  transform: translateY(-10px) rotate(0deg) !important;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  overflow: hidden;
}

.why-item {
  background: var(--paper);
  padding: 34px 28px;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon svg {
  width: 19px;
  height: 19px;
}

.why-item .item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
}

@media(max-width:880px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media(min-width:881px) and (max-width:1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.app_store_btn:hover,
.play_store_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .45);
}

/* ---------- Store badge buttons (hero + download panel) ---------- */
.store-btn-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  min-width: 185px;
}

.store-btn-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.store-btn-badge__sub {
  font-size: 11px;
  font-weight: 400;
  opacity: .72;
  margin-bottom: 3px;
}

.store-btn-badge__main {
  font-size: 17px;
  font-weight: 600;
}

.app_store_btn:hover,
.play_store_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .5) !important;
}

.store-btn-badge--dark {
  background: #000;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .18);
}

.store-btn-badge--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .45);
}

.store-btn-badge--outline {
  background: #000;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .18);
}

.store-btn-badge--outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .45);
}

.store-btn-badge--outline-dark {
  background: #000;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .18);
}

.store-btn-badge--outline-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .45);
}

/* ---------- Download CTA ---------- */
.download-panel {
  position: relative;
  background: linear-gradient(135deg, #11c48a 0%, var(--lime) 55%, #0faa7d 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  color: var(--ink);
}

.download-panel::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(14, 24, 18, .13);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-panel::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(14, 24, 18, .07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-panel__ring3 {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  border: 1px solid rgba(14, 24, 18, .04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-panel__badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(14, 24, 18, .12);
  border: 1px solid rgba(14, 24, 18, .18);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  opacity: .75;
}

.download-panel h2 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.download-panel p {
  position: relative;
  z-index: 2;
  font-size: 16px;
  margin-bottom: 36px;
  opacity: .75;
}

.download-panel__btns {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-bottom: 28px !important;
}

.download-panel .store-btn-badge--dark {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.download-panel__trust {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-family: var(--font-mono);
  opacity: .65;
  border-top: 1px solid rgba(14, 24, 18, .15);
  padding-top: 22px;
}

.download-panel__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, .6);
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 30px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
  max-width: 260px;
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 14px;
}

@media(max-width:880px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .footer-brand p {
    max-width: 480px;
  }
}

@media(max-width:480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media(max-width:560px) {
  section {
    padding: 80px 0;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .35s ease, transform .35s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.blog-reveal-right {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity .35s ease, transform .35s ease;
}

.blog-reveal-left {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
}

.blog-reveal-bottom {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}

.blog-reveal-right.active,
.blog-reveal-left.active,
.blog-reveal-bottom.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media(max-width: 880px) {
  .reveal,
  .blog-reveal-right,
  .blog-reveal-left,
  .blog-reveal-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  background: var(--paper);
  padding: 110px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(24, 194, 156, 0.08);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .icon-toggle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--steel);
  transition: transform .3s, background-color .3s, color .3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary .icon-toggle {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}

.faq-content {
  padding: 0 28px 22px;
  font-size: 14.5px;
  color: var(--steel);
  line-height: 1.65;
  border-top: 1px solid transparent;
  transition: border-color .3s;
}

.faq-item[open] .faq-content {
  border-top-color: var(--line-light);
}

/* ---------- Why Trust ChargeXFinder ---------- */
.trust-section {
  background: var(--paper);
  padding: 100px 0 30px 0;
  border-top: 1px solid var(--line-light);
}
.trust-head {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
.trust-eyebrow {
  color: var(--lime);
}
.trust-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.7rem);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
}
.trust-lead {
  font-size: 16.5px;
  color: var(--steel);
  line-height: 1.7;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.trust-card:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 30px rgba(14,24,18,0.06);
}
.trust-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.trust-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.trust-card-desc {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Network Coverage ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coverage-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.coverage-stat-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
  min-width: 90px;
}

.coverage-stat-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.coverage-stat-sub {
  font-size: 13px;
  color: var(--steel-soft);
}

.coverage-globe-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-globe {
  width: 460px;
  height: 460px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.coverage-ticker {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.coverage-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
}

.coverage-ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-soft);
  padding: 0 28px;
  border-right: 1px solid var(--line-light);
  white-space: nowrap;
}

.coverage-fade {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
}

.coverage-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}

.coverage-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coverage-globe-col {
    order: 2;
  }
}

@media (max-width: 560px) {
  #network-coverage {
    padding: 80px 0;
  }

  .coverage-stat-card {
    padding: 14px 18px;
    gap: 14px;
  }

  .coverage-stat-num {
    font-size: 22px;
    min-width: 64px;
  }

  .coverage-globe {
    width: 280px;
    height: 280px;
  }

  .coverage-ticker {
    margin-top: 40px;
  }

  .coverage-ticker-item {
    font-size: 12px;
    padding: 0 18px;
  }
}

@media(max-width:900px) {
  .features-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }
}

@media(max-width:900px) {
  .host-station-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
}

@media(max-width:560px) {
  .host-station-grid {
    gap: 36px !important;
  }
}

@media(max-width:560px) {
  .pricing-panel {
    padding: 40px 22px !important;
  }

  .pricing-headline {
    font-size: clamp(1.6rem, 8vw, 2.1rem) !important;
  }
}

@media(max-width:560px) {
  .download-panel {
    padding: 56px 24px;
    border-radius: 24px;
  }

  .download-panel__btns {
    flex-direction: column;
    align-items: center;
  }

  .store-btn-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media(max-width:560px) {
  .hero {
    padding: 120px 0 70px;
  }
}

.cs-card {
  width: 370px;
  height: 220px;
}

@media(max-width:900px) {
  .cs-card {
    width: 260px;
    height: 160px;
  }
}

@media(max-width:560px) {
  .cs-card {
    width: 200px;
    height: 130px;
  }
}

@media(max-width:560px) {
  #cs-text {
    width: 280px;
  }
}

.blog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
  min-width: 0;
}

.blog-head>* {
  min-width: 0;
}

.blog-head-right {
  text-align: right;
}

.blog-head-right p {
  margin-left: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}

.blog-grid>* {
  min-width: 0;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  border: 1px solid rgba(22, 181, 123, .25);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(22, 181, 123, .18), 0 12px 36px rgba(22, 181, 123, .15);
}

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 16, 0) 30%, rgba(11, 19, 16, .88) 90%);
}

.blog-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
}

.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-side-col {
  display: contents;
}

.blog-card-side {
  display: contents;
}

.blog-card-side-img {
  display: contents;
}

.blog-card-side-body {
  display: contents;
}

.blog-card-side-title {
  display: contents;
}

@media(max-width:900px) {
  #our-blogs {
    min-height: unset !important;
    padding: 50px 0;
  }

  .blog-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-head-right,
  .blog-head-right p {
    text-align: left;
    margin-left: 0;
  }

  .blog-head-right .store-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    gap: 16px;
  }

  .blog-card {
    min-height: 260px;
  }
}

@media(max-width:560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 220px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-body {
    padding: 18px 18px;
  }
}

.blog-grid .blog-card.insight-extra {
  display: none !important;
}

.blog-grid.expanded .blog-card.insight-extra {
  display: block !important;
}

.blog-grid.expanded {
  grid-template-rows: repeat(5, 1fr) !important;
  height: calc((100vh - 280px) * 2.5 + 30px) !important;
  min-height: 1080px !important;
  max-height: 1730px !important;
}

@media(max-width:1100px) {
  .blog-grid.expanded {
    grid-template-rows: unset !important;
    grid-auto-rows: minmax(260px, 1fr) !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
}

@media(max-width:560px) {
  .blog-grid.expanded {
    grid-auto-rows: minmax(220px, 1fr) !important;
  }
}

#our-blogs.expanded {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

#see-more-btn.ghost {
  background: transparent !important;
  color: var(--lime) !important;
  border: 1px solid var(--lime) !important;
}

#see-more-btn.ghost:hover {
  background: rgba(22, 181, 123, 0.1) !important;
  color: var(--teal) !important;
  border-color: var(--teal) !important;
  transform: translateY(-3px);
}

#see-less-text-link {
  transition: color 0.3s ease;
}

#see-less-text-link:hover {
  color: var(--teal) !important;
}

.modal-backdrop.active {
  opacity: 1 !important;
}

.modal-backdrop.active .modal-card {
  transform: scale(1) !important;
}

#modal-close-btn:hover {
  background: var(--lime) !important;
  color: var(--graphite) !important;
  border-color: var(--lime) !important;
}

/* ---------- Newsletter Popup CSS ---------- */
:root {
  --nl-lime: #16b57b;
  --nl-dark: #0b1310;
  --nl-graphite: #1a1d23;
  --nl-white: #ffffff;
  --nl-gray: rgba(255,255,255,0.7);
  --nl-border: rgba(22,181,123,0.25);
}

.nl-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11, 19, 16, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nl-popup-backdrop.active {
  opacity: 1;
}

.nl-popup-card {
  background: #151921;
  border: 1px solid var(--nl-border);
  width: 90%;
  max-width: 440px;
  border-radius: 28px;
  position: relative;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.nl-popup-backdrop.active .nl-popup-card {
  transform: scale(1);
}

.nl-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--nl-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nl-close-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

.nl-popup-content {
  text-align: center;
  color: var(--nl-white);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 181, 123, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(22, 181, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 181, 123, 0);
  }
}

@keyframes lightning-flash {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.nl-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(22, 181, 123, 0.1);
  border: 1px solid rgba(22, 181, 123, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse-glow 2s infinite;
}

.nl-envelope-icon {
  width: 32px;
  height: 32px;
  color: var(--nl-lime);
}

.lightning-bolt {
  animation: lightning-flash 1.5s infinite ease-in-out;
  color: var(--nl-lime);
}

.nl-popup-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.nl-popup-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--nl-gray);
  line-height: 1.5;
  margin-bottom: 28px;
}

.nl-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nl-input-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nl-lime);
}

.nl-input-group input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--nl-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.nl-input-group input:focus {
  border-color: rgba(22, 181, 123, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(22, 181, 123, 0.1);
}

.nl-submit-btn {
  background: var(--nl-lime);
  color: var(--nl-dark);
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.nl-submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 181, 123, 0.25);
}

.nl-submit-btn:active {
  transform: translateY(0);
}

.nl-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(11, 19, 16, 0.2);
  border-top: 3px solid var(--nl-dark);
  border-radius: 50%;
  animation: nl-spin 0.8s linear infinite;
}

@keyframes nl-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nl-error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.4;
}

.nl-success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.4;
}

.nl-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nl-lime);
  border: none;
  color: var(--nl-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nl-floating-btn:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 12px 40px rgba(22, 181, 123, 0.4);
}

.nl-floating-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .nl-popup-card {
    padding: 32px 24px 28px;
    border-radius: 24px;
  }
  .nl-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

  }
}

/* ==========================================================================
   About Us & Dxora Section (Dark Graphite Theme #0b1310 - Responsive)
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background-color: #0b1310 !important;
  background: #0b1310 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.about-section .section-head h2 {
  color: #ffffff !important;
}

.about-section .section-head p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.about-mission-card {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(22, 181, 123, 0.25) !important;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 181, 123, 0.5) !important;
  box-shadow: 0 12px 32px rgba(22, 181, 123, 0.15);
}

.about-mission-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.35;
}

.about-mission-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0;
}

.about-partner-block {
  background: linear-gradient(135deg, rgba(22, 181, 123, 0.12) 0%, rgba(11, 19, 16, 0.98) 100%) !important;
  border: 1px solid rgba(22, 181, 123, 0.3) !important;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-partner-info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.about-partner-info p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 760px;
  margin: 0;
}

.btn-dxora {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lime) !important;
  color: var(--graphite) !important;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(22, 181, 123, 0.3);
}

.btn-dxora:hover {
  background: #ffffff !important;
  color: var(--graphite) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-dxora svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-dxora:hover svg {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .about-mission-card {
    padding: 24px 20px !important;
  }
  .about-partner-block {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 30px 22px !important;
  }
}

.btn-dxora svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-dxora:hover svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-partner-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}
