:root {
  --bg: #f4f8fd;
  --bg-soft: #eef4fb;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --panel-strong: #ffffff;

  --text: #182032;
  --text-soft: #617087;
  --muted: #617087;

  --line: rgba(24, 32, 50, 0.08);

  --primary: #4f7cff;
  --secondary: #1fb8f3;
  --accent: #7c5cff;
  --success: #20c97a;

  --shadow: 0 18px 60px rgba(25, 41, 81, 0.12);
  --shadow-soft: 0 10px 30px rgba(30, 55, 90, 0.08);

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1180px;
  --transition: 0.3s ease;

  --nav-accent: #4f7cff;
  --nav-accent-2: #7c5cff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f5f8fd 0%, #edf2f8 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(90, 92, 246, 0.08) 18%,
    rgba(31, 184, 243, 0.18) 50%,
    rgba(90, 92, 246, 0.08) 82%,
    transparent 100%
  );
}

.section-white {
  background: rgba(255, 255, 255, 0.72);
}

.section-soft {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.92), rgba(239, 244, 251, 0.86));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.showcase-copy h2,
.process-copy h2,
.ecosystem-copy h2,
.cta-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 14ch;
}

.section-heading p,
.showcase-copy p,
.process-copy p,
.ecosystem-copy p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 62ch;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(90, 92, 246, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(90, 92, 246, 0.12);
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAVBAR */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(245, 248, 253, 0.88);
  border-bottom: 1px solid rgba(24, 32, 50, 0.06);
  box-shadow: 0 8px 24px rgba(25, 41, 81, 0.06);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--nav-accent), var(--nav-accent-2));
  box-shadow: 0 0 18px rgba(79, 124, 255, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--text);
}

.nav a:not(.nav-main)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.28s ease;
}

.nav a:not(.nav-main):hover::after {
  width: 100%;
}

.nav-main {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.nav-main:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 124, 255, 0.16);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(25, 41, 81, 0.10);
  border-color: rgba(90, 92, 246, 0.18);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  margin: 4px auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 140%;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(70, 111, 244, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(70, 111, 244, 0.30);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  border: 1px solid rgba(24, 32, 50, 0.08);
}

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
}

.btn-lg {
  min-height: 58px;
  padding: 0 24px;
}

/* HERO */
.hero {
  position: relative;
  padding: 88px 0 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.35;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 40px;
  left: -100px;
  background: rgba(123, 92, 255, 0.28);
  animation: floatSlow 8s ease-in-out infinite;
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 120px;
  background: rgba(31, 184, 243, 0.24);
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), rgba(0,0,0,0.12));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  max-width: 660px;
  margin: 0 0 30px;
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.floating-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(24, 32, 50, 0.08);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  max-width: 700px;
}

.stat-card,
.service-card,
.portfolio-card,
.timeline-item,
.ecosystem-box,
.cta-box,
.process-visual-card,
.benefit-card,
.plan-card,
.testimonial-card,
.process-mini-points div {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(24, 32, 50, 0.06);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 18px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 92, 246, 0.05), transparent 58%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
}

.hero-visual-wrap {
  position: relative;
  padding: 26px 18px 26px 18px;
}

.browser-card {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-top {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(24, 32, 50, 0.06);
  background: rgba(255,255,255,0.86);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.18);
}

.browser-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 420px;
}

.browser-sidebar {
  padding: 18px 14px;
  border-right: 1px solid rgba(24, 32, 50, 0.06);
  background: rgba(248, 250, 255, 0.8);
}

.side-item {
  height: 18px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.08);
  margin-bottom: 16px;
}

.side-item.active {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.side-item.short {
  width: 70%;
}

.browser-content {
  padding: 26px;
}

.content-hero {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(90, 92, 246, 0.08), rgba(31, 184, 243, 0.08));
  border: 1px solid rgba(90, 92, 246, 0.08);
}

.content-title,
.content-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.12);
  margin-bottom: 14px;
}

.content-title {
  height: 24px;
  width: 60%;
  background: rgba(24, 32, 50, 0.18);
}

.content-line.short {
  width: 55%;
}

