/* ===== Comunica360 — colores de marca =====
   Primario   #7b1ea0  (morado)
   Secundario #ef6c00  (naranja)
   Oscuro     #000a15
   Claro      #f7f7f7
*/
:root {
  --bg: #000a15;
  --bg-soft: #0f1624;
  --surface: #ffffff;
  --surface-2: #f7f7f7;
  --text: #0f172a;
  --text-muted: #64748b;
  --primary: #7b1ea0;
  --primary-dark: #5f1780;
  --primary-soft: #f5e8fb;
  --accent: #ef6c00;
  --accent-dark: #c45700;
  --accent-soft: #fff3e6;
  --border: #e8e8ec;
  --shadow: 0 10px 40px rgba(123, 30, 160, 0.10);
  --radius: 16px;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  /* padding-top para header fixed se define abajo */
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.footer-brand .footer-local {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-local a {
  color: #d8a8ff;
}

.footer-local a:hover {
  color: #fff;
}

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

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

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

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.mt-lg {
  margin-top: 2rem;
}

/* Header — fixed sticky (sempre visível ao rolar) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

/* Espaço para o header fixo */
body {
  padding-top: var(--header-h);
}

body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

/* Logo del header (custom logo de WP + fallback) */
.site-header .logo,
.site-header .custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-header .custom-logo,
.site-header .logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  max-height: 36px;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--bg);
}

.logo-text span {
  color: var(--primary);
}

.logo-text .accent {
  color: var(--accent);
}

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

/* Selector de idioma (banderas PE / US / BR) */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.35rem;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  transition: 0.15s ease;
}

.lang-flag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-flag.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
  box-shadow: 0 0 0 1px rgba(123, 30, 160, 0.15);
}

.lang-flag-emoji {
  font-size: 1rem;
  line-height: 1;
}

.lang-flag-code {
  letter-spacing: 0.02em;
}

.site-footer .lang-switcher {
  margin-top: 0.75rem;
}

.main-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.main-nav a:not(.btn):hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  margin-inline: auto;
  transition: 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.15s ease;
  text-align: center;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
}

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

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

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

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(123, 30, 160, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(239, 108, 0, 0.10), transparent 50%),
    linear-gradient(180deg, #faf5ff 0%, #fff 70%);
}

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

/* Texto arriba + imagen debajo (una sola vez) */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.hero-stack .hero-copy {
  max-width: 720px;
  width: 100%;
}

.hero-stack .check-list {
  text-align: left;
  display: inline-block;
  margin-inline: auto;
}

.hero-stack .hero-cta {
  justify-content: center;
}

.hero-stack .hero-visual {
  width: min(100%, 880px);
}

.hero-stack .hero-photo {
  max-height: none;
  width: 100%;
  height: auto;
}

.badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}

.badge-accent {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero h1 .accent {
  color: var(--accent);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.check-list.accent li {
  margin-bottom: 0.75rem;
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero-card-photo {
  padding: 0.75rem;
  background: linear-gradient(145deg, #faf5ff, #fff7ed);
  overflow: visible;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  object-position: center top;
  max-height: none;
  background: transparent;
}

.media-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.section-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: contain;
  max-height: none;
  background: transparent;
}

.hero-mock {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.mock-bar {
  height: 36px;
  background: linear-gradient(90deg, #1a0a2e, #2a1040);
}

.mock-chat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bubble {
  max-width: 80%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.bubble.in {
  background: #1e293b;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.bubble.out {
  background: var(--primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #fff;
}

.hero-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-2);
}

.section-dark {
  background: linear-gradient(135deg, var(--bg) 0%, #1a0a2e 55%, #2a1208 100%);
  color: #e2e8f0;
}

.section-dark h2 span {
  color: #d8a8ff;
}

.section-dark h2 .accent {
  color: #ffb366;
}

.section-dark p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2,
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-box {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.video-thumb {
  background: linear-gradient(145deg, #000a15, #2a1040);
  border-radius: 12px;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

/* Feature cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d8b4fe;
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(123, 30, 160, 0.22);
  transform: scale(1.02);
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.price-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price .currency {
  font-weight: 600;
  color: var(--text-muted);
}

.price .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  flex: 1;
}

.price-card li {
  padding: 0.35rem 0 0.35rem 1.3rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border);
}

.price-card li:last-child {
  border-bottom: 0;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.badge-soft {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
}

/* Extras */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.extra-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.extra-card p {
  max-width: 36ch;
}

.extra-card .btn {
  margin-top: 0.25rem;
}

.price-hint {
  font-weight: 700;
  color: var(--accent);
}

/* Lite / simple plan band */
.section-lite {
  background: linear-gradient(135deg, #faf5ff, #fff7ed 50%, #fff);
}

.lite-box {
  border: 1px solid #e9d5ff;
  border-radius: 24px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.75);
}

/* Blog */
.blog-hero {
  padding: 3.5rem 0 1rem;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-thumb-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7b1ea0, #ef6c00);
  color: #fff;
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.blog-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.blog-meta a {
  color: var(--primary);
  font-weight: 600;
}

.blog-card-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.blog-card-body .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* Artículo */
.article-header {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 70%);
}

.article-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  line-height: 1.25;
}

.article-featured {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 2rem;
  color: var(--text);
  font-size: 1.35rem;
}

.article-body h3 {
  margin-top: 1.35rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.article-body ul {
  padding-left: 1.2rem;
}

.article-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.article-cta {
  margin: 2.5rem 0 1rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5e8fb, #fff7ed);
  border: 1px solid #e9d5ff;
  text-align: center;
}

.article-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.article-cta p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 700;
}

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

.faq-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
}

.faq-body p {
  margin: 0;
}

/* Testimonials / trust */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin-inline: auto;
}

.testimonial-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonial-meta strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.trust-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.trust-strip span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* Guarantee */
.section-guarantee {
  background: var(--surface-2);
}

.seal {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 4px solid var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.15;
}

/* Content pages */
.page-content {
  padding: 3rem 0 4rem;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-top: 0;
  color: var(--primary);
}

.page-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.page-content p,
.page-content li {
  color: #334155;
}

.page-content .entry-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--text);
}

.page-content .entry-content ul,
.page-content .entry-content ol {
  padding-left: 1.25rem;
}

.page-content .entry-content a {
  color: var(--primary);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--bg);
  color: #94a3b8;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #d8a8ff;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

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

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
  }

  .main-nav .lang-switcher {
    margin: 0 0 0.5rem;
    justify-content: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.65rem 0.5rem;
  }

  .hero-grid,
  .two-col,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    gap: 1.75rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}
