/* ===== Variables ===== */
:root {
  --color-primary: #163a7a;
  --color-primary-dark: #0d2455;
  --color-accent: #e96c03;
  --color-text: #2b2b2b;
  --color-text-light: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-border: #e2e4e8;
  --radius: 8px;
  --max-width: 1140px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  line-height: 1.25;
  margin: 0 0 16px;
}

.script-accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

h2 {
  font-size: 2rem;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--color-text-light);
}

.eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* ===== Botones ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

.btn-primary:hover {
  background: #c65c03;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

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

/* ===== Franja de marca ===== */
.brand-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--color-accent) 0 10px,
    #1a1a1a 10px 20px
  );
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 105px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

/* ===== Iconos ===== */
.icon-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-svg-fill {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  vertical-align: middle;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle .icon-svg {
  width: 26px;
  height: 26px;
}

.contact-info-card .icon {
  color: var(--color-accent);
}

.footer-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-grid li .icon-svg {
  color: var(--color-accent);
}

.form-success .icon-svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--color-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn {
  padding: 7px 16px;
  border-width: 1px;
  font-size: 0.9rem;
}

.nav-phone {
  font-weight: 600;
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-accent);
  cursor: pointer;
}

/* ===== Hero a pantalla completa (home) ===== */
.hero-home {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  color: transparent;
  font-size: 0;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 36, 85, 0.93) 0%, rgba(13, 36, 85, 0.8) 45%, rgba(13, 36, 85, 0.45) 100%);
  z-index: 1;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
}

.hero-badge .dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2ecc71;
  animation: radar-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radar-ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

.underline-accent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0,9 C40,9 70,2 130,2 C165,2 185,5 200,5 L200,10 L0,10 Z' fill='%23e96c03'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% auto;
  padding-bottom: 8px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 28px;
}

.rating-badge .stars {
  color: var(--color-accent);
  letter-spacing: 1px;
}

.hero-proof {
  display: inline-block;
  margin-top: 28px;
  padding: 9px 14px;
  border-left: 3px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #0f6b5f;
}

/* ===== Cómo trabajamos / garantías ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-primary-dark);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.process-guarantee {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-border);
  color: #b23b3b;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Botón flotante WhatsApp (escritorio) ===== */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #128c7e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 60;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background: #0f6b5f;
  transform: scale(1.06);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #128c7e;
  animation: radar-ping-sm 3.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

@keyframes radar-ping-sm {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

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

/* ===== Barra CTA fija (móvil) ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 10px;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  z-index: 60;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== Microinteracciones ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: 90px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.hero-stats div {
  text-align: left;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--color-accent);
}

.hero-stats span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Tarjetas de servicio ===== */
.grid {
  display: grid;
  gap: 28px;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.card-link {
  font-weight: 600;
  color: var(--color-accent);
}

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

.service-card::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 22px;
  background: var(--color-accent);
}

.visual-plan-card {
  min-height: 270px;
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(145deg, #183a5a, #0c2740);
  color: #fff;
}

.visual-plan-card span {
  color: #ffc93c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.visual-plan-card strong { font-size: 1.35rem; }
.visual-plan-card small { margin-top: 12px; color: rgba(255, 255, 255, 0.76); line-height: 1.5; }

.provisional-note { color: #9f5a16; }

.service-image {
  display: block;
  width: 100%;
  height: clamp(320px, 34vw, 440px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Proyectos / galería ===== */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
}

.project-card img {
  display: block;
  width: 100%;
  height: 250px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-body {
  padding: 18px 20px;
}

.project-tag {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ===== Testimonios ===== */
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.testimonial-author {
  margin-top: 16px;
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ===== Zonas ===== */
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.zones-list span {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.zones-list .zones-more {
  background: #ffc93c;
  border-color: #ffc93c;
  color: var(--color-primary-dark);
  font-weight: 700;
}

/* ===== CTA banda ===== */
.cta-band {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Formulario ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.form-progress span {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 999px;
}

.form-progress span.active {
  background: var(--color-accent);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.option-btn {
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  width: 100%;
}

.option-btn.selected {
  border-color: var(--color-accent);
  background: rgba(217, 142, 43, 0.08);
}

.option-btn:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

label,
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-error {
  color: #b42318;
  font-weight: 600;
  font-size: 0.9rem;
  margin: -12px 0 16px;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}

.form-consent input {
  width: auto;
  margin: 4px 0 0;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: inherit;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success.active {
  display: block;
}

/* ===== Contacto info ===== */
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-card .icon {
  font-size: 1.4rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

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

/* ===== Páginas legales ===== */
.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-top: 8px;
}

.legal-content h3 {
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* ===== Aviso de cookies ===== */
.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  z-index: 100;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  flex: 1 1 260px;
}

.cookie-banner a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 20px;
    border-bottom: 1px solid transparent;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease, border-color 0.3s ease;
  }

  .site-header.menu-open .nav-links {
    max-height: 400px;
    opacity: 1;
    padding: 20px;
    pointer-events: auto;
    border-bottom-color: var(--color-border);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .nav-links a.active {
    background: rgba(233, 108, 3, 0.1);
    border-left-color: var(--color-accent);
    font-weight: 600;
  }

  .grid-3,
  .grid-2,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .project-card img {
    height: 230px;
  }

  .service-image {
    height: 260px;
  }

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

  .hero-stats strong {
    font-size: 1.5rem;
  }

  .hero-stats span {
    font-size: 0.78rem;
    line-height: 1.3;
    display: block;
  }

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

  .hero-badge {
    margin-top: 24px;
  }

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

  .sticky-cta {
    display: flex;
  }

  .whatsapp-float {
    display: none;
  }

  .cookie-banner {
    bottom: 78px;
    left: 10px;
    right: 10px;
    padding: 12px 14px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .cookie-banner p {
    font-size: 0.78rem;
    line-height: 1.4;
    flex: 1 1 auto;
  }

  body {
    padding-bottom: 68px;
  }
}

/* ===== Servicios: qué incluye ===== */
.service-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}

.service-includes li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-includes li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.35em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .service-includes {
    grid-template-columns: 1fr;
  }
}

/* ===== Preguntas frecuentes ===== */
.faq {
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
}

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

.faq-item summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.visual-plan-card .btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
