:root {
  --bg: #06111f;
  --bg-soft: #0e1a2e;
  --surface: rgba(14, 26, 46, 0.78);
  --surface-strong: rgba(12, 21, 36, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #ecf3ff;
  --muted: #9cb0cc;
  --brand: #29d3a1;
  --brand-strong: #7df5c5;
  --accent: #59a4ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(41, 211, 161, 0.2), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(89, 164, 255, 0.18), transparent 24%),
    linear-gradient(160deg, #06111f 0%, #08192b 44%, #07101d 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(6, 17, 31, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1.5rem;
}

.brand img,
.footer-logo {
  width: 220px;
  height: auto;
}

.footer-logo {
  width: 240px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(41, 211, 161, 0.1);
  border: 1px solid rgba(125, 245, 197, 0.15);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(41, 211, 161, 0.15);
}

.hero h1 {
  margin: 1.15rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero h1 span {
  color: var(--brand-strong);
}

.hero-text,
.section-heading p,
.service-card p,
.solution-card p,
.process-step p,
.metric-card p,
.cta-panel p,
.contact-copy p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 18px 40px rgba(41, 211, 161, 0.25);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item,
.metric-card,
.service-card,
.solution-card,
.process-step,
.contact-form,
.contact-copy,
.flow-window,
.cta-panel,
.faq-list details {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.proof-item {
  padding: 1rem;
  min-height: 150px;
}

.proof-item strong,
.service-card h3,
.solution-card h3,
.process-step h3,
.metric-card strong,
.contact-copy h2,
.section-heading h2,
.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.proof-item span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.9;
}

.orb-a {
  width: 210px;
  height: 210px;
  background: rgba(41, 211, 161, 0.22);
  top: 60px;
  left: 10px;
}

.orb-b {
  width: 250px;
  height: 250px;
  background: rgba(89, 164, 255, 0.2);
  right: 0;
  bottom: 80px;
}

.flow-window {
  width: min(100%, 530px);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)), rgba(9, 19, 33, 0.92);
}

.window-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.flow-lines {
  display: grid;
  gap: 0.9rem;
}

.flow-card {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-card small {
  display: block;
  color: var(--brand-strong);
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flow-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.flow-card-accent {
  background: linear-gradient(135deg, rgba(41, 211, 161, 0.16), rgba(41, 211, 161, 0.04));
}

.flow-card-highlight {
  background: linear-gradient(135deg, rgba(89, 164, 255, 0.16), rgba(89, 164, 255, 0.05));
}

.flow-connector {
  width: 2px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(125, 245, 197, 0.85), rgba(89, 164, 255, 0.2));
}

.floating-metric {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(10, 21, 37, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.floating-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.floating-metric strong {
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric-one {
  top: 85px;
  right: -10px;
}

.metric-two {
  left: -18px;
  bottom: 95px;
}

.trust-strip {
  padding: 1rem 0 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid p {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: #bed0ea;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  padding: 5.75rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.services-grid,
.solutions-grid,
.process-grid,
.metrics-grid {
  display: grid;
  gap: 1.25rem;
}

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

.service-card,
.solution-card,
.process-step,
.metric-card {
  padding: 1.45rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  color: #05111d;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.service-card h3,
.solution-card h3,
.process-step h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.solutions-layout {
  display: grid;
  gap: 2rem;
}

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

.solution-card.highlight {
  background: radial-gradient(circle at top right, rgba(41, 211, 161, 0.12), transparent 35%), var(--surface);
}

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

.metric-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--brand-strong);
  font-size: 0.92rem;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.65rem;
}

.section-process {
  background: radial-gradient(circle at 90% 10%, rgba(89, 164, 255, 0.08), transparent 18%), rgba(255, 255, 255, 0.015);
}

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

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--brand-strong);
  background: rgba(41, 211, 161, 0.1);
  border: 1px solid rgba(41, 211, 161, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.section-cta {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top right, rgba(125, 245, 197, 0.12), transparent 20%), rgba(9, 20, 35, 0.95);
}

.cta-panel h2 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  max-width: 18ch;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-list details {
  padding: 1.15rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  position: relative;
  padding-right: 2rem;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-strong);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
  align-items: stretch;
}

.contact-copy,
.contact-form {
  padding: 1.7rem;
}

.contact-copy h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.contact-list a {
  color: var(--text);
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.96rem;
  color: #d9e6fb;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1rem 1rem 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(125, 245, 197, 0.42);
  box-shadow: 0 0 0 4px rgba(41, 211, 161, 0.09);
  background: rgba(255, 255, 255, 0.06);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  min-height: 24px;
  margin: 1rem 0 0;
  color: var(--brand-strong);
  font-size: 0.95rem;
}

.footer {
  padding: 1rem 0 2rem;
}

.footer-wrap,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-wrap {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap > div:first-child {
  max-width: 540px;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

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

.footer-bottom {
  padding-top: 1.3rem;
  color: rgba(236, 243, 255, 0.6);
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04111d;
  background: linear-gradient(135deg, #34e39f, #15c073);
  box-shadow: 0 20px 50px rgba(21, 192, 115, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 54px rgba(21, 192, 115, 0.45);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .faq-layout,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .solutions-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .trust-grid,
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 540px;
  }

  .floating-metric {
    position: static;
    margin-top: 1rem;
  }
}

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(8, 18, 32, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.9rem 0.6rem;
  }

  .hero,
  .section {
    padding: 4.2rem 0;
  }

  .services-grid,
  .solutions-grid,
  .metrics-grid,
  .process-grid,
  .trust-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-panel {
    min-height: auto;
  }

  .flow-window,
  .contact-form,
  .contact-copy,
  .cta-panel,
  .service-card,
  .solution-card,
  .process-step,
  .metric-card,
  .faq-list details {
    border-radius: 22px;
  }

  .footer-wrap,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-items: start;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .brand img,
  .footer-logo {
    width: 190px;
  }
}
