﻿:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #1A1A2E;
  --accent: #6EE7B7;
  --text-primary: #FFFFFF;
  --text-muted: #A1A1AA;
  --card-bg: rgba(20, 20, 30, 0.55);
  --card-border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 0 1px rgba(110, 231, 183, 0.4), 0 20px 40px rgba(110, 231, 183, 0.15);
  --intro-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 20% -5%, #17213a, transparent 40%), var(--bg-primary);
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

h1,
h2,
h3 {
  font-family: "DM Sans", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 18px;
}

p {
  color: var(--text-muted);
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
}

.btn-mint {
  background: var(--accent);
  color: #05281f;
  box-shadow: 0 10px 25px rgba(110, 231, 183, 0.25);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--accent);
}

.btn-dark {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 70;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-bolt {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(110, 231, 183, 0.8);
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-call-tag {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 112px 0 84px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.1vw, 4.3rem);
  max-width: 840px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  max-width: 760px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 10px;
}

.trust-row div {
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.92rem;
  color: #d9d9dd;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.45;
  transition: opacity 0.7s ease, filter 0.7s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 14, 0.92) 0%,
    rgba(7, 10, 16, 0.56) 52%,
    rgba(7, 10, 16, 0.08) 100%
  );
  opacity: 0;
  transform: translateY(0);
}

@keyframes introNav {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(7px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes introPop {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introVeil {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8%);
  }
}

html.preload .navbar,
html.preload .hero .eyebrow,
html.preload .hero h1,
html.preload .hero-sub,
html.preload .hero-cta,
html.preload .trust-row div {
  opacity: 0;
}

html.preload .hero::after {
  opacity: 1;
}

html.preload .navbar {
  transform: translateY(-16px);
}

html.preload .hero .eyebrow,
html.preload .hero h1,
html.preload .hero-sub {
  transform: translateY(24px);
  filter: blur(7px);
}

html.preload .hero-cta {
  transform: translateY(22px) scale(0.97);
  filter: blur(6px);
}

html.preload .trust-row div {
  transform: translateY(16px) scale(0.97);
  filter: blur(4px);
}

html.preload .hero-orb {
  opacity: 0;
  filter: blur(24px);
}

html.ready .hero::after {
  animation: introVeil 0.9s ease-out 0.02s both;
}

html.ready .navbar {
  animation: introNav 0.56s var(--intro-ease) 0.02s both;
}

html.ready .hero .eyebrow {
  animation: introRise 0.58s var(--intro-ease) 0.08s both;
}

html.ready .hero h1 {
  animation: introRise 0.66s var(--intro-ease) 0.14s both;
}

html.ready .hero-sub {
  animation: introRise 0.62s var(--intro-ease) 0.21s both;
}

html.ready .hero-cta {
  animation: introPop 0.6s var(--intro-ease) 0.28s both;
}

html.ready .trust-row div:nth-child(1) {
  animation: introPop 0.52s var(--intro-ease) 0.34s both;
}

html.ready .trust-row div:nth-child(2) {
  animation: introPop 0.52s var(--intro-ease) 0.39s both;
}

html.ready .trust-row div:nth-child(3) {
  animation: introPop 0.52s var(--intro-ease) 0.44s both;
}

html.ready .trust-row div:nth-child(4) {
  animation: introPop 0.52s var(--intro-ease) 0.49s both;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.8), transparent 70%);
  left: -80px;
  top: 40px;
  animation: floatA 11s ease-in-out infinite;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(49, 130, 206, 0.35), transparent 72%);
  right: -140px;
  top: 10px;
  animation: floatB 13s ease-in-out infinite;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.35), transparent 65%);
  right: 35%;
  bottom: -120px;
  animation: floatC 14s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-26px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(-16px); }
}

@keyframes floatC {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(18px); }
}

.proof-strip {
  padding: 30px 0 40px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.45), rgba(10, 10, 10, 0.08));
}

.proof-head {
  margin-bottom: 14px;
}

