/* ============================================
   Stateway Landing Page — Stylesheet
   Palette: Black, Orange, Gold
   ============================================ */

/* ── CSS Variables ── */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #141414;
  --bg-tertiary: #1A1A1A;
  --bg-card: #111111;

  --text-primary: #FFFFFF;
  --text-secondary: #A3A3A3;
  --text-muted: #737373;

  --accent-orange: #F97316;
  --accent-gold: #D2940A;
  --accent-gold-light: #F5C400;

  --border: #262626;
  --border-hover: #404040;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 32px rgba(249, 115, 22, 0.12);

  --announcement-height: 36px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
}
.section-prose p { margin-bottom: 16px; }
.section-prose p:last-child { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold-light);
  border: 1.5px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: rgba(210, 148, 10, 0.08);
  box-shadow: 0 0 16px rgba(210, 148, 10, 0.15);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ── Announcement Bar ── */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
  color: #000;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
}

/* ── Header / Nav ── */
.header {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a {
  transition: color 0.2s;
}

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

.nav-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: calc(140px + var(--announcement-height)) 0 100px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(210, 148, 10, 0.04), transparent),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Code block */
.code-block {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.82rem;
  line-height: 1.65;
  overflow-x: auto;
  position: relative;
}

.code-block::before {
  content: attr(data-lang);
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.code-block .comment { color: #6b7280; }
.code-block .string  { color: #a3e635; }
.code-block .key     { color: #60a5fa; }
.code-block .val     { color: #f472b6; }
.code-block .cmd     { color: var(--accent-orange); }

/* ── Sections base ── */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

/* ── Problem cards ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}

/* Centered variant — for a grid with an odd card count: the last, partial
   row centers instead of hanging left. */
.problem-grid--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.problem-grid--center > .problem-card {
  flex: 0 1 100%;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 16px;
}

.step {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #000;
  font-size: 1.4rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 0 auto;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
  font-size: 1.1rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Architecture / Stack ── */
.arch-visual {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  text-align: center;
}

.arch-box strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.arch-box span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.arch-arrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ── Testimonial ── */
.testimonial {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

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

.testimonial blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial cite strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── CTA Section ── */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(249, 115, 22, 0.08), transparent),
    var(--bg-primary);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ── Progressive adoption ── */
.progressive-steps {
  max-width: 760px;
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: prog;
}
.progressive-steps li {
  position: relative;
  counter-increment: prog;
  padding: 18px 0 18px 60px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
}
.progressive-steps li:last-child { border-bottom: none; }
.progressive-steps li::before {
  content: counter(prog);
  position: absolute;
  left: 0;
  top: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
}
.soon-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(245, 196, 0, 0.12);
  border: 1px solid rgba(245, 196, 0, 0.3);
  color: var(--accent-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-orange);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter input:focus {
  border-color: var(--accent-gold);
}

.footer-newsletter input::placeholder {
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--accent-orange);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-hero {
  padding: calc(140px + var(--announcement-height)) 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(249, 115, 22, 0.06), transparent),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px var(--accent-gold), var(--shadow-glow);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-card.soon {
  opacity: 0.7;
}

.pricing-card.enterprise .price {
  color: var(--accent-gold-light);
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 4px;
}

.pricing-card .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card .note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.badge-soon {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 8px;
  vertical-align: middle;
}

.sops-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: -12px 0 32px;
  line-height: 1.6;
}

.sops-note a {
  color: var(--accent-gold-light);
  text-decoration: none;
}

.sops-note a:hover {
  text-decoration: underline;
}

.enterprise-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.enterprise-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.enterprise-inner h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin: 0;
}

.enterprise-inner p {
  color: var(--text-secondary);
  margin: 0;
  max-width: 500px;
}

.enterprise-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.enterprise-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .enterprise-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .enterprise-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ */
.faq-section {
  padding: 60px 0 100px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4:hover {
  color: var(--accent-orange);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   DOCS PAGE (placeholder)
   ============================================ */

.docs-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(210, 148, 10, 0.05), transparent),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.docs-hero .icon-lg {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.docs-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.docs-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
}

.docs-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.docs-form {
  max-width: 420px;
  margin: 0 auto;
}

.docs-form p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.docs-form .footer-newsletter {
  justify-content: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Grid overflow fix (mobile horizontal scroll) ── */
.hero-content,
.hero-code {
  min-width: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
  :root {
    --announcement-height: 54px;
  }
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-visual {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .arch-box {
    flex: 1 1 200px;
    max-width: 260px;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu.active {
    display: none;
  }

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

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid--center > .problem-card {
    flex-basis: calc(50% - 10px);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card.featured {
    transform: scale(1.03);
  }

  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .problem-grid--center > .problem-card {
    flex-basis: calc(25% - 15px);
  }

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