/* Global Theme ----------------------------------------------------------- */
:root {
  --bg-primary: #040507;
  --bg-secondary: #0d0f16;
  --bg-panel: rgba(13, 15, 22, 0.85);
  --text-primary: #f5f5f0;
  --text-muted: #b1b5c4;
  --accent: #f5ff4a;
  --accent-soft: rgba(245, 255, 74, 0.12);
  --gradient: linear-gradient(135deg, #121524, #05070b 55%, #0e141f);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --phi: 1.618;
  --space-base: clamp(1.25rem, 1.25vw, 1.8rem);
  --space-lg: calc(var(--space-base) * var(--phi));
  --space-xl: calc(var(--space-lg) * var(--phi));
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: radial-gradient(circle at top, rgba(245, 255, 74, 0.08), transparent 45%), var(--bg-primary);
  line-height: 1.6;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.04) 0, transparent 45%),
    radial-gradient(circle at 75% 0%, rgba(111, 182, 255, 0.05) 0, transparent 50%);
  opacity: 0.7;
}

body::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><g fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"><path d="M0 100h200M100 0v200"/><circle cx="100" cy="100" r="98"/></g></svg>');
  opacity: 0.4;
}

main {
  margin-top: 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section > .container {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-base) * var(--phi));
  align-items: stretch;
}

/* Navigation ------------------------------------------------------------- */
.main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-nav.scrolled {
  background: rgba(4, 5, 7, 0.95);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

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

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.35rem;
  text-transform: uppercase;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  color: var(--text-muted);
  transition: var(--transition);
  padding-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  border-bottom: 1px solid rgba(245, 255, 74, 0.35);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.3rem;
}

/* Buttons --------------------------------------------------------------- */
.primary-pill,
.ghost-pill {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.primary-pill {
  background: var(--accent);
  color: #05070b;
  box-shadow: 0 10px 30px rgba(245, 255, 74, 0.25);
}

.primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(245, 255, 74, 0.35);
}

.ghost-pill {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-primary);
  background: transparent;
}

.ghost-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-group.center {
  justify-content: center;
}

.w-full {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Sections -------------------------------------------------------------- */
.section {
  padding: calc(var(--space-lg) * 2) 0;
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 255, 74, 0.04), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(74, 242, 255, 0.04), transparent 55%);
  opacity: 0.6;
  z-index: -2;
}

