/* ============================================
   Clairvoyance Theme — CSS
   ============================================ */

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --brand:#1D6B52;--brand-light:#E8F5F0;--brand-mid:#B8E0D2;
  --accent:#E8913A;--accent-light:#FEF3E7;
  --text-dark:#1A2E28;--text-body:#3D5750;--text-muted:#6B8A82;
  --bg-page:#FAFBF9;--bg-card:#FFFFFF;--border:#E2EAE6;
  --font-display:'Playfair Display',Georgia,serif;
  --font-body:'DM Sans',system-ui,sans-serif;
  --radius:12px;--radius-sm:8px;
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text-body);line-height:1.65;background:var(--bg-page)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* Layout */
.container{max-width:960px;margin:0 auto;padding:0 24px}
.section{padding:4rem 0}

/* Header sticky */
#site-header{position:sticky;top:0;z-index:200;background:var(--bg-page);transition:box-shadow 0.25s}
#site-header.scrolled{box-shadow:0 2px 16px rgba(29,107,82,0.08)}

/* Nav */
.nav{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 0}
.logo{font-family:var(--font-display);font-size:22px;font-weight:500;color:var(--brand);letter-spacing:-0.3px}
.logo span{color:var(--accent)}
.nav-links{display:flex;gap:2rem;font-size:14px;color:var(--text-muted)}
.nav-links a:hover{color:var(--brand)}
.nav-mobile{display:none;background:none;border:none;cursor:pointer;padding:4px}
.nav-mobile svg{display:block}

/* Hero */
.hero{text-align:center;padding:4rem 0 3rem}
.hero-badge{display:inline-block;background:var(--brand-light);color:var(--brand);font-size:13px;font-weight:500;padding:7px 18px;border-radius:20px;margin-bottom:1.5rem;letter-spacing:0.2px}
.hero h1{font-family:var(--font-display);font-size:clamp(28px,5vw,42px);font-weight:400;color:var(--text-dark);line-height:1.25;margin-bottom:1.25rem}
.hero h1 em{font-style:italic;color:var(--brand)}
.hero p{font-size:16px;color:var(--text-muted);max-width:540px;margin:0 auto 2rem;line-height:1.75}
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff;font-family:var(--font-body);font-size:15px;font-weight:500;padding:13px 30px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:background 0.2s,transform 0.15s}
.btn-primary:hover{background:#15543F;transform:translateY(-1px)}
.btn-secondary{display:inline-flex;align-items:center;background:var(--bg-card);color:var(--text-body);font-family:var(--font-body);font-size:14px;padding:12px 24px;border-radius:var(--radius-sm);border:1px solid var(--border);cursor:pointer;transition:border-color 0.2s}
.btn-secondary:hover{border-color:var(--brand-mid)}
.hero-sub{display:block;margin-top:12px;font-size:13px;color:var(--text-muted)}

/* Promise */
.promise-box{background:var(--accent-light);border-radius:var(--radius);padding:1.5rem 1.75rem;display:flex;align-items:flex-start;gap:16px;border:1px solid #F5D9B8}
.promise-icon{flex-shrink:0;width:40px;height:40px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:2px}
.promise-text h3{font-size:15px;font-weight:500;color:var(--text-dark);margin-bottom:4px}
.promise-text p{font-size:14px;color:#8B6A40;line-height:1.65}

/* Section headers */
.section-label{font-size:12px;font-weight:500;color:var(--accent);letter-spacing:1.2px;text-transform:uppercase;margin-bottom:0.5rem}
.section-title{font-family:var(--font-display);font-size:clamp(22px,3.5vw,28px);font-weight:400;color:var(--text-dark);margin-bottom:0.5rem}
.section-subtitle{font-size:15px;color:var(--text-muted);margin-bottom:2.5rem;line-height:1.65;max-width:560px}

/* Steps */
.steps{display:flex;flex-direction:column;gap:0}
.step{display:flex;gap:18px;padding-bottom:2rem}
.step:last-child{padding-bottom:0}
.step-line{position:relative;display:flex;flex-direction:column;align-items:center}
.step-num{width:36px;height:36px;border-radius:50%;background:var(--brand-light);color:var(--brand);font-size:14px;font-weight:500;display:flex;align-items:center;justify-content:center;flex-shrink:0;z-index:1}
.step-connector{width:1.5px;background:var(--brand-mid);flex:1;margin-top:6px}
.step:last-child .step-connector{display:none}
.step-content h3{font-size:15px;font-weight:500;color:var(--text-dark);margin-bottom:4px;margin-top:7px}
.step-content p{font-size:14px;color:var(--text-muted);line-height:1.65}

/* Services */
.services-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.service-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:border-color 0.2s,transform 0.25s}
.service-card:hover{border-color:var(--brand-mid);transform:translateY(-3px)}
.service-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:0.85rem}
.service-card h3{font-size:15px;font-weight:500;color:var(--text-dark);margin-bottom:0.4rem}
.service-card p{font-size:13.5px;color:var(--text-muted);line-height:1.6}
.service-tag{display:inline-block;background:var(--brand-light);color:var(--brand);font-size:11.5px;font-weight:500;padding:4px 12px;border-radius:14px;margin-top:10px}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.1rem 1.35rem;cursor:pointer;transition:border-color 0.2s}
.faq-item:hover{border-color:var(--brand-mid)}
.faq-q{font-size:14.5px;font-weight:500;color:var(--text-dark);display:flex;justify-content:space-between;align-items:center}
.faq-arrow{color:var(--text-muted);font-size:18px;transition:transform 0.3s;flex-shrink:0;margin-left:12px}
.faq-a{font-size:14px;color:var(--text-muted);line-height:1.65;max-height:0;overflow:hidden;transition:max-height 0.4s ease,margin-top 0.3s ease;margin-top:0}
.faq-item.open .faq-a{max-height:250px;margin-top:12px}
.faq-item.open .faq-arrow{transform:rotate(45deg)}

