/* ============================================
   SUPPLE LEOPARD - Main Stylesheet
   Colors: Black (#1A1A1A) & Orange (#F27023)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #F27023;
  --color-primary-dark: #D45E18;
  --color-primary-light: #FF8C42;
  --color-black: #1A1A1A;
  --color-dark: #2D2D2D;
  --color-gray-dark: #4A4A4A;
  --color-gray: #6B6B6B;
  --color-gray-light: #E5E5E5;
  --color-bg-light: #F5F5F5;
  --color-white: #FFFFFF;
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,.15);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
  --container-max: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--color-gray-dark); }

.text-orange { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: .75rem; }
.section-title p { max-width: 640px; margin: 0 auto; color: var(--color-gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn-dark:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-brand .logo-text span {
  color: var(--color-primary);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: .9rem;
  position: relative;
  padding: 4px 0;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.navbar-nav a:hover { color: var(--color-white); }
.navbar-nav a:hover::after { width: 100%; }
.navbar-nav a.active { color: var(--color-primary); }
.navbar-nav a.active::after { width: 100%; }

.navbar-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: .85rem !important;
  letter-spacing: .5px;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Fix iOS Safari address-bar height */
  display: flex;
  align-items: center;
  background: var(--color-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.9) 0%, rgba(26,26,26,.4) 60%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 112, 35, .15);
  border: 1px solid rgba(242, 112, 35, .4);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: var(--color-primary);
  display: block;
}

.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-white);
  opacity: .6;
  animation: bounce 2s infinite;
  font-size: .8rem;
  text-align: center;
}
.hero-scroll i { display: block; font-size: 1.2rem; margin-top: 4px; }

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

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--color-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-black);
}

.stat-label {
  font-size: .9rem;
  color: var(--color-gray);
  margin-top: 4px;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 80px 0;
}

.section-light { background: var(--color-bg-light); }
.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark p { color: rgba(255,255,255,.7); }

/* ---------- OPOSICION TABS ---------- */
.tabs {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;          /* Force block width so overflow-x: auto works */
  box-sizing: border-box;
  gap: 4px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
}
.tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-gray);
  cursor: pointer;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- CARDS ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card-body p { font-size: .9rem; }
.card-tag {
  display: inline-block;
  background: rgba(242,112,35,.1);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---------- PRICING TIERS ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Make each pricing card a column so footer CTA sits at same height */
.pricing-grid > .pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-grid > .pricing-card .btn {
  margin-top: auto;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--color-gray-light);
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--color-primary);
  /* Avoid scaling the featured card so heights match exactly */
  transform: none;
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--color-black);
}

/* Ensure grid-3 cards behave like pricing-grid cards so CTAs align */
.grid-3 > .pricing-card {
  display: flex;
  flex-direction: column;
}
.grid-3 > .pricing-card .btn {
  margin-top: auto;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray);
}

.pricing-period {
  font-size: .9rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--color-gray-dark);
  border-bottom: 1px solid var(--color-gray-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--color-primary); font-size: .85rem; }
.pricing-features li i.fa-xmark { color: var(--color-gray-light); }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--color-gray-dark);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-name { font-weight: 700; font-size: .95rem; }
.testimonial-author-role { font-size: .8rem; color: var(--color-gray); }

/* ---------- BEFORE/AFTER ---------- */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.before-after-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.before-after-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.before-after-images .label {
  position: absolute;
  bottom: 8px;
  padding: 4px 12px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}
.before-after-images .label-before { left: 8px; }
.before-after-images .label-after { right: 8px; background: var(--color-primary); }

.before-after-info { padding: 20px; }
.before-after-info h4 { margin-bottom: 4px; }
.before-after-info p { font-size: .85rem; margin-bottom: 0; }

/* ---------- MEDIA LOGOS ---------- */
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.media-logos img {
  height: 40px;
  opacity: .6;
  filter: grayscale(1);
  transition: all var(--transition);
}
.media-logos img:hover { opacity: 1; filter: none; }

