/* DrSuzSquad — Premium Health Coaching Stylesheet */

:root {
  --red: #eb1f27; --red-dark: #a30f14; --red-deep: #51070a;
  --pink-light: #faecec; --pink: #f8b4b7; --pink-mid: #f59b9f;
  --black: #161515; --white: #ffffff;
  --gray-light: #c6c3c3; --gray-mid: #8d8888; --gray: #524e4e;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
  --max-w: 1200px; --max-w-content: 800px;
  --rad: 12px; --rad-sm: 6px;
  --tr: .25s cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

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

body {
  font-family:var(--font); font-size:16px; line-height:1.7; color:var(--black);
  background:var(--white); -webkit-font-smoothing:antialiased;
}

img { max-width:100%; height:auto; display:block; }
ul,ol { list-style:none; }
::selection { background:var(--red); color:var(--white); }

:focus-visible { outline:2px solid var(--red); outline-offset:2px; border-radius:var(--rad-sm); }

h1 { font-size:clamp(2.25rem,5vw,4.5rem); font-weight:800; line-height:1.08; letter-spacing:-.02em; }
h2 { font-size:clamp(1.5rem,3.5vw,2.25rem); font-weight:700; line-height:1.2; letter-spacing:-.01em; }
h3 { font-size:clamp(1.125rem,2.5vw,1.625rem); font-weight:700; line-height:1.3; }
h4 { font-size:1.125rem; font-weight:700; }
h5 { font-size:clamp(1.125rem,2.5vw,2.25rem); font-weight:400; line-height:1.3; }
h6 { font-size:.875rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gray); }
p { margin-bottom:1.25rem; color:var(--gray); line-height:1.8; }
a { color:var(--red); text-decoration:none; transition:color var(--tr); }
a:hover { text-decoration:underline; text-underline-offset:3px; }

/* Layout / Grid / Flex */
.container { max-width:var(--max-w); margin:0 auto; padding:0 1.5rem; }
.content-container { max-width:var(--max-w-content); margin:0 auto; padding:0 1.5rem; }
.grid { display:grid; gap:2rem; }
.grid-2 { grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); }
.grid-3 { grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
.grid-4 { grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); }
@media(min-width:768px) { .grid-2-md{grid-template-columns:repeat(2,1fr)} .grid-3-md{grid-template-columns:repeat(3,1fr)} }
.flex{display:flex} .flex-center{display:flex;align-items:center;justify-content:center} .flex-between{display:flex;align-items:center;justify-content:space-between} .flex-wrap{flex-wrap:wrap} .gap-sm{gap:.75rem} .gap-md{gap:1.5rem} .gap-lg{gap:2rem}

/* Nav */
.nav{background:rgba(255,255,255,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.06);padding:.75rem 0;position:sticky;top:0;z-index:100;transition:box-shadow var(--tr)}
.nav.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.nav-inner{max-width:var(--max-w);margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between}
.nav-brand{display:flex;align-items:center;gap:.75rem;font-weight:700;font-size:1.25rem;color:var(--black);text-decoration:none}
.nav-brand:hover{text-decoration:none} .nav-brand-text{color:var(--black)} .nav-logo{height:44px;width:auto}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{color:var(--black);font-size:.875rem;font-weight:600;text-decoration:none;text-transform:uppercase;letter-spacing:.06em;transition:color var(--tr);position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--red);transition:width var(--tr)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a:hover,.nav-links a.active{color:var(--red);text-decoration:none}

/* Hamburger */
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;z-index:101}
.hamburger,.hamburger::before,.hamburger::after{display:block;width:26px;height:2.5px;background:var(--black);border-radius:2px;transition:transform var(--tr),background var(--tr)}
.hamburger{position:relative} .hamburger::before,.hamburger::after{content:'';position:absolute}
.hamburger::before{top:-8px} .hamburger::after{top:8px}
.nav-toggle[aria-expanded="true"] .hamburger{background:transparent}
.nav-toggle[aria-expanded="true"] .hamburger::before{top:0;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] .hamburger::after{top:0;transform:rotate(-45deg)}