/* Testimonial */
.testi-card{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:2rem;position:relative}
.testi-quote{font-family:var(--font-display);font-style:italic;font-size:17px;color:var(--text-dark);line-height:1.6;margin-bottom:1.5rem;padding-left:28px}
.testi-quote::before{content:'\201C';font-size:52px;color:var(--brand-mid);position:absolute;top:12px;left:20px;line-height:1}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-avatar{width:40px;height:40px;border-radius:50%;background:var(--accent-light);display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:500;color:var(--accent)}
.testi-name{font-size:14px;font-weight:500;color:var(--text-dark)}
.testi-role{font-size:12.5px;color:var(--text-muted)}

/* CTA */
.cta-box{background:var(--brand-light);border-radius:14px;padding:3rem 2rem;text-align:center;border:1px solid var(--brand-mid)}
.cta-box h2{font-family:var(--font-display);font-size:24px;font-weight:400;color:var(--text-dark);margin-bottom:0.6rem}
.cta-box p{font-size:15px;color:var(--text-muted);margin-bottom:1.5rem;line-height:1.65}
.cta-row{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.cta-free{font-size:12.5px;color:var(--text-muted);margin-top:12px}

/* Footer */
.footer{padding:2.5rem 0 1.5rem;text-align:center;font-size:13px;color:var(--text-muted);border-top:1px solid var(--border)}
.footer-links{display:flex;justify-content:center;gap:1.5rem;margin-bottom:8px}
.footer-links a:hover{color:var(--brand)}

/* Animations */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.animate{opacity:0;transform:translateY(20px)}
.animate.visible{animation:fadeUp 0.55s ease-out forwards}

/* ============================================
   Blog — listing
   ============================================ */
.blog-listing{padding:3rem 0}
.blog-header{margin-bottom:2.5rem}
.blog-header .section-title{margin-bottom:0.25rem}
.blog-grid{display:flex;flex-direction:column;gap:16px}

.blog-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem 1.75rem;transition:border-color 0.2s,transform 0.2s;display:flex;flex-direction:column;gap:8px}
.blog-card:hover{border-color:var(--brand-mid);transform:translateY(-2px)}
.blog-card-meta{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--text-muted)}
.blog-card-dot{width:3px;height:3px;background:var(--brand-mid);border-radius:50%;display:inline-block}
.blog-card h2{font-family:var(--font-display);font-size:18px;font-weight:400;color:var(--text-dark);line-height:1.35}
.blog-card h2 a:hover{color:var(--brand)}
.blog-card-excerpt{font-size:14px;color:var(--text-muted);line-height:1.65}
.blog-card-footer{display:flex;align-items:center;justify-content:space-between;margin-top:4px}
.blog-card-tags{display:flex;gap:6px;flex-wrap:wrap}
.blog-tag{display:inline-block;background:var(--brand-light);color:var(--brand);font-size:11.5px;font-weight:500;padding:3px 10px;border-radius:12px}
.blog-read-more{font-size:13px;color:var(--brand);font-weight:500;display:inline-flex;align-items:center;gap:4px}
.blog-read-more:hover{color:#15543F}
.blog-card-image{width:100%;height:200px;object-fit:cover;border-radius:var(--radius-sm);margin-bottom:4px}

/* Blog pagination (plugin pagination) */
.pagination{display:flex;justify-content:center;gap:8px;margin-top:2.5rem;list-style:none;padding:0}
.pagination li a,.pagination li span{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:0 10px;border-radius:var(--radius-sm);border:1px solid var(--border);font-size:13px;color:var(--text-muted);transition:border-color 0.2s,color 0.2s}
.pagination li a:hover{border-color:var(--brand);color:var(--brand)}
.pagination li span.active{background:var(--brand);color:#fff;border-color:var(--brand)}
.pagination li.gap span{border:none;color:var(--text-muted)}

/* ============================================
   Article (item)
   ============================================ */
.article-wrapper{padding:3rem 0}
.article-back{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--text-muted);margin-bottom:2rem;transition:color 0.2s}
.article-back:hover{color:var(--brand)}
.article-header{margin-bottom:2rem}
.article-meta{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--text-muted);margin-bottom:1rem}
.article-title{font-family:var(--font-display);font-size:clamp(24px,4vw,34px);font-weight:400;color:var(--text-dark);line-height:1.25;margin-bottom:1rem}
.article-tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:1.5rem}

