* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #05071a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-inner {
  position: relative;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #d6d6e0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 43, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 18;
  background:
    radial-gradient(circle at top left, rgba(110, 52, 255, 0.46), transparent 60%),
    radial-gradient(circle at bottom right, rgba(46, 103, 255, 0.42), transparent 60%),
    rgba(10, 10, 25, 0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0a0f2b;
  background: #25d366;
  box-shadow: 0 0 0 2px rgba(10, 15, 43, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #e2f8ec;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(4, 8, 25, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
}

.menu-toggle-bar {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #f4f5fb;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  color: #f4f5fb;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #25d366;
  color: #041013;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* HERO */

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background-image:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(110, 52, 255, 0.48), #05071a),
    url("img/bg.jpg");
  background-size: auto, auto, cover;
  background-position: top left, bottom right, center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6e34ff, #2e67ff);
  opacity: 0.22;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 2.75rem;
  align-items: center;
  z-index: 1;
}

.hero-left {
  position: relative;
}

.hero-header-badges {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 15, 43, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(4, 6, 30, 0.85);
}

.whatsapp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35);
}

.hero-badge-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d6ffe9;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.1rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.whatsapp-text {
  color: #25d366;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #b6ffe0;
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e1e2f5;
  max-width: 500px;
  margin-bottom: 1.8rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.6rem;
}

.btn-install {
  background: linear-gradient(90deg, #00b894, #00cec9);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
}

.btn-planos {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-planos:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(142, 45, 226, 0.6);
}

.hero-trust-text {
  font-size: 0.85rem;
  color: #c7c9f1;
  width: 100%;
}

.hero-benefits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-benefit-item {
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 43, 0.7);
  color: #f6f7ff;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.video-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  width: min(100%, 640px);
}

.video-label-text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b1b3d9;
  font-weight: 600;
}

.video-arrow {
  width: 45px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #8e2de2, #4a00e0);
  position: relative;
}

.video-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4a00e0;
  border-right: 1px solid #4a00e0;
  transform: translateY(-50%) rotate(45deg);
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%);
  box-shadow: 0 20px 45px rgba(5, 10, 41, 0.65);
  width: min(100%, 640px);
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.hero-video-meta {
  width: min(100%, 640px);
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-video-subtitle {
  margin: 0;
  font-size: 0.82rem;
  padding: 0.24rem 0.62rem;
  align-self: flex-start;
}

.hero-video-benefits {
  gap: 0.5rem;
}

.hero-video-benefits .hero-benefit-item {
  font-size: 0.74rem;
  padding: 0.38rem 0.62rem;
}

/* SECTION PAIN & BENEFITS */

.section-pain {
  background: #05071a;
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 2.5rem;
}

.pain-text p {
  color: #d6d6e0;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.benefits-card {
  background: radial-gradient(circle at top left, rgba(110, 52, 255, 0.32), rgba(10, 15, 43, 0.98));
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(3, 5, 25, 0.9);
}

.benefits-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: #edf0ff;
}

.check-icon {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.22);
  position: relative;
}

.check-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #041013;
  border-bottom: 2px solid #041013;
  transform: rotate(40deg);
}

/* SECTION HOW */

