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

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

:root {
  --cream: #fcf8f2;
  --off-white: #fffdf9;
  --black: #201515;
  --charcoal: #36342e;
  --gray: #939084;
  --sand: #c5c0b1;
  --light-sand: #eceae3;
  --orange: #ff4f00;
  --font: 'Onest', Helvetica, Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 242, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 192, 177, 0.2);
  height: 64px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 21px;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { background: var(--light-sand); }
.nav-links a.active { font-weight: 700; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-phone:hover { color: var(--orange); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-nav-cta:hover { background: #d94200; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 10px;
  color: var(--black);
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 48px;
}

.label-upper {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

/* ===== TYPOGRAPHY ===== */
.display-hero {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--black);
}

.display-hero em {
  font-style: normal;
  color: var(--orange);
}

.section-heading {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: var(--black);
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-bottom: 10px;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal);
  letter-spacing: -0.1px;
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 16px;
}

.btn-orange:hover { background: #d94200; }

.btn-dark {
  background: var(--black);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 8px;
}

.btn-dark:hover { background: var(--charcoal); }

.btn-light {
  background: var(--light-sand);
  color: var(--charcoal);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 15px;
}

.btn-light:hover { background: var(--sand); color: var(--black); }

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.btn-whatsapp:hover { background: #1ebe5b; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 0;
  background: rgba(254, 252, 249, 0.5);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  padding-bottom: 72px;
}

.hero-image {
  position: relative;
  margin-right: calc(-32px - (100vw - 1200px) / 2);
}

.hero-image img {
  width: 100%;
  max-width: 680px;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #ede8de;
  border: none;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero h1 { margin-bottom: 22px; }

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 580px;
  margin-bottom: 36px;
  letter-spacing: -0.2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats {
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--sand);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  letter-spacing: -2px;
}

.stat-number em {
  color: var(--orange);
  font-style: normal;
}


.stat-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--light-sand);
  border: 1px solid var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-item {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
}

.problem-icon { display: flex; align-items: center; width: 32px; height: 32px; color: var(--charcoal); margin-bottom: 16px; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-item {
  padding: 36px 32px;
  background: #fff;
  border-radius: 16px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 24px;
}


.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card .price-features {
  flex: 1;
}

.price-card.featured {
  background: var(--black);
  border-color: var(--black);
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.price-card.featured .price-label { color: var(--sand); }

.price-amount {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 4px;
}

.price-card.featured .price-amount { color: var(--cream); }

.price-per {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 10px;
}

.price-desc {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-sand);
  margin-bottom: 20px;
}

.price-card.featured .price-desc {
  color: var(--sand);
  border-color: rgba(197,192,177,0.25);
}

.price-features { list-style: none; margin-bottom: 28px; }

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 9px 0;
  border-bottom: 1px solid var(--light-sand);
  line-height: 1.4;
}

.price-feature:last-child { border-bottom: none; }

.price-card.featured .price-feature {
  color: var(--cream);
  border-color: rgba(197,192,177,0.15);
}

.price-feature::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--orange);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ===== LEAD FORM ===== */
.lead-section {
  padding: 80px 0;
  background: var(--black);
}

.cta-section {
  padding: 80px 0;
  background: var(--black);
}

.cta-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: var(--sand);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lead-form-box {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 64px;
  text-align: center;
}

.lead-form-box .label-upper { color: var(--sand); }

.lead-form-box h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.96;
  color: var(--cream);
  margin-bottom: 14px;
}

.lead-form-box p {
  font-size: 18px;
  color: var(--sand);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.form-row {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.form-input {
  flex: 1;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(197,192,177,0.25);
  border-radius: 5px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}

.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: rgba(197,192,177,0.5); }

.form-privacy {
  font-size: 12px;
  color: var(--sand);
}

.lead-form-box .form-privacy a { color: var(--sand); }

.form-success {
  display: none;
  padding: 18px 24px;
  background: var(--light-sand);
  border: 1px solid var(--sand);
  border-radius: 16px;
  font-weight: 600;
  color: var(--black);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto;
}

/* ===== INLINE SUBSCRIPTION BLOCK ===== */
.inline-subscribe {
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 40px 0;
}

.inline-subscribe-text h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--black);
  margin-bottom: 6px;
}

.inline-subscribe-text p {
  font-size: 14px;
  color: var(--charcoal);
}

.inline-subscribe-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  min-width: 360px;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.blog-card:hover { border-color: var(--charcoal); }

.blog-card-img {
  height: 160px;
  background: var(--light-sand);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.blog-card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  border-top: 1px solid var(--light-sand);
  padding-top: 14px;
}

.read-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

/* ===== ARTICLE ===== */
.article-header {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--sand);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}

.article-meta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.article-meta span { color: var(--sand); }

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 0 40px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--black);
  margin: 44px 0 16px;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 32px 0 12px;
  letter-spacing: -0.2px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
}

.article-body li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.highlight-box {
  background: var(--off-white);
  border: 1px solid var(--sand);
  border-left: 4px solid var(--orange);
  border-radius: 0 5px 5px 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.highlight-box p {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--black) !important;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

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

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  list-style: none;
  line-height: 1.4;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gray); flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }

.faq-a {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
  padding-bottom: 22px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(197,192,177,0.18);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197,192,177,0.18);
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.8px;
  display: block;
  margin-bottom: 14px;
}

.footer-logo span { color: var(--orange); }

.footer-tagline {
  font-size: 14px;
  color: var(--sand);
  line-height: 1.55;
  margin-bottom: 22px;
}

.footer-phone {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer-phone:hover { color: var(--orange); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(197,192,177,0.8);
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
}

.footer-legal a:hover { color: var(--sand); }

/* ===== TRUST BANNER ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon { flex-shrink: 0; display: flex; align-items: center; color: var(--charcoal); }

.trust-text { font-size: 14px; font-weight: 500; color: var(--charcoal); line-height: 1.4; }

.trust-text strong { display: block; color: var(--black); font-weight: 700; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--sand);
}

/* ===== ALERT BAR ===== */
.alert-bar {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 10px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.alert-bar em { color: var(--orange); font-style: normal; }

.alert-bar a { color: var(--orange); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-item { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 800px) {
  .btn-nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    padding: 12px;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 5px; }

  .display-hero { font-size: 36px; letter-spacing: -1.5px; }
  .section-heading { font-size: 26px; }
  .hero { padding: 48px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .hero-content { padding-bottom: 0; }
  .hero-image { margin-right: -20px; margin-left: -20px; }
  .hero-image img { max-width: 100%; border-radius: 0; }
  .section { padding: 56px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--sand); }
  .stat-item:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--sand); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

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

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

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

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

  .lead-form-box { padding: 40px 24px; }
  .form-row { flex-direction: column; }

  .inline-subscribe { flex-direction: column; }
  .inline-subscribe-form { min-width: auto; width: 100%; flex-direction: column; }

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

  .trust-bar { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-direction: column; gap: 8px; align-items: center; }

  .article-body { padding: 36px 0 28px; }
  .article-body h2 { font-size: 22px; margin-top: 32px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: none !important; padding-left: 0 !important; }
  .trust-bar { grid-template-columns: 1fr; }
}
