:root {
  --color-red: #d52b1e;
  --color-blue: #0039a6;
  --color-white: #ffffff;
  --color-ink: #101828;
  --color-muted: #5b6475;
  --color-line: rgba(16, 24, 40, 0.08);
  --color-surface: #f7f9fc;
  --color-surface-strong: #edf3ff;
  --color-green: #16a34a;
  --shadow-soft: 0 24px 60px rgba(0, 31, 91, 0.12);
  --shadow-card: 0 18px 40px rgba(0, 30, 84, 0.08);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 30px 80px rgba(213, 43, 30, 0.16);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container: 1160px;
  --header-height: 82px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-ink);
  background: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
a,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--color-blue);
  color: var(--color-white);
  transition: top var(--transition);
}

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

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

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

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

.section-heading h2,
.hero-copy h1,
.cta-panel h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p,
.hero-copy p,
.cta-panel p,
.comparison-copy p {
  color: var(--color-muted);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 57, 166, 0.08);
  color: var(--color-blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.section-kicker-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 6px rgba(213, 43, 30, 0.12);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto -30% -160%;
  height: 180%;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(8deg);
  opacity: 0;
  transition: opacity var(--transition), transform 500ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
  transform: rotate(8deg) translateY(-12px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(0, 57, 166, 0.25);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 50px rgba(213, 43, 30, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-blue);
  border-color: rgba(0, 57, 166, 0.14);
  box-shadow: var(--shadow-card);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.16);
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
}

.btn-small {
  min-height: 46px;
  padding: 12px 18px;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 264px;
  height: auto;
}

.main-nav,
.header-cta {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 57, 166, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 22px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle span:nth-child(3) { top: 31px; }

.menu-toggle.is-active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

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

.menu-toggle.is-active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}

.mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
}

.mobile-nav {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 8px 0 18px;
  display: grid;
  gap: 12px;
}

.mobile-nav a:not(.btn) {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 57, 166, 0.08);
  font-weight: 600;
}

.hero-section {
  position: relative;
  padding: 24px 0 56px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb,
.grid-glow {
  position: absolute;
  filter: blur(10px);
  opacity: 0.7;
}

.orb {
  border-radius: 50%;
  animation: drift 10s ease-in-out infinite alternate;
}

.orb-red {
  width: 220px;
  height: 220px;
  background: rgba(213, 43, 30, 0.16);
  top: 12%;
  left: -40px;
}

.orb-blue {
  width: 260px;
  height: 260px;
  background: rgba(0, 57, 166, 0.14);
  top: 8%;
  right: -60px;
  animation-duration: 12s;
}

.grid-glow {
  inset: 18% 0 auto 0;
  height: 420px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M32 0H0V32' fill='none' stroke='rgba(0,57,166,0.08)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  mask-image: none;
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 9vw, 5.6rem);
  margin-bottom: 18px;
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: clamp(1rem, 3vw, 1.15rem);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  padding: 18px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 57, 166, 0.08);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--color-blue);
}

.metric-card span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.trust-offer {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(0, 57, 166, 0.05);
  border: 1px solid rgba(0, 57, 166, 0.1);
  box-shadow: var(--shadow-card);
}

.trust-offer-label,
.proposal-kicker {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 10px;
  border-radius: var(--radius-pill);
  background: rgba(213, 43, 30, 0.12);
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-offer p,
.proposal-box p {
  margin: 0;
  color: var(--color-muted);
}

.hero-visual {
  position: relative;
}

.mockup-scene {
  position: relative;
  min-height: 420px;
}

.mockup-window {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  transform: perspective(1100px) rotateY(-10deg) rotateX(4deg);
  animation: floatY 5s ease-in-out infinite;
}

.window-topbar {
  display: flex;
  gap: 8px;
  padding: 8px 4px 14px;
}

.window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 57, 166, 0.18);
}

.window-topbar span:first-child { background: rgba(213, 43, 30, 0.6); }
.window-topbar span:nth-child(2) { background: rgba(0, 57, 166, 0.55); }

.window-content {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
}

.window-sidebar,
.ui-cards span,
.phone-message,
.phone-chip,
.phone-cta {
  border-radius: 18px;
}

.window-sidebar {
  display: grid;
  gap: 10px;
  padding: 14px 10px;
  background: rgba(0, 57, 166, 0.05);
}

.window-sidebar span {
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 57, 166, 0.09);
}

.window-main {
  display: grid;
  gap: 14px;
}

.ui-chart {
  min-height: 110px;
  border-radius: 22px;
  background: rgba(0, 57, 166, 0.08);
  position: relative;
  overflow: hidden;
}

.ui-chart::before,
.ui-chart::after {
  content: "";
  position: absolute;
  inset: auto;
}

.ui-chart::before {
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 3px;
  background: rgba(0, 57, 166, 0.3);
}

.ui-chart::after {
  left: 18px;
  right: 18px;
  top: 36px;
  height: 54px;
  border-bottom: 3px solid rgba(213, 43, 30, 0.7);
  border-radius: 50%;
  transform: skewX(-16deg);
}

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