/* ---------- GRID LAYOUTS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* Pricing cards in grid-3 align buttons at the same height */
.grid-3 > div { display: flex; flex-direction: column; align-items: center; height: 100%; }
.grid-3 > div .btn { margin-top: auto; }

/* Ensure equal visual height on desktop so CTAs align exactly */
@media (min-width: 960px) {
  .grid-3 > div { min-height: 520px; }
}

/* Slightly smaller on medium screens */
@media (min-width: 720px) and (max-width: 959px) {
  .grid-3 > div { min-height: 460px; }
}
/* Prevent grid items expanding page beyond viewport (min-width: auto default) */
.grid-2 > *, .grid-3 > *, .grid-4 > *,
.blog-layout > *, .blog-post-layout > *,
.before-after-grid > *, .pricing-grid > * { min-width: 0; }

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--color-gray-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-black);
  transition: all var(--transition);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question i {
  transition: transform var(--transition);
  color: var(--color-primary);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-gray-dark);
  line-height: 1.7;
}

/* ---------- CONTACT FORM ---------- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-black);
  font-size: .9rem;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-primary); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-black);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-brand .logo-text span { color: var(--color-primary); }
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--color-primary); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--color-primary); }
.footer-legal { display: flex; gap: 24px; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-black);
  color: var(--color-white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  display: none;
}
.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-inner p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.8); }
.cookie-inner p a { color: var(--color-primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: var(--color-black);
  padding: 120px 0 60px;
  text-align: center;
}
.page-header h1 {
  color: var(--color-white);
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ---------- BIG NUMBER ---------- */
.big-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

/* ---------- ICON FEATURES ---------- */
.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242,112,35,.1);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
}

/* ---------- THANK YOU PAGE ---------- */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(242,112,35,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-primary);
  margin: 0 auto 2rem;
}

/* ---------- 404 PAGE ---------- */
.notfound-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound-code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  opacity: .15;
}

/* ---------- BLOG ---------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 32px;
}

.blog-card .card-img { height: 200px; }
.blog-card .card-body h3 { font-size: 1.1rem; }
.blog-card .card-meta {
  font-size: .8rem;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-widget {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.category-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-gray-light);
}
.category-list li:last-child { border-bottom: none; }
.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--color-gray-dark);
  font-size: .9rem;
}
.category-list a:hover { color: var(--color-primary); }
.category-count {
  background: var(--color-bg-light);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: .75rem;
  color: var(--color-gray);
}

/* Chips múltiples en tarjeta de blog */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.card-tag--chip {
  display: inline-block;
  background: rgba(242,112,35,.1);
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Pills de categorías en el header del post */
.post-categories-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.post-category-pill {
  display: inline-block;
  background: rgba(242,112,35,.15);
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background var(--transition);
}
.post-category-pill:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- BLOG POST ---------- */
.blog-post-article {
  padding: 60px 0;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-post-meta i {
  color: var(--color-primary);
}

.blog-post-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.blog-post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-gray-dark);
}
.blog-post-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-black);
}
.blog-post-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 .75rem;
  color: var(--color-black);
}
.blog-post-body h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
  color: var(--color-black);
}
.blog-post-body p {
  margin-bottom: 1.25rem;
  color: var(--color-gray-dark);
}
.blog-post-body ul,
.blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 1.25rem;
}
.blog-post-body ul li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.7;
}
.blog-post-body ol li {
  list-style: decimal;
  margin-bottom: 8px;
  line-height: 1.7;
}
.blog-post-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  margin: 1.5rem 0;
  background: var(--color-bg-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-gray);
}
.blog-post-body blockquote p {
  margin-bottom: 0;
  color: var(--color-gray);
}
.blog-post-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.blog-post-body a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(242,112,35,.3);
  text-underline-offset: 3px;
}
.blog-post-body a:hover {
  text-decoration-color: var(--color-primary);
}
.blog-post-body pre {
  background: var(--color-black);
  color: #e0e0e0;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: .9rem;
  line-height: 1.6;
}
.blog-post-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .9em;
}
.blog-post-body p code {
  background: var(--color-bg-light);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-primary-dark);
}
.blog-post-body strong {
  font-weight: 700;
  color: var(--color-black);
}
.blog-post-body hr {
  border: none;
  border-top: 2px solid var(--color-gray-light);
  margin: 2rem 0;
}
.blog-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.blog-post-body th,
.blog-post-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}
.blog-post-body th {
  background: var(--color-bg-light);
  font-weight: 700;
  color: var(--color-black);
}

