:root {
  --primary: #4255ff;
  --primary-dark: #2d3fe0;
  --text: #000000;
  --text-soft: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: rgba(0, 0, 0, 0.1);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  overflow-x: hidden;
}

/* Top Banner */
.top-banner {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.banner-content {
  display: flex;
  width: 200%;
  animation: scroll 30s linear infinite;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.banner-text {
  flex: 0 0 50%;
  white-space: nowrap;
  padding: 0 32px;
}

.banner-content strong {
  background: var(--primary);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0 4px;
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex: 1;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.03em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.main-nav a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.btn {
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn.primary {
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.btn.primary:hover {
  background: #111827;
}

.btn.secondary {
  background: #000000;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #333333;
}

.nav-cta {
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  box-shadow: none;
}

.nav-cta:hover {
  background: #111827;
}

.btn.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero Sections – DreamyUni style */
.hero {
  position: relative;
  padding: 72px 60px 96px;
  max-width: 1120px;
  margin: 32px auto 40px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, #ffd2e0 0, #ffc6e0 24%, transparent 60%),
    radial-gradient(circle at top right, #ffe0b5 0, #ffd4a3 26%, transparent 60%),
    radial-gradient(circle at bottom, #ffd9c2 0, #ffcab1 35%, transparent 70%),
    linear-gradient(180deg, #ffdcec, #ffe4c7);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
  color: #000000;
}

.hero-logo {
  margin: 16px auto 28px;
  max-width: 140px;
  display: block;
}

.registration-hero .hero-logo {
  margin-top: 28px;
  margin-bottom: 40px;
}

.hero-title span {
  display: block;
}

.hero-lead {
  font-size: 18px;
  color: #2d3748;
  margin: 0 0 28px;
}

.registration-hero {
  margin-top: 0;
}

.hero-cta {
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.google-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background:
    conic-gradient(from 45deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
}

.hero-avatars {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
}

.hero-avatars-stack {
  display: flex;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #ffb4c6, #ff7fa3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.hero-avatar + .hero-avatar {
  margin-left: -10px;
  background: linear-gradient(135deg, #a5b4ff, #6366f1);
}

.hero-avatar + .hero-avatar + .hero-avatar {
  background: linear-gradient(135deg, #6ee7b7, #10b981);
}

.hero-illustrations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 90px;
  height: 55px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 48px;
  height: 48px;
  top: -20px;
  left: 8px;
}

.cloud::after {
  width: 54px;
  height: 54px;
  top: -18px;
  right: 2px;
}

.cloud-1 {
  top: 18%;
  left: 9%;
}

.cloud-2 {
  top: 14%;
  right: 10%;
}

.cloud-3 {
  bottom: 26%;
  right: 25%;
  transform: scale(0.8);
}

.hero-landscape {
  position: absolute;
  bottom: -18px;
  left: -10%;
  right: -10%;
  height: 120px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 70%),
    linear-gradient(180deg, #ffd9c2, #ffd0b0);
}

/* Post-hero headline section */
.tools-hero {
  padding: 96px 24px 100px;
  background: linear-gradient(180deg, #fdf5f7, #fff7ed);
}

.tools-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tools-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.tools-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.tools-title,
.section-header h2,
.faq-header h2 {
  margin: 0 0 40px;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.tools-line {
  display: block;
}

.tools-title em {
  font-style: italic;
}

.tools-line-underline {
  position: relative;
  display: inline-block;
}

.tools-underline {
  position: absolute;
  left: -4px;
  right: 18px;
  bottom: -6px;
  height: 4px;
  background: #4f46e5;
  border-radius: 999px;
}

.tools-dot {
  color: #4f46e5;
}

.tools-cta {
  margin-top: 8px;
}

/* Comparison section – old vs new */
.why-section {
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, #fdf5f7, #ffffff);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0 0 40px;
}

.why-heading-strike {
  display: block;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: #9ca3af;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: #f9fafb;
  border-radius: 16px;
  border: 2px solid #d1d5db;
  padding: 24px 24px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.why-card-new {
  background: #ffffff;
  border-color: #111827;
  box-shadow: 8px 12px 0 #14b8a6;
}

.why-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #374151;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.why-tag-dark {
  background: #111827;
  color: #f9fafb;
}

.why-title {
  margin: 14px 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.why-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 10px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.why-list-bad li::before,
.why-list-good li::before {
  display: inline-block;
  margin-right: 8px;
  font-weight: 700;
}

.why-list-bad li::before {
  content: "✕";
  color: #ef4444;
}

.why-list-good li::before {
  content: "✔";
  color: #10b981;
}

.why-points {
  margin: 4px 0 10px 18px;
  padding: 0;
  list-style: disc;
  font-size: 14px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.registration-section {
  padding-top: 40px;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.registration-copy p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.registration-points {
  list-style: disc;
  margin: 0;
  margin-left: 18px;
  padding: 0;
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-section {
  padding-top: 32px;
  padding-bottom: 40px;
}

.gallery-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.gallery-strip img {
  flex: 0 0 260px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .gallery-strip {
    gap: 12px;
  }

  .gallery-strip img {
    flex-basis: 220px;
    height: 130px;
  }
}

.video-section {
  text-align: center;
}

.video-inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-lead {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 20px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.slot-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.slot-card {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid #111827;
  box-shadow: 8px 12px 0 #14b8a6;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slot-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.slot-meta {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--text-soft);
}

.registration-form {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-bottom: 18px;
}

.form-subheading {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 12px;
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0;
}

/* Sets Grid */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.set-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease;
}

.set-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.set-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  background: rgba(66, 85, 255, 0.1);
  color: var(--primary);
}

.set-badge.purple {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.set-badge.teal {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.set-badge.gold {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.set-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}

.set-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 16px;
  line-height: 1.6;
}

.set-meta {
  font-size: 13px;
  color: var(--text-light);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-card .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.pricing-card > p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price-main {
  font-size: 36px;
  font-weight: 700;
}

.price-sub {
  font-size: 16px;
  color: var(--text-light);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-list li {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

/* FAQ – DreamyUni style */
.section-faq {
  padding-top: 80px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, #fdf5ff, #ffeef5);
  max-width: 100%;
  margin: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 3px solid #000000;
  padding: 0;
  overflow: hidden;
}

.faq-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #ffd54a;
}

.faq-card-primary::after {
  background: #ffd54a;
}

.faq-card-yellow::after {
  background: #ffd54a;
}

.faq-card-pink::after {
  background: #ff5c8a;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.faq-answer {
  padding: 18px 24px 22px;
  border-top: 2px solid #000000;
  font-size: 15px;
  color: #4b5563;
}

/* Footer */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  color: var(--text);
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-brand span:last-child {
  font-size: 14px;
  color: var(--text-light);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact span {
  font-size: 14px;
  color: var(--text-soft);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  font-size: 18px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 960px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    padding: 12px 16px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 10px;
    padding: 10px 10px 12px;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  }

  .main-nav a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
  }

  .main-nav a:hover {
    background: #111827;
    color: #ffffff;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .hero {
    margin: 24px 16px 32px;
    padding: 56px 20px 72px;
  }

  .hero-title {
    font-size: 46px;
  }

  .tools-title,
  .section-header h2,
  .faq-header h2 {
    font-size: 40px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .registration-hero {
    margin: 32px 12px 28px;
    padding: 36px 18px 48px;
    border-radius: 24px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-avatars {
    flex-direction: column;
  }

  .tools-hero,
  .why-section,
  .section,
  .section-faq {
    padding: 56px 16px 64px;
  }

  .tools-title,
  .section-header h2,
  .faq-header h2 {
    font-size: 30px;
  }

  .tools-line {
    display: block;
  }

  .why-heading {
    font-size: 30px;
  }

  .sets-grid,
  .features-grid,
  .pricing-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    gap: 28px;
  }
}
