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

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #FAFAFA;
  color: #0F172A;
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

@media(min-width:768px) {
  body {
    font-size: 18px
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: -.01em;
  margin: 0
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container-x {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem
}

@media(min-width:768px) {
  .container-x {
    padding: 0 2rem
  }
}

.utility-bar {
  background: #0F172A;
  color: #F8FAFC;
  font-size: 14px
}

.utility-inner {
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center
}

.utility-left {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap
}

.utility-bar a:hover {
  color: #FBBF24
}

.utility-right {
  color: #CBD5E1
}

.site-header {
  background: white;
  border-bottom: 1px solid #CBD5E1;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05)
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain
}

.brand strong {
  display: block;
  font-family: Outfit;
  font-size: 1.05rem
}

.brand span {
  font-size: .72rem;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: .25rem
}

.nav-link {
  padding: .5rem .75rem;
  border-radius: .375rem;
  font-weight: 500;
  color: #334155
}

.nav-link:hover,
.nav-link.is-active {
  color: #1E3A8A
}

.nav-link.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px
}

.nav-dropdown {
  position: relative
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #CBD5E1;
  border-radius: .5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
  min-width: 260px;
  overflow: hidden
}

.nav-dropdown:hover .dropdown-menu {
  display: block
}

.dropdown-menu a {
  display: block;
  padding: .75rem 1rem;
  color: #334155
}

.dropdown-menu a:hover {
  background: #EFF4FB;
  color: #1E3A8A
}

.call-btn {
  background: #15803D;
  color: white !important;
  padding: .75rem 1rem;
  border-radius: .375rem;
  font-weight: 700
}

.orange-btn,
.blue-btn,
.green-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .375rem;
  font-weight: 700;
  padding: .85rem 1.25rem
}

.orange-btn {
  background: #D97706;
  color: white
}

.orange-btn:hover {
  background: #B45309
}

.blue-btn {
  background: #1E3A8A;
  color: white
}

.blue-btn:hover {
  background: #1E40AF
}

.green-btn {
  background: #15803D;
  color: white
}

.green-btn:hover {
  background: #166534
}

.outline-btn {
  background: white;
  color: #1E3A8A;
  border: 2px solid #1E3A8A
}

.outline-btn:hover {
  background: #EFF4FB
}

.small {
  padding: .75rem 1rem
}

.mobile-toggle {
  display: block;
  border: 1px solid #CBD5E1;
  background: white;
  border-radius: .375rem;
  padding: .5rem;
  font-size: 1.4rem
}

.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid #CBD5E1;
  padding: 1rem 1.25rem
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.mobile-nav a {
  padding: .75rem;
  border-radius: .375rem;
  font-weight: 600;
  color: #334155
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: #F3F4F6;
  color: #1E3A8A
}

.mobile-title {
  padding: .5rem .75rem;
  text-transform: uppercase;
  color: #92400E;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .75rem
}

@media(min-width:1024px) {
  .desktop-nav {
    display: flex
  }

  .mobile-toggle {
    display: none
  }

  .mobile-nav {
    display: none !important
  }
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#fff, #FAFAFA);
  padding: 3.5rem 0 5rem
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center
}

.badge,
.pill {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  border-radius: 999px;
  background: #FEF3C7;
  color: #92400E;
  font-weight: 800;
  font-size: .85rem;
  padding: .5rem .9rem
}

.hero-copy h1 {
  font-size: 2.5rem;
  line-height: 1.05;
  margin-top: 1.5rem
}

.hero-copy h1 em {
  font-style: normal;
  color: #1E3A8A
}

.hero-copy>p {
  font-size: 1.08rem;
  color: #334155;
  max-width: 42rem;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: .5rem;
  color: #334155
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 34rem
}

.stats b {
  font-family: Outfit;
  font-size: 2rem;
  display: block
}

.stats span {
  font-size: .9rem;
  color: #475569
}

.hero-photo {
  position: relative
}

.hero-photo img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, .25);
  width: 100%;
  max-width: 28rem;
  margin: auto;
  background: #F3F4F6
}

.trust-note {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: .75rem;
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .18);
  max-width: 270px;
  margin: -1.5rem auto 0;
  position: relative
}

.trust-note b {
  color: #92400E;
  display: block;
  font-size: .85rem
}

.trust-note span {
  display: block;
  margin-top: .35rem;
  line-height: 1.35
}

.bg-orb {
  position: absolute;
  right: -10rem;
  top: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #FEF3C7;
  z-index: -1
}

