* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #6d28d9;
  --purple-light: #8b5cf6;
  --dark: #121212;
  --dark-2: #18181b;
  --white: #ffffff;
  --gray: #a1a1aa;
  --gray-2: #d4d4d8;
  --highlight: #c084fc;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 40, 217, 0.25), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.12), transparent 32%),
    var(--dark);
  color: var(--white);
  overflow-x: hidden;
}


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

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

.section {
  padding: 120px 0;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-area strong {
  display: block;
  font-size: 1rem;
}

.logo-area span {
  color: var(--gray);
  font-size: 0.7rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--white);
}

.btn-nav {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(109, 40, 217, 0.45);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 40, 217, 0.36), transparent 30%),
    radial-gradient(circle at 82% 55%, rgba(192, 132, 252, 0.18), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.tag,
.section-title span {
  display: inline-block;
  color: var(--highlight);
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.25);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.16;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(25px);
  animation: titleReveal 0.8s ease forwards;
}

.hero-title span:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-title span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 0 35px rgba(109, 40, 217, 0.45);
}

.btn-secondary {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.12);
  color: var(--gray-2);

  background: rgba(255,255,255,.04);

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.btn-secondary::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );

  transform: skewX(-25deg);

  animation: shine 3s infinite;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(192,132,252,.45);

  box-shadow:
    0 0 20px rgba(139,92,246,.18),
    0 0 40px rgba(139,92,246,.08);
}

@keyframes shine {
  0% {
    left: -120%;
  }

  35% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.hero-indicators {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-indicators div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
}

.hero-indicators strong {
  display: block;
  font-size: 0.95rem;
}

.hero-indicators span {
  color: var(--gray);
  font-size: 0.78rem;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.65), rgba(109, 40, 217, 0.08), transparent 70%);
  filter: blur(10px);
  animation: pulse 4s infinite alternate;
}

.logo-card {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(109, 40, 217, 0.45);
}

.logo-card img {
  width: 150px;
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  color: var(--white);
  font-size: 0.85rem;
  animation: float 4s ease-in-out infinite;
}

.card-1 { top: 70px; left: 40px; }
.card-2 { top: 130px; right: 10px; animation-delay: 0.3s; }
.card-3 { bottom: 130px; left: 20px; animation-delay: 0.6s; }
.card-4 { bottom: 80px; right: 40px; animation-delay: 0.9s; }
.card-5 { top: 250px; left: -10px; animation-delay: 1.2s; }
.card-6 { top: 300px; right: -5px; animation-delay: 1.5s; }

/* TITLES */
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title h2,
.about-content h2,
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-title p,
.about-content p,
.cta-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.step,
.about-box,
.benefit-card,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.service-card {
  padding: 30px;
  min-height: 240px;
}

.service-card:hover,
.step:hover,
.benefit-card:hover,
.contact-card:hover,
.about-box:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 132, 252, 0.35);
  box-shadow: 0 0 50px rgba(109, 40, 217, 0.22);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(109, 40, 217, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.25);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* PROCESS */
.process-section {
  background:
    linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.08), transparent);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  opacity: 0.55;
}

.step {
  position: relative;
  z-index: 2;
  padding: 28px;
  min-height: 230px;
}

.number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 0 30px rgba(109, 40, 217, 0.55);
  font-weight: 800;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-box {
  padding: 34px;
  display: grid;
  gap: 16px;
}

.about-box div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  color: var(--gray-2);
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 26px;
  font-weight: 700;
  text-align: center;
}

/* CTA */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  padding: 70px 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 0 80px rgba(109, 40, 217, 0.45);
}

.cta-content h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.cta-content p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-content .btn-primary {
  position: relative;
  overflow: hidden;

  background: #ffffff;
  color: var(--purple);

  font-size: 1.05rem;
  font-weight: 800;

  padding: 18px 34px;

  box-shadow:
    0 0 30px rgba(255,255,255,.35),
    0 0 60px rgba(255,255,255,.15);

  animation: pulseButton 2.5s infinite;
}

.cta-content .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
}

.cta-content .btn-primary::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.7),
    transparent
  );

  transform: skewX(-25deg);

  animation: shineButton 3s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow:
      0 0 0 0 rgba(255,255,255,.4);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(255,255,255,0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(255,255,255,0);
  }
}