.ui-cards span {
  min-height: 84px;
  background: rgba(0, 57, 166, 0.06);
}

.ui-cards span:nth-child(2) {
  background: rgba(213, 43, 30, 0.09);
}

.ui-banner {
  overflow: hidden;
  border-radius: 24px;
  min-height: 180px;
}

.ui-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup {
  position: absolute;
  right: -4px;
  bottom: -24px;
  z-index: 3;
  width: 170px;
  padding: 10px;
  border-radius: 32px;
  background: #071a43;
  box-shadow: 0 22px 50px rgba(0, 20, 60, 0.28);
  animation: floatY 5.6s ease-in-out infinite reverse;
}

.phone-notch {
  width: 86px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #111c3f;
}

.phone-screen {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  gap: 12px;
}

.phone-chip {
  width: max-content;
  padding: 7px 12px;
  background: rgba(0, 57, 166, 0.08);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.phone-message {
  padding: 12px;
  background: rgba(0, 57, 166, 0.06);
  font-size: 0.82rem;
}

.phone-message.primary {
  background: rgba(213, 43, 30, 0.12);
}

.phone-cta {
  padding: 10px 12px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.82rem;
  text-align: center;
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  animation: bob 4.6s ease-in-out infinite;
}

.badge-price {
  left: -4px;
  top: 22px;
  color: var(--color-red);
}

.badge-whatsapp {
  right: 18px;
  top: -6px;
  animation-delay: 0.6s;
}

.badge-mobile {
  left: 14px;
  bottom: 80px;
  animation-delay: 1.2s;
}

.badge-fast {
  right: 44px;
  bottom: 18px;
  animation-delay: 1.8s;
}

.pain-grid,
.services-grid,
.steps-grid,
.plans-grid {
  display: grid;
  gap: 18px;
}

.pain-card,
.service-card,
.step-card,
.plan-card,
.compare-card,
.faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 57, 166, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.pain-card,
.service-card,
.step-card {
  padding: 22px;
}

.pain-card {
  overflow: hidden;
}

.pain-card::before,
.service-card::before,
.plan-featured::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 57, 166, 0.04);
  opacity: 0;
  transition: opacity var(--transition);
}

.pain-card:hover::before,
.service-card:hover::before,
.plan-featured:hover::before {
  opacity: 1;
}

.pain-card:hover,
.service-card:hover,
.step-card:hover,
.plan-card:hover,
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0, 30, 84, 0.12);
}

.pain-card,
.service-card,
.step-card,
.plan-card,
.compare-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pain-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(0, 57, 166, 0.08);
  position: relative;
}

.pain-icon::before,
.pain-icon::after {
  content: "";
  position: absolute;
  background: var(--color-red);
  border-radius: 999px;
}

.pain-icon::before {
  width: 24px;
  height: 4px;
  top: 25px;
  left: 15px;
}

.pain-icon::after {
  width: 4px;
  height: 24px;
  top: 15px;
  left: 25px;
}

.plan-card {
  padding: 24px;
  overflow: hidden;
}

.plan-featured {
  border-color: rgba(213, 43, 30, 0.22);
  box-shadow: 0 28px 60px rgba(0, 31, 91, 0.15);
}

.plan-featured::before {
  opacity: 1;
}

.plan-badge,
.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(213, 43, 30, 0.2);
}

.plan-label {
  padding: 8px 12px;
  margin-bottom: 18px;
  background: rgba(0, 57, 166, 0.08);
  color: var(--color-blue);
  font-size: 0.86rem;
}

.plan-card h3,
.service-card h3,
.step-card h3,
.compare-card h3,
.footer-links h3,
.footer-contact h3 {
  margin: 0 0 12px;
}

.plan-price {
  margin-bottom: 12px;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price small,
.service-price {
  color: var(--color-muted);
}

.plan-price small {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

.plan-list,
.compare-card ul {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-list li,
.compare-card li {
  position: relative;
  padding-left: 26px;
}

.plan-list li::before,
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
}

.plan-note {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.service-price {
  margin-bottom: 10px;
  font-weight: 700;
}

.service-visual {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: rgba(0, 57, 166, 0.07);
  border: 1px solid rgba(0, 57, 166, 0.08);
  overflow: hidden;
}

.service-visual span {
  position: absolute;
  display: block;
}

.service-hosting::before,
.service-domain::before,
.service-brand::before,
.service-meta::before,
.service-google::before,
.service-content::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.service-hosting span:nth-child(1) {
  left: 18px;
  top: 16px;
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-blue);
}

.service-hosting span:nth-child(2) {
  left: 18px;
  top: 30px;
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-red);
}

.service-hosting span:nth-child(3) {
  left: 26px;
  bottom: 14px;
  width: 16px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-ink);
}