.recent-posts-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-light);
}
.recent-posts-list li:last-child {
  border-bottom: none;
}
.recent-posts-list a {
  color: var(--color-gray-dark);
  font-size: .9rem;
}
.recent-posts-list a:hover {
  color: var(--color-primary);
}

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

/* ---------- LEGAL ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 .75rem;
}
.legal-content p, .legal-content li {
  line-height: 1.8;
  font-size: .95rem;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}
.legal-content ul li {
  list-style: disc;
  margin-bottom: 6px;
}

/* ---------- MAP EMBED ---------- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- TABLE RESPONSIVE ---------- */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .navbar-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .navbar-nav.open { transform: translateY(0); }

  .navbar-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero-content { padding: 0 0 2rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .btn-group { flex-wrap: wrap; }

  /* Blog layout: stack sidebar below content */
  .blog-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-layout > * { min-width: 0; }
  .blog-layout .blog-sidebar { position: static; }

  /* Blog cards: ensure correct thumbnail proportions */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card .card-img { height: 220px; }

  /* Tabs: horizontal scroll slider on mobile, never wrap */
  .tabs { flex-wrap: nowrap; }

  /* Cookie */
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }

  /* Timeline */
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
  .timeline-content { width: 100%; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  /* Mobile spacing improvements for pricing cards: increase gap between list, seats and CTA */
  /* Match spacing between paragraph -> list and list -> button on mobile */
  .grid-3 > .pricing-card ul {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  /* Override inline padding on list items used in HTML to ensure better spacing on small screens */
  .grid-3 > .pricing-card ul li {
    /* Reduced vertical spacing between list items on mobile */
    padding: 6px 0 !important;
    margin-bottom: 4px;
    font-size: .95rem;
  }
  .grid-3 > .pricing-card .seats-slots {
    margin-top: 10px;
    margin-bottom: 12px;
  }
  /* Ensure the CTA keeps the same gap as paragraph->list */
  .grid-3 > .pricing-card .btn {
    margin-top: 12px !important;
  }

  /* Page header: reduce padding on tablets/landscape phones */
  .page-header { padding: 110px 0 50px; }

  /* Blog post tables: horizontal scroll on mobile */
  .blog-post-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

  /* Navbar CTA: full width in mobile dropdown */
  .navbar-nav .navbar-cta { display: block; text-align: center; width: 100%; margin-top: 4px; }

  /* Table responsive scroll hint */
  .table-responsive::after { content: '← Desliza para ver más →'; display: block; text-align: center; font-size: .72rem; color: var(--color-gray); padding: 6px 0 0; font-style: italic; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  /* Keep tabs horizontal with scroll instead of column stacking */
  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .page-header { padding: 100px 0 40px; }
  .btn-lg { padding: 13px 20px; font-size: .95rem; }
  .btn { padding: 11px 20px; }
  .hero-content h1 { font-size: 1.75rem; }
  .card-img { height: 180px; }
  .blog-card .card-img { height: 200px; }
  .container { padding: 0 16px; }
  .section-title { margin-bottom: 2rem; }
  .pricing-card { padding: 32px 20px; }
  /* Before/After: reduce image height on small screens */
  .before-after-images img { height: 160px; }
  /* Media logos: reduce gap on small screens */
  .media-logos { gap: 20px; padding: 16px 0; }
  .media-logos img { height: 32px; }
  /* Map: reduce height on mobile */
  .map-container { height: 250px; }
}

/* ============================================
   SUBSCRIPTION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-bg-light);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--color-gray-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-white);
  margin: 0 auto 14px;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--color-gray);
  font-size: .9rem;
}

/* Form elements */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 112, 35, .15);
}