@keyframes shineButton {
  0% {
    left: -120%;
  }

  30% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  padding: 30px;
  min-height: 150px;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.contact-card p {
  color: var(--gray);
  overflow-wrap: anywhere;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 0 35px rgba(109, 40, 217, 0.6);
  animation: whatsPulse 2s infinite;
}

/* FOOTER */
.footer {
  padding: 45px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.footer .container {
  display: grid;
  gap: 8px;
}

.footer p,
.footer span,
.footer small {
  color: var(--gray);
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.95);
    opacity: 0.6;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes whatsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(139, 92, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: -100%;
    width: 82%;
    height: calc(100vh - 82px);
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 38px;
    transition: 0.3s;
    border-left: 1px solid var(--border);
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 90px 0;
  }

  .nav {
    height: 76px;
  }

  .nav-menu {
    top: 76px;
    height: calc(100vh - 76px);
  }

  .logo-area span {
    display: none;
  }

  .hero {
    padding-top: 115px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .logo-card {
    width: 180px;
    height: 180px;
  }

  .logo-card img {
    width: 115px;
  }

  .float-card {
    font-size: 0.72rem;
    padding: 10px 13px;
  }

  .card-1 { top: 45px; left: 5px; }
  .card-2 { top: 95px; right: 0; }
  .card-3 { bottom: 100px; left: 0; }
  .card-4 { bottom: 55px; right: 10px; }
  .card-5 { top: 205px; left: 0; }
  .card-6 { top: 235px; right: 0; }

  .services-grid,
  .benefits-grid,
  .contact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .about-box,
  .contact-card {
    border-radius: 22px;
  }

  .cta-content {
    padding: 50px 24px;
    border-radius: 28px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
/* FOUNDER CARD */
.founder-card {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 22px;
  border: 1px solid rgba(192, 132, 252, 0.22);
  box-shadow: 0 0 45px rgba(109, 40, 217, 0.25);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(18, 18, 18, 0.82)),
    radial-gradient(circle at top right, rgba(192, 132, 252, 0.22), transparent 40%);
}

.founder-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.founder-info {
  margin-bottom: 22px;
}

.founder-info h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.founder-info p {
  color: var(--gray);
}

/* CONTACT VISUAL */
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.22), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(192, 132, 252, 0.24);
  color: var(--highlight);
  font-size: 1.7rem;
  box-shadow: 0 0 28px rgba(109, 40, 217, 0.25);
}

.contact-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--highlight);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card:hover .contact-icon {
  transform: scale(1.08) rotate(-3deg);
  transition: 0.3s;
}

@media (max-width: 640px) {
  .founder-photo {
    height: 300px;
  }

  .contact-card {
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .hero-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-indicators div {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-indicators div:nth-child(3) {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}

/* WEBSITES SECTION */
.websites-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(109, 40, 217, 0.20), transparent 32%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
}

.websites-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.websites-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.websites-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 620px;
}

.websites-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.websites-list div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  color: var(--gray-2);
}

.websites-preview {
  position: relative;
}

.browser-card {
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 0 70px rgba(109,40,217,.28),
    var(--shadow);
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.045);
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(192,132,252,.7);
}

.browser-content {
  padding: 38px;
}

.site-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--highlight);
  background: rgba(192,132,252,.1);
  border: 1px solid rgba(192,132,252,.25);
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 700;
}

.browser-content h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.browser-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.mock-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  margin-bottom: 12px;
}

.mock-line.large {
  width: 88%;
}

.mock-line {
  width: 70%;
}

.mock-line.small {
  width: 48%;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mock-grid div {
  height: 90px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(139,92,246,.38), transparent 45%),
    rgba(255,255,255,.06);
  border: 1px solid var(--border);
}

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

@media (max-width: 640px) {
  .websites-list {
    grid-template-columns: 1fr;
  }

  .browser-content {
    padding: 28px;
  }

  .browser-content h3 {
    font-size: 1.5rem;
  }
}

/* AUTOMATION SECTION */
.automation-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(109, 40, 217, 0.20), transparent 32%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
}

.automation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 60px;
}

.automation-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.automation-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 620px;
}

.automation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.automation-list div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  color: var(--gray-2);
}

.automation-card {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(139,92,246,.22), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 0 70px rgba(109,40,217,.25),
    var(--shadow);
}

.automation-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border);
}

.automation-row span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 22px rgba(192,132,252,.8);
}

.automation-row p {
  color: var(--gray-2);
  font-weight: 600;
}

.automation-line {
  width: 2px;
  height: 34px;
  margin: 8px 0 8px 25px;
  background: linear-gradient(180deg, var(--purple-light), transparent);
}

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

  .automation-preview {
    order: 2;
  }

  .automation-content {
    order: 1;
  }
}

@media (max-width: 640px) {
  .automation-list {
    grid-template-columns: 1fr;
  }

  .automation-card {
    padding: 24px;
  }
}

.preview-screen {
  margin-top: 30px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}

.preview-navbar {
  height: 12px;
  width: 40%;
  border-radius: 999px;
  background: rgba(139,92,246,.5);
  margin-bottom: 25px;
}

.preview-hero {
  height: 120px;
  border-radius: 18px;

  background:
    radial-gradient(circle at top, rgba(139,92,246,.35), transparent 50%),
    rgba(255,255,255,.05);

  border: 1px solid var(--border);

  margin-bottom: 20px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.preview-cards div {
  height: 70px;

  border-radius: 16px;

  background:
    radial-gradient(circle at top, rgba(139,92,246,.25), transparent 50%),
    rgba(255,255,255,.05);

  border: 1px solid var(--border);
}

.preview-button {
  height: 42px;
  width: 160px;
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--purple-light)
    );
}

@media (max-width:640px){
  .preview-cards{
    grid-template-columns:1fr;
  }
}