:root {
  --bg: #fff3fa;
  --surface: #ffffff;
  --surface-2: #ffe6f3;
  --text: #11111a;
  --muted: #626276;
  --line: #f4d7e8;
  --primary: #ff007f;
  --primary-dark: #d9006c;
  --accent: #20d68a;
  --warning: #ffe08a;
  --dark: #0e0e17;
  --dark-2: #181827;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(17, 17, 26, 0.12);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background-color: #fff8fc;
  background-image:
    radial-gradient(circle at 50% 35%, rgba(196, 224, 161, 0.18), transparent 32%),
    repeating-linear-gradient(0deg, rgba(86, 92, 79, 0.08) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(86, 92, 79, 0.08) 0 1px, transparent 1px 72px);
  background-attachment: fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--text);
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.section-padding {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 243, 250, 0.84);
  border-bottom: 1px solid rgba(244, 215, 232, 0.86);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--text);
  border-radius: 14px;
  color: var(--text);
  background: var(--warning);
  box-shadow: 5px 5px 0 var(--primary);
}

.brand-text {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 2px solid transparent;
  border-radius: 13px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-links a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(32, 214, 138, 0.14);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--primary);
  transform: translateY(-1px);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: onlinePulse 1.2s infinite;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 2px solid var(--text);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(32, 214, 138, 0.16);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(32, 214, 138, 0.42);
  border-radius: 50%;
  animation: onlinePulse 1.25s infinite;
}

@keyframes onlinePulse {
  0% {
    opacity: 0.95;
    transform: scale(0.72);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(32, 214, 138, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.2vw, 4.55rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.hero-text,
.section-heading p,
.service-card p,
.timeline-item p,
.project-card p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 16px 38px rgba(255, 0, 127, 0.26);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  justify-self: center;
}

.browser-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--text);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 12px 12px 0 var(--text), var(--shadow);
}

.browser-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 2px solid var(--text);
  background: var(--surface-2);
}

.browser-top span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--text);
  border-radius: 50%;
  background: var(--warning);
}

.browser-top span:nth-child(2) {
  background: var(--accent);
}

.browser-top span:nth-child(3) {
  background: var(--primary);
}

.browser-top small {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 800;
}

.browser-body {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff0f8 100%);
}

.image-screen {
  min-height: 330px;
  overflow: hidden;
  border: 2px solid var(--text);
  border-radius: 28px;
  background: #ffffff;
}

.image-screen img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 2;
  left: -6px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 2px solid var(--primary);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 7px 7px 0 var(--primary);
}

.floating-card strong {
  font-size: 1.16rem;
  line-height: 1;
}

.floating-card span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.timeline-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(17, 17, 26, 0.05);
}

.service-card {
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--text);
  border-radius: 15px;
  color: var(--primary);
  background: var(--surface-2);
  box-shadow: 4px 4px 0 var(--text);
  font-weight: 900;
}

.service-card p,
.timeline-item p {
  margin: 14px 0 0;
}

.projects-section {
  overflow: hidden;
}

.projects-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.projects-kicker::before {
  display: none;
}

.projects-header h2 {
  max-width: 700px;
}

.projects-header h2 span {
  color: var(--primary);
  font-style: italic;
}

.projects-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 4px 4px 0 var(--text);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.projects-cta:hover {
  color: var(--primary);
  box-shadow: 5px 5px 0 var(--primary);
  transform: translateY(-2px);
}

.projects-horizontal-wrap {
  width: 100vw;
  overflow: hidden;
}

.projects-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-left: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  padding-right: 32px;
}

.project-card {
  flex: 0 0 560px;
  max-width: 560px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 26, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(17, 17, 26, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 26, 0.09);
}