@media(min-width:1024px) {
  .hero-home {
    padding: 5rem 0
  }

  .hero-grid {
    grid-template-columns: 7fr 5fr
  }

  .hero-copy h1 {
    font-size: 3.9rem
  }

  .hero-photo .trust-note {
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    margin: 0
  }

  .hero-actions a {
    font-size: 1rem
  }
}

.section-center {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem
}

.eyebrow {
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 800
}

.section-title {
  font-size: 2.2rem;
  margin: .5rem 0
}

.section-center p,
.section-subtitle {
  color: #334155
}

.home-services {
  background: #F3F4F6;
  padding: 4rem 0
}

.featured-service {
  display: grid;
  background: white;
  border: 2px solid #1E3A8A;
  border-radius: 1rem;
  overflow: hidden;
  color: inherit
}

.featured-service>div {
  padding: 2rem
}

.featured-service h3 {
  font-size: 2rem;
  margin: .8rem 0
}

.featured-service p {
  color: #334155
}

.featured-service ul {
  list-style: none;
  padding: 0;
  color: #334155
}

.featured-service li {
  margin: .4rem 0
}

.featured-service img {
  width: 100%;
  height: 22rem;
  object-fit: cover
}

.featured-button {
  display: inline-block;
  margin-top: 1rem;
  background: #1E3A8A;
  color: white;
  border-radius: .375rem;
  padding: .75rem 1rem;
  font-weight: 700
}

.home-service-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem
}

.home-service-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: .2s
}

.home-service-card:hover {
  box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
  transform: translateY(-2px)
}

.home-service-card h3 {
  font-size: 1.35rem;
  margin: .8rem 0 .25rem
}

.home-service-card span {
  text-transform: uppercase;
  color: #92400E;
  font-size: .76rem;
  letter-spacing: .12em;
  font-weight: 800
}

.home-service-card p {
  color: #334155;
  flex: 1
}

.home-service-card b {
  color: #1E3A8A
}

.iconbox {
  width: 3rem;
  height: 3rem;
  border-radius: .45rem;
  background: #EFF4FB;
  color: #1E3A8A;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  flex-shrink: 0
}

.iconbox.gold {
  background: #FEF3C7;
  color: #92400E
}

@media(min-width:768px) {
  .featured-service {
    grid-template-columns: 1fr 1fr
  }

  .home-service-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.why-section,
.values {
  background: white;
  padding: 4rem 0
}

.why-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem
}

.why-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: .75rem;
  padding: 1.6rem
}

.why-card h3 {
  margin: .75rem 0 .3rem
}

.why-card p {
  color: #334155
}

.about-preview {
  background: white;
  padding: 4rem 0
}

.about-preview-grid {
  display: grid;
  gap: 2rem;
  align-items: center
}

.about-preview img,
.about-page img {
  border-radius: 1rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .16);
  max-height: 560px;
  object-fit: cover
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0
}

.badges span {
  background: #EFF4FB;
  color: #1E3A8A;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .75rem;
  font-weight: 800
}

.about-preview p,
.about-page p {
  color: #334155;
  line-height: 1.8
}

.text-link {
  font-weight: 700;
  color: #1E3A8A
}

.testimonials {
  background: #F3F4F6;
  padding: 4rem 0
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem
}

.testimonial {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: .75rem;
  padding: 1.5rem
}

.testimonial p {
  color: #334155
}

.testimonial span {
  display: block;
  color: #64748B;
  font-size: .9rem
}

.stars {
  color: #D97706
}

.consult-band {
  background: #0F172A;
  color: white;
  padding: 4rem 0
}

.consult-grid {
  display: grid;
  gap: 2rem
}

.consult-copy h2 {
  font-size: 2.4rem;
  line-height: 1.05;
  color: white
}

.consult-copy p {
  color: #CBD5E1
}

.consult-copy ul {
  list-style: none;
  padding: 0;
  color: #FBBF24
}

.yellow {
  color: #FBBF24
}

.consultation-form {
  background: white;
  color: #0F172A;
  border-radius: .8rem;
  padding: 1.5rem;
  border: 1px solid #CBD5E1
}

.consultation-form.compact {
  padding: 1.2rem
}

.form-grid {
  display: grid;
  gap: 1rem
}

.form-grid.two,
.form-grid.three {
  grid-template-columns: 1fr
}

