@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --yellow: #ffd900;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1f1f1f;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.07);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 217, 0, 0.12);
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-weight: 600;
}
nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}
nav a:hover,
nav a.active {
  color: var(--white);
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a.active {
  color: var(--yellow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open {
  transform: translateX(0);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}
.mobile-nav-a {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 8px;
  transition: all 0.25s;
  width: 80%;
  text-align: center;
}
.mobile-nav-a:hover,
.mobile-nav-a.active {
  color: var(--dark);
  background: var(--yellow);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #120810 0%, #1a0d1f 40%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/ref.png");
  background-size: cover;
  background-position: center;
}
.hero-overlay-l {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.93) 0%,
    rgba(13, 13, 13, 0.6) 50%,
    rgba(13, 13, 13, 0.15) 100%
  );
}
.hero-overlay-b {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 2;
  background: linear-gradient(to top, rgba(13, 13, 13, 1) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 100px 60px 100px;
  max-width: 820px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.hero-tag-line {
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--yellow);
}
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
  color: transparent;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 217, 0, 0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(10px);
}
.stat-item {
  flex: 1;
  padding: 18px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

section {
  padding: 90px 60px;
}
.section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.section-title .dim {
  color: rgba(255, 255, 255, 0.2);
}

/* STAT HIGHLIGHT */
.stat-highlight {
  background: var(--yellow);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-highlight-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--dark);
  line-height: 1;
  flex-shrink: 0;
}
.stat-highlight-body h3 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.stat-highlight-body p {
  font-size: 0.95rem;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.6;
  max-width: 500px;
}

/* REFACCIONES TOP 5 */
.parts-section {
  background: var(--dark2);
}
.parts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.part-card {
  background: var(--dark);
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.part-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.part-card:hover::before {
  transform: scaleX(1);
}
.part-card:hover {
  background: var(--dark3);
  transform: translateY(-4px);
}
.part-rank {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255, 217, 0, 0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.part-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.part-name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.part-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* SPLIT */
.split-section {
  background: var(--dark);
}
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-wrap.reverse {
  direction: rtl;
}
.split-wrap.reverse > * {
  direction: ltr;
}
.split-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #120810, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-radius: 16px;
}
.split-img-placeholder span {
  font-size: 5rem;
  opacity: 0.15;
}
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
}
.split-body p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 14px;
}
.split-body p:last-child {
  margin-bottom: 0;
}
.split-body strong {
  color: rgba(255, 255, 255, 0.9);
}
.split-quote {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.split-quote .accent {
  color: var(--yellow);
  font-style: italic;
}

/* BENEFICIOS */
.benefits-section {
  background: var(--dark2);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3px;
}
.benefit-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-card:hover {
  background: #1c1c1c;
  transform: translateY(-4px);
}
.benefit-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.benefit-card:hover .benefit-icon {
  background: var(--yellow);
}
.benefit-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* GALLERY */
.gallery-section {
  background: var(--dark);
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-placeholder {
  background: #1c1c1c;
}
.gallery-item-placeholder span {
  font-size: 2.5rem;
  opacity: 0.2;
}
.gallery-item-placeholder p {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* PRICING */
.pricing-section {
  background: var(--dark2);
}
.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pricing-badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255, 217, 0, 0.15);
  color: var(--yellow);
  border: 1px solid rgba(255, 217, 0, 0.3);
  margin-bottom: 10px;
}
.pricing-name {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.pricing-price-wrap {
  text-align: right;
}
.pricing-promo {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--yellow);
  text-transform: uppercase;
}
.pricing-after {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.pricing-feature::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HOW TO REGISTER */
.register-section {
  background: var(--dark);
}
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reg-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.25s;
}
.reg-step:hover {
  border-color: rgba(255, 217, 0, 0.3);
}
.reg-step-num {
  width: 40px;
  height: 40px;
  background: rgba(255, 217, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.reg-step-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.reg-step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.register-cta-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 40px;
}
.register-cta-box h3 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.register-cta-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}
.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-row a {
  color: var(--yellow);
  text-decoration: none;
}

/* QUOTE BAND */
.quote-band {
  background: var(--yellow);
  padding: 70px 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.quote-main {
  flex: 1;
  min-width: 280px;
}
.quote-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 12px;
}
.quote-sub-text {
  font-size: 0.93rem;
  color: rgba(13, 13, 13, 0.65);
  line-height: 1.6;
  max-width: 500px;
}
.quote-action {
  flex-shrink: 0;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--yellow);
  border: none;
  padding: 16px 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

footer {
  background: #080808;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand span {
  color: var(--yellow);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1000px) {
  .parts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  section {
    padding: 60px 24px;
  }
  .split-wrap,
  .split-wrap.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .register-grid {
    grid-template-columns: 1fr;
  }
  .quote-band {
    padding: 50px 24px;
  }
  .stat-highlight {
    padding: 40px 24px;
  }
}
@media (max-width: 600px) {
  header {
    padding: 0 20px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-overlay {
    display: flex;
  }
  .hero-content {
    padding: 100px 24px 100px;
  }
  .hero-stat-bar {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .parts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 28px;
  }
  .pricing-header {
    flex-direction: column;
  }
  .pricing-price-wrap {
    text-align: left;
  }
  footer {
    padding: 40px 24px;
    flex-direction: column;
  }
}