.content-buttons {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.content-buttons span {
  width: 120px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.9;
}

.content-buttons span:last-child {
  background: rgba(24, 32, 50, 0.08);
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.mini-card {
  min-height: 120px;
  border-radius: 22px;
  background: rgba(248, 250, 255, 0.9);
  border: 1px solid rgba(24, 32, 50, 0.06);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.chip-1 {
  left: -8px;
  top: 58px;
  animation: floatChip 5s ease-in-out infinite;
}

.chip-2 {
  right: -10px;
  top: 128px;
  animation: floatChip 6s ease-in-out infinite reverse;
}

.chip-3 {
  left: 56px;
  bottom: 8px;
  animation: floatChip 7s ease-in-out infinite;
}

/* TICKER */
.ticker {
  border-top: 1px solid rgba(24, 32, 50, 0.05);
  border-bottom: 1px solid rgba(24, 32, 50, 0.05);
  background: rgba(255,255,255,0.48);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 64px;
  white-space: nowrap;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  color: var(--muted);
  font-weight: 700;
  position: relative;
}

.ticker-track span::after {
  content: "•";
  position: absolute;
  right: -28px;
  color: rgba(90, 92, 246, 0.4);
}

/* GRIDS */
.services-grid,
.portfolio-grid,
.benefits-grid,
.plans-grid,
.testimonials-grid {
  display: grid;
  gap: 22px;
}

.services-grid,
.benefits-grid,
.testimonials-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid,
.plans-grid {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-grid,
.process-grid,
.cta-box,
.ecosystem-box {
  display: grid;
  gap: 38px;
  align-items: center;
}

.showcase-grid,
.process-grid {
  grid-template-columns: 1fr 1fr;
}

/* CARDS */
.service-card,
.benefit-card,
.plan-card,
.testimonial-card {
  border-radius: 24px;
  padding: 28px;
}

.service-card,
.benefit-card,
.portfolio-card,
.plan-card,
.testimonial-card,
.timeline-item,
.process-mini-points div,
.stat-card,
.cta-box,
.ecosystem-box {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card:hover,
.benefit-card:hover,
.portfolio-card:hover,
.plan-card:hover,
.testimonial-card:hover,
.timeline-item:hover,
.process-mini-points div:hover,
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(25, 41, 81, 0.16);
  border-color: rgba(90, 92, 246, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.icon-box,
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  margin-bottom: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.service-card:hover .icon-box,
.benefit-card:hover .benefit-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(70, 111, 244, 0.22);
  filter: saturate(1.08);
}

.service-card h3,
.benefit-card h3,
.plan-card h3,
.portfolio-info h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.service-card p,
.benefit-card p,
.testimonial-card p,
.portfolio-info p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* SHOWCASE */
.showcase-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.showcase-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.showcase-visual {
  position: relative;
  min-height: 460px;
}

.screen {
  position: absolute;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(24, 32, 50, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.desktop-screen {
  top: 20px;
  left: 0;
  width: 88%;
  min-height: 360px;
  border-radius: 28px;
}

.mobile-screen {
  right: 12px;
  bottom: 0;
  width: 220px;
  min-height: 360px;
  border-radius: 34px;
}

.screen-top {
  height: 42px;
  background: linear-gradient(90deg, rgba(90, 92, 246, 0.1), rgba(31, 184, 243, 0.08));
  border-bottom: 1px solid rgba(24, 32, 50, 0.06);
}

.screen-body {
  padding: 20px;
}

.mock-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.1);
  margin-bottom: 12px;
}

.mock-line.big {
  height: 22px;
  width: 62%;
}

.mock-line.short {
  width: 45%;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.mock-grid span,
.mock-stack span {
  min-height: 110px;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.92);
  border: 1px solid rgba(24, 32, 50, 0.06);
}

.mock-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

/* PORTFOLIO */
.portfolio-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
}

.portfolio-preview {
  min-height: 260px;
  padding: 22px;
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  overflow: hidden;
}

.preview-one {
  background: linear-gradient(135deg, rgba(90, 92, 246, 0.18), rgba(31, 184, 243, 0.14));
}

.preview-two {
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.2), rgba(255, 255, 255, 0.5));
  display: grid;
  place-items: center;
}

.preview-three {
  background: linear-gradient(135deg, rgba(31, 184, 243, 0.12), rgba(90, 92, 246, 0.18));
}

.preview-one::after,
.preview-two::after,
.preview-three::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 45%, rgba(90,92,246,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-card:hover .preview-one::after,
.portfolio-card:hover .preview-two::after,
.portfolio-card:hover .preview-three::after {
  opacity: 1;
}

.portfolio-card:hover .portfolio-preview {
  transform: scale(1.015);
}

.preview-browser {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-browser span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.18);
  transition: opacity 0.32s ease;
}

.portfolio-card:hover .preview-browser span {
  opacity: 0.9;
}

.preview-content {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(24, 32, 50, 0.06);
  border-radius: 20px;
  padding: 18px;
  min-height: 180px;
  transition: box-shadow 0.32s ease;
}

.portfolio-card:hover .preview-content,
.portfolio-card:hover .phone-mock,
.portfolio-card:hover .dashboard-mock {
  box-shadow: 0 18px 35px rgba(25, 41, 81, 0.10);
}

.bar {
  height: 13px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.1);
  margin-bottom: 10px;
}

.bar.big {
  height: 22px;
  width: 62%;
}

.bar.short {
  width: 40%;
}

.preview-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.preview-panels span,
.card-stack span,
.dash-cards span {
  min-height: 62px;
  border-radius: 14px;
  background: rgba(248, 250, 255, 0.92);
  border: 1px solid rgba(24, 32, 50, 0.06);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.portfolio-card:hover .preview-panels span,
.portfolio-card:hover .card-stack span,
.portfolio-card:hover .dash-cards span {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(90, 92, 246, 0.14);
}

.phone-mock {
  width: 180px;
  min-height: 320px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(24, 32, 50, 0.06);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.32s ease;
}

.phone-notch {
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.12);
  margin: 0 auto 12px;
}

.phone-screen {
  background: rgba(248, 250, 255, 0.86);
  border-radius: 24px;
  padding: 16px;
  min-height: 270px;
}

.card-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  min-height: 220px;
  transition: box-shadow 0.32s ease;
}