.project-preview {
  height: 260px;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.preview-browser {
  height: 100%;
  display: grid;
  align-content: start;
  padding: 22px;
  background: #fff7fa;
}

.preview-jessica .preview-browser {
  background:
    radial-gradient(circle at 80% 36%, rgba(255, 0, 127, 0.18), transparent 24%),
    linear-gradient(180deg, #fff7fa, #fff0f8);
}

.preview-la .preview-browser {
  background:
    radial-gradient(circle at 80% 34%, rgba(255, 0, 127, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f8fb, #eef2f7);
}

.preview-nav {
  width: 100%;
  height: 12px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 17, 26, 0.18) 0 22%, transparent 22% 100%);
}

.preview-copy {
  display: grid;
  gap: 10px;
}

.preview-copy strong {
  max-width: 320px;
  color: #a64d73;
  font-size: 2rem;
  line-height: 1.04;
}

.preview-la .preview-copy strong {
  color: #2c3959;
}

.preview-copy span {
  max-width: 300px;
  color: rgba(17, 17, 26, 0.68);
  font-size: 0.95rem;
}

.project-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.project-meta-top small {
  color: rgba(17, 17, 26, 0.52);
  font-weight: 800;
}

.project-tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 26, 0.18);
  border-radius: 999px;
  color: rgba(17, 17, 26, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 12px;
}

.project-card p {
  margin: 12px 0 0;
}

.project-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 900;
}

.dark-section {
  color: #ffffff;
  background: var(--dark);
}

.dark-section .section-heading p,
.dark-section .timeline-item p {
  color: #cfcfe3;
}

.dark-section .eyebrow {
  color: #ffb8d9;
}

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

.timeline-item {
  padding: 28px;
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.timeline-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 900;
}

.faq-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.45rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 22px;
}

.final-form-section {
  background: transparent;
}

.quote-card {
  padding: 32px;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 12px 12px 0 var(--text);
  backdrop-filter: blur(6px);
}

.quote-form {
  display: grid;
  gap: 22px;
}

.form-group {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-group label,
.form-group legend {
  font-weight: 900;
}

.quote-form input[type="text"],
.quote-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--text);
  border-radius: 18px;
  color: var(--text);
  background: var(--surface);
  outline: none;
  box-shadow: 4px 4px 0 rgba(17, 17, 26, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input[type="text"]:focus,
.quote-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 0, 127, 0.14);
}

.quote-form textarea {
  resize: vertical;
}

.radio-group {
  gap: 12px;
}

.option-card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 2px solid var(--text);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 4px 4px 0 rgba(17, 17, 26, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(17, 17, 26, 0.12);
}

.option-card input {
  margin-top: 3px;
  accent-color: var(--primary);
}

.option-card:has(input:checked) {
  border-color: var(--primary);
  background: #ffe4f2;
  box-shadow: 6px 6px 0 var(--text);
}

.option-card span {
  font-weight: 700;
  line-height: 1.45;
}

.quote-form .btn {
  width: 100%;
}

.site-footer {
  padding: 54px 0 26px;
  color: #ffffff;
  background: var(--dark);
}

.footer-grid,
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid {
  padding-bottom: 28px;
}

.footer-brand {
  color: #ffffff;
}

.footer-grid p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #cfcfe3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfcfe3;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--text);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero {
    padding-top: 52px;
  }

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

  .hero-visual {
    max-width: 430px;
  }

  .projects-header {
    flex-direction: column;
  }

  .project-card {
    flex-basis: 460px;
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-padding {
    padding: 52px 0;
  }

  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--text);
    border-radius: 18px;
    box-shadow: 8px 8px 0 var(--text);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-visual {
    display: none;
  }

  .status-badge {
    max-width: 100%;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.25rem);
  }

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

  .three-columns,
  .timeline {
    grid-template-columns: 1fr;
  }

  .browser-frame {
    box-shadow: 8px 8px 0 var(--text), var(--shadow);
  }

  .browser-body {
    padding: 18px;
  }

  .browser-top small {
    display: none;
  }

  .image-screen,
  .image-screen img {
    min-height: 260px;
  }

  .image-screen img {
    height: 300px;
  }

  .floating-card {
    left: 4px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .projects-horizontal-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .projects-track {
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-card {
    flex-basis: 300px;
    max-width: 300px;
  }

  .project-preview {
    height: 176px;
  }

  .preview-browser {
    padding: 16px;
  }

  .preview-nav {
    margin-bottom: 20px;
  }

  .preview-copy strong {
    font-size: 1.55rem;
  }

  .quote-card {
    padding: 22px;
    box-shadow: 8px 8px 0 var(--text);
  }

  .option-card {
    grid-template-columns: 20px 1fr;
    padding: 14px 15px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
  }
}
