:root {
  --bg: #040a12;
  --bg-2: #081424;
  --panel: #0d1d33;
  --panel-2: #132b44;
  --text: #eff7ff;
  --muted: #b4c8de;
  --line: rgba(87, 165, 255, 0.18);
  --blue: #3d8eff;
  --cyan: #41e9ff;
  --violet: #8b79ff;
  --green: #59e79b;
  --red: #ff6b75;
  --amber: #ffd56a;
  --gold: #ffc94d;
  --white: #ffffff;
  --shadow: 0 24px 72px rgba(2, 6, 14, 0.42);
  --shadow-hover: 0 28px 80px rgba(2, 6, 14, 0.52);
  --radius: 18px;
  --transition: 200ms ease;
  --fab-offset: 20px;
  --fab-gap: 14px;
  --fab-height: 52px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(61, 142, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(139, 121, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(65, 233, 255, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(5, 11, 22, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(5, 11, 22, 0.96);
  border-bottom-color: rgba(87, 165, 255, 0.28);
  box-shadow: 0 12px 40px rgba(2, 6, 14, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.brand > span {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav a:hover,
.header-cta:hover {
  color: var(--cyan);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.menu-toggle {
  border: 1px solid rgba(53, 230, 255, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(45, 140, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: rgba(45, 140, 255, 0.22);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 72px) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 11, 22, 0.72), rgba(5, 11, 22, 0.94)),
    url("assets/financial-consulting-hero.png") center / cover no-repeat;
  opacity: 0.46;
  transform: scale(1.05);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
}

.hero-lede {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101d;
}

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

.button.whatsapp {
  border-color: rgba(84, 225, 139, 0.35);
  background: rgba(84, 225, 139, 0.14);
  color: #b8ffd4;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.hero-stats article,
.country-grid article,
.dashboard-grid article,
.case-grid article,
.service-grid article,
.resource-grid article,
.contact-form,
.feature-card,
.evidence-card,
.enterprise-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 31, 54, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.evidence-card:hover,
.enterprise-card:hover,
.service-grid article:hover,
.resource-grid article:hover,
.case-grid article:hover,
.country-grid article:hover,
.dashboard-grid article:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 233, 255, 0.32);
  box-shadow: var(--shadow-hover);
}

.hero-stats article {
  padding: 24px;
}

.hero-stats strong,
.dashboard-grid span,
.case-grid strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
}

.hero-stats span,
.dashboard-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 900;
}

.ticker {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 52px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 93, 102, 0.22);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 93, 102, 0.11);
}

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

.ticker span {
  padding: 16px 22px;
  color: #ffd4d7;
  font-weight: 800;
  white-space: nowrap;
}

.feature-highlights {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(7, 21, 39, 0.78), rgba(5, 11, 22, 0.95));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: rgba(13, 31, 54, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

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

.evidence-sample {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: rgba(5, 11, 22, 0.92);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.evidence-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(13, 31, 54, 0.9), rgba(7, 21, 39, 0.98));
  box-shadow: var(--shadow);
}

.evidence-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.evidence-card p,
.evidence-card li {
  color: var(--muted);
}

.evidence-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.enterprise-section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at top, rgba(61, 142, 255, 0.10), transparent 28rem),
    linear-gradient(180deg, rgba(8, 20, 36, 0.98), rgba(5, 11, 22, 0.98));
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.enterprise-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(13, 31, 54, 0.9), rgba(7, 21, 39, 0.98));
  box-shadow: var(--shadow);
}

.enterprise-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.worldwide,
.dashboard-section,
.track-record,
.services,
.steps,
.resources,
.contact {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.worldwide,
.section-heading {
  text-align: center;
}

.worldwide > p,
.section-heading p,
.steps > div p,
.contact > div p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 44px auto 0;
}

.country-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 24px;
  text-align: center;
}

.country-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(45, 140, 255, 0.18);
  color: var(--cyan);
  font-weight: 900;
}

.country-grid em,
.dashboard-grid p,
.case-grid p,
.case-grid em,
.service-grid p,
.service-grid li,
.resource-grid p,
.steps p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.country-grid em,
.dashboard-grid em,
.case-grid em {
  font-style: normal;
}

.dashboard-section,
.services,
.contact {
  background: rgba(7, 21, 39, 0.74);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.dashboard-grid article {
  padding: 26px;
}

.dashboard-grid em {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}

.track-record {
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 230, 255, 0.13), transparent 28rem),
    transparent;
}

.case-grid,
.service-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

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

.case-grid article,
.service-grid article,
.resource-grid article {
  padding: 28px;
}