.dash-left,
.chart,
.dash-cards span {
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(24, 32, 50, 0.06);
}

.dash-left {
  min-height: 220px;
}

.dash-right {
  display: grid;
  gap: 14px;
}

.chart {
  min-height: 128px;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.portfolio-info {
  padding: 24px;
}

/* PLANS */
.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(90, 92, 246, 0.04), rgba(31, 184, 243, 0.02), transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card.featured {
  border: 1px solid rgba(90, 92, 246, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(70, 111, 244, 0.16);
}

.plan-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(70, 111, 244, 0.18);
}

.plan-label,
.timeline-number {
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.plan-card:hover .plan-label,
.timeline-item:hover .timeline-number {
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(70, 111, 244, 0.22);
  filter: saturate(1.08);
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(90, 92, 246, 0.08);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

.plan-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -8px;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* PROCESS */
.process-visual-card {
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.pv-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(24, 32, 50, 0.06);
  background: rgba(255,255,255,0.86);
}

.pv-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.18);
}

.pv-body {
  padding: 22px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.8), rgba(255,255,255,0.9));
}

.pv-block {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(90, 92, 246, 0.08), rgba(31, 184, 243, 0.08));
  border: 1px solid rgba(90, 92, 246, 0.08);
  padding: 18px;
}

.pv-title,
.pv-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(24, 32, 50, 0.12);
  margin-bottom: 12px;
}

.pv-title {
  width: 54%;
  height: 22px;
  background: rgba(24, 32, 50, 0.18);
}

.pv-line.short {
  width: 42%;
}

.pv-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.pv-col {
  min-height: 90px;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.92);
  border: 1px solid rgba(24, 32, 50, 0.06);
}

.pv-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.pv-footer span {
  min-height: 54px;
  border-radius: 16px;
  background: rgba(248, 250, 255, 0.92);
  border: 1px solid rgba(24, 32, 50, 0.06);
}

.process-mini-points {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.process-mini-points div {
  padding: 16px 18px;
  border-radius: 18px;
}

.process-mini-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.process-mini-points span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 24px;
}

.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.timeline-item h3 {
  margin: 2px 0 10px;
  font-size: 1.45rem;
}

.timeline-item p {
  font-size: 1.04rem;
}

/* TESTIMONIALS */
.testimonial-card {
  min-height: 100%;
}

.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ECOSYSTEM + CTA */
.ecosystem-box,
.cta-box {
  border-radius: 30px;
  padding: 38px;
  grid-template-columns: 1.15fr 0.85fr;
}

.ecosystem-actions,
.cta-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(90, 92, 246, 0.08), rgba(31, 184, 243, 0.08)), rgba(255,255,255,0.88);
}

.cta-box:hover,
.ecosystem-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(25, 41, 81, 0.14);
  border-color: rgba(90, 92, 246, 0.15);
}

/* FOOTER */
.footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(24, 32, 50, 0.06);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-wrap p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #28d366, #20b858);
  box-shadow: 0 18px 36px rgba(32, 185, 90, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 42px rgba(32, 185, 90, 0.34);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* ANIMATIONS */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes floatChip {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .showcase-grid,
  .process-grid,
  .ecosystem-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .portfolio-grid,
  .benefits-grid,
  .plans-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-actions,
  .cta-actions {
    justify-content: flex-start;
  }

  .showcase-visual {
    min-height: 500px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(24, 32, 50, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy h1,
  .section-heading h2,
  .showcase-copy h2,
  .process-copy h2,
  .ecosystem-copy h2,
  .cta-copy h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .services-grid,
  .portfolio-grid,
  .benefits-grid,
  .plans-grid,
  .testimonials-grid,
  .pv-columns,
  .pv-footer,
  .content-cards,
  .preview-panels,
  .dash-cards {
    grid-template-columns: 1fr;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .browser-sidebar {
    display: none;
  }

  .showcase-visual {
    min-height: 620px;
  }

  .desktop-screen {
    position: relative;
    width: 100%;
  }

  .mobile-screen {
    right: 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card.featured {
    transform: none;
  }

  .hero-visual-wrap {
    padding: 22px 10px 30px;
  }

  .chip-1 {
    left: 0;
    top: 44px;
  }

  .chip-2 {
    right: 0;
    top: 108px;
  }

  .chip-3 {
    left: 26px;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    margin-bottom: 4px;
  }

  .ecosystem-box,
  .cta-box {
    padding: 26px;
  }

  .showcase-visual {
    min-height: 540px;
  }

  .desktop-screen {
    min-height: 300px;
  }

  .mobile-screen {
    width: 180px;
    min-height: 300px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .floating-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .chip-1 {
    top: 36px;
  }

  .chip-2 {
    top: 92px;
  }

  .chip-3 {
    left: 18px;
    bottom: -6px;
  }
}