.proof-label {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.proof-sub {
  font-size: 0.94rem;
}

.industry-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.industry-marquee + .industry-marquee {
  margin-top: 10px;
}

.industry-track {
  display: flex;
  width: max-content;
  padding: 6px 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.industry-marquee.reverse .industry-pill {
  opacity: 0.86;
}

.industry-set {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding-right: 12px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #dddddf;
  font-size: 0.9rem;
  font-weight: 600;
}

.industry-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(110, 231, 183, 0.8);
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.glass-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(110, 231, 183, 0.12);
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(110, 231, 183, 0.45);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(110, 231, 183, 0.08);
}

.glass-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.why-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.why-head {
  display: flex;
  justify-content: flex-end;
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.45);
}

.num {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-card h3 {
  margin-bottom: 7px;
}

.timeline {
  margin-top: 26px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  border-top: 2px dotted rgba(110, 231, 183, 0.4);
}

.timeline-step {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 20px;
}

.step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: "DM Sans", sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  margin-bottom: 8px;
}

.centered {
  text-align: center;
}

.section-sub {
  max-width: 620px;
  margin: 0 auto 24px;
}

.pricing-card {
  margin: 10px auto 0;
  max-width: 700px;
  text-align: left;
  border: 1px solid rgba(110, 231, 183, 0.6);
  box-shadow: var(--glow);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.62), rgba(10, 10, 10, 0.9));
}

.price-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.price {
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 6px 0 16px;
}

.check-list {
  list-style: none;
  margin: 0 0 20px;
}

.check-list li {
  color: #d9d9dd;
  margin-bottom: 9px;
  padding-left: 1.55rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  margin-top: 18px;
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px;
  background: var(--card-bg);
}

.quote {
  color: #e7e7ea;
}

.stars {
  color: #f7d774;
  margin: 14px 0;
  letter-spacing: 0.08em;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(110, 231, 183, 0.14);
  color: var(--accent);
  border: 1px solid rgba(110, 231, 183, 0.5);
}

.client h3 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
}

.faq-item.open .faq-question::after {
  content: "−";
}

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

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 18px 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-sub {
  margin: 12px 0 18px;
}

.contact-points p {
  margin-bottom: 10px;
}

.contact-points a {
  color: var(--accent);
}

.contact-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 14px;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-note {
  color: #d1d1d6;
  font-size: 0.88rem;
}

.cta-banner {
  padding: 88px 0;
  background: linear-gradient(120deg, #6EE7B7 0%, #2f8ea4 45%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  transform: rotate(35deg);
}

.cta-banner::before {
  left: -90px;
  top: -90px;
}

.cta-banner::after {
  right: -110px;
  bottom: -120px;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner h2,
.cta-inner p {
  color: #08150f;
}

.cta-inner p {
  margin: 10px auto 22px;
  max-width: 660px;
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--card-border);
  padding: 56px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--text-primary);
}

.footer-tagline {
  margin-top: 10px;
}

.footer-freecall {
  margin-top: 6px;
  display: inline-flex;
}

.copyright {
  margin-top: 24px;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.46);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(110, 231, 183, 0.45);
  padding: 10px;
}

.mobile-sticky-cta a {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--accent);
  color: #05281f;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html.preload .navbar,
  html.preload .hero .eyebrow,
  html.preload .hero h1,
  html.preload .hero-sub,
  html.preload .hero-cta,
  html.preload .trust-row div,
  html.preload .hero-orb,
  html.preload .hero::after {
    opacity: 1;
    transform: none;
    filter: none;
  }

  html.ready .navbar,
  html.ready .hero .eyebrow,
  html.ready .hero h1,
  html.ready .hero-sub,
  html.ready .hero-cta,
  html.ready .trust-row div,
  html.ready .hero::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 80px;
    background: rgba(12, 12, 17, 0.96);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta-wrap {
    margin-left: auto;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-cta-wrap .btn {
    display: none;
  }

  .nav-cta-wrap .free-call-tag {
    display: none;
  }

  .hero {
    padding-top: 92px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-marquee.reverse {
    display: none;
  }

  .industry-pill {
    font-size: 0.84rem;
    padding: 0.5rem 0.86rem;
  }

  .feature-grid,
  .why-grid,
  .timeline,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 78px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .section,
  .cta-banner {
    padding: 72px 0;
  }
}

