:root {
  --bg: #07111f;
  --bg-soft: #0e1c31;
  --text: #f7fbff;
  --muted: #b8c6d8;
  --light: #f5f8fc;
  --light-text: #172033;
  --light-muted: #58677c;
  --accent: #36d399;
  --accent-2: #66a6ff;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

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

.nav-cta {
  color: #06101d !important;
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(54, 211, 153, 0.24), transparent 35%),
    radial-gradient(circle at bottom right, rgba(102, 166, 255, 0.19), transparent 38%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #06101d;
}

.btn.secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn.full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 270px;
  margin-bottom: 24px;
}

.status-pill,
.card-label,
.popular {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 900;
  color: #06101d;
  background: var(--accent);
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--muted);
}

.mini-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-stack div {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px;
}

.mini-stack strong {
  color: var(--accent);
}

.light-section {
  background: var(--light);
  color: var(--light-text);
}

.light-section .section-heading p,
.service-card p,
.pricing-card li,
.process-grid span,
.contact-section p,
.routes-list p,
.contact-card span {
  color: var(--light-muted);
}

.section-heading {
  max-width: 870px;
  margin-bottom: 46px;
}

.section-heading.narrow {
  max-width: 720px;
}

.ecosystem-grid,
.services-grid,
.projects-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.ecosystem-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.ecosystem-card,
.service-card,
.pricing-card,
.project-card {
  border-radius: var(--radius);
  padding: 26px;
}

.ecosystem-card {
  background: #fff;
  border: 1px solid #e3eaf3;
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.08);
}

.ecosystem-card p {
  color: var(--light-muted);
}

.featured-card {
  background: var(--bg);
  color: var(--text);
}

.featured-card p {
  color: var(--muted);
}

.routes-panel {
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  border: 1px solid #e3eaf3;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 24px;
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.07);
}

.routes-list {
  display: grid;
  gap: 10px;
}

.routes-list p {
  margin-bottom: 0;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.pricing-card {
  background: #fff;
  color: var(--light-text);
  border: 1px solid #e7edf5;
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.06);
}

.dark-section {
  background:
    radial-gradient(circle at top right, rgba(54, 211, 153, 0.16), transparent 34%),
    var(--bg-soft);
}

.dark-section .section-heading p {
  color: var(--muted);
}

.projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
}

.project-card span {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  position: relative;
}

.pricing-card.highlighted {
  border-color: rgba(54, 211, 153, 0.6);
  transform: translateY(-10px);
}

.price {
  font-weight: 900;
  color: var(--light-text);
}

.pricing-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.process-section {
  background: var(--light);
  color: var(--light-text);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid div {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid #e7edf5;
}

.process-grid strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bg);
  color: var(--accent);
  margin-bottom: 18px;
}

.contact-section {
  background: #fff;
  color: var(--light-text);
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.contact-card {
  border: 1px solid #e7edf5;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 4px;
  background: var(--light);
}

.contact-card strong {
  color: var(--light-text);
}

.muted-card {
  opacity: 0.78;
}

.quote-cta {
  margin: 26px 0;
}

.quote-cta p {
  margin: 0 0 14px;
}

.contact-section .btn.secondary {
  color: var(--light-text);
  background: var(--light);
  border-color: #d7e0eb;
}

.qr-box {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border: 1px solid #e7edf5;
  border-radius: 20px;
  padding: 14px;
  background: var(--light);
  max-width: 380px;
}

.qr-box img {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  background: #fff;
}

.qr-box span {
  color: var(--light-muted);
  font-weight: 700;
}

.contact-form {
  background: var(--light);
  border: 1px solid #e7edf5;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--light-text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--light-text);
  background: #fff;
}

textarea {
  resize: vertical;
}

.whatsapp-link {
  color: var(--light-text);
  font-weight: 900;
  text-align: center;
}

.footer {
  padding: 34px 0;
  background: #050b14;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 210px;
  margin-bottom: 10px;
}

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

.footer-links a {
  margin-left: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .routes-panel {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid,
  .services-grid,
  .projects-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 70px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: #07111f;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .nav-links a {
    padding: 10px;
  }

  .ecosystem-grid,
  .services-grid,
  .projects-grid,
  .pricing-grid,
  .process-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links a {
    display: inline-block;
    margin: 0 14px 0 0;
  }
}


/* Guide page */
.guide-hero .hero-card {
  align-self: stretch;
}

.guide-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .guide-process {
    grid-template-columns: 1fr;
  }
}