@media(max-width:767px){
  .nav-toggle{display:block}
  .nav-links{position:fixed;top:0;right:-100%;width:300px;height:100vh;background:rgba(255,255,255,.98);backdrop-filter:blur(12px);flex-direction:column;align-items:flex-start;padding:5.5rem 2.5rem 2rem;gap:1.5rem;box-shadow:-6px 0 30px rgba(0,0,0,.12);transition:right var(--tr);z-index:100}
  .nav-links.open{right:0}
  .nav-links a{font-size:1.05rem}
}

/* Hero */
.hero{background:var(--red);color:var(--white);padding:6rem 1.5rem;text-align:center;position:relative}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(0,0,0,.08) 0,transparent 50%);pointer-events:none}
.hero h1,.hero h5{color:var(--white);margin-bottom:1rem}
.hero h1 + p{font-size:1.25rem;max-width:680px;margin:.5rem auto 0;opacity:.9;color:rgba(255,255,255,.9)}
.hero-home{background:var(--red);color:var(--white);padding:6rem 1.5rem 4rem;text-align:center;position:relative}
.hero-home::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(0,0,0,.08) 0,transparent 50%);pointer-events:none}
.hero-home h5{color:var(--white);font-size:clamp(1.25rem,3vw,2.25rem);font-weight:400;margin-bottom:.5rem}
.hero-home .fun-note{font-style:italic;opacity:.85;margin-bottom:2rem;color:rgba(255,255,255,.85)}
.hero-home .btn{font-size:1.125rem;padding:1rem 3rem;background:var(--white);color:var(--red);border-radius:50px;font-weight:700;box-shadow:0 4px 15px rgba(0,0,0,.15)}
.hero-home .btn:hover{background:var(--pink-light);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}
.hero-split{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.hero-text{text-align:left;padding-right:2rem}
.hero-text .hero-logo{margin-bottom:1.5rem}
.hero-text .hero-logo img{width:100px;height:100px;border-radius:50%;border:3px solid rgba(255,255,255,.3);box-shadow:0 4px 20px rgba(0,0,0,.15)}
.hero-text p{color:rgba(255,255,255,.9)}
.hero-image img{width:100%;border-radius:var(--rad);object-fit:cover;max-height:520px;box-shadow:0 8px 30px rgba(0,0,0,.2)}
@media(max-width:767px){.hero-split{grid-template-columns:1fr;text-align:center;gap:2rem}.hero-text{text-align:center;padding-right:0}.hero-text .hero-logo{display:flex;justify-content:center}}

/* Sections */
.section{padding:5rem 1.5rem} .section-alt{background:var(--pink-light)}
.section h2{text-align:center;margin-bottom:3rem;position:relative}
.section h2::after{content:'';display:block;width:50px;height:3px;background:var(--red);margin:1rem auto 0;border-radius:2px}
.section-alt h2::after{background:var(--red)}
.section-dark{background:var(--black);color:var(--white)} .section-dark h2{color:var(--white)} .section-dark h2::after{background:var(--red)}

/* Cards */
.card{background:var(--white);border-radius:var(--rad);overflow:hidden;box-shadow:var(--shadow-sm);transition:box-shadow var(--tr),transform var(--tr)}
.card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)} .card-img{width:100%;height:220px;object-fit:cover}
.card-body{padding:1.75rem} .card-body h3{font-size:1.25rem;margin-bottom:.5rem}
.card-body h3 a{color:var(--black)} .card-body h3 a:hover{color:var(--red);text-decoration:underline}
.card .excerpt{color:var(--gray);font-size:.9rem;line-height:1.7}