.form-control[readonly] {
  background: var(--color-bg-light);
  color: var(--color-gray-dark);
  cursor: default;
}

.form-control.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .12);
}

.field-error {
  font-size: .78rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

.field-error.visible {
  display: block;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Success message */
.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.modal-success.visible {
  display: block;
}

.modal-success .success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #38a169, #276749);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-white);
  margin: 0 auto 16px;
}

.modal-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-black);
  margin-bottom: 8px;
}

.modal-success p {
  color: var(--color-gray);
  font-size: .9rem;
}

/* Responsive modal */
@media (max-width: 560px) {
  .modal { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   SEATS SLOTS (Plan Plaza)
   ============================================ */
.seats-slots {
  margin: 18px 0 14px;
  text-align: center;
}

.seats-slots-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-gray);
  margin-bottom: 10px;
}

.seats-slots-title svg {
  color: var(--color-primary);
}

.seats-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 9px;
}

.seat-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--color-gray-light);
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.seat-dot.taken {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.seats-slots-label {
  font-size: .78rem;
  color: var(--color-gray);
  margin: 0;
}

.seats-slots-label strong {
  color: var(--color-primary);
  font-weight: 700;
}

.seats-urgency {
  color: #c0392b;
  font-weight: 700;
}

/* Ensure subscribe buttons fire on mobile touch */
.btn-subscribe {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* ============================================
   Newsletter Popup Modal
   ============================================ */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.newsletter-overlay.open {
  opacity: 1;
  visibility: visible;
}

.newsletter-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  transform: translateY(28px) scale(.97);
  transition: transform .38s ease;
}

.newsletter-overlay.open .newsletter-panel {
  transform: translateY(0) scale(1);
}

.newsletter-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-gray);
  cursor: pointer;
  line-height: 1;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.newsletter-close:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

.newsletter-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.45rem;
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(242, 112, 35, 0.35);
}

.newsletter-panel h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--color-black);
}

.newsletter-panel > p {
  text-align: center;
  color: var(--color-gray);
  font-size: .93rem;
  margin-bottom: 22px;
  line-height: 1.65;
}

.newsletter-panel .highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--color-gray-dark);
}

.newsletter-feature i {
  color: var(--color-primary);
  font-size: .9rem;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--color-dark);
  background: var(--color-bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 112, 35, 0.15);
  background: var(--color-white);
}

.newsletter-form input[type="email"].invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.newsletter-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  letter-spacing: .03em;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(242, 112, 35, 0.42);
  opacity: .95;
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-privacy {
  text-align: center;
  font-size: .76rem;
  color: var(--color-gray);
  margin: 10px 0 0;
}

.newsletter-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.newsletter-skip {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--color-gray);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  transition: color var(--transition);
}

.newsletter-skip:hover {
  color: var(--color-primary);
}

.newsletter-success {
  text-align: center;
  display: none;
  padding: 4px 0 8px;
}

.newsletter-success.visible {
  display: block;
}

.newsletter-success .nl-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--color-white);
}

.newsletter-success h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-black);
}

.newsletter-success p {
  color: var(--color-gray);
  font-size: .92rem;
  margin: 0;
}

@media (max-width: 500px) {
  .newsletter-panel {
    padding: 34px 20px 26px;
  }
}

/* Compact version for home */
.seats-slots--sm {
  margin: 10px 0 8px;
}

.seats-slots--sm .seat-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}
