/* VARIABLES */
:root {
  --bg:           #0b0b0c;
  --panel:        #101214;
  --line:         #1e2126;
  --text:         #f6f7f9;
  --muted:        #b8bcc6;
  --accent:       #00ffee;
  --accent-ink:   #021314;
  --accent-2:     #80ccc9;
  --radius:       16px;
  --shadow:       0 10px 24px rgba(0,0,0,.25);
  --font:         ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

.micro {
  font-size: 12.5px;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .3px;
}

.brand img {
  display: block;
  height: 40px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  color: var(--text);
  opacity: .9;
  font-weight: 800;
  position: relative;
  padding: 0 16px;
}

.nav a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: var(--accent);
  border-radius: 1px;
}

.nav a:hover {
  opacity: 1;
}

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.nav-icons a {
  color: var(--accent-2);
  font-size: 1.45rem;
  transition: color .15s;
}

.nav-icons a:hover {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .nav a {
    padding: 0 0;
  }
  .nav a:not(:last-child)::after {
    display: none;
  }
}

/* HERO with images */
.hero {
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 10px;
}

.hero .sub {
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-images {
  display: grid;
  gap: 8px;
}

.hero-images img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* HERO OVERLAY */
.hero-overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  margin-bottom: 48px;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: var(--panel);
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,11,12,0.82) 60%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero-text-overlay {
  position: relative;
  z-index: 3;
  color: var(--text);
  max-width: 540px;
  margin-left: 48px;
  padding: 48px 0;
}
.hero-text-overlay h1 {
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px 0;
  color: var(--accent);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-text-overlay .sub {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.15rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-text-overlay .cta-row {
  display: flex;
  gap: 16px;
}

/* HERO VIDEO */
.hero-video-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 32px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 4px 24px rgba(0,255,238,0.08);
}
.hero-video {
  width: 100%;
  max-width: 1040px;
  height: auto;
  aspect-ratio: 16/7.5;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
@media (max-width: 900px) {
  .hero-video-wrap {
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .hero-video {
    border-radius: 12px;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 700px) {
  .hero-video-wrap {
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 0;
  }
  .hero-video {
    border-radius: 8px;
    aspect-ratio: 16/9;
    max-width: 98vw;
  }
}

/* HERO SIDE */
.hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,255,238,0.08);
  overflow: hidden;
  padding: 0 32px;
}
.hero-side-content {
  padding: 48px 0;
  max-width: 520px;
}
.hero-side-content h1 {
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px 0;
  color: var(--accent);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-side-content .sub {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.15rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-side-content .cta-row {
  display: flex;
  gap: 16px;
}
.hero-side-video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-video {
  width: 100%;
  max-width: 520px;
  height: 320px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,255,238,0.08);
  display: block;
}
@media (max-width: 900px) {
  .hero-side {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 8vw;
  }
  .hero-side-content {
    padding: 32px 0 12px 0;
    max-width: 100%;
  }
  .hero-side-video {
    margin-bottom: 18px;
  }
  .hero-video {
    max-width: 100%;
    height: 220px;
    border-radius: 12px;
  }
}
@media (max-width: 700px) {
  .hero-side {
    padding: 0 2vw;
    border-radius: 10px;
    margin-bottom: 24px;
  }
  .hero-side-content {
    padding: 18px 0 8px 0;
  }
  .hero-video {
    height: 140px;
    border-radius: 8px;
    max-width: 98vw;
  }
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 32px;
  font-size: 1.08rem;
  color: var(--muted);
}
.trust-tech {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-title {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.trust-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-logos img {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 2px 16px rgba(0,255,238,0.10);
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: box-shadow .14s, transform .14s;
  border: 2px solid var(--accent-2);
}
.trust-logos img:hover {
  box-shadow: 0 4px 24px rgba(0,255,238,0.18);
  transform: scale(1.06);
  border-color: var(--accent);
}
.trust-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 10px 0 10px 0;
  border-radius: 1px;
}
.trust-clients {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0;
}
@media (max-width: 700px) {
  .trust-bar {
    padding: 12px 8px;
    gap: 10px;
  }
  .trust-logos {
    gap: 12px;
  }
  .trust-logos img {
    height: 48px;
    padding: 12px 16px;
    border-radius: 10px;
    max-width: 100px;
  }
}

/* GRID & CARD */
.grid-3, .grid-2 {
  display: grid;
  gap: 32px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.card {
  background: var(--panel);
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(0,255,238,0.08);
  padding: 32px 24px;
  text-align: left;
  transition: box-shadow .12s, border-color .12s, transform .12s;
  border: 2px solid var(--accent-2);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.card-img {
  width: 100%;
  max-width: 320px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0,255,238,0.10);
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
  border-color: var(--accent);
}
.card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.card p, .card ul {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0;
}

/* FEATURES/SERVICES */
.features-main {
  margin-bottom: 48px;
}
.features-intro {
  color: var(--muted);
  font-size: 1.18rem;
  margin-bottom: 18px;
  text-align: center;
}
.features-grid-upgraded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 1000px) {
  .features-grid-upgraded {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .features-grid-upgraded {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.feature-card-upgraded {
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,255,238,0.08);
  padding: 38px 28px;
  text-align: left;
  border: 2px solid var(--accent-2);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow .16s, border-color .16s, transform .16s, background .16s;
  max-width: 100%;
}
.feature-card-upgraded:hover {
  background: #101214e0;
  box-shadow: 0 12px 32px rgba(0,255,238,0.18);
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: -8px;
}
.accent-lime svg {
  color: #C9F31D;
}
.accent-turquoise svg {
  color: #00C2D1;
}
.feature-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  margin-top: 0;
}
.feature-desc {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 22rem;
  line-height: 1.5;
}
.features-cta-row {
  text-align: center;
  margin-top: 32px;
}
.features-cta-row .btn {
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: 14px;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--panel) 100%);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  margin: 48px 0;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-band h2 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.cta-band .btn {
  width: auto;
  min-width: 100px;
  max-width: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.cta-band, .cta-band h2, .cta-band a {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* FOOTER SOCIAL LINKS */
.site-footer .social {
  display: flex;
  gap: 14px;
}
.site-footer .social a {
  display: flex;
  align-items: center;
  color: var(--accent-2);
  font-size: 22px;
  transition: color .15s;
}
.site-footer .social a:hover {
  color: var(--accent);
}
.site-footer .social svg {
  display: block;
}

/* STEPS */
.steps {
  margin: 8px 0 0 20px;
}

/* FOOTER */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
  gap: 0;
  background: transparent;
}
.footer-main-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-main-links a {
  color: var(--accent-2);
  text-decoration: none;
  font-size: 1rem;
  transition: color .15s;
}
.footer-main-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-meta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.footer-meta-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 2px;
}
.footer-meta-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  transition: color .15s;
}
.footer-meta-links a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* COMPANY & CONTACT */
.company, .contact {
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(0,255,238,0.04);
  padding: 32px 24px;
  margin-bottom: 48px;
}
.company img, .contact img {
  max-width: 180px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.company-flex {
  display: flex;
  gap: 32px;
  align-items: center;
}
.company-flex img {
  width: 220px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,255,238,0.10);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2001;
  width: 38px;
  height: 38px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--accent-2);
  margin: 3px 0;
  border-radius: 2px;
  transition: background .18s;
}
.hamburger:active span {
  background: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,18,20,0.98);
  z-index: 2000;
  padding: 0;
  animation: fadeIn .22s;
}
.mobile-menu.open {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu-inner {
  max-width: 340px;
  margin: 48px auto;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu .brand {
  margin-bottom: 18px;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  align-items: center;
}
.mobile-links a {
  color: var(--accent-2);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
.mobile-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.mobile-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  justify-content: center;
}
.mobile-icons a {
  color: var(--accent-2);
  font-size: 1.45rem;
  transition: color .15s;
}
.mobile-icons a:hover {
  color: var(--accent);
}

/* MOBILE RESPONSIVENESS */

/* Sidebar */
@media (max-width: 900px) {
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .sidebar .brand {
    margin-bottom: 0;
    margin-right: 18px;
  }
  .sidebar-nav-row {
    gap: 10px;
  }
  .sidebar-nav-actions {
    margin-top: 0;
    margin-left: 12px;
    gap: 8px;
  }
}

/* Main content and wrap */
@media (max-width: 900px) {
  .main-content {
    margin-left: 0;
    padding: 0;
  }
  .wrap {
    max-width: 100vw;
    padding: 12px 4vw;
  }
}

/* Header nav */
@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .header-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Benefits grid */
@media (max-width: 700px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card {
    margin: 12px 0;
    padding: 16px;
  }
}

/* Features grid */
@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0;
  }
  .feature-card {
    padding: 20px 12px;
    min-height: 120px;
  }
}

/* How it works flow */
@media (max-width: 700px) {
  .how-flow {
    padding: 18px 4vw;
    margin: 28px auto;
  }
  .flow-steps {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .flow-step {
    margin: 12px 0;
    max-width: 100%;
    padding: 16px 8px;
  }
}

/* CTA section */
@media (max-width: 700px) {
  .improved-cta {
    padding: 18px 4vw;
    margin: 28px auto;
  }
  .cta-title {
    font-size: 1.3rem;
  }
  .cta-desc {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .accent-cta {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

/* FAQ section */
@media (max-width: 700px) {
  .faqs-section {
    padding: 18px 4vw;
    margin: 28px auto;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding-left: 8px;
  }
}

/* Random images */
@media (max-width: 700px) {
  .random-img {
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
    align-items: center;
  }
  .random-img img {
    width: 98vw;
    max-width: 98vw;
    min-width: 120px;
    border-radius: 12px;
  }
}

/* Footer */
@media (max-width: 700px) {
  .site-footer {
    padding-top: 10px;
    margin-top: 18px;
  }
  .footer-main-links {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.98rem;
    margin-bottom: 6px;
  }
  .footer-meta-row {
    gap: 4px;
  }
  .footer-meta-links {
    gap: 10px;
    font-size: 0.98rem;
  }
  .social {
    gap: 8px;
    font-size: 18px;
    margin-top: 4px;
  }
}

/* Hero overlay image */
@media (max-width: 700px) {
  .hero-overlay {
    min-height: 180px;
    margin-bottom: 24px;
    border-radius: 10px;
  }
  .hero-image-bg img {
    border-radius: 10px;
  }
}

/* Hamburger menu button */
.hamburger {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px; /* changed from left to right */
  z-index: 2001;
  width: 38px;
  height: 38px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--accent-2);
  margin: 3px 0;
  border-radius: 2px;
  transition: background .18s;
}
.hamburger:active span {
  background: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,18,20,0.98);
  z-index: 2000;
  padding: 0;
  animation: fadeIn .22s;
}
.mobile-menu.open {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu-inner {
  max-width: 340px;
  margin: 48px auto;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu .brand {
  margin-bottom: 18px;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  align-items: center;
}
.mobile-links a {
  color: var(--accent-2);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
.mobile-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.mobile-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  justify-content: center;
}
.mobile-icons a {
  color: var(--accent-2);
  font-size: 1.45rem;
  transition: color .15s;
}
.mobile-icons a:hover {
  color: var(--accent);
}

/* Hide sidebar and header nav below 1000px, show hamburger */
@media (max-width: 1000px) {
  .sidebar,
  .site-header .header-nav,
  .nav-icons {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .main-content {
    margin-left: 0;
  }
}

/* Prevent background scroll when menu open */
.menu-open {
  overflow: hidden;
}

/* Make all text smaller on mobile devices */
@media (max-width: 700px) {
  html, body {
    font-size: 14px;
  }
  .site-header,
  .brand,
  .nav a,
  .hero h1,
  .hero .sub,
  .card h3,
  .card p,
  .feature-card h4,
  .feature-card p,
  .section-title,
  .cta-title,
  .cta-desc,
  .accent-cta,
  .faq-question,
  .faq-answer,
  .footer-main-links a,
  .footer-meta-links a,
  .footer-meta-row,
  .micro,
  .muted,
  .mobile-links a,
  .mobile-icons a {
    font-size: 0.95rem !important;
  }
  .cta-title,
  .section-title {
    font-size: 1.08rem !important;
  }
  .hero h1 {
    font-size: 1.2rem !important;
  }
  .accent-cta {
    font-size: 0.98rem !important;
  }
}

/* GENERAL SECTION STYLES */
section {
  margin-bottom: 48px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 2px 18px rgba(0,255,238,0.04);
}
.section-title {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: 1px;
}

/* ABOUT SECTION */
.about-hero {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 32px auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
}
.about-hero-img {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  filter: brightness(0.85);
}
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.about-hero-overlay > div {
  background: rgba(16,18,20,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10);
  padding: 40px 32px;
  max-width: 90%;
  width: 480px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: auto;
  overflow-y: auto;
}
.about-hero-overlay h2 {
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.about-hero-overlay h3 {
  color: var(--accent-2);
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.about-hero-overlay p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}
.about-highlight {
  background: rgba(0,255,238,0.08);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px 0 0 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px rgba(0,255,238,0.10);
}
@media (max-width: 900px) {
  .about-hero-img {
    height: 260px;
  }
  .about-hero-overlay > div {
    padding: 18px 10px;
    border-radius: 12px;
    width: 98vw;
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .about-hero {
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .about-hero-img {
    height: 180px;
  }
  .about-hero-img img {
    border-radius: 10px;
  }
  .about-hero-overlay > div {
    padding: 8px 4px;
    border-radius: 8px;
    width: 98vw;
    max-width: 98vw;
  }
  .about-hero-overlay h2 {
    font-size: 1.1rem;
  }
  .about-hero-overlay h3 {
    font-size: 0.98rem;
    margin-top: 14px;
  }
  .about-hero-overlay p {
    font-size: 0.95rem;
  }
  .about-highlight {
    font-size: 0.98rem;
    padding: 8px 8px;
    margin: 10px 0 0 0;
  }
}
.about-hero-panel {
  margin-bottom: 40px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  overflow: hidden;
}
.about-hero-img-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101214;
}
.about-hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.about-hero-content-panel {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(16,18,20,0.98);
  border-radius: 0 18px 18px 0;
  min-height: 320px;
}
.about-hero-content-panel h2 {
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.about-hero-content-panel h3 {
  color: var(--accent-2);
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.about-hero-content-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}
.about-highlight {
  background: rgba(0,255,238,0.08);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px 0 0 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px rgba(0,255,238,0.10);
}
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .about-hero-img-panel img {
    min-height: 180px;
    max-height: 220px;
    border-radius: 12px 12px 0 0;
  }
  .about-hero-content-panel {
    padding: 24px 12px;
    border-radius: 0 0 12px 12px;
    min-height: 180px;
  }
}
@media (max-width: 700px) {
  .about-hero-panel {
    margin-bottom: 18px;
  }
  .about-hero-img-panel img {
    min-height: 120px;
    max-height: 140px;
    border-radius: 10px 10px 0 0;
  }
  .about-hero-content-panel {
    padding: 10px 6px;
    border-radius: 0 0 10px 10px;
    min-height: 120px;
  }
  .about-hero-content-panel h2 {
    font-size: 1.1rem;
  }
  .about-hero-content-panel h3 {
    font-size: 0.98rem;
    margin-top: 14px;
  }
  .about-hero-content-panel p {
    font-size: 0.95rem;
  }
  .about-highlight {
    font-size: 0.98rem;
    padding: 8px 8px;
    margin: 10px 0 0 0;
  }
}
.about-hero-center {
  margin-bottom: 40px;
  text-align: center;
}
.about-center-title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.about-hero-center-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.about-center-img {
  width: 340px;
  max-width: 90vw;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  margin-bottom: 0;
}
.about-center-content {
  max-width: 540px;
  width: 100%;
  background: rgba(16,18,20,0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,255,238,0);
  padding: 32px 28px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-center-content h3 {
  color: var(--accent-2);
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.about-center-content p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}
.about-highlight {
  background: rgba(0,255,238,0.08);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px 0 0 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px rgba(0,255,238,0.10);
}
@media (max-width: 900px) {
  .about-center-img {
    width: 220px;
    border-radius: 12px;
  }
  .about-center-content {
    padding: 18px 10px;
    border-radius: 12px;
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .about-hero-center {
    margin-bottom: 18px;
  }
  .about-center-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .about-center-img {
    width: 98vw;
    border-radius: 10px;
  }
  .about-center-content {
    padding: 8px 4px;
    border-radius: 10px;
    max-width: 98vw;
  }
  .about-center-content h3 {
    font-size: 0.98rem;
    margin-top: 14px;
  }
  .about-center-content p {
    font-size: 0.95rem;
  }
  .about-highlight {
    font-size: 0.98rem;
    padding: 8px 8px;
    margin: 10px 0 0 0;
  }
}
.about-hero-split {
  margin-bottom: 40px;
}
.about-split-title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.about-hero-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,255,238,0.10), var(--shadow);
  overflow: hidden;
}
.about-split-img-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #101214;
  height: auto;
}
.about-split-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
@media (max-width: 900px) {
  .about-split-img-col {
    height: auto;
  }
  .about-split-img {
    height: auto;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 700px) {
  .about-split-img-col {
    height: auto;
  }
  .about-split-img {
    height: auto;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 4/3;
  }
}
.about-split-content-col {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(16,18,20,0.98);
  border-radius: 0 18px 18px 0;
  min-height: 320px;
}
.about-split-content-col h3 {
  color: var(--accent-2);
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.about-split-content-col p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}
.about-highlight {
  background: rgba(0,255,238,0.08);
  color: var(--accent);
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px 0 0 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px rgba(0,255,238,0.10);
}
@media (max-width: 900px) {
  .about-hero-split-row {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .about-split-img {
    min-height: 180px;
    max-height: 220px;
    border-radius: 12px 12px 0 0;
  }
  .about-split-content-col {
    padding: 24px 12px;
    border-radius: 0 0 12px 12px;
    min-height: 180px;
  }
}
@media (max-width: 700px) {
  .about-hero-split {
    margin-bottom: 18px;
  }
  .about-split-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .about-split-img {
    min-height: 120px;
    max-height: 140px;
    border-radius: 10px 10px 0 0;
  }
  .about-split-content-col {
    padding: 10px 6px;
    border-radius: 0 0 10px 10px;
    min-height: 120px;
  }
  .about-split-content-col h3 {
    font-size: 0.98rem;
    margin-top: 14px;
  }
  .about-split-content-col p {
    font-size: 0.95rem;
  }
  .about-highlight {
    font-size: 0.98rem;
    padding: 8px 8px;
    margin: 10px 0 0 0;
  }
}

/* HOW IT WORKS SECTION */
.how-works-main {
  margin-bottom: 48px;
}
.how-works-intro {
  color: var(--muted);
  font-size: 1.18rem;
  margin-bottom: 18px;
  text-align: center;
}
.how-works-timeline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .how-works-timeline {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .how-works-timeline {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 24px;
  }
}
.how-step-card {
  background: #181b1f;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,255,238,0.10);
  border: 1px solid var(--accent-2);
  padding: 22px 18px 18px 18px;
  min-height: 240px;
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow .18s, border-color .18s, transform .18s, background .18s;
  z-index: 2;
}
.how-step-card:hover {
  box-shadow: 0 12px 32px rgba(0,255,238,0.18);
  transform: translateY(-6px) scale(1.04);
  border-color: var(--accent);
  background: #202328;
}
.how-step-badge {
  width: 36px;
  height: 36px;
  background: #00C2D1;
  color: #021314;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,194,209,0.12);
  border: 2px solid #80ccc9;
  transition: background .18s, color .18s;
}
.how-step-card:hover .how-step-badge {
  background: #C9F31D;
  color: #021314;
}
.how-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.how-step-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  margin-top: 0;
}
.how-step-desc {
  color: var(--muted);
  font-size: 1.01rem;
  margin-bottom: 8px;
  max-width: 16rem;
  line-height: 1.5;
}
.how-step-bullets {
  margin: 0 0 6px 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  list-style: disc inside;
  max-width: 14rem;
}
.how-step-helper {
  color: var(--accent-2);
  font-size: 0.95rem;
  margin-bottom: 0;
  margin-top: 2px;
}
.how-step-check {
  opacity: 0;
  position: absolute;
  top: 14px;
  right: 14px;
  transition: opacity .18s;
}
.how-step-card:hover .how-step-check {
  opacity: 1;
}
.how-connector {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #00C2D1 0%, #C9F31D 100%);
  opacity: 0.25;
  align-self: center;
  margin: 0;
  border-radius: 2px;
  z-index: 1;
}
@media (max-width: 700px) {
  .how-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, #00C2D1 0%, #C9F31D 100%);
    margin: 0 auto;
  }
  .how-step-card {
    max-width: 100%;
    min-height: 0;
    padding: 16px 10px 12px 10px;
  }
}
.how-works-cta-row {
  text-align: center;
  margin-top: 32px;
}
.how-works-cta-row .btn {
  font-size: 1.12rem;
  padding: 14px 28px;
  border-radius: 14px;
  margin: 0 8px;
}

/* SOLUTIONS SECTION - Missing styles */
.solutions-main {
  margin-bottom: 48px;
}
.solutions-panels {
  display: flex;
  gap: 0;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,255,238,0.08);
  overflow: hidden;
  background: transparent;
}
.solution-card {
  flex: 1 1 340px;
  padding: 32px;
  background: rgba(0,255,238,0.04);
  border-radius: 32px 0 0 32px;
  box-shadow: 0 2px 18px rgba(0,255,238,0.08);
  position: relative;
  min-width: 280px;
}

/* SOCIAL ICONS - Missing styles */
.social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}
.social a {
  display: flex;
  align-items: center;
  color: var(--accent-2);
  font-size: 22px;
  transition: color .15s;
}
.social a:hover {
  color: var(--accent);
}