:root {
  --primary-700: #4338ca;
  --primary-600: #4f46e5;
  --primary-500: #6366f1;
  --sky-500: #0ea5e9;
  --bg-soft: #eef2ff;
  --bg-page: #f8fafc;
  --surface: #ffffff;
  --text-main: #0f172a;
  --text-soft: #64748b;
  --line: #e2e8f0;
  --ok: #15803d;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 16px 50px rgba(79, 70, 229, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.logo-mini {
  height: 26px;
  width: auto;
  display: block;
}

.logo-header {
  height: 34px;
  max-width: 220px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  letter-spacing: 0.1px;
}

.logo-full {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-600);
  background: var(--bg-soft);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0.74rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.22s ease;
}

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

.btn-sm {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  filter: brightness(0.98);
}

.btn-ghost {
  background: #fff;
  color: var(--primary-600);
  border-color: #c7d2fe;
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-session {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  color: #1e3a8a;
  border-color: #c7d2fe;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.12);
  white-space: nowrap;
}

.btn-session:hover {
  background: #eef2ff;
  color: var(--primary-600);
}

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
  border-color: #15803d;
}

.btn-whatsapp:hover {
  background: #15803d;
  color: #fff;
}

.hide-mobile {
  display: inline-flex;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 0 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 5%, rgba(99, 102, 241, 0.14), transparent 37%),
    radial-gradient(circle at 92% 82%, rgba(14, 165, 233, 0.12), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--primary-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

h1 {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.narrow {
  max-width: 820px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bullet-row {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #475569;
}

.bullet-row li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.9rem;
}

.hero-panel .panel-card {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  box-shadow: var(--shadow-md);
}

.hero-visual-card {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  box-shadow: var(--shadow-md);
}

.hero-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.whatsapp-phone-visual {
  max-width: 560px;
  margin-left: auto;
}

.hero-quota-calculator {
  padding: 0.65rem;
}

.hero-quota-calculator .calc-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.hero-quota-calculator .calc-panel {
  max-height: 240px;
  overflow: auto;
}

.hero-quota-calculator .calc-head h2 {
  font-size: 1.12rem !important;
  margin-bottom: 0.1rem;
}

.hero-quota-calculator .calc-head p {
  font-size: 0.95rem;
}

.hero-quota-calculator .calc-panel,
.hero-quota-calculator .calc-result {
  padding: 0.7rem;
}

.hero-quota-calculator .calc-label {
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.hero-quota-calculator .mt-1 {
  margin-top: 0.55rem;
}

.hero-quota-calculator .calc-input {
  padding: 0.52rem 0.65rem;
}

.hero-quota-calculator .calc-service {
  padding: 0.48rem 0.62rem;
  margin-bottom: 0.38rem;
}

.hero-quota-calculator .calc-service small {
  margin-top: 0.12rem;
  font-size: 0.92rem;
}

.hero-quota-calculator .calc-total {
  font-size: 2.15rem;
  margin: 0.15rem 0 0.45rem;
}

.hero-quota-calculator .calc-breakdown {
  line-height: 1.35;
}

.hero-quota-calculator .calc-breakdown li {
  margin-bottom: 0.12rem;
}

.hero-quota-calculator .calc-note {
  margin-top: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.25;
}

.hero-quota-calculator .btn {
  margin-top: 0.62rem;
  padding: 0.58rem 0.82rem;
}

.panel-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.panel-card p {
  color: var(--text-soft);
}

.mini-kpis {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-kpis article {
  background: #f8faff;
  border: 1px solid #e5ebff;
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.mini-kpis span {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
}

.mini-kpis strong {
  font-size: 1.02rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f9fbff, #eef2ff);
  border-block: 1px solid #e7ecff;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

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

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

.app-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 0.9rem 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: logoScroll 42s linear infinite;
  padding-inline: 0.85rem;
  will-change: transform;
}

.logo-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  min-width: 180px;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 0.55rem;
}

.logo-item img {
  width: auto;
  max-width: 150px;
  max-height: 44px;
  object-fit: contain;
}

.logo-item.logo-text {
  font-weight: 800;
  color: #334155;
  letter-spacing: 0.2px;
}

.impact-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #cfe0ff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 86%, rgba(14, 165, 233, 0.2), transparent 35%),
    linear-gradient(135deg, #1d4ed8, #2563eb 45%, #0ea5e9);
  padding: 2rem 2rem 1.65rem;
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.impact-band h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 1.14;
}

.impact-band-btn {
  display: table;
  margin: 1.2rem auto 1.5rem;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.impact-band-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.impact-band-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.impact-band-stats article {
  text-align: center;
}

.impact-band-stats strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.impact-band-stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.93);
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.app-shot {
  background: linear-gradient(180deg, #f8fbff, #eef2ff);
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid;
  place-items: center;
}

.app-shot img {
  width: min(360px, 100%);
  height: auto;
  display: block;
}

.app-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.app-copy p {
  color: var(--text-soft);
}

.app-copy ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  background: #ffffff;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.48rem 0.7rem;
  transition: 0.2s ease;
}

.store-link:hover {
  background: #eef2ff;
  border-color: #a5b4fc;
}

.store-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  display: inline-grid;
  place-items: center;
  color: var(--primary-600);
}

.store-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card,
.detail-card,
.price-card,
.contact-card,
.form-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 1.15rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.module-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}

.module-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #eef2ff, #eaf3ff);
  border: 1px solid #dbe4ff;
  color: var(--primary-600);
  flex-shrink: 0;
}

.module-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card h3 {
  margin: 0;
}

.module-card-head h3 {
  margin: 0;
}

.module-card-head h2 {
  margin: 0;
}

.whatsapp-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.whatsapp-card h3 {
  margin: 0;
}

.whatsapp-visual {
  margin-bottom: 1rem;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  padding: 0.55rem;
  box-shadow: var(--shadow-sm);
}

.whatsapp-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.whatsapp-chip {
  display: inline-block;
  margin: 0 0 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  letter-spacing: 0.2px;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.testimonial-quote {
  margin: 0;
  color: #1e293b !important;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-meta {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 0.9rem;
}

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

.blog-card {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.blog-meta {
  margin: 0 0 0.38rem;
  color: #6366f1;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.blog-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

.blog-card p {
  margin: 0;
  color: #475569;
}

.blog-link {
  display: inline-flex;
  margin-top: 0.72rem;
  color: #2563eb;
  font-weight: 700;
}

.blog-updated {
  margin-top: 0.55rem;
  color: #64748b;
  font-size: 0.9rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  background: #e2e8f0;
  border: 2px solid #bfdbfe;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

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

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

.step {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--primary-500);
}

.step h3 {
  margin: 0.85rem 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
}

.cta-box {
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
}

.cta-box h2 {
  margin: 0 0 0.25rem;
}

.cta-box p {
  margin: 0;
  color: var(--text-soft);
}

.cta-box .btn {
  margin-top: 0.85rem;
}

.help-cta {
  border-radius: 22px;
  background: linear-gradient(135deg, #eef2ff, #eaf3ff);
  border: 1px solid #dbe4ff;
  min-height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  padding: 1.45rem 2rem;
}

.help-cta-copy {
  padding: 0;
  color: var(--text-main);
}

.help-cta-copy h2 {
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
}

.help-cta-copy p {
  color: #475569;
  max-width: 460px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.help-cta-btn {
  margin-top: 0;
  border-color: #c7d2fe;
  color: #4f46e5;
  background: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.help-cta-btn:hover {
  background: #eef2ff;
}

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

.page-main {
  min-height: calc(100vh - 144px);
}

.page-hero {
  padding-bottom: 1rem;
}

.detail-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.detail-card {
  padding: 1.2rem;
}

.detail-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.detail-card p {
  color: var(--text-soft);
}

.detail-card ul,
.price-card ul,
.contact-card ul {
  margin: 0;
  color: #334155;
  padding-left: 1.25rem;
  line-height: 1.62;
}

.price-card li,
.detail-card li {
  margin-bottom: 0.5rem;
}

.price-card li:last-child,
.detail-card li:last-child {
  margin-bottom: 0;
}

.price-card .btn {
  margin-top: 1.25rem;
}

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

.price-card-main {
  width: 100%;
  max-width: 100%;
}

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

.price-card {
  padding: 1.2rem;
}

.service-media {
  width: 100%;
  height: auto;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  margin-top: 0.7rem;
}

.price-card h2 {
  margin: 0;
}

.price-sub {
  margin: 0.45rem 0;
  color: var(--text-soft);
}

.price {
  font-size: 1.75rem;
  margin: 0.3rem 0 0.65rem;
  font-weight: 800;
}

.price span {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
}

.price-card.featured {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-md);
}

.pill {
  margin: 0 0 0.6rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.27rem 0.62rem;
  font-size: 0.78rem;
  color: var(--primary-700);
  background: var(--bg-soft);
}

.w-full {
  width: 100%;
}

.faq-wrap {
  max-width: 900px;
}

.faq-item {
  margin-top: 0.65rem;
  padding: 0.8rem 1rem;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-item p {
  color: var(--text-soft);
}

.quota-calculator {
  background: linear-gradient(135deg, #f5f8ff, #eef6ff);
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.calc-head h2 {
  margin: 0;
}

.calc-head p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.calc-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.calc-panel,
.calc-result {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-md);
  padding: 1rem;
}

.calc-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.mt-1 {
  margin-top: 0.9rem;
}

.calc-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.calc-service {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.55rem;
  cursor: pointer;
}

.calc-service.fixed {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.calc-service input {
  margin-right: 0.45rem;
  accent-color: #6366f1;
}

.calc-service span {
  font-weight: 700;
}

.calc-service small {
  display: block;
  color: var(--text-soft);
  margin-top: 0.25rem;
  margin-left: 1.35rem;
}

.calc-total-label {
  margin: 0;
  color: var(--text-soft);
}

.calc-total {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 0.3rem 0 0.8rem;
  color: #0f172a;
}

.calc-breakdown {
  margin: 0;
  padding-left: 1.1rem;
  color: #334155;
  line-height: 1.5;
}

.calc-breakdown li {
  margin-bottom: 0.3rem;
}

.calc-note {
  margin-top: 0.9rem;
  color: #64748b;
  font-size: 0.9rem;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.partners-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.partner-hero-card {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.partner-hero-card h2 {
  margin: 0 0 0.6rem;
}

.partner-hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.55;
}

.partners-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

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

.partners-logos-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.partners-logos-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: partnersSlide 24s linear infinite;
}

.partners-logos-track .partner-logo-card {
  width: 270px;
  flex: 0 0 auto;
}

@keyframes partnersSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (270px + 1rem) * 4));
  }
}

.integration-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.integration-panel {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.integration-panel h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
}

.integration-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #334155;
  line-height: 1.7;
}

.integration-list li {
  margin-bottom: 0.45rem;
}

.integration-list li:last-child {
  margin-bottom: 0;
}

.integration-note {
  margin: 0.9rem 0 0;
  color: #475569;
  font-weight: 600;
}

.integration-tags {
  margin: 1rem 0 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.integration-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4ff;
  background: #f8fbff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.integration-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.integration-showcase-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.integration-showcase-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #334155;
  line-height: 1.75;
}

.integration-showcase-list li {
  margin-bottom: 0.4rem;
}

.integration-showcase-list li::marker {
  color: #16a34a;
}

.integration-showcase-visual {
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe4ff;
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.integration-showcase-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  opacity: 0.95;
}

.integration-pill {
  position: absolute;
  right: 1.05rem;
  top: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe4ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.integration-pill.secondary {
  top: auto;
  bottom: 1.05rem;
  background: rgba(238, 242, 255, 0.92);
}

.partner-logo-card {
  background: #fff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  min-height: 120px;
  display: grid;
  place-items: center;
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-name {
  margin: 0.55rem 0 0;
  font-weight: 700;
  color: #334155;
  text-align: center;
}

.contact-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.contact-card h2,
.contact-card > p {
  margin: 0;
}

.contact-callout {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  background: #f8fbff;
  border: 1px solid #dbe4ff;
  border-radius: 14px;
  padding: 0.9rem;
}

.contact-callout-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #dbeafe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.contact-callout-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-callout-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.contact-callout-body p {
  margin: 0.35rem 0 0.65rem;
  color: #475569;
}

.contact-callout-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-country {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-weight: 500;
}

.contact-phone-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.2px;
}

.contact-phone-link:hover {
  color: var(--primary-600);
}

.form-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.form-card label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.76rem;
  font: inherit;
  color: #111827;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.form-card input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin: 0;
  accent-color: var(--primary-600);
}

.consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  color: #475569;
}

.consent-wrap span {
  line-height: 1.45;
}

.consent-wrap a {
  color: var(--primary-600);
  text-decoration: underline;
}

.consent-wrap a:hover {
  color: var(--primary-700);
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
}

.form-status {
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: #334155;
  border-radius: 999px;
  padding: 0.2rem 0.1rem;
}

.form-status.is-success {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #86efac;
  background: #ecfdf3;
  color: #166534;
  font-weight: 600;
  padding: 0.35rem 0.72rem;
}

.form-status.is-error {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 600;
  padding: 0.35rem 0.72rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}

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

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

.footer-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: #475569;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
  transition: 0.2s ease;
}

.footer-social a:hover {
  color: var(--primary-600);
  border-color: #a5b4fc;
  background: #eef2ff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: flex;
  gap: 0.35rem;
  color: #475569;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.86rem;
}

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

.footer-links a + a::before {
  content: " \2013 ";
  color: #94a3b8;
  margin-right: 0.35rem;
}

.footer-quick-links {
  width: 100%;
  font-size: 0.92rem;
}

.floating-demo-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.floating-demo-btn,
.floating-whatsapp-btn {
  gap: 0.42rem;
}

.floating-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.floating-btn-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-demo-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.floating-whatsapp-btn {
  position: fixed;
  right: 1rem;
  bottom: 4.35rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: 1px solid #15803d;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.floating-whatsapp-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.floating-whatsapp-promo {
  position: fixed;
  left: 0.9rem;
  right: auto;
  top: auto;
  bottom: 0.9rem;
  z-index: 44;
  width: min(360px, calc(100vw - 0.4rem));
  background: #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  padding: 0.72rem 0.8rem 0.72rem 0.86rem;
  cursor: pointer;
}

.floating-whatsapp-promo p {
  margin: 0;
  color: #1e293b;
  font-size: 0.88rem;
  line-height: 1.35;
  padding-right: 1.1rem;
}

.floating-whatsapp-promo strong {
  color: #166534;
}

.floating-whatsapp-promo:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

.floating-whatsapp-promo-close {
  position: absolute;
  top: 0.36rem;
  right: 0.42rem;
  border: 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}

#leadForm {
  scroll-margin-top: 96px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.5s ease;
}

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