label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin: .75rem 0 .35rem
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid #CBD5E1;
  border-radius: .35rem;
  padding: .75rem;
  font: inherit;
  background: white
}

textarea {
  min-height: 110px
}

.meeting {
  border: 0;
  padding: 0;
  margin: .75rem 0
}

.meeting label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid #1E3A8A;
  color: #1E3A8A;
  border-radius: .3rem;
  padding: .45rem .65rem;
  margin-right: .5rem
}

.blue-submit {
  width: 100%;
  background: #1E3A8A;
  color: white;
  border: 0;
  border-radius: .35rem;
  padding: .9rem 1rem;
  font-weight: 800;
  margin-top: 1rem
}

.form-note {
  font-size: .78rem;
  color: #64748B
}

.page-header {
  background: #F3F4F6;
  border-bottom: 1px solid #E2E8F0;
  padding: 3.5rem 0
}

.page-header h1 {
  font-size: 2.4rem;
  line-height: 1.12;
  max-width: 48rem;
  margin: .6rem 0
}

.page-header p {
  max-width: 48rem;
  color: #334155;
  font-size: 1.1rem
}

.services-list {
  background: white;
  padding: 4rem 0
}

.service-list-stack {
  display: grid;
  gap: 3.5rem
}

.service-row {
  display: grid;
  gap: 2rem;
  align-items: center
}

.service-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16)
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem
}

.service-label span {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #92400E;
  font-weight: 800;
  font-size: .85rem
}

.service-copy h2 {
  font-size: 2rem;
  margin: 1rem 0 .5rem
}

.service-copy p {
  color: #334155;
  line-height: 1.8
}

.benefit {
  color: #1E3A8A !important;
  font-style: italic;
  font-weight: 600
}

.service-copy ul,
.detail-bullets {
  list-style: none;
  padding: 0
}

.service-copy li,
.detail-bullets li {
  margin: .45rem 0;
  color: #334155
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem
}

.cta-section,
.dark-cta {
  background: #1E3A8A;
  color: white;
  padding: 3.5rem 0
}

.cta-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center
}

.cta-section h3,
.dark-cta h3 {
  font-size: 2rem;
  color: white
}

.cta-section p,
.dark-cta p {
  color: #CBD5E1
}

.detail-layout {
  display: grid;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}

.detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
  margin: 1.5rem 0
}

.back-link {
  color: #1E3A8A;
  font-weight: 700
}

.lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155
}

.detail-main section {
  margin-top: 2rem
}

.detail-main h3 {
  font-size: 1.6rem
}

.included-grid {
  display: grid;
  gap: 1rem
}

.included-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: .75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem
}

.included-card p {
  color: #334155
}

.process-list {
  list-style: none;
  padding: 0
}

.process-list li {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: .75rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  margin: .7rem 0
}

.process-list span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #1E3A8A;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0
}

.notice {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: .75rem;
  padding: 1.5rem
}

.notice span {
  text-transform: uppercase;
  color: #92400E;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em
}

.inpage-cta {
  background: #1E3A8A;
  color: white;
  border-radius: .75rem;
  padding: 1.5rem
}

.inpage-cta h3 {
  color: white
}

.inpage-cta p {
  color: #CBD5E1
}

.sticky-card {
  position: sticky;
  top: 7rem
}

.other-services {
  background: #F3F4F6;
  padding: 3.5rem 0
}

.related-grid {
  display: grid;
  gap: 1rem
}

.related-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: .75rem;
  padding: 1.2rem;
  color: inherit
}

.related-card p {
  color: #334155
}

.about-page {
  padding: 4rem 1.25rem
}

.about-page-grid {
  display: grid;
  gap: 2rem
}

.values {
  background: #F3F4F6
}

.contact-page {
  padding: 4rem 1.25rem
}

.contact-grid-page {
  display: grid;
  gap: 2.5rem
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0
}

.info-list>a,
.info-list>div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .5rem;
  border-radius: .5rem
}

.info-list span {
  display: block;
  text-transform: uppercase;
  color: #64748B;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em
}

.map {
  width: 100%;
  height: 280px;
  border: 1px solid #CBD5E1;
  border-radius: .75rem
}

.message-box,
.contact-consult,
.check-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 14px rgba(15, 23, 42, .05)
}

.contact-consult {
  margin-top: 2rem
}

.checklist-page {
  padding: 4rem 1.25rem
}

.checklist-grid {
  display: grid;
  gap: 2.5rem
}

.check-items {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0
}