.article-featured-img{width:100%;max-height:420px;object-fit:cover;border-radius:var(--radius);margin-bottom:2rem}

/* Article body typography */
.article-body{max-width:700px}
.article-body h2{font-family:var(--font-display);font-size:22px;font-weight:400;color:var(--text-dark);margin:2rem 0 0.75rem;line-height:1.3}
.article-body h3{font-size:16px;font-weight:500;color:var(--text-dark);margin:1.5rem 0 0.5rem}
.article-body p{font-size:15.5px;color:var(--text-body);line-height:1.75;margin-bottom:1.25rem}
.article-body ul,.article-body ol{padding-left:1.4rem;margin-bottom:1.25rem}
.article-body li{font-size:15.5px;color:var(--text-body);line-height:1.75;margin-bottom:0.4rem}
.article-body a{color:var(--brand);text-decoration:underline;text-decoration-color:var(--brand-mid)}
.article-body a:hover{color:#15543F}
.article-body blockquote{border-left:3px solid var(--brand-mid);padding:0.75rem 1.25rem;background:var(--brand-light);border-radius:0 var(--radius-sm) var(--radius-sm) 0;margin:1.5rem 0;font-style:italic;color:var(--text-muted)}
.article-body strong{color:var(--text-dark);font-weight:500}
.article-body code{background:var(--brand-light);color:var(--brand);padding:2px 7px;border-radius:4px;font-size:13.5px}
.article-body pre{background:#1A2E28;color:#E8F5F0;padding:1.25rem;border-radius:var(--radius-sm);overflow-x:auto;margin-bottom:1.25rem}
.article-body pre code{background:none;color:inherit;padding:0}
.article-body hr{border:none;border-top:1px solid var(--border);margin:2rem 0}

/* Sources */
.article-sources{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--border)}
.article-sources h4{font-size:12px;font-weight:500;color:var(--accent);letter-spacing:1.2px;text-transform:uppercase;margin-bottom:0.75rem}
.article-sources ul{list-style:none;padding:0;display:flex;flex-direction:column;gap:6px}
.article-sources li{font-size:13px}
.article-sources a{color:var(--text-muted);display:flex;align-items:flex-start;gap:6px}
.article-sources a:hover{color:var(--brand)}
.article-sources a::before{content:'→';color:var(--brand-mid);flex-shrink:0}

/* Default page content */
.page-content{padding:3rem 0;max-width:700px}
.page-content h1{font-family:var(--font-display);font-size:clamp(24px,4vw,34px);font-weight:400;color:var(--text-dark);margin-bottom:1.5rem;line-height:1.25}
.page-content h2{font-family:var(--font-display);font-size:22px;font-weight:400;color:var(--text-dark);margin:2rem 0 0.75rem}
.page-content h3{font-size:16px;font-weight:500;color:var(--text-dark);margin:1.5rem 0 0.5rem}
.page-content p{font-size:15.5px;color:var(--text-body);line-height:1.75;margin-bottom:1.25rem}
.page-content ul,.page-content ol{padding-left:1.4rem;margin-bottom:1.25rem}
.page-content li{font-size:15.5px;color:var(--text-body);line-height:1.75;margin-bottom:0.4rem}
.page-content a{color:var(--brand);text-decoration:underline;text-decoration-color:var(--brand-mid)}

/* Navigation prev/next article */
.article-nav{display:flex;gap:12px;margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--border)}
.article-nav-prev{text-align:left}
.article-nav-next{margin-left:auto;text-align:right}
.article-nav-link{display:block;transition:opacity 0.2s}
.article-nav-link:hover{opacity:0.75}
.article-nav-label{display:block;font-size:11.5px;font-weight:500;color:var(--accent);letter-spacing:0.8px;text-transform:uppercase;margin-bottom:6px}
.article-nav-title{font-family:var(--font-display);font-size:15px;color:var(--text-dark);line-height:1.35;display:block}