.section::after {
  content: '';
  position: absolute;
  inset: auto 10% 0 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section:last-of-type::after {
  display: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: min(3rem, var(--space-lg));
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0.5rem auto 0;
}

.section-footnote {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  margin-top: 2rem;
  color: var(--text-muted);
}

/* Hero ------------------------------------------------------------------ */
.hero-section {
  padding: 6rem 0 4rem;
  background: var(--gradient);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 255, 74, 0.12), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(111, 182, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 10% 5% 5% 5%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.618fr);
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-copy .lead {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-stats article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-stats article:hover::after {
  opacity: 1;
}

.hero-stats article::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 200%;
  left: -80%;
  top: -50%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(20deg);
  transition: transform 0.8s ease;
}

.hero-stats article:hover::before {
  transform: translateX(250%) rotate(20deg);
}

.hero-stats .label {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.hero-stats .value {
  font-size: 2.5rem;
  font-family: var(--font-display);
  margin: 0.3rem 0;
}

.hero-stats .meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-panel {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  animation: floatOrbit 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 255, 74, 0.3), transparent, rgba(74, 242, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(245, 255, 74, 0.15), transparent 60%);
  opacity: 0.5;
  z-index: -1;
}

@keyframes floatOrbit {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal[data-delay='1'] {
  transition-delay: 0.12s;
}

.reveal[data-delay='2'] {
  transition-delay: 0.24s;
}

.hero-panel h3 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.hero-panel p,
.hero-panel ul {
  color: var(--text-muted);
}

.hero-panel ul {
  list-style: none;
  padding: 0;
}

.hero-panel li {
  margin: 0.75rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

/* Cards ----------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: calc(var(--space-base) * var(--phi));
  width: 100%;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plans-section .card-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  align-self: stretch;
  justify-items: stretch;
  gap: calc(var(--space-base) * var(--phi) * 1.2);
}

.plans-section::before {
  content: '';
  position: absolute;
  inset: 5% 10%;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(74, 242, 255, 0.08), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.plans-section > .container {
  position: relative;
  z-index: 1;
}

.glow-card,
.plan-card,
.case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: calc(var(--space-base) * var(--phi));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glow-card:hover,
.plan-card:hover,
.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 255, 74, 0.35);
}

.glow-card::after,
.plan-card::after,
.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(245, 255, 74, 0.08), rgba(74, 242, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glow-card:hover::after,
.plan-card:hover::after,
.case-card:hover::after {
  opacity: 1;
}

.plan-card h3 {
  font-size: 2.4rem;
  margin: 0.3rem 0 1rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.plan-card li {
  color: var(--text-muted);
  margin: 0.6rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.plan-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}


.plan-label {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.plan-card.highlight {
  background: linear-gradient(160deg, rgba(245, 255, 74, 0.1), rgba(74, 242, 255, 0.08));
  border-color: rgba(245, 255, 74, 0.35);
  box-shadow: 0 25px 55px rgba(8, 10, 20, 0.55);
}

.case-card .label {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.case-card .meta {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

.services-section {
  background: radial-gradient(circle at top, rgba(245, 255, 74, 0.04), transparent 55%);
}

.wins-section {
  background: radial-gradient(circle at 60% 20%, rgba(74, 242, 255, 0.08), transparent 60%);
}

.method-section {
  background: radial-gradient(circle at 40% 20%, rgba(245, 255, 74, 0.05), transparent 60%);
}

.case-section {
  background: linear-gradient(180deg, rgba(3, 4, 6, 0.92), rgba(5, 7, 11, 0.98));
}

.case-card,
.glow-card {
  backdrop-filter: blur(12px);
}

/* Method --------------------------------------------------------------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.method-grid article {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
}

/* Contact -------------------------------------------------------------- */
.contact-section {
  background: #05070b;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
}

.reply-card,
.email-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.reply-card::after,
.email-card::after,
.contact-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 255, 74, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.reply-card:hover::after,
.email-card:hover::after,
.contact-form-card:hover::after {
  opacity: 1;
}

.reply-card:hover,
.email-card:hover,
.contact-form-card:hover {
  transform: translateY(-6px);
}

.reply-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.reply-card li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}

.reply-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  border-radius: 50%;
}

.reply-card__divider {
  margin: 1.25rem 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.reply-card__hint {
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-form-card {
  background: rgba(13, 15, 22, 0.9);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__panel {
  max-width: 420px;
  width: 100%;
  background: rgba(8, 10, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.contact-modal__panel h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-modal__panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal__panel {
  width: min(520px, 100%);
  background: rgba(6, 8, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.6);
}

.checkout-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.checkout-modal__price {
  color: var(--text-muted);
  margin-top: -0.3rem;
  margin-bottom: 1.5rem;
}

.checkout-info-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-info-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--accent);
  display: none;
}

.checkout-info-status.visible {
  display: block;
}

/* Footer --------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  background: #030406;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-grid p {
  color: var(--text-muted);
}

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

.footer-grid li {
  margin-bottom: 0.5rem;
}

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

.footer-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-container {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .logo img {
    height: 30px;
  }

  .nav-links {
    flex: 0 1 auto;
    justify-content: flex-start;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 7, 0.95);
    flex-direction: column;
    padding: 6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .desktop-cta {
    display: none;
  }

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

  .section::after {
    inset: auto 5% 0 5%;
  }
}

@media (max-width: 640px) {
  main {
    margin-top: 4.5rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
    align-items: center;
  }

  .logo {
    flex: 0 0 auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-section {
    padding: 5rem 0 3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero-panel {
    padding: 1.75rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero-grid {
    gap: var(--space-base);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .plan-card {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .cta-group {
    width: 100%;
  }

  .contact-modal__panel,
  .checkout-modal__panel {
    padding: 1.5rem;
  }

  .checkout-modal__panel h3 {
    font-size: 1.5rem;
  }

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