.check-items li {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: .75rem;
  padding: 1rem
}

.check-items span {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EFF4FB;
  color: #1E3A8A;
  font-weight: 800;
  flex-shrink: 0
}

.empty-blog {
  padding: 4rem 1.25rem
}

.site-footer {
  background: #0F172A;
  color: #F8FAFC;
  padding-top: 3.5rem;
  padding-bottom: 0
}

.footer-grid {
  display: grid;
  gap: 2rem
}

.footer-brand {
  display: flex;
  gap: .75rem;
  align-items: center
}

.footer-brand img {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: .35rem;
  padding: .25rem
}

.footer-brand span {
  display: block;
  color: #FBBF24;
  font-size: .85rem
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #CBD5E1
}

.site-footer ul {
  list-style: none;
  padding: 0
}

.site-footer li {
  margin: .45rem 0
}

.social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1rem
}

.social-row a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: #1E3A8A;
  color: white;
  border-radius: .35rem;
  font-weight: 800
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  margin-top: 2rem
}

.footer-bottom>div {
  padding: 1rem 1.25rem;
  font-size: .8rem;
  color: #94A3B8;
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.mobile-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #CBD5E1;
  z-index: 40
}

.mobile-sticky a {
  text-align: center;
  padding: .85rem;
  font-weight: 800
}

.mobile-sticky a:first-child {
  color: #15803D;
  border-right: 1px solid #CBD5E1
}

.mobile-sticky a:last-child {
  background: #D97706;
  color: white
}

@media(min-width:640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr
  }

  .form-grid.three {
    grid-template-columns: repeat(3, 1fr)
  }

  .check-items {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:768px) {

  .testimonial-grid,
  .why-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr
  }

  .footer-bottom>div {
    flex-direction: row;
    justify-content: space-between
  }

  .cta-grid {
    grid-template-columns: 7fr 5fr
  }

  .cta-actions {
    text-align: right
  }

  .checklist-grid {
    grid-template-columns: 7fr 5fr
  }

  .home-service-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {

  .about-preview-grid,
  .about-page-grid {
    grid-template-columns: 5fr 7fr
  }

  .consult-grid {
    grid-template-columns: 5fr 7fr
  }

  .service-row {
    grid-template-columns: 6fr 6fr
  }

  .service-row.reverse .service-image {
    order: 2
  }

  .service-row.reverse .service-copy {
    order: 1
  }

  .detail-layout {
    grid-template-columns: 7fr 5fr
  }

  .contact-grid-page {
    grid-template-columns: 5fr 7fr
  }

  .hero-copy h1 {
    font-size: 4rem
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:720px) {

  .hide-sm,
  .utility-right {
    display: none
  }

  .brand span {
    display: none
  }

  .hero-actions a {
    width: 100%
  }

  .stats {
    grid-template-columns: 1fr
  }

  .service-image img,
  .detail-image {
    height: 260px
  }

  .page-header h1 {
    font-size: 2rem
  }

  .consult-band,
  .site-footer {
    padding-bottom: 4.2rem
  }
}


/* BLOG SYSTEM - STATIC WORDPRESS-READY */
.blog-page-hero {
  background: linear-gradient(135deg, #F3F4F6 0%, #EFF4FB 100%)
}

.blog-tools {
  padding: 2rem 1.25rem 0
}

.blog-filter-row {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center
}

.blog-chip {
  border: 1px solid #CBD5E1;
  background: white;
  color: #334155;
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 800;
  cursor: pointer
}

.blog-chip:hover,
.blog-chip.is-active {
  background: #1E3A8A;
  color: white;
  border-color: #1E3A8A
}

.blog-search-wrap {
  max-width: 680px;
  margin: 1.4rem auto 0
}

.blog-search-wrap input {
  border-radius: 999px;
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid #CBD5E1
}

.blog-featured-wrap {
  padding: 2.5rem 1.25rem 1rem
}

.featured-blog-card {
  display: grid;
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  color: inherit
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover
}

.featured-blog-copy {
  padding: 2rem
}

.latest-badge {
  display: inline-block;
  background: #1E3A8A;
  color: white;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 800;
  font-size: .8rem
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  color: #64748B;
  font-size: .9rem;
  margin: 1rem 0
}

.featured-blog-copy h2 {
  font-size: 2.15rem;
  line-height: 1.15
}

.featured-blog-copy p,
.blog-card p {
  color: #334155;
  line-height: 1.75
}

.featured-blog-copy strong,
.blog-card strong {
  color: #1E3A8A
}

.blog-grid-section {
  padding: 2rem 1.25rem 4rem
}

.blog-grid {
  display: grid;
  gap: 1.5rem
}

.blog-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
  transition: .25s;
  color: inherit
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .12)
}

