:root {
  color-scheme: light;
  --bg: #fcfbfd;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --text: #1d1324;
  --muted: #6f566f;
  --accent: #9f1c56;
  --accent-2: #561337;
  --border: rgba(159, 28, 86, 0.14);
  --shadow: 0 28px 80px rgba(159, 28, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 10% 15%, rgba(12, 140, 255, 0.08), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(159, 28, 86, 0.1), transparent 15%),
    radial-gradient(circle at 70% 90%, rgba(12, 140, 255, 0.06), transparent 18%);
  pointer-events: none;
}

.page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 10px 0;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topbar-brand img {
  width: 198px;
  height: auto;
}

.topbar-brand span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  flex: 1;
}

.topbar-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-nav a:hover {
  color: var(--accent-2);
  transform: translateY(-1px);
}

.section {
  position: relative;
  padding: 100px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 0.85fr;
  gap: 42px;
  align-items: start;
  padding: 64px 52px 60px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.98));
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 600px;
  padding-right: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(156, 26, 87, 0.08);
  margin-bottom: 26px;
}

.brand-mark img {
  width: 120px;
  height: auto;
}

.brand-mark p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #27162b;
}

.brand-mark span {
  display: block;
  margin-top: 4px;
  color: #7a2a5c;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow,
.subtle-title {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.94rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.card h3,
.industry-card h3,
.step h3,
.method-card h3,
.cta-panel h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 4.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #0b1420;
}

.hero-text {
  margin: 0 0 34px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.92;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 0;
}

.hero-animation {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(159, 28, 86, 0.08), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(159, 28, 86, 0.06), transparent 24%),
    #fff;
  box-shadow: 0 30px 60px rgba(159, 28, 86, 0.08);
  overflow: hidden;
}

.hero-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(159, 28, 86, 0.08), transparent 35%);
  opacity: 0.75;
}

.pulse-ring,
.pulse-dot,
.process-node {
  position: absolute;
}

.pulse-ring {
  border: 2px solid rgba(159, 28, 86, 0.16);
  border-radius: 50%;
  animation: pulse-scale 4s ease-in-out infinite;
}

.ring-1 {
  inset: 18%;
}

.ring-2 {
  inset: 32%;
  animation-duration: 5.4s;
}

.pulse-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(159, 28, 86, 0.9);
  box-shadow: 0 0 24px rgba(159, 28, 86, 0.18);
  animation: move-dot 4s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 48%;
  animation-delay: 0s;
}

.dot-2 {
  bottom: 16%;
  right: 24%;
  animation-delay: 1.2s;
}

.process-node {
  min-width: 120px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(159, 28, 86, 0.12);
  border: 1px solid rgba(159, 28, 86, 0.18);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(159, 28, 86, 0.08);
  animation: float 6s ease-in-out infinite;
}

.node-core {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  border-radius: 32px;
  background: #ffffff;
}

.node-1 {
  top: 12%;
  left: 8%;
}

.node-2 {
  top: 14%;
  right: 8%;
}

.node-3 {
  bottom: 16%;
  left: 10%;
}

.node-4 {
  bottom: 18%;
  right: 10%;
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.64; }
}

@keyframes move-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 20px 40px rgba(12, 140, 255, 0.18);
}

.secondary {
  border: 1px solid rgba(12, 29, 68, 0.14);
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
}

.visual-card {
  position: relative;
  width: min(100%, 560px);
  padding: 32px;
  border-radius: 40px;
  background: var(--surface);
  border: 1px solid rgba(12, 29, 68, 0.06);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 199, 169, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(12, 140, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.visual-header {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(12, 140, 255, 0.12);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.chip-soft {
  background: rgba(34, 199, 169, 0.12);
  color: var(--accent-2);
}

.workflow {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px 0 32px;
}

.workflow::before,
.workflow::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 140, 255, 0.16), transparent);
}

.workflow::before {
  top: 34px;
}

.workflow::after {
  bottom: 34px;
}

.workflow-step {
  position: relative;
  padding: 22px 22px 22px 24px;
  border-radius: 28px;
  background: #f9fcff;
  border: 1px solid rgba(12, 29, 68, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translate(-50%, -50%);
  animation: pulse 1.8s ease-in-out infinite;
}

.workflow-step span {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.workflow-step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gear {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid rgba(12, 140, 255, 0.16);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.gear-1 {
  top: 20px;
  right: 20px;
  animation: spinRight 20s linear infinite;
}

.gear-2 {
  bottom: 80px;
  right: 40px;
  width: 100px;
  height: 100px;
  animation: spinLeft 18s linear infinite;
}

.gear-3 {
  bottom: 18px;
  left: 26px;
  width: 68px;
  height: 68px;
  animation: spinRight 14s linear infinite;
}

.visual-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 29, 68, 0.08);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(12, 140, 255, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}

.status-dot + span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(2rem, 2.7vw, 3.25rem);
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.industry-card,
.method-card,
.step {
  background: var(--surface-strong);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.card-number,
.method-number,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(12, 140, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.card h3,
.industry-card h3,
.method-card h3,
.step h3 {
  margin-bottom: 14px;
}

.card p,
.industry-card p,
.method-card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution {
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.industries .columns {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.timeline {
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.step h3 {
  font-size: 1.1rem;
}

.step span {
  font-size: 0.95rem;
  color: var(--muted);
}

.method-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.method-card {
  display: grid;
  gap: 18px;
}

.method-card h3 {
  font-size: 1.15rem;
}

.cta-footer {
  padding: 80px 0 24px;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 42px;
  background: linear-gradient(135deg, rgba(12, 140, 255, 0.12), rgba(34, 199, 169, 0.12));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 36px;
}

.cta-panel h2 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.large {
  min-width: 220px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.12);
  color: inherit;
  text-decoration: none;
  z-index: 50;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 26px 48px rgba(22, 22, 22, 0.18);
  background: #f7f7f7;
}

.whatsapp-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  z-index: 1;
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
  animation: whatsapp-bounce 2s ease-in-out infinite;
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes spinRight {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinLeft {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.16); opacity: 0.6; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 24px 18px 64px;
  }

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

  .topbar-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .cta-panel {
    flex-direction: column;
    text-align: center;
  }
}
