:root {
  --bg: #07070b;
  --bg-soft: #0e0e16;
  --surface: #12121c;
  --surface-2: #181826;
  --text: #f7f7fb;
  --muted: #a3a3b3;
  --line: rgba(255,255,255,.11);
  --pink: #ff2a7a;
  --pink-2: #ff5c9b;
  --blue: #246bff;
  --cyan: #20d4ff;
  --green: #25d366;
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 80% 10%, rgba(36,107,255,.16), transparent 30%),
    radial-gradient(circle at 10% 25%, rgba(255,42,122,.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,107,255,.10), transparent 66%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), var(--max));
  height: 74px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,7,11,.72);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 80;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(7,7,11,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.logo img { width: 128px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a {
  color: var(--muted);
  font-size: .92rem;
  transition: color .25s ease;
}
.main-nav > a:hover { color: var(--text); }
.main-nav .nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(255,42,122,.36);
  background: rgba(255,42,122,.10);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 38px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 8px 0;
  background: var(--text);
  transition: .25s ease;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px 20px 70px;
}
.hero-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--pink-2);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), transparent);
}
h1, h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em;
  line-height: .98;
}
h1 {
  font-size: clamp(3.55rem, 7.2vw, 7.2rem);
  max-width: 760px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--pink-2), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 670px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(100deg, var(--pink), #a63cff, var(--blue));
  border: 0;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(255,42,122,.20);
}
.btn-primary:hover { box-shadow: 0 20px 55px rgba(36,107,255,.28); }
.btn-secondary { background: rgba(255,255,255,.04); }
.hero-proof {
  margin-top: 30px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: var(--muted);
  font-size: .88rem;
}
.hero-proof i { color: var(--cyan); margin-right: 7px; }

.hero-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 8s ease-in-out infinite;
}
.ring-one {
  width: 360px;
  height: 360px;
  background: conic-gradient(from 40deg, var(--pink), #6a35ff, var(--cyan), var(--pink));
  box-shadow: 0 0 90px rgba(36,107,255,.28);
}
.ring-two {
  width: 230px;
  height: 230px;
  right: 10px;
  bottom: 30px;
  background: linear-gradient(135deg, rgba(255,42,122,.8), rgba(36,107,255,.8));
  filter: blur(20px);
  opacity: .55;
  animation-delay: -3s;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(430px, 92%);
  min-height: 400px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 36px;
  background: rgba(10,10,18,.64);
  backdrop-filter: blur(28px);
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-3deg);
}
.hero-card-top {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: .82rem;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}
.hero-card > img {
  width: 250px;
  margin: 35px auto;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card-stats div {
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.hero-card-stats strong {
  display: block;
  font-size: 1.55rem;
  font-family: "Manrope", sans-serif;
}
.hero-card-stats span { color: var(--muted); font-size: .78rem; }
.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12,12,20,.84);
  backdrop-filter: blur(16px);
  font-size: .8rem;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.floating-chip i { margin-right: 8px; }
.chip-one { left: 0; bottom: 105px; }
.chip-one i { color: var(--green); }
.chip-two { right: 0; top: 115px; }
.chip-two i { color: var(--cyan); }

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.marquee-track {
  width: max-content;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.marquee-track i { color: var(--pink); font-style: normal; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}
.section-title h2 {
  max-width: 970px;
  font-size: clamp(2.8rem, 5.6vw, 6.2rem);
}
.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
}
.intro-copy {
  align-self: end;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}
.intro-copy p + p { margin-top: 20px; }

.service-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(36,107,255,.24), transparent 65%);
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,42,122,.38);
}
.service-card:hover::after { transform: scale(1.35); }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,42,122,.22), rgba(36,107,255,.24));
  color: var(--text);
  font-size: 1.3rem;
}
.service-card h3 {
  margin-top: 78px;
  max-width: 260px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.service-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}

.process {
  position: relative;
}
.timeline {
  margin-top: 66px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(var(--pink), var(--blue), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 28px 0;
}
.timeline-item > span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--pink-2);
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.timeline-item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}
.timeline-item p {
  margin-top: 9px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}
.contrast-card {
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contrast-card span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.contrast-card h3 {
  margin-top: 80px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}
.contrast-card ul {
  margin-top: 24px;
  list-style: none;
  color: var(--muted);
}
.contrast-card li { margin: 12px 0; }
.before { background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); }
.before span { background: rgba(255,255,255,.08); color: var(--muted); }
.after {
  background:
    radial-gradient(circle at 100% 0%, rgba(36,107,255,.22), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(255,42,122,.16), transparent 40%),
    var(--surface);
  border-color: rgba(36,107,255,.32);
}
.after span { background: rgba(36,107,255,.18); color: var(--cyan); }
.contrast-arrow {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.portfolio-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}
.portfolio-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.portfolio-large {
  grid-row: span 2;
  min-height: 678px;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}
.portfolio-card:hover img { transform: scale(1.045); filter: saturate(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
}
.portfolio-overlay span {
  color: rgba(255,255,255,.66);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.portfolio-overlay h3 {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
}
.portfolio-overlay i {
  position: absolute;
  right: 28px;
  bottom: 30px;
}

.values {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.value-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.value-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}
.value-copy p {
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
  max-width: 680px;
}

.faq-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}
.faq-item button i {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease;
}
.faq-item.active button i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--pink), var(--blue));
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-answer p {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
  max-width: 900px;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 28px;
}

.contact {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
  gap: 80px;
}
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 5.6rem); }
.contact-copy > p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}
.contact-meta {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  color: var(--muted);
}
.contact-meta a, .contact-meta span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-meta i { color: var(--pink-2); width: 18px; }

.lead-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(36,107,255,.13), transparent 32%),
    rgba(255,255,255,.035);
}
.lead-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .86rem;
}
.lead-form label span { opacity: .72; }
.lead-form input, .lead-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  padding: 15px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36,107,255,.11);
}
.btn-whatsapp {
  width: 100%;
  border: 0;
  background: var(--green);
  color: #07150c;
  font-weight: 800;
}
.btn-whatsapp:hover {
  background: #36e676;
  box-shadow: 0 18px 50px rgba(37,211,102,.22);
}
.lead-form small {
  display: block;
  margin-top: 13px;
  text-align: center;
  color: var(--muted);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  color: var(--muted);
}
.site-footer img { width: 130px; }
.site-footer p { margin-top: 12px; }
.footer-links {
  display: flex;
  gap: 22px;
  align-items: start;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #07150c;
  font-size: 1.45rem;
  z-index: 70;
  box-shadow: 0 18px 45px rgba(37,211,102,.32);
  transition: transform .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