.blog-card-image {
  height: 230px;
  position: relative;
  overflow: hidden
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s
}

.blog-card:hover img {
  transform: scale(1.05)
}

.blog-card-image span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1E3A8A;
  color: white;
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .78rem;
  font-weight: 800
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1
}

.blog-card h3 {
  font-size: 1.35rem;
  line-height: 1.25
}

.blog-card p {
  flex: 1
}

.blog-empty {
  display: none;
  text-align: center;
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: 1rem;
  padding: 2rem
}

.blog-empty.show {
  display: block
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #D97706;
  z-index: 1000
}

.blog-post-hero {
  background: #F3F4F6;
  border-bottom: 1px solid #E2E8F0;
  padding: 3.5rem 0
}

.blog-post-category {
  display: inline-block;
  margin-top: 1.5rem;
  background: #1E3A8A;
  color: white;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .8rem;
  font-weight: 800
}

.blog-post-hero h1 {
  font-size: 2.5rem;
  line-height: 1.08;
  max-width: 900px;
  margin: 1rem 0
}

.blog-post-hero p {
  max-width: 800px;
  color: #334155;
  font-size: 1.1rem
}

.post-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: #475569;
  margin-top: 1rem
}

.blog-post-layout {
  display: grid;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}

.blog-post-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16)
}

.share-bar {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5rem 0
}

.share-bar span {
  font-weight: 800;
  color: #0F172A
}

.share-bar a,
.share-bar button {
  border: 1px solid #CBD5E1;
  background: white;
  color: #1E3A8A;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 800;
  cursor: pointer
}

.article-body {
  background: white;
  border-radius: 1rem
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 2rem 0 .7rem;
  color: #0F172A
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 1.6rem 0 .6rem
}

.article-body p {
  color: #334155;
  line-height: 1.9;
  margin: 0 0 1.2rem
}

.article-body ul {
  padding-left: 1.25rem;
  margin: 0 0 1.4rem
}

.article-body li {
  color: #334155;
  margin: .55rem 0
}

.author-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #F3F4F6;
  border: 1px solid #CBD5E1;
  border-radius: 1rem
}

.author-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 999px
}

.author-card span {
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .75rem
}

.author-card p {
  color: #334155
}

.post-nav {
  display: grid;
  gap: 1rem;
  margin-top: 2rem
}

.post-nav a {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: .75rem;
  padding: 1rem;
  color: #1E3A8A;
  font-weight: 800
}

.blog-sidebar {
  display: grid;
  gap: 1.25rem;
  align-self: start
}

.sidebar-card {
  background: white;
  border: 1px solid #CBD5E1;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .05)
}

.sidebar-card.consult {
  position: sticky;
  top: 7rem
}

.sidebar-card h3 {
  font-size: 1.25rem
}

.sidebar-card p {
  color: #334155
}

.sidebar-card .orange-btn,
.sidebar-card .green-btn,
.sidebar-card .blue-btn {
  width: 100%;
  margin-top: .65rem
}

.related-articles {
  display: grid;
  gap: .75rem
}

.related-articles a {
  border-top: 1px solid #E2E8F0;
  padding-top: .75rem
}

.related-articles span {
  display: block;
  color: #92400E;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em
}

.related-articles strong {
  color: #0F172A;
  line-height: 1.3
}

