:root {
  --bg: #eef4fb;
  --surface: #ffffff;
  --surface-soft: #f6faff;
  --ink: #112033;
  --muted: #4b6076;
  --brand: #0b2f52;
  --brand-2: #0d5ea3;
  --accent: #10b981;
  --line: #d7e3f0;
  --radius: 18px;
  --shadow: 0 22px 44px rgba(11, 47, 82, 0.14);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(16, 185, 129, 0.12), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(13, 94, 163, 0.13), transparent 34%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(238, 244, 251, 0.86);
  border-bottom: 1px solid rgba(215, 227, 240, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 160px;
  height: auto;
  border-radius: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.86rem 1.3rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 26px rgba(13, 94, 163, 0.28);
}

.btn-outline {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  padding-top: 4.2rem;
}

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

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.lead {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1.1rem;
}

.proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.proof-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 0.72rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust {
  padding: 1rem 0 2.2rem;
}

.trust-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.trust-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.trust-row li {
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  text-align: center;
  padding: 0.65rem;
  color: var(--brand);
  font-weight: 700;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
}

.plan-grid,
.service-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.faq-item,
.seo-text,
.seo-side {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card {
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(11, 47, 82, 0.08);
}

.plan-grid > .card,
.service-grid > .card,
.faq-grid > .faq-item {
  height: 100%;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(11, 47, 82, 0.08);
  height: 100%;
  position: relative;
}

.plan-offer {
  display: inline-block;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  margin-bottom: 0.7rem;
}

.plan-sub {
  margin: 0 0 0.55rem;
  color: var(--brand-2);
  font-weight: 700;
}

.plan-btn {
  width: 100%;
  margin-bottom: 0.9rem;
}

.plan-features {
  margin-top: 0.35rem;
  gap: 0.55rem;
}

.plan-features li {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.4;
  border-bottom: 1px dashed rgba(75, 96, 118, 0.2);
  padding-bottom: 0.4rem;
}

.plan-features li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.card p {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.feature-list li {
  color: var(--muted);
}

.price {
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  color: var(--brand);
  margin-bottom: 0.9rem;
}

.price span {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 0.2rem;
}

.featured {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 18px 34px rgba(16, 185, 129, 0.18);
  position: relative;
}

.badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a8a63;
  font-weight: 800;
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
}

.seo-text,
.seo-side {
  padding: 1.1rem;
}

.seo-text p,
.faq-item p {
  color: var(--muted);
}

.seo-side {
  background: linear-gradient(160deg, rgba(13, 94, 163, 0.07), rgba(16, 185, 129, 0.07));
}

.seo-side h3 {
  font-size: 1.25rem;
}

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  margin: 0 0 0.9rem;
  padding: 0;
}

.chip-list li {
  border: 1px solid rgba(11, 47, 82, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.64rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand);
  font-size: 0.86rem;
}

.chip-list.soft li {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
}

.semantic-seo {
  padding-top: 3.8rem;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.seo-topic {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
}

.seo-topic h3 {
  font-size: 1.2rem;
}

.seo-hashtag-box {
  margin-top: 1rem;
  background: linear-gradient(155deg, rgba(13, 94, 163, 0.08), rgba(16, 185, 129, 0.12));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
}

.hashtags {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.cta {
  padding-top: 4rem;
}

.cta-box {
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(140deg, rgba(11, 47, 82, 0.95), rgba(13, 94, 163, 0.9)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: #eef7ff;
}

.footer {
  padding: 2.2rem 0 2.8rem;
}

.footer-row {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  min-width: 132px;
  height: 52px;
  padding: 0 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: wa-pulse 1.7s infinite ease-out, wa-blink 1.15s infinite step-end;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.44), 0 14px 30px rgba(22, 163, 74, 0.36);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(34, 197, 94, 0), 0 14px 30px rgba(22, 163, 74, 0.36);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 14px 30px rgba(22, 163, 74, 0.36);
  }
}

@keyframes wa-blink {
  0%,
  48%,
  100% {
    opacity: 1;
  }

  52%,
  56% {
    opacity: 0.72;
  }
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .plan-grid,
  .service-grid,
  .faq-grid,
  .seo-topic-grid,
  .seo-copy-grid,
  .trust-row ul {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }

  .brand-logo {
    width: 132px;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 118px;
    height: 48px;
    font-size: 0.92rem;
  }
}

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

  .reveal,
  .btn {
    transition: none;
  }

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

  .whatsapp-float {
    animation: none;
  }
}