/* Buttons */
.btn{display:inline-block;padding:.85rem 2.25rem;border-radius:50px;font-weight:700;font-size:.95rem;text-align:center;cursor:pointer;transition:background var(--tr),color var(--tr),transform var(--tr),box-shadow var(--tr);border:2px solid transparent;text-decoration:none;letter-spacing:.02em}
.btn:hover{text-decoration:none;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.15)}
.btn-primary{background:var(--red);color:var(--white)} .btn-primary:hover{background:var(--red-dark);color:var(--white)}
.btn-outline{border:2px solid var(--red);color:var(--red);background:transparent} .btn-outline:hover{background:var(--red);color:var(--white)}
.btn-white{background:var(--white);color:var(--red)} .btn-white:hover{background:var(--pink-light);color:var(--red)}
.btn-sm{padding:.55rem 1.5rem;font-size:.85rem}

/* Breadcrumbs */
.breadcrumb{background:var(--pink-light);padding:.75rem 1.5rem;font-size:.875rem;border-bottom:1px solid rgba(0,0,0,.06)}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:.25rem;align-items:center}
.breadcrumb li{display:flex;align-items:center;gap:.25rem}
.breadcrumb li:not(:last-child)::after{content:'›';color:var(--gray-mid);margin-left:.25rem}
.breadcrumb a{color:var(--gray)} .breadcrumb a:hover{color:var(--red)}
.breadcrumb [aria-current="page"]{color:var(--black);font-weight:600}

/* Badge */
.badge{display:inline-block;padding:.25rem .85rem;background:var(--red);color:var(--white);border-radius:100px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;text-decoration:none}
.badge:hover{background:var(--red-dark);color:var(--white);text-decoration:none}
.badge-outline{background:transparent;color:var(--red);border:1px solid var(--red)}

/* Blog Layout */
.blog-post{max-width:var(--max-w-content);margin:0 auto;padding:4rem 1.5rem}
.blog-post h1{font-size:clamp(1.75rem,4vw,2.75rem);margin-bottom:1rem;line-height:1.2}
.blog-meta{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;color:var(--gray-mid);font-size:.875rem;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--gray-light)}
.blog-featured-image{margin-bottom:2.5rem} .blog-featured-image img{width:100%;border-radius:var(--rad)}
.blog-content{font-size:1.1rem;line-height:1.9}
.blog-content p{margin-bottom:1.5rem}
.blog-content h2{margin:3rem 0 1rem;text-align:left}
.blog-content h3{margin:2.5rem 0 .75rem;text-align:left}
.blog-content h4{margin:2rem 0 .75rem;text-align:left}
.blog-content ul,.blog-content ol{margin:1rem 0 1.5rem 1.5rem}
.blog-content li{margin-bottom:.5rem;list-style:disc}
.blog-content ol li{list-style:decimal}
.blog-content blockquote{border-left:4px solid var(--red);padding:1.25rem 1.5rem;margin:2rem 0;background:var(--pink-light);border-radius:0 var(--rad-sm) var(--rad-sm) 0;font-style:italic}
.blog-content a{text-decoration:underline;text-underline-offset:2px}
.blog-content img{border-radius:var(--rad);margin:2rem 0}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.blog-card{background:var(--white);border-radius:var(--rad);box-shadow:var(--shadow-sm);transition:box-shadow var(--tr),transform var(--tr)}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
.blog-card-img{width:100%;height:200px;object-fit:cover}
.blog-card .card-body{padding:1.75rem}
.blog-card h3{font-size:1.25rem;margin-bottom:.5rem}
.blog-card .meta{color:var(--gray-mid);font-size:.875rem;margin-bottom:.5rem}
.blog-card .excerpt{color:var(--gray);font-size:.9rem;line-height:1.7}
.blog-related{margin-top:5rem;padding-top:3rem;border-top:1px solid var(--gray-light)}
.blog-related h2{text-align:left;margin-bottom:2rem}
.blog-related h2::after{display:none}
.blog-comments{margin-top:3rem;padding-top:2rem;border-top:1px solid var(--gray-light)}