.section-how {
  background: radial-gradient(circle at top right, rgba(110, 52, 255, 0.42), #05071a);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: rgba(10, 15, 43, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110, 52, 255, 0.35), rgba(46, 103, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.7);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.step-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #d6d6e0;
}

/* SECTION TESTIMONIALS */

.section-testimonials {
  background: #05071a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.testimonial-card {
  background: rgba(10, 15, 43, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6e34ff, #2e67ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: #b1b3d9;
}

.testimonial-rating span {
  color: #ffc94a;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* SECTION PRICING PLANS */

.plans-container {
  padding: 60px 16px 80px;
  text-align: center;
  position: relative;
}

.plans-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #fff, #b6ffe0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-subtitle {
  color: #d6d6e0;
  margin-bottom: 50px;
  font-size: 1.15rem;
}

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan {
  position: relative;
  width: min(360px, 100%);
  background: rgba(15, 20, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  color: var(--wazap-space-txt);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(142, 45, 226, 0.2);
  border-color: rgba(142, 45, 226, 0.4);
  background: rgba(20, 25, 60, 0.8);
}

.plan.featured {
  background: linear-gradient(180deg, rgba(30, 25, 65, 0.9) 0%, rgba(15, 20, 48, 0.9) 100%);
  border: 1px solid rgba(142, 45, 226, 0.5);
  box-shadow: 0 0 40px rgba(142, 45, 226, 0.2);
}

.plan h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.plan p {
  color: #b1b3d9;
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.plan .price {
  font-weight: 800;
  margin: 15px 0 30px;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.plan .price .currency {
  font-size: 2.9rem;
  line-height: 1;
}

.plan .price .amount {
  font-size: 3.2rem;
  line-height: 1;
}

.plan .price .period {
  font-size: 1.2rem;
  color: #b1b3d9;
  font-weight: 500;
}

.plan-daily {
  margin: -10px 0 20px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #cfd2ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.plan-daily strong {
  color: #ffffff;
  font-weight: 700;
}

.plan .tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.plans .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

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

.btn-green {
  background: linear-gradient(90deg, #10d6b4, #00b894);
  color: #ffffff;
}

.btn-green:hover {
  box-shadow: 0 16px 34px rgba(16, 214, 180, 0.36);
}

.btn-purple {
  background: linear-gradient(90deg, #8e2de2, #5b19ff);
  color: #ffffff;
}

.btn-purple:hover {
  box-shadow: 0 16px 34px rgba(123, 53, 255, 0.42);
}

/* SECTION SEO GUIDE */
.section-seo-guide {
  position: relative;
}

.seo-guide-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seo-guide-block {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.seo-guide-block.reverse {
  flex-direction: row-reverse;
}

.seo-guide-text {
  flex: 1 1 0;
}

.seo-guide-image-wrapper {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-guide-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Make the 1st and 3rd guide images slightly smaller on desktop */
.seo-guide-container .seo-guide-block:first-child .seo-guide-img,
.seo-guide-container .seo-guide-block:last-child .seo-guide-img {
  width: auto;
  max-width: 360px;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .seo-guide-container .seo-guide-block:first-child .seo-guide-img,
  .seo-guide-container .seo-guide-block:last-child .seo-guide-img {
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .seo-guide-container .seo-guide-block:first-child .seo-guide-img,
  .seo-guide-container .seo-guide-block:last-child .seo-guide-img {
    max-width: 280px;
  }
}

/* SECTION FAQ */

.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 52, 255, 0.5), transparent);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(110, 52, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  transition: padding 0.3s ease;
}

.faq-question h3 {
  font-size: 1.05rem;
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(110, 52, 255, 0.15);
  border: 1px solid rgba(110, 52, 255, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
  background: rgba(110, 52, 255, 0.3);
  border-color: rgba(110, 52, 255, 0.6);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-toggle {
  background: linear-gradient(135deg, #6e34ff, #2e67ff);
  border-color: transparent;
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #b1b3d9;
  line-height: 1.8;
  margin: 0;
}

/* FOOTER */

.site-footer {
  margin-top: auto;
  background: #040516;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  padding: 1.8rem 1.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-footer {
  height: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer-link {
  font-size: 0.86rem;
  color: #d6d6e0;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.78rem;
  color: #9c9fbf;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .main-nav {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-header-badges {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
    align-items: stretch;
  }

  .video-label,
  .video-wrapper,
  .hero-video-meta {
    width: 100%;
  }

  .hero {
    padding-top: 4rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

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

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

  .seo-guide-block, .seo-guide-block.reverse {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 0.75rem;
  }

  .header-right {
    flex: 1;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .main-nav {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-description {
    max-width: none;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.75rem 1.5rem 1rem;
    background: rgba(4, 6, 24, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top;
    transition: max-height 0.22s ease-out, opacity 0.18s ease-out;
  }

   body.nav-open .main-nav {
    max-height: 260px;
    opacity: 1;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-cta-group {
    align-items: stretch;
  }

  .btn {
    white-space: normal;
  }

  .site-header .btn {
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: 0.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}