/* ============================================
   Commentaires — Isso (style Clairvoyance)
   ============================================ */
.article-comments{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--border)}
.isso-wrapper{font-family:var(--font-body);color:var(--text-body)}

/* Titre du fil */
.isso-wrapper h4.isso-thread-heading{
  font-family:var(--font-display);font-size:18px;font-weight:400;
  color:var(--text-dark);margin-bottom:1.5rem;
}
.isso-wrapper .isso-feedlink{display:none}

/* Compteur */
.isso-wrapper #isso-count{
  font-size:12px;font-weight:500;color:var(--accent);
  letter-spacing:1px;text-transform:uppercase;
}

/* Commentaire individuel */
.isso-wrapper .isso-comment{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.25rem 1.5rem;
  margin-bottom:12px;max-width:100%;
}
.isso-wrapper .isso-comment:not(:first-of-type){border-top:1px solid var(--border)}
.isso-wrapper .isso-follow-up{padding-left:1.5rem;margin-top:8px}
.isso-wrapper .isso-follow-up .isso-comment{
  background:var(--brand-light);border-color:var(--brand-mid);
  border-radius:var(--radius-sm);
}

/* Avatar */
.isso-wrapper .isso-avatar{
  float:left;margin:0 0.85rem 0 0;display: none;
}
.isso-wrapper .isso-avatar svg{
  width:36px;height:36px;border-radius:50%;
  border:none;box-shadow:none;display: none;
}

.isso-wrapper .isso-permalink {
  margin-left: 10px;
}

