/* ==========================================================================
   ACCENT MUSIQUE - LANDING PAGE STYLES (CARTES PHOTOS & CAROUSEL)
   ========================================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: rgba(245, 158, 11, 0.12);
  --primary-glow: rgba(245, 158, 11, 0.35);

  --bg-dark: #0b0f17;
  --bg-darker: #06090e;
  --bg-card: #131b28;
  --bg-card-hover: #182334;
  --bg-card-accent: #172236;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-color: #243246;
  --border-light: #2d3e58;
  --border-focus: #f59e0b;

  --radius-sm: 0.5rem;
  --radius: 0.85rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.7);
  --shadow-hover: 0 22px 45px -5px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 0 25px rgba(245, 158, 11, 0.25);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}



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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* NAVBAR */
header.navbar {
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  height: 70px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.brand-accent {
  color: var(--primary);
}

.brand-sub {
  color: var(--text-main);
}

/* BURGER */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.burger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* NAV LINKS */
.nav-links {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  transform: translateY(-150%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  padding-left: 0.3rem;
}

.nav-auth-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--primary);
  color: #0b0f17;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #0b0f17;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-light);
}

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

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-admin {
  background-color: #8b5cf6;
  color: #ffffff;
}

.btn-admin:hover {
  background-color: #7c3aed;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-block {
  width: 100%;
}

/* HERO SECTION  */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.1);
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(19, 27, 40, 0.5) 0%, rgba(11, 15, 23, 0.92) 80%);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.hero-overlay h1 span {
  color: var(--text-main);
}


.hero-tagline {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* GENERAL SECTIONS */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

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

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CARDS GRID & PHOTO CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow-hover);
}

.photo-card-top {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.photo-card-top-sm {
  height: 170px;
}

.photo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover .photo-card-img {
  transform: scale(1.06);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.1) 0%, rgba(11, 15, 23, 0.85) 100%);
  pointer-events: none;
}

.photo-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
}

.photo-card-overlay-title {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  z-index: 2;
  margin: 0;
}

.photo-card-bottom {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.photo-card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.photo-card-footer {
  margin-top: auto;
}

/* MAGASIN SECTION & PHOTO CAROUSEL */
.section-magasin {
  background: linear-gradient(180deg, transparent 0%, rgba(19, 27, 40, 0.4) 50%, transparent 100%);
}

.carousel-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide-photo-card {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #182537 0%, #101722 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.slide-photo-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.slide-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(16, 23, 34, 0.85) 100%);
}

.slide-photo-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
}

.slide-photo-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-tag-sub {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.slide-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.slide-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.slide-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.slide-feature-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #cbd5e1;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

/* CAROUSEL ARROWS & CONTROLS */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: #0b0f17;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.carousel-arrow-prev {
  left: 8px;
}

.carousel-arrow-next {
  right: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* TARIFS SECTION (PRICING) */
.section-tarifs {
  background: linear-gradient(180deg, transparent 0%, rgba(19, 27, 40, 0.5) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-hover);
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.pricing-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pill-gold {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(245, 158, 11, 0.35);
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pricing-target {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.price-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.price-main-text .price-value {
  font-size: 2.1rem;
  color: #38bdf8;
}

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

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.pricing-body {
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.pricing-check {
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-notice {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(19, 27, 40, 0.5);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.contact-card-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  font-size: 1.35rem;
  line-height: 1;
  background: var(--primary-light);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.contact-item-content strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.contact-item-content p,
.contact-item-content a {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.contact-item-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
}

.contact-map-card {
  min-height: 380px;
}

.map-container {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

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

/* FOOTER */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 420px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}

.footer-bottom {
  max-width: 1240px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-legal-links span {
  color: var(--text-dim, #64748b);
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-links {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    background: none;
    border: none;
    width: auto;
    padding: 0;
    gap: 1.5rem;
    box-shadow: none;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0;
    border-bottom: none;
  }

  .nav-link:hover,
  .nav-link:focus {
    padding-left: 0;
  }

  .nav-auth-group {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .hero {
    min-height: 640px;
    padding: 5rem 2rem;
  }

  .hero-overlay h1 {
    font-size: 3.4rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .slide-photo-card {
    grid-template-columns: 1fr 1fr;
  }

  .slide-photo-media {
    height: 100%;
    min-height: 320px;
  }

  .slide-photo-info {
    padding: 2.5rem;
  }

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

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

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-overlay h1 {
    font-size: 4rem;
  }

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