/* Pagination */
.pagination{display:flex;justify-content:center;align-items:center;gap:.5rem;margin-top:3rem;flex-wrap:wrap}
.pagination a,.pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding:0 .75rem;border:1px solid var(--gray-light);border-radius:var(--rad-sm);font-size:.875rem;font-weight:600;text-decoration:none;color:var(--black);transition:all .2s}
.pagination a:hover{background:var(--red);border-color:var(--red);color:var(--white);text-decoration:none}
.pagination .active{background:var(--red);border-color:var(--red);color:var(--white)}
.pagination .disabled{color:var(--gray-light);pointer-events:none}

/* Forms */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;text-align:left;font-size:.875rem;font-weight:700;color:var(--gray);margin-bottom:.4rem}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:.85rem 1rem;border:1.5px solid var(--gray-light);border-radius:var(--rad-sm);font-family:inherit;font-size:1rem;transition:border-color var(--tr),box-shadow var(--tr);background:var(--white)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 4px rgba(235,31,39,.1)}
.form-group textarea{min-height:140px;resize:vertical}

/* Testimonials */
.testimonial-grid{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}
.testimonial-card{background:var(--white);padding:2.5rem;border-radius:var(--rad);text-align:left;box-shadow:var(--shadow-sm);transition:box-shadow var(--tr),transform var(--tr)}
.testimonial-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.testimonial-avatar{margin-bottom:1rem}
.testimonial-avatar img{width:60px;height:60px;border-radius:50%;border:3px solid var(--pink-light)}
.testimonial-card h3{font-size:1.05rem;margin-bottom:.75rem;color:var(--black);font-weight:700}
.testimonial-card p{font-size:.9rem;color:var(--gray);line-height:1.8;font-style:italic}
.testimonial-card p::before{content:'\201C';color:var(--red);font-size:2rem;line-height:0;vertical-align:-6px;margin-right:4px}
.testimonial-card p::after{content:'\201D';color:var(--red);font-size:2rem;line-height:0;vertical-align:-6px;margin-left:4px}

/* Featured / Steps */
.featured{text-align:center;padding:4rem 1.5rem}
.featured h6{color:var(--gray-mid);margin-bottom:1.5rem}
.featured-logos{display:flex;justify-content:center;align-items:center;gap:3.5rem;flex-wrap:wrap}
.featured-logos img{height:44px;width:auto;object-fit:contain;filter:grayscale(100%);opacity:.55;transition:all .4s ease}
.featured-logos img:hover{filter:grayscale(0);opacity:1;transform:scale(1.05)}
.steps{background:var(--pink-light);padding:5rem 1.5rem}
.steps-grid{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:2.5rem}
.step{display:flex;gap:1.5rem;align-items:flex-start}
.step-number{background:var(--red);color:var(--white);width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.35rem;font-weight:800;flex-shrink:0;box-shadow:0 4px 12px rgba(235,31,39,.3);transition:transform var(--tr)}
.step:hover .step-number{transform:scale(1.08)}
.step-content h3{color:var(--black);margin-bottom:.25rem}
.step-content p{font-size:1.05rem;color:var(--gray);margin-bottom:0}

/* Value Prop / Contact */
.value-prop{text-align:center;padding:5rem 1.5rem}
.value-prop h3{font-size:clamp(1.5rem,4vw,3.5rem);max-width:900px;margin:0 auto 2.5rem;line-height:1.15;letter-spacing:-.02em}
.value-prop-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;text-align:left}
.value-prop-text h3{text-align:left;font-size:clamp(1.5rem,3.5vw,2.5rem)} .value-prop-text h3::after{display:none}
.value-prop-image img{width:100%;border-radius:var(--rad);object-fit:cover;box-shadow:var(--shadow-md)}
@media(max-width:767px){.value-prop-grid{grid-template-columns:1fr;gap:2.5rem}}
.pain-points{max-width:680px;margin:0 auto;text-align:left}
.pain-points p{font-size:1.125rem;margin-bottom:1rem;padding-left:1.75rem;position:relative;color:var(--black)}
.pain-points p::before{content:'\2192';color:var(--red);position:absolute;left:0;font-weight:700}
.contact{padding:5rem 1.5rem;text-align:center}
.contact h2::after{display:block}
.contact-form{max-width:520px;margin:2.5rem auto 0}
.contact-form .btn-primary{width:100%;padding:1rem;font-size:1.05rem}