.case-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 14px;
  background: rgba(53, 230, 255, 0.13);
  color: var(--cyan);
  font-weight: 900;
}

.service-grid h3,
.resource-grid h3 {
  font-size: 1.15rem;
}

.service-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.steps,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
}

.steps > div p,
.contact > div p {
  margin-left: 0;
}

.steps h2,
.contact h2 {
  margin-left: 0;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.step-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101d;
  font-weight: 900;
}

.step-list p {
  grid-column: 2;
  margin: 0;
}

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

.testimonials {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 201, 77, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(8, 20, 36, 0.98), rgba(5, 11, 22, 0.98));
}

.testimonial-summary {
  max-width: 1180px;
  margin: 36px auto 0;
}

.testimonial-score {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 201, 77, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 31, 54, 0.88), rgba(7, 21, 39, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
}

.score-value {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.testimonial-score p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.star-rating .stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 201, 77, 0.35);
}

.star-rating-lg .stars {
  font-size: 1.35rem;
}

.rating-value {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.testimonial-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(13, 31, 54, 0.92), rgba(7, 21, 39, 0.98));
}

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

.testimonial-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.testimonial-meta {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-photo {
  display: block;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(65, 233, 255, 0.24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.testimonial-quote {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.testimonial-date {
  color: rgba(180, 200, 222, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
}


.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.trust-bar article {
  display: grid;
  gap: 6px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 31, 54, 0.72);
  text-align: center;
}

.trust-bar strong {
  color: var(--cyan);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1;
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.recovery-process,
.faq {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.recovery-process {
  background:
    radial-gradient(circle at 80% 0%, rgba(61, 142, 255, 0.12), transparent 26rem),
    rgba(5, 11, 22, 0.94);
}

.process-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 31, 54, 0.82);
  box-shadow: var(--shadow);
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101d;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.faq {
  background: rgba(7, 21, 39, 0.78);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.faq-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 31, 54, 0.92), rgba(7, 21, 39, 0.98));
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 233, 255, 0.32);
  box-shadow: var(--shadow-hover);
}

.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.resource-grid article > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.resource-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.resource-grid li {
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-grid time {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.contact-details a,
.contact-details address,
.site-footer address {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-hours {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(180, 200, 222, 0.55);
}

.site-footer {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-details a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
}

select option {
  color: #06101d;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(53, 230, 255, 0.16);
  border-color: var(--cyan);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background: #030811;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer > div:first-child a:not(.brand) {
  font-weight: 900;
}

.site-footer address {
  margin-top: 9px;
}

.floating-whatsapp {
  position: fixed;
  right: var(--fab-offset);
  bottom: var(--fab-offset);
  z-index: 30;
  display: inline-flex;
  min-height: var(--fab-height);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 225, 139, 0.5);
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #1ebf62, #54e18b);
  color: #04140b;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
}

.chatbot {
  position: fixed;
  right: var(--fab-offset);
  bottom: calc(var(--fab-offset) + var(--fab-height) + var(--fab-gap));
  z-index: 31;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fab-height);
  border: 1px solid rgba(53, 230, 255, 0.42);
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101d;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
}

.chatbot-panel {
  position: relative;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: auto minmax(160px, 280px) auto auto;
  width: min(380px, calc(100vw - 24px));
  max-height: min(78vh, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 21, 39, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.chatbot-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  max-width: 86%;
  border-radius: 16px;
  padding: 11px 13px;
  color: var(--text);
  font-size: 0.94rem;
}

.chat-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  justify-self: end;
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.72), rgba(53, 230, 255, 0.72));
  border-bottom-right-radius: 4px;
  color: #06101d;
  font-weight: 800;
}

.chatbot-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
}

.chatbot-prompts button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(53, 230, 255, 0.1);
  color: var(--cyan);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chatbot-input-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.chatbot-form input {
  border-radius: 999px;
}

.chatbot-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--cyan);
  color: #06101d;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero-stats,
  .country-grid,
  .dashboard-grid,
  .case-grid,
  .service-grid,
  .testimonial-grid,
  .feature-grid,
  .evidence-grid,
  .enterprise-grid,
  .trust-bar,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-stats,
  .country-grid,
  .dashboard-grid,
  .case-grid,
  .service-grid,
  .resource-grid,
  .testimonial-grid,
  .feature-grid,
  .evidence-grid,
  .enterprise-grid,
  .trust-bar,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .chatbot,
  .floating-whatsapp {
    --fab-offset: 16px;
    --fab-gap: 12px;
  }

  .chatbot-panel {
    width: min(100vw - 18px, 380px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