.isso-wrapper .isso-author {
  margin-right: 10px;
}

/* En-tête du commentaire */
.isso-wrapper .isso-comment-header{margin-bottom:0.5rem;overflow:hidden}
.isso-wrapper .isso-author{
  font-size:14px;font-weight:500;color:var(--text-dark);
}
.isso-wrapper .isso-page-author-suffix{
  font-size:11px;background:var(--brand-light);color:var(--brand);
  padding:2px 8px;border-radius:10px;margin-left:6px;font-weight:500;
}
.isso-wrapper .isso-date{
  font-size:12px;color:var(--text-muted);margin-left:0.6rem;
}

/* Corps du commentaire */
.isso-wrapper .isso-text-wrapper{overflow:hidden}
.isso-wrapper .isso-text p{
  font-size:14.5px;color:var(--text-body);line-height:1.7;margin-bottom:0.5rem;
}
.isso-wrapper .isso-text a{color:var(--brand);text-decoration:underline;text-decoration-color:var(--brand-mid)}
.isso-wrapper .isso-text code{
  background:var(--brand-light);color:var(--brand);
  padding:2px 6px;border-radius:4px;font-size:13px;
}
.isso-wrapper .isso-text pre{
  background:#1A2E28;color:#E8F5F0;
  padding:1rem 1.25rem;border-radius:var(--radius-sm);overflow-x:auto;
}
.isso-wrapper .isso-text blockquote{
  border-left:3px solid var(--brand-mid);padding:0.5rem 1rem;
  background:var(--brand-light);border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  margin:0.75rem 0;color:var(--text-muted);font-style:italic;
}

/* Pied du commentaire (votes, répondre, éditer, supprimer) */
.isso-wrapper .isso-comment-footer{
  font-size:12.5px;color:var(--text-muted);
  margin-top:0.75rem;clear:both;display:flex;align-items:center;flex-wrap:wrap;gap:0.4rem;
}
.isso-wrapper .isso-comment-footer a{
  display:inline-flex;align-items:center;
  padding:3px 10px;border-radius:20px;
  border:1px solid var(--border);
  font-size:12px;font-weight:500;
  color:var(--text-muted);text-decoration:none;
  transition:border-color 0.2s,color 0.2s,background 0.2s;
  line-height:1.5;
}
.isso-wrapper .isso-comment-footer a:hover{
  border-color:var(--brand);color:var(--brand);background:var(--brand-light);
}
.isso-wrapper .isso-comment-footer a.isso-delete:hover{
  border-color:#C53030;color:#C53030;background:#FFF5F5;
}
.isso-wrapper .isso-votes{display:flex;align-items:center;gap:4px}
.isso-wrapper .isso-upvote svg,.isso-wrapper .isso-downvote svg{
  position:relative;top:0;
}
.isso-wrapper .isso-upvote svg{color:var(--brand)}
.isso-wrapper .isso-downvote svg{color:var(--text-muted)}

/* Formulaire nouveau commentaire */
.isso-wrapper .isso-postbox{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem;
  margin-bottom:1.5rem;max-width:100%;
}
.isso-wrapper .isso-comment .isso-postbox{
  border:1px solid var(--brand-mid);background:var(--brand-light);
}

.isso-wrapper .isso-textarea{
  width:100%;border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:0.75rem 1rem;font-family:var(--font-body);font-size:14px;
  color:var(--text-body);background:var(--bg-page);resize:vertical;
  min-height:100px;outline:none;transition:border-color 0.2s;
  margin-bottom:0.75rem;
}
.isso-wrapper .isso-textarea:focus{border-color:var(--brand)}