/* Footer */
.footer{background:var(--black);color:var(--white);padding:4rem 1.5rem 0;font-size:.875rem;line-height:1.7}
.footer a{color:var(--pink-light);text-decoration:none;transition:color var(--tr)}
.footer a:hover{color:var(--white);text-decoration:underline;text-underline-offset:2px}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem}
.footer-col h4{color:var(--white);font-size:.875rem;margin-bottom:1.25rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em}
.footer-col ul{list-style:none} .footer-col li{margin-bottom:.6rem}
.footer-col p{color:var(--gray-mid);margin-top:.75rem;margin-bottom:0;font-size:.8rem}
.footer-social{display:flex;gap:1rem;margin-top:1rem}
.footer-social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);color:var(--gray-mid);transition:all var(--tr)} .footer-social a:hover{background:var(--red);color:var(--white);text-decoration:none}
.footer-bottom{max-width:var(--max-w);margin:0 auto;padding:1.5rem 0;border-top:1px solid rgba(255,255,255,.08);text-align:center;color:var(--gray-mid);font-size:.75rem}
@media(max-width:767px){.footer-inner{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:480px){.footer-inner{grid-template-columns:1fr}}

/* Back to Top */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:48px;height:48px;background:var(--red);color:var(--white);border:none;border-radius:50%;cursor:pointer;font-size:1.25rem;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity var(--tr),visibility var(--tr),transform var(--tr);z-index:90;box-shadow:0 4px 15px rgba(0,0,0,.25)}
.back-to-top.visible{opacity:1;visibility:visible}
.back-to-top:hover{background:var(--red-dark);transform:translateY(-3px)}

