:root {
  --bg: #fff8f6;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #1b2230;
  --muted: #646b78;
  --primary: #ff4f8d;
  --primary-dark: #e93779;
  --secondary: #14342a;
  --secondary-soft: #21473c;
  --success: #2fb276;
  --shadow-lg: 0 32px 80px rgba(30, 35, 48, 0.14);
  --shadow-md: 0 20px 40px rgba(30, 35, 48, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 103, 157, 0.2), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(96, 186, 151, 0.16), transparent 20%),
    radial-gradient(circle at 60% 40%, rgba(255, 208, 223, 0.34), transparent 28%),
    linear-gradient(180deg, #fff8f6 0%, #fffcfb 42%, #fff3ee 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 87, 145, 0.08), transparent 18%),
    radial-gradient(circle at 92% 72%, rgba(20, 52, 42, 0.08), transparent 22%);
  z-index: -1;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 79, 141, 0.1);
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 79, 141, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6ca0 100%);
  box-shadow: 0 18px 35px rgba(255, 79, 141, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(255, 79, 141, 0.34);
}

.button-secondary {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(20, 52, 42, 0.14);
  backdrop-filter: blur(14px);
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 246, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(31, 38, 52, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand img,
.footer-logo {
  width: 238px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: rgba(27, 34, 48, 0.86);
  font-weight: 600;
  font-size: 0.98rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), transparent);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-button {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(33, 31, 43, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--secondary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-section {
  position: relative;
  padding: 54px 0 28px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.48;
}

.hero-glow-left {
  top: 110px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(255, 79, 141, 0.18);
}

.hero-glow-right {
  right: -70px;
  bottom: 80px;
  width: 280px;
  height: 280px;
  background: rgba(47, 178, 118, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
}

.hero-copy h1,
.section-heading h2,
.faq-panel h2,
.contact-panel h2,
.cta-panel h2 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.hero-description,
.section-heading p,
.showcase-copy p,
.pricing-card p,
.cta-panel p,
.contact-panel p,
.site-footer p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy {
  position: relative;
}

.hero-copy h1 {
  max-width: 11ch;
}

.text-accent {
  position: relative;
  display: inline-block;
  color: var(--primary-dark);
}

.text-accent::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.08em;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 79, 141, 0.28), rgba(255, 184, 122, 0.28));
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points,
.pricing-card ul,
.showcase-checklist,
.footer-links,
.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.hero-points li,
.pricing-card li,
.showcase-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points i,
.pricing-card i,
.showcase-checklist i {
  margin-top: 4px;
  color: var(--success);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(33, 31, 43, 0.06);
  box-shadow: 0 12px 30px rgba(38, 42, 58, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--secondary);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-browser,
.showcase-card,
.pain-card,
.feature-card,
.process-card,
.pricing-card,
.reference-card,
.faq-panel,
.contact-panel,
.cta-panel {
  border: 1px solid rgba(33, 31, 43, 0.06);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.hero-browser {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 18px;
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 34, 48, 0.18);
}

.hero-browser img {
  width: 100%;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 31, 43, 0.08);
  box-shadow: var(--shadow-lg);
}

.floating-card-top {
  top: -12px;
  right: -8px;
  width: min(280px, 55%);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card-bottom {
  left: -30px;
  bottom: 30px;
  width: min(320px, 62%);
  display: grid;
  gap: 16px;
  animation: float-card 6s ease-in-out infinite reverse;
}

.floating-label,
.showcase-card-body span,
.pricing-badge,
.contact-method span {
  display: inline-block;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.floating-card strong,
.showcase-card h3,
.pain-card h3,
.feature-card h3,
.process-card h3,
.pricing-card h3,
.contact-method strong {
  display: block;
  margin-top: 10px;
  font-size: 1.16rem;
  line-height: 1.45;
}

.floating-card p,
.showcase-card p,
.pain-card p,
.feature-card p,
.process-card p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.floating-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.floating-stack img {
  border-radius: 16px;
  min-height: 88px;
  object-fit: cover;
}

.brand-strip {
  padding: 26px 0;
}

.brand-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.brand-strip-inner span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 31, 43, 0.05);
  color: var(--secondary-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.pain-grid,
.feature-grid,
.process-grid,
.pricing-grid,
.reference-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.pain-card,
.feature-card,
.process-card,
.pricing-card,
.reference-card,
.faq-panel,
.contact-panel {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.pain-card i,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 79, 141, 0.14), rgba(255, 79, 141, 0.04));
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -35px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 141, 0.12), transparent 70%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
  align-items: start;
}

.showcase-copy {
  position: sticky;
  top: 110px;
}

.showcase-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.showcase-stack {
  display: grid;
  gap: 20px;
}

.showcase-card {
  overflow: hidden;
  border-radius: 28px;
}

.showcase-card img {
  width: 100%;
  object-fit: cover;
}

.showcase-card-body {
  padding: 24px 26px 28px;
}

.section-heading h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.faq-panel h2,
.contact-panel h2,
.cta-panel h2 {
  max-width: 13ch;
  text-wrap: balance;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-soft));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.98));
  border-color: rgba(255, 79, 141, 0.24);
  transform: translateY(-8px);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
}

.pricing-card .button {
  margin-top: auto;
}

.reference-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.reference-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  background: rgba(255, 255, 255, 0.88);
}

.reference-card img {
  max-height: 54px;
  width: auto;
  filter: saturate(0.9);
}

.section-cta {
  padding-top: 20px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 141, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 239, 0.96));
}

.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

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

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(33, 31, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 28px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--primary-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(233, 55, 121, 0.2);
  background: rgba(255, 79, 141, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(33, 31, 43, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(255, 79, 141, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 79, 141, 0.12);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(33, 31, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 35, 48, 0.08);
}

.contact-method i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-soft));
}

.site-footer {
  padding: 26px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(33, 31, 43, 0.08);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(33, 31, 43, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dd56f, #0ea15f);
  box-shadow: 0 16px 30px rgba(15, 160, 95, 0.32);
  font-size: 1.8rem;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .showcase-grid,
  .contact-grid,
  .footer-grid,
  .pricing-grid,
  .pain-grid,
  .feature-grid,
  .process-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-copy {
    position: static;
  }

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

@media (max-width: 920px) {
  .site-header {
    padding: 16px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav,
  .header-button {
    display: none;
  }

  body.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 248, 246, 0.96);
    border: 1px solid rgba(33, 31, 43, 0.08);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }

  body.nav-open .site-nav a {
    padding: 10px 6px;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

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

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-grid,
  .showcase-grid,
  .contact-grid,
  .footer-grid,
  .pricing-grid,
  .pain-grid,
  .feature-grid,
  .process-grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-top {
    top: 18px;
    right: 18px;
  }

  .floating-card-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-copy h1,
  .section-heading h2,
  .faq-panel h2,
  .contact-panel h2,
  .cta-panel h2 {
    line-height: 1;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img,
  .footer-logo {
    width: 196px;
  }

  .hero-section {
    padding-top: 28px;
  }

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

  .floating-card-top {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-browser {
    padding: 14px;
    border-radius: 24px;
  }

  .pain-card,
  .feature-card,
  .process-card,
  .pricing-card,
  .reference-card,
  .faq-panel,
  .contact-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