@media(min-width:768px) {
  .featured-blog-card {
    grid-template-columns: 5fr 7fr
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .post-nav {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .blog-post-layout {
    grid-template-columns: 8fr 4fr
  }

  .blog-post-hero h1 {
    font-size: 3.4rem
  }
}

@media(max-width:720px) {
  .featured-blog-copy h2 {
    font-size: 1.7rem
  }

  .blog-post-cover {
    height: 260px
  }

  .blog-post-hero h1 {
    font-size: 2rem
  }

  .author-card {
    grid-template-columns: 1fr
  }

  .sidebar-card.consult {
    position: static
  }
}


/* =========================================================
   PREMIUM ICON + COLOR REFINEMENT OVERRIDES
   Applied for WordPress-ready static version
========================================================= */
:root {
  --premium-green: #2FA66A;
  --premium-green-hover: #278D5B;
  --premium-orange: #E39A3B;
  --premium-orange-hover: #C9832C;
  --premium-blue: #1F3D94;
  --premium-ink: #0F172A;
  --premium-soft-blue: #EEF4FF;
}

.app-icon {
  width: 1.08em;
  height: 1.08em;
  display: inline-block;
  vertical-align: -0.18em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* cleaner, softer action colors */
.call-btn,
.green-btn {
  background: var(--premium-green) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(47, 166, 106, .16);
}

.call-btn:hover,
.green-btn:hover {
  background: var(--premium-green-hover) !important;
}

.orange-btn {
  background: var(--premium-orange) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(227, 154, 59, .16);
}

.orange-btn:hover {
  background: var(--premium-orange-hover) !important;
}

.stars {
  color: var(--premium-orange) !important;
}

.badge,
.pill {
  background: #FFF3D8 !important;
  color: #9A4F00 !important;
}

.eyebrow,
.mobile-title {
  color: #9A4F00 !important;
}

/* remove cheap bottom sticky CTA strip everywhere */
.mobile-sticky {
  display: none !important;
}

body {
  padding-bottom: 0 !important;
}

/* figma-style icon blocks */
.iconbox {
  background: var(--premium-soft-blue) !important;
  color: var(--premium-blue) !important;
  border-radius: 14px !important;
  box-shadow: inset 0 0 0 1px rgba(31, 61, 148, .06);
}

.iconbox .app-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.iconbox.gold {
  background: #FFF3D8 !important;
  color: #9A4F00 !important;
}

/* compact SVG handling in utility/nav/buttons/lists */
.utility-bar .app-icon,
.call-btn .app-icon,
.green-btn .app-icon,
.orange-btn .app-icon,
.blue-btn .app-icon,
.outline-btn .app-icon,
.contact-list .app-icon,
.info-list .app-icon,
.hero-actions .app-icon,
.badge .app-icon,
.pill .app-icon {
  margin-right: .35rem;
}

.mobile-toggle .app-icon {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
}

.mobile-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.social-row a {
  display: inline-grid !important;
  place-items: center;
}

.social-row .app-icon {
  width: 1rem;
  height: 1rem;
}

/* More refined buttons */
.orange-btn,
.blue-btn,
.green-btn,
.outline-btn,
.call-btn,
.blue-submit {
  border-radius: 12px !important;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.orange-btn:hover,
.blue-btn:hover,
.green-btn:hover,
.outline-btn:hover,
.call-btn:hover,
.blue-submit:hover {
  transform: translateY(-1px);
}

.outline-btn {
  border-color: var(--premium-blue) !important;
  color: var(--premium-blue) !important;
}

.blue-btn,
.blue-submit {
  background: var(--premium-blue) !important;
}

/* cleaner hero/checklist visual rhythm */
.hero-actions .outline-btn {
  background: #fff !important;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Footer contact icons should not overpower copy */
.contact-list .app-icon {
  color: var(--premium-orange);
}

@media(max-width:1023px) {
  .mobile-toggle {
    display: inline-flex !important;
  }
}

@media(min-width:1024px) {
  .mobile-toggle {
    display: none !important;
  }
}
/* =========================================================
   FINAL HERO FIX AFTER MANAGER FEEDBACK
========================================================= */

.hero-actions,
.trust-note,
.hero-checks {
  display: none !important;
}

.hero-home {
  padding: 4rem 0 4.5rem !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: 7fr 5fr !important;
  align-items: center !important;
  gap: 3.5rem !important;
}

.hero-copy {
  max-width: 48rem !important;
}

.hero-copy h1 {
  font-size: 4rem !important;
  line-height: 1.05 !important;
  margin-top: 1.2rem !important;
  margin-bottom: 1.25rem !important;
}

.hero-copy > p {
  max-width: 46rem !important;
  margin-bottom: 1.5rem !important;
}

.hero-copy > p strong {
  display: inline;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 0;
}

.stats {
  margin-top: 1.5rem !important;
}

.hero-photo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.hero-photo img {
  max-width: 27rem !important;
  width: 100% !important;
  object-fit: contain !important;
}

@media(max-width:1023px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .hero-copy h1 {
    font-size: 2.75rem !important;
  }

  .hero-photo img {
    max-width: 22rem !important;
  }
}

.story-more {
    display: none;
}

.story-more.open {
    display: block;
}

.read-more-btn {
    margin-top: 10px;
    background: #1F3D94;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #163177;
}