@media (max-width: 990px) {
  .hero-grid,
  .app-showcase,
  .partners-hero,
  .partners-form-grid,
  .integration-block,
  .integration-showcase,
  .partners-logos,
  .feature-grid,
  .steps,
  .detail-grid,
  .blog-grid,
  .pricing-grid,
  .services-grid,
  .calc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hide-mobile {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .logo-mini {
    height: 24px;
  }

  .logo-header {
    height: 28px;
    max-width: 170px;
  }

  .logo-full {
    height: 34px;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.4rem 0.7rem;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 0.75rem 4%;
  }

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

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

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
    font-size: 0.95rem;
  }

  .footer-meta {
    width: 100%;
    flex-wrap: wrap;
  }

  .partners-logos-track {
    display: flex;
    width: max-content;
    animation: partnersSlide 24s linear infinite;
  }

  .partners-logos-track .partner-logo-card {
    width: 220px;
  }

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

  .contact-phone-link {
    font-size: 1.2rem;
  }

  .help-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
  }

  .help-cta-copy {
    padding: 0;
  }

  .help-cta-copy h2 {
    font-size: 2rem;
  }

  .help-cta-copy p {
    font-size: 1rem;
  }

  .impact-band {
    padding: 1.35rem 1.1rem 1.15rem;
  }

  .impact-band-btn {
    margin: 1rem 0 1.1rem;
    width: 100%;
  }

  .impact-band-stats {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  body.has-mobile-cta {
    padding-bottom: 78px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.55rem;
    z-index: 40;
    display: flex;
    gap: 0.55rem;
    background: rgba(248, 250, 252, 0.94);
    border: 1px solid #dbe4ff;
    border-radius: 13px;
    padding: 0.45rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(6px);
  }

  .mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.58rem 0.65rem;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid #c7d2fe;
  }

  .mobile-sticky-cta .mobile-cta-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: #fff;
    border-color: transparent;
  }

  .mobile-sticky-cta .mobile-cta-secondary {
    background: #fff;
    color: var(--primary-600);
  }

  .help-cta-btn { margin-top: 0.2rem; }

  .floating-demo-btn {
    display: none;
  }

  .floating-whatsapp-btn {
    right: 0.7rem;
    bottom: 0.75rem;
    padding: 0.62rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 0.74rem;
  }

  .floating-whatsapp-btn span:last-child {
    display: none;
  }

  .floating-whatsapp-btn .floating-btn-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .floating-whatsapp-promo {
    display: none;
  }

  .cookie-manage-btn {
    display: none;
  }

  .cookie-banner {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 0.72rem;
    border-radius: 12px;
    max-width: none;
  }

  .cookie-banner p {
    font-size: 0.92rem;
    margin-bottom: 0.45rem;
  }

  .cookie-banner .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .cookie-banner .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.56rem 0.68rem;
  }

  .cookie-link {
    margin-top: 0.36rem;
    font-size: 0.84rem;
  }

  body.cookie-banner-open .floating-whatsapp-btn,
  body.cookie-banner-open .floating-demo-btn,
  body.cookie-banner-open .floating-whatsapp-promo {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .partners-logos-track .partner-logo-card {
    width: 180px;
  }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  padding: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}

.cookie-banner p {
  margin: 0 0 0.55rem;
  color: #334155;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: #1e3a8a;
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
}

.cookie-modal-card {
  position: relative;
  width: min(640px, 94%);
  margin: 9vh auto 0;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  padding: 1rem;
}

.cookie-modal-card h2 {
  margin: 0;
}

.cookie-modal-card p {
  color: #475569;
}

.cookie-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
}

.cookie-switch.is-disabled {
  opacity: 0.75;
}

.cookie-manage-btn {
  position: fixed;
  left: 1rem;
  bottom: 6rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid #c7d2fe;
  background: #ffffff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

.cookie-btn-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-grid;
  place-items: center;
}

.cookie-btn-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