/* Champs auteur / email / site */
.isso-wrapper .isso-auth-section{
  display:flex;flex-wrap:wrap;gap:10px;align-items:flex-end;margin-bottom:0.75rem;
}
.isso-wrapper .isso-input-wrapper{flex:1;min-width:140px;margin:0}
.isso-wrapper .isso-input-wrapper label{
  display:block;font-size:12px;font-weight:500;color:var(--text-muted);
  margin-bottom:4px;
}
.isso-wrapper .isso-input-wrapper input{
  width:100%;border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:8px 12px;font-family:var(--font-body);font-size:13.5px;
  color:var(--text-body);background:var(--bg-page);outline:none;
  transition:border-color 0.2s;box-shadow:none;
}
.isso-wrapper .isso-input-wrapper input:focus{border-color:var(--brand)}

/* Bouton envoyer */
.isso-wrapper .isso-post-action{float:none;margin:0;display:flex;align-items:center;gap:8px}
.isso-wrapper .isso-post-action input[type=submit]{
  display:inline-flex;align-items:center;
  background:var(--brand);color:#fff;font-family:var(--font-body);
  font-size:14px;font-weight:500;padding:10px 24px;
  border-radius:var(--radius-sm);border:none;cursor:pointer;
  transition:background 0.2s,transform 0.15s;box-shadow:none;
  outline:none;
}
.isso-wrapper .isso-post-action input[type=submit]:hover{
  background:#15543F;transform:translateY(-1px);
}
/* Bouton prévisualisation — couvre input[type=button] et input[name=preview] */
.isso-wrapper .isso-post-action input[type=button],
.isso-wrapper .isso-post-action input[name=preview]{
  display:inline-flex;align-items:center;
  background:var(--bg-card);color:var(--text-muted);
  font-family:var(--font-body);font-size:14px;font-weight:500;
  padding:10px 20px;border-radius:var(--radius-sm);
  border:1px solid var(--border);cursor:pointer;
  transition:border-color 0.2s,color 0.2s,background 0.2s;
  transform:none;
}
.isso-wrapper .isso-post-action input[type=button]:hover,
.isso-wrapper .isso-post-action input[name=preview]:hover{
  border-color:var(--brand);color:var(--brand);background:var(--brand-light);
  transform:none;
}

/* Notification */
.isso-wrapper .isso-notification-section{
  font-size:13px;color:var(--text-muted);padding:0.5rem 0;
}

/* Prévisualisation */
.isso-wrapper .isso-preview{
  border:1px solid var(--brand-mid);border-radius:var(--radius-sm);
  padding:1rem;background:var(--brand-light);margin-bottom:0.75rem;
}

/* Réponse imbriquée */
.isso-wrapper .isso-comment .isso-postbox{margin-top:1rem}

/* Champ obligatoire */
.isso-wrapper .req-star{color:var(--accent);font-weight:700;margin-left:2px}
.isso-wrapper .isso-input-error{
  border-color:var(--accent)!important;
  box-shadow:0 0 0 3px rgba(232,145,58,0.15)!important;
}
.isso-wrapper .isso-field-error{
  display:none;font-size:12px;color:var(--accent);
  margin-top:4px;font-weight:500;
}

/* Responsive */
@media(max-width:600px){
  .isso-wrapper .isso-auth-section{flex-direction:column}
  .isso-wrapper .isso-input-wrapper{width:100%}
}

/* Responsive */
@media(max-width:768px){
  .nav-links{display:none}
  .nav-mobile{display:block}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:60px;right:24px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:16px 24px;gap:14px;z-index:100;box-shadow:0 4px 20px rgba(0,0,0,0.08)}
  .hero{padding:2.5rem 0 2rem}
  .hero h1{font-size:28px}
  .services-grid{grid-template-columns:1fr}
  .section{padding:2.5rem 0}
  .cta-box{padding:2rem 1.25rem}
  .promise-box{flex-direction:column;gap:12px}
  .article-wrapper,.blog-listing{padding:2rem 0}
  .blog-card-footer{flex-direction:column;align-items:flex-start;gap:8px}
}
@media(max-width:480px){
  .container{padding:0 16px}
  .hero h1{font-size:24px}
  .cta-row{flex-direction:column;align-items:center}
  .article-title{font-size:24px}
}
