@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-main: #030305;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-main: #e2e2e5;
  --text-muted: #8a8a93;
  --brand-cyan: #00f0ff;
  --brand-violet: #7000ff;
  --brand-glow: rgba(0, 240, 255, 0.4);

  /* Layout */
  --container-width: 1240px;
  --gutter: 2rem;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* 2. Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(90deg, #fff, var(--brand-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  background: rgba(0, 240, 255, 0.05);
}

/* 3. Global Structures */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

/* 4. Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-cyan);
  color: #000;
  box-shadow: 0 0 20px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--brand-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

/* 5. Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(3, 3, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.logo img {
  height: 54px;
  width: auto;
}

/* 6. Section: Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  /* header offset */
  background: url('background 1.svg') no-repeat center center/cover;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 5, 0.7);
  /* Darker overlay */
  background-image: radial-gradient(circle at center, transparent 0%, var(--bg-main) 100%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  /* Added shadow */
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  /* Stronger shadow for readability */
  color: #c0c0c5;
  /* Slightly lighter text */
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-header h3 {
  font-size: 1.5rem;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
}

.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.05);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--brand-violet);
}

.feature-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.card-link {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--brand-cyan);
  font-family: var(--font-display);
}

/* 7. Section: Marquee */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.separator {
  color: var(--brand-cyan);
  font-size: 1.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 8. Section: Process */
.process {
  background: linear-gradient(180deg, var(--bg-main) 0%, #08080c 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.sticky-card {
  position: sticky;
  top: 120px;
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.sticky-card:nth-child(2) {
  top: 140px;
  transform: scale(0.98);
}

.sticky-card:nth-child(3) {
  top: 160px;
  transform: scale(0.96);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.8;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--brand-cyan);
}

.step-content p {
  color: var(--text-muted);
}

/* 9. Section: Founders */
.founders {
  padding-bottom: 8rem;
}

.founders-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.founder-intro {
  margin: 1.5rem 0 2.5rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 32ch;
}

.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.founder-profile {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.founder-profile:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.profile-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet));
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  flex-shrink: 0;
}

.founder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-main);
  /* Fallback */
  display: block;
}

.profile-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.role {
  font-size: 0.875rem;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.founder-profile p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* 10. Section: Pricing (Existing + Refined) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}

.price-card.featured {
  background: rgba(112, 0, 255, 0.05);
  border-color: var(--brand-violet);
  box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.price-card h3 {
  color: var(--text-main);
  font-size: 1.25rem;
}

.price-card ul {
  margin-bottom: 2rem;
}

.price-card li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.price-card li::before {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5rem;
  margin-bottom: -0.3em;
  background-color: var(--brand-cyan);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

/* 11. FAQ & Footer */
.faq details {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  border-radius: 0;
}

.faq summary {
  padding: 0;
  font-size: 1.125rem;
}

.faq summary::after {
  content: '';
  width: 1.5em;
  height: 1.5em;
  background-color: var(--brand-cyan);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.footer {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #fff, #888);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
/* Animation & Keyframes */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s var(--ease-out-expo);
}

.reveal-img.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay.active {
  transition-delay: 0.2s;
}

.reveal-delay-2.active {
  transition-delay: 0.4s;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    align-items: center;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .founders-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .nav-wrap {
    padding: 0 1rem;
  }
}

/* Cursor (Desktop Only) */
@media (hover: hover) and (pointer: fine) {

  .cursor-dot,
  .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-cyan);
  }

  .cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
  }

  body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-cyan);
  }
}

/* --- Mobile Optimization --- */

/* Base Mobile Toggle - Hidden on Desktop */
.mobile-toggle {
  display: none;
}

/* --- FAQ Section --- */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--bg-card-hover);
}

.faq-item.active {
  border-color: var(--brand-cyan);
  background: rgba(0, 240, 255, 0.03);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item.active .faq-trigger {
  color: var(--brand-cyan);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-body {
  padding: 0 2rem 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-body strong {
  color: var(--brand-cyan);
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 1.25rem;
    font-size: 1rem;
    gap: 1rem;
  }

  .faq-body {
    padding: 0 1.25rem 1.5rem;
  }
}

.price-card {
  position: relative;
  /* For badge positioning */
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
  /* Ensure badge isn't clipped */
}

.price-card.featured {
  background: radial-gradient(circle at top right, rgba(112, 0, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--brand-violet);
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

@media (max-width: 1024px) {
  .price-card.featured {
    transform: scale(1);
    margin: 1rem 0;
  }
}

/* --- Client Logos Section --- */

.clients-section {
  padding: 8rem 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.clients-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  color: var(--text-muted);
}

.logo-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.logo-scroller::before,
.logo-scroller::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-scroller::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main), transparent);
}

.logo-scroller::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main), transparent);
}

.logo-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.client-logo {
  height: 70px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--brand-cyan));
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logo-track {
    gap: 2rem;
  }

  .client-logo {
    height: 30px;
  }
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-cyan);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  box-shadow: 0 0 20px var(--brand-glow);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.price {
  font-size: 3rem;
  /* Larger price */
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff, var(--brand-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid transparent;
  width: 100%;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.price-card .btn-primary {
  width: 100%;
  /* Full width button for featured */
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 0;
  }

  .nav-wrap {
    padding: 0 1rem;
  }

  /* Mobile Menu */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 10px;
  }

  .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
  }

  /* Hamburger Animation */
  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active .bar:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    transition: right 0.4s var(--ease-out-expo);
    z-index: 100;
  }

  .nav-list.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-link {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1.5rem;
  }

  /* Typography & Layout */
  .hero-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .glass-card {
    padding: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}