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

:root {
  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-tertiary: #141414;
  
  --color-gold: #f59e0b;
  --color-amber: #d97706;
  --color-orange: #ea580c;
  --color-dark-gold: #78350f;
  
  --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  --gradient-gold-dark: linear-gradient(135deg, var(--color-dark-gold) 0%, #1c1917 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #525252;
  
  --border-color: #1a1a1a;
  --border-hover: #333333;
  --border-gold: rgba(245, 158, 11, 0.3);
  
  --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.05);
  --shadow-gold-hover: 0 0 40px rgba(245, 158, 11, 0.12);
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', var(--font-sans);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.section {
  padding: 7rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--gradient-gold);
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: var(--bg-primary);
  border-radius: 0.25rem;
}

.logo-icon::after {
  content: '⚡';
  position: relative;
  font-size: 0.85rem;
  -webkit-text-fill-color: initial;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #050505;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Minimalist Tech Card */
.tech-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.tech-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

/* Bento Grid Layout System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.bento-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-row-2 {
  grid-row: span 2;
}

/* Hero Section */
.hero {
  padding: 9rem 0 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.75rem;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--text-primary);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--color-gold);
  filter: blur(90px);
  opacity: 0.12;
  z-index: 0;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.speed-dial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.speed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speed-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.speed-bar-bg {
  flex-grow: 1;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  margin: 0 1.25rem;
  position: relative;
  overflow: hidden;
}

.speed-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  transition: width 2s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.speed-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-gold);
  min-width: 55px;
  text-align: right;
}

/* Bento Features */
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Pricing Grid */
.pricing-header {
  margin-bottom: 4rem;
}

.pricing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.3rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.pricing-toggle-btn {
  background: transparent;
  border: none;
  padding: 0.45rem 1.25rem;
  border-radius: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pricing-toggle-btn.active {
  background: var(--gradient-gold);
  color: #050505;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
}

.pricing-card.popular {
  border-color: var(--color-gold);
  background: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.04) 0%, transparent 50%), var(--bg-secondary);
}

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gradient-gold);
  color: #050505;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  margin-top: 1.25rem;
}

.plan-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--text-primary);
  line-height: 1;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-feature-item::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
}

.plan-feature-item.disabled {
  color: var(--text-muted);
}

.plan-feature-item.disabled::before {
  content: '✗';
  color: #737373;
}

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

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.article-title-link:hover {
  color: var(--color-gold);
}

.article-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.article-link:hover {
  gap: 0.5rem;
}

/* Testimonials / Bento Reviews Grid */
.reviews-grid-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.review-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  padding: 1px;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.author-role {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* Left-Right Split Column FAQ Layout */
.faq-split-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.faq-split-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 7rem;
  height: fit-content;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.1rem;
  color: var(--color-gold);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-item.active {
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* Footer */
.footer {
  background: #020202;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 1.25rem 0;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Article Page Layout Styles */
.article-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.article-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: center;
  text-transform: uppercase;
}

.article-header-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
}

.article-body {
  max-width: 800px;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #d4d4d4;
  line-height: 1.7;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.25rem 0 1.25rem;
  color: var(--text-primary);
  border-left: 3px solid var(--color-gold);
  padding-left: 0.75rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.85rem;
  color: var(--text-primary);
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  color: #d4d4d4;
}

.article-body li {
  margin-bottom: 0.4rem;
}

.article-body strong {
  color: var(--text-primary);
}

.article-cta-box {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.article-cta-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.article-cta-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-item-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sidebar-item-link:hover {
  color: var(--color-gold);
}

.sidebar-keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sidebar-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  color: var(--text-secondary);
}

.sidebar-tag:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.back-to-blog:hover {
  color: var(--color-gold);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-col-2 {
    grid-column: span 1;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-split-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .faq-split-info {
    position: static;
    height: auto;
  }
  
  .article-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .article-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 4.5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4.5rem);
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-color);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid-bento {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .article-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