/* Utility */
.text-center{text-align:center} .text-left{text-align:left} .text-right{text-align:right}
.mt-0{margin-top:0} .mt-1{margin-top:1rem} .mt-2{margin-top:2rem} .mt-3{margin-top:3rem} .mt-4{margin-top:4rem}
.mb-1{margin-bottom:1rem} .mb-2{margin-bottom:2rem} .mb-3{margin-bottom:3rem}
.p-1{padding:1rem} .p-2{padding:2rem} .p-3{padding:3rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Print */
@media print{
  .nav,.footer,.back-to-top,.breadcrumb,.blog-related,.blog-comments,.btn,.pagination{display:none!important}
  body{font-size:12pt;color:#000;background:#fff}
  .hero,.hero-home{background:#fff;color:#000;padding:1rem 0}
  .hero h1,.hero-home h5{color:#000}
  .section-dark{background:#fff;color:#000} .section-dark h2{color:#000}
  a{color:#000;text-decoration:underline} a[href]::after{content:" (" attr(href) ")";font-size:.8em}
  .blog-post{max-width:100%;padding:0}
}

/* =========================================
   HERO — Background Image with Overlay
   ========================================= */
.hero-image-bg {
  position: relative;
  padding: 7rem 1.5rem;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,21,21,.82) 0%, rgba(22,21,21,.45) 60%, rgba(22,21,21,.25) 100%);
  pointer-events: none;
}
.hero-image-bg .hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-image-bg h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-image-bg p {
  color: rgba(255,255,255,.88);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-image-bg .btn + .btn {
  margin-left: .75rem;
}
@media(max-width:767px) {
  .hero-image-bg { padding: 5rem 1.5rem; min-height: auto; }
  .hero-image-bg p { font-size: 1.05rem; }
}

/* =========================================
   FEATURE GRID — 2 Column Section
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}
.feature-grid-reverse .feature-image { order: 1; }
.feature-grid-reverse .feature-text { order: 2; }
.feature-text h2 {
  text-align: left;
  margin-bottom: 1rem;
}
.feature-text h2::after {
  margin: .75rem 0 0;
}
.feature-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.feature-image img {
  width: 100%;
  border-radius: var(--rad);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.feature-list {
  margin: 1.5rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: 1rem;
  color: var(--black);
}
.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
@media(max-width:767px) {
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .feature-grid-reverse .feature-image { order: initial; }
  .feature-text h2 { text-align: center; }
  .feature-text h2::after { margin: .75rem auto 0; }
  .feature-list li { justify-content: center; }
}

/* =========================================
   SERVICE CARDS — Icon + Title + Desc + CTA
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), transform var(--tr);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--red);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: background var(--tr), color var(--tr);
}
.service-card:hover .icon {
  background: var(--red);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
  color: var(--black);
}
.service-card p {
  font-size: .925rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card .btn {
  font-size: .85rem;
  padding: .65rem 1.75rem;
}

/* =========================================
   BLOG GRID — Featured Post + Grid
   ========================================= */
.blog-grid-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--pink-light);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-grid-featured .blog-card-img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.blog-grid-featured .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}
.blog-grid-featured .card-body h2 {
  text-align: left;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: .75rem;
}
.blog-grid-featured .card-body h2::after { display: none; }
.blog-grid-featured .card-body h2 a {
  color: var(--black);
  text-decoration: none;
}
.blog-grid-featured .card-body h2 a:hover {
  color: var(--red);
  text-decoration: underline;
}
.blog-grid-featured .meta {
  color: var(--gray-mid);
  font-size: .875rem;
  margin-bottom: .5rem;
}
.blog-grid-featured .excerpt {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.blog-grid-featured .btn {
  align-self: flex-start;
}
@media(max-width:767px) {
  .blog-grid-featured { grid-template-columns: 1fr; }
  .blog-grid-featured .blog-card-img { min-height: 220px; max-height: 260px; }
  .blog-grid-featured .card-body { padding: 1.75rem; }
}
@media(min-width:768px) {
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
}

/* =========================================
   DARK SECTION — Centered Content
   ========================================= */
.section-dark-centered {
  background: var(--black);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
}
.section-dark-centered h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.section-dark-centered h2::after {
  background: var(--red);
  margin: 1rem auto 0;
}
.section-dark-centered p {
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.section-dark-centered .btn-white {
  background: var(--white);
  color: var(--red);
}
.section-dark-centered .btn-white:hover {
  background: var(--pink-light);
  color: var(--red);
}
.section-dark-centered .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.section-dark-centered .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.section-dark-centered .btn + .btn {
  margin-left: .75rem;
}
@media(max-width:480px) {
  .section-dark-centered .btn + .btn { margin-left: 0; margin-top: .75rem; }
  .section-dark-centered .btn { display: block; width: 100%; }
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), transform var(--tr);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.5rem;
}
.product-card .category {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  margin-bottom: .35rem;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.product-card h3 a {
  color: var(--black);
  text-decoration: none;
}
.product-card h3 a:hover {
  color: var(--red);
  text-decoration: underline;
}
.product-card p {
  color: var(--gray);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.product-card .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1rem;
}
.product-card .btn {
  width: 100%;
  padding: .7rem;
  font-size: .875rem;
}

/* =========================================
   RESPONSIVE — Additional Breakpoints
   ========================================= */
@media(min-width:1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(min-width:992px) and (max-width:1199px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(min-width:768px) and (max-width:991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1rem; }
  .hero-home { padding: 4rem 1rem; }
  .hero-image-bg { padding: 4rem 1rem; }
  .section-dark-centered { padding: 3.5rem 1rem; }
}
