/* 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; }
}

/* ═══════════════════════════════════════════════
   DESIGN SYSTEM ADDITIONS (from ensemble audit)
   ═══════════════════════════════════════════════ */

/* ── Updated Color Tokens (navy/orange/teal) ── */
:root {
  --navy: #1A1A2E;
  --navy-dark: #0f0f1a;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --teal: #009688;
  --teal-dark: #00796B;
  --cream: #FAF7F2;
  --charcoal: #1F2430;
  --gray-100: #F5F5F5;
  --gray-300: #D4D4D4;
  --gray-600: #6B7280;
  --gray-900: #111827;
  --success: #10B981;
  --error: #EF4444;
}

/* ── Typography: Space Grotesk for headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--navy);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}
.trust-strip strong {
  color: var(--orange);
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-badge .badge-icon {
  font-size: 1.1rem;
}

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  transition: box-shadow var(--tr), transform var(--tr);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
  list-style: disc;
}
.service-card li {
  margin-bottom: 0.5rem;
  color: var(--gray);
  font-size: 0.95rem;
}
.service-card blockquote {
  border-left: 3px solid var(--teal);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: rgba(0, 150, 136, 0.05);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray);
}
.service-card cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

/* ── Audience Routing Cards ── */
.route-card {
  text-decoration: none;
  padding: 2rem;
  text-align: center;
  border-radius: var(--rad);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  border: 2px solid transparent;
}
.route-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
  text-decoration: none;
}
.route-card .route-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.route-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.route-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* ── Lead Magnet ── */
.lead-magnet {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--rad);
  text-align: center;
  margin: 3rem 0;
}
.lead-magnet h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.lead-magnet p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.lead-magnet form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-magnet input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}
.lead-magnet input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}
.lead-magnet input[type="email"]:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.15);
}

/* ── Sticky Header CTA ── */
.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta .btn {
  white-space: nowrap;
}

/* ── Pricing Tiers ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-300);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
}
.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}
.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0;
  list-style: none;
}
.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray);
}
.pricing-card li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ── FAQ Accordion ── */
.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 1.25rem 0;
}
.faq-item summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform var(--tr);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ── Utility Classes ── */
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: white; }
.max-content { max-width: 720px; margin: 0 auto; }

/* Lead Magnet Form */
.lead-magnet input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--rad-sm);
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color var(--tr);
}
.lead-magnet input[type="email"]:focus {
  border-color: var(--red);
  outline: none;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE — Conversion Components
   ═══════════════════════════════════════════════ */

/* ── Services Hero ── */
.services-hero {
  min-height: 55vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0f3460 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.services-hero .container {
  position: relative;
  z-index: 2;
}
.services-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.services-hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Hero Social Proof Stats ── */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Section Headers ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ── Inline Testimonials (within cards/sections) ── */
.inline-testimonial {
  background: var(--cream);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-style: italic;
}
.inline-testimonial::before {
  content: '\201C';
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -4px;
  margin-right: 2px;
}
.inline-testimonial::after {
  content: '\201D';
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -4px;
  margin-left: 2px;
}
.inline-testimonial cite {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

/* ── Service Card Footer ── */
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.service-card-footer .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}
.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Service Grid (2-col) ── */
.services-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .services-grid-main { grid-template-columns: 1fr; }
}

/* ── Sticky CTA Bar ── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid var(--orange);
}
.sticky-cta-bar.visible {
  transform: translateY(0);
}
.sticky-cta-bar p {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.sticky-cta-bar .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ── Author Trust Block ── */
.about-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow-sm);
  max-width: 600px;
}
.about-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
  flex-shrink: 0;
}
.about-author h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}
.about-author p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* ── CTA Sections ── */
.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-section.bg-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.cta-section.bg-gradient h2 { color: var(--white); }
.cta-section.bg-gradient p { color: rgba(255,255,255,0.85); }

/* ── Pulse Animation for CTA ── */
.btn-pulse {
  animation: pulse-cta 2s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
}

/* ── Service Detail Row ── */
.service-detail-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray);
}
.service-detail-row .detail-check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Lead Magnet Button (overrides) ── */
.lead-magnet .btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.lead-magnet .btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ── Mobile Services Page ── */
@media (max-width: 767px) {
  .hero-stats { gap: 1rem; justify-content: center; }
  .services-hero { min-height: auto; padding-top: 7rem; padding-bottom: 3rem; }
  .sticky-cta-bar p { font-size: 0.85rem; text-align: center; }
  .sticky-cta-bar { padding: 0.6rem 1rem; }
  .about-author { flex-direction: column; text-align: center; }
}
