* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
  color: #2563eb;
}
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
nav a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: #2563eb;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.lang-switch a {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  color: #9ca3af;
}
.lang-switch a.active {
  color: #2563eb;
  background: #dbeafe;
}
.btn-primary {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-secondary {
  background: white;
  color: #4b5563;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid #d1d5db;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background: #f9fafb;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  padding: 8rem 1.5rem 5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #f9fafb 100%);
}
.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  color: #2563eb;
}
.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-buttons .btn-primary {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}
.dashboard-preview {
  margin-top: 4rem;
  position: relative;
}
.dashboard-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, white, transparent, transparent);
  z-index: 10;
  pointer-events: none;
}
.dashboard {
  background: #111827;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #1f2937;
}
.dashboard-header {
  background: #1f2937;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #374151;
}
.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }
.dashboard-content {
  padding: 2rem;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.stat-label {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.stat-value {
  color: white;
  font-size: 2rem;
  font-weight: 700;
}
.stat-change {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.stat-change.positive { color: #4ade80; }
.stat-change.neutral { color: #9ca3af; }

section {
  padding: 5rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
}

/* How it works */
#how-it-works {
  background: #f9fafb;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #2563eb;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: #4b5563;
}

/* Features */
#features {
  background: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s;
  background: white;
}
.feature-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2563eb;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon {
  background: #2563eb;
  color: white;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #4b5563;
  line-height: 1.7;
}

/* CGNAT callout */
#cgnat {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%);
  color: white;
}
.cgnat-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.cgnat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #bfdbfe;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#cgnat h2 {
  color: white;
}
#cgnat p.cgnat-body {
  font-size: 1.125rem;
  color: #dbeafe;
  margin-bottom: 2rem;
}
.cgnat-points {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.cgnat-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.cgnat-points .check-icon {
  color: #4ade80;
}

/* Benefits */
#benefits {
  background: #f9fafb;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.benefits-list {
  list-style: none;
  margin: 2rem 0;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #374151;
}
.check-icon {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefit-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.benefit-card-content {
  display: flex;
  gap: 1rem;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon.green { background: #dcfce7; color: #16a34a; }
.benefit-icon.blue { background: #dbeafe; color: #2563eb; }
.benefit-icon.orange { background: #fed7aa; color: #ea580c; }
.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.benefit-card p {
  color: #4b5563;
}

/* Pricing */
#pricing {
  background: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 90rem;
  margin: 0 auto;
}
.pricing-card {
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  background: white;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  background: #2563eb;
  color: white;
  border: 4px solid #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.popular-badge {
  background: white;
  color: #2563eb;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.pricing-tagline {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.price-period {
  opacity: 0.7;
  font-size: 1.125rem;
}
.pricing-card.popular .price-period { color: #bfdbfe; }
.device-count {
  margin-bottom: 1.5rem;
}
.pricing-card.popular .device-count { color: #bfdbfe; }
.pricing-card:not(.popular) .device-count { color: #4b5563; }
.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.features-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.pricing-card.popular .features-list li { color: #bfdbfe; }
.pricing-card:not(.popular) .features-list li { color: #374151; }
.pricing-card button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}
.pricing-card.popular button { background: white; color: #2563eb; }
.pricing-card.popular button:hover { background: #eff6ff; }
.pricing-card:not(.popular) button { background: #2563eb; color: white; }
.pricing-card:not(.popular) button:hover { background: #1d4ed8; }
.enterprise-banner {
  max-width: 90rem;
  margin: 2.5rem auto 0;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.enterprise-banner h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.enterprise-banner p {
  color: #4b5563;
}
.enterprise-banner .btn-primary {
  flex-shrink: 0;
  padding: 0.85rem 1.75rem;
}
.enterprise-banner.partner-banner {
  background: #f0fdf4;
  border-color: #bbf7d0;
  margin-top: 1.5rem;
}

/* FAQ */
#faq {
  background: #f9fafb;
}
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: #4b5563;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  text-align: center;
}
.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.cta p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.cta-buttons .btn-primary:hover { background: #eff6ff; }
.btn-transparent {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid white;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-transparent:hover { background: #1d4ed8; }

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-icon { color: #3b82f6; }
.footer-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}
footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* WhatsApp float */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float { margin-top: 16px; }

/* Contact page */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
label { color: #334155; font-weight: 600; margin-bottom: 0.5rem; }
input, textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
textarea { resize: none; min-height: 150px; }
button[type="submit"] { width: 100%; padding: 1rem; font-size: 1.125rem; }
.form-feedback { font-size: 0.95rem; }
.form-feedback.success { color: #16a34a; }
.form-feedback.error { color: #dc2626; }

/* Legal page */
.legal-body {
  max-width: 48rem;
  margin: 0 auto;
  color: #374151;
}
.legal-body a { color: #2563eb; }

/* Blog */
.blog-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
a.blog-tag,
span.blog-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
a.blog-tag:hover,
a.blog-tag.active {
  background: #dbeafe;
  color: #1d4ed8;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: white;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card p {
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
}
.blog-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
}
.blog-avatar-sm { width: 28px; height: 28px; }
.blog-avatar-lg { width: 64px; height: 64px; }
.blog-avatar img,
.blog-avatar svg { width: 100%; height: 100%; }
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}
.blog-pagination a { color: #2563eb; text-decoration: none; font-weight: 600; }
.blog-pagination a:hover { text-decoration: underline; }
.blog-pagination span { color: #6b7280; }

.blog-post-hero {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #f9fafb 100%);
}
.blog-post-hero-inner { max-width: 48rem; margin: 0 auto; }
.blog-back-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.blog-back-link:hover { text-decoration: underline; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.blog-post-hero h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.blog-byline { display: flex; align-items: center; gap: 0.85rem; }
.blog-byline-text { display: flex; flex-direction: column; font-size: 0.9rem; }
.blog-byline-text span { color: #6b7280; margin-top: 0.15rem; }

.blog-post-body { background: white; }
.blog-post-body-inner { max-width: 48rem; margin: 0 auto; }
.blog-prose { color: #374151; font-size: 1.05rem; line-height: 1.8; }
.blog-prose p { margin-bottom: 1.25rem; }
.blog-prose ul, .blog-prose ol { margin: 0 0 1.25rem 1.5rem; }
.blog-prose li { margin-bottom: 0.5rem; }
.blog-prose code {
  background: #f3f4f6;
  color: #b91c1c;
  padding: 0.15rem 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.9em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
.blog-prose pre {
  background: #111827;
  color: #e5e7eb;
  padding: 1.25rem 1.5rem;
  border-radius: 0.6rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.blog-prose pre code { background: none; color: inherit; padding: 0; }
.blog-post-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1.25rem; }
.blog-steps { margin-bottom: 1rem; }
.blog-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
}
.blog-step:first-child { border-top: none; }
.blog-step .step-number { flex-shrink: 0; margin-bottom: 0; }
.blog-step-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.blog-step-content .blog-prose { font-size: 1rem; }
.blog-monitik-callout {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2.5rem 0;
}
.blog-monitik-callout h2 { margin-top: 0; font-size: 1.4rem; }
.blog-author-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-top: 3rem;
}
.blog-author-box strong { display: block; font-size: 1.05rem; }
.blog-author-role { display: block; color: #2563eb; font-size: 0.85rem; font-weight: 600; margin: 0.15rem 0 0.5rem; }
.blog-author-box p { color: #4b5563; font-size: 0.95rem; }

/* Mobile */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
  }
  nav ul.open { display: flex; }
  .mobile-menu-btn { display: block; }
  h1 { font-size: 2.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  section { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .enterprise-banner { flex-direction: column; text-align: center; }
  .blog-post-hero { padding: 6rem 1.5rem 2rem; }
  .blog-post-hero h1 { font-size: 1.85rem; }
  .blog-step { flex-direction: column; gap: 0.75rem; }
  .blog-author-box { flex-direction: column; }
}