.service-domain span:nth-child(1) {
  left: 15px;
  top: 15px;
  width: 38px;
  height: 38px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.service-domain span:nth-child(2) {
  left: 33px;
  top: 15px;
  width: 3px;
  height: 38px;
  background: var(--color-red);
  border-radius: 999px;
}

.service-domain span:nth-child(3) {
  left: 19px;
  top: 32px;
  width: 30px;
  height: 3px;
  background: var(--color-red);
  border-radius: 999px;
}

.service-brand span:nth-child(1) {
  left: 16px;
  top: 18px;
  width: 12px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-red);
  transform: rotate(25deg);
}

.service-brand span:nth-child(2) {
  left: 28px;
  top: 16px;
  width: 16px;
  height: 36px;
  border-radius: 6px;
  background: var(--color-blue);
}

.service-brand span:nth-child(3) {
  right: 14px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(213, 43, 30, 0.16);
  border: 3px solid var(--color-red);
}

.service-meta span:nth-child(1),
.service-meta span:nth-child(2) {
  top: 22px;
  width: 18px;
  height: 24px;
  border: 3px solid var(--color-blue);
  border-radius: 18px;
}

.service-meta span:nth-child(1) {
  left: 16px;
  transform: rotate(-10deg);
}

.service-meta span:nth-child(2) {
  left: 32px;
  transform: rotate(10deg);
}

.service-meta span:nth-child(3) {
  left: 25px;
  bottom: 14px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-red);
}

.service-google span:nth-child(1) {
  left: 14px;
  top: 16px;
  width: 40px;
  height: 40px;
  border: 5px solid var(--color-blue);
  border-right-color: transparent;
  border-radius: 50%;
}

.service-google span:nth-child(2) {
  right: 14px;
  top: 30px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-red);
}

.service-google span:nth-child(3) {
  right: 13px;
  top: 35px;
  width: 5px;
  height: 13px;
  border-radius: 999px;
  background: var(--color-red);
}

.service-content span:nth-child(1) {
  left: 15px;
  top: 15px;
  width: 38px;
  height: 30px;
  border-radius: 12px;
  background: var(--color-blue);
}

.service-content span:nth-child(2) {
  left: 21px;
  top: 22px;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.92), 0 16px 0 rgba(255, 255, 255, 0.92);
}

.service-content span:nth-child(3) {
  right: 12px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 6px rgba(213, 43, 30, 0.12);
}

.steps-grid {
  position: relative;
}

.step-card {
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 57, 166, 0.18);
}

.comparison-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.benefit-pill {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 57, 166, 0.08);
  box-shadow: var(--shadow-card);
  font-weight: 600;
}

.before-after {
  display: grid;
  gap: 18px;
}

.compare-card {
  padding: 24px;
}

.proposal-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(213, 43, 30, 0.16);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 18px;
  align-items: center;
}

.proposal-box h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.compare-before {
  background: rgba(245, 247, 252, 0.96);
}

.compare-after {
  background: rgba(229, 237, 255, 0.82);
  border-color: rgba(0, 57, 166, 0.14);
}

.compare-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(213, 43, 30, 0.08);
  color: var(--color-red);
  font-size: 0.84rem;
  font-weight: 700;
}

.compare-arrow {
  place-self: center;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.4rem;
  box-shadow: 0 16px 32px rgba(0, 57, 166, 0.2);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 36px 24px;
  border-radius: 36px;
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 26px 60px rgba(0, 57, 166, 0.24);
  text-align: center;
}

.cta-panel::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  inset: 18px;
  border-radius: 28px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 14px auto 24px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 24px 0;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.site-footer {
  padding: 28px 0 24px;
  background: #081123;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand img {
  width: 288px;
  margin-bottom: 16px;
}

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

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

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 72px;
  min-height: 72px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.28);
  animation: pulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 55px rgba(22, 163, 74, 0.36);
}

.whatsapp-float-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.whatsapp-float-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-float-text {
  display: grid;
  line-height: 1.1;
}

.whatsapp-float-text strong {
  font-size: 1rem;
}

.whatsapp-float-text small {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

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

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

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

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, 20px, 0) scale(1.08); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) perspective(1100px) rotateY(-10deg) rotateX(4deg); }
  50% { transform: translateY(-10px) perspective(1100px) rotateY(-8deg) rotateX(3deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 45px rgba(22, 163, 74, 0.28); }
  50% { box-shadow: 0 24px 55px rgba(22, 163, 74, 0.4); }
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .pain-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }

  .proposal-box {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 980px) {
  .section-spacing {
    padding: 104px 0;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    margin-right: 12px;
  }

  .main-nav a {
    position: relative;
    font-weight: 600;
    color: var(--color-ink);
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

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

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

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

  .hero-grid,
  .comparison-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .mockup-scene {
    min-height: 560px;
  }

  .phone-mockup {
    width: 198px;
    right: -24px;
    bottom: -26px;
  }

  .pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 52px;
    height: 2px;
    background: rgba(0, 57, 166, 0.24);
    z-index: 0;
  }

  .step-card {
    z-index: 1;
  }

  .cta-panel {
    padding: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 639px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 14px;
  }

  .whatsapp-float-text small {
    display: none;
  }
}
