:root {
  --green: #041d3b;
  --cream: #eae8e4;
  --lime: #d6b07d;
  --ink: #172016;
  --muted: #000000;
  --white: #fff;
  --line: rgba(28, 58, 19, 0.14);
  --shadow: 0 22px 60px rgba(28, 58, 19, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(780px, 100%);
}
section {
  padding: 92px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    background: #d6b07d;
    border-radius: 9px;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--green);
  line-height: 1.08;
}
h1 {
    font-size: 80px;
    letter-spacing: -0.045em;
}
h2 {
    font-size: 25px;
    letter-spacing: -0.035em;
}
h3 {
    font-size: 20px;
}
p {
  color: var(--muted);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green);
    color: white;
    border: 1px solid var(--green);
    padding: 15px 35px !important;
    border-radius: 999px;
    font-weight: 800;
    transition: .25s;
    cursor: pointer;
}

.dlp-field input:focus, .dlp-field select:focus, .dlp-field textarea:focus {
    border-color: #041d3b !important;
    box-shadow: 0 0 0 1px #041d3bb8 !important;
}


.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(28, 58, 19, 0.18);
  background: #787878;
}
.btn-outline {
  background: transparent;
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.btn-light {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
}
.btn-sm {
  padding: 10px 16px;
  font-size: 0.9rem;
}
.link-arrow {
  font-weight: 800;
  color: var(--green);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(234, 232, 228, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 7px 20px rgba(28, 58, 19, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-family: "Playfair Display", serif;
  color: var(--green);
  font-size: 1.08rem;
}
.brand-copy small {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 5px;
  color: var(--muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 700;
}
.main-nav > a,
.nav-dropdown > a {
  padding: 27px 0;
  position: relative;
}
.main-nav > a.active:not(.btn):after, .nav-dropdown > a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 3px;
    background: #d6b07d;
    border-radius: 20px;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 70px;
  left: -18px;
  width: 245px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: #000000;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--green);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 10px;
}


.site-logo {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo {
        width: 145px;
    }
}


.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
}
.hero {
  padding: 86px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero:after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: #d6b07d;
    filter: blur(10px);
    opacity: 0.42;
    right: -160px;
    top: 15px;
    z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 62px;
  align-items: center;
}
.hero-copy p {
  font-size: 1.12rem;
  max-width: 650px;
  margin: 24px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.proof-item strong {
  display: block;
  color: var(--green);
  font-size: 1.1rem;
}
.proof-item span {
  font-size: 0.84rem;
  color: var(--muted);
}
.hero-card {
  background: var(--green);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-card:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  background: var(--lime);
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
  opacity: 0.85;
}
.hero-card .mini-label {
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hero-card h3 {
  color: #fff;
  font-size: 2.1rem;
  margin: 14px 0 18px;
}
.hero-card p {
  color: rgba(255, 255, 255, 0.7);
}
.book-stack {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.book-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}
.book-row i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--green);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.section-head p {
  max-width: 590px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 22px;
  transition: 0.25s;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: var(--shadow);
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 25px;
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.94rem;
  flex: 1;
  margin-bottom: 22px;
}
.highlight-band {
  background: var(--green);
  color: #fff;
}
.highlight-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.highlight-band h2 {
  color: #fff;
}
.highlight-band p {
  color: rgba(255, 255, 255, 0.68);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.process-step {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: 18px;
}
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 16px;
}
.process-step h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.stats-strip {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat strong {
    font-family: "Playfair Display";
    color: var(--green);
    font-size: 4rem;
    display: block;
}
.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.content-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(28, 58, 19, 0.06);
}
.content-panel h3 {
  margin-bottom: 14px;
}
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3d4d3b;
}
.check-item:before {
  content: "✓";
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}
.simple-hero {
  padding: 105px 0 70px;
  text-align: left;
}

.site-logo1 {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
}

.dlp-popup-close:hover {
    background: #d6b07d !important;
}

.simple-hero.centered {
  text-align: center;
  min-height: 55vh;
  display: grid;
  align-items: center;
}
.simple-hero p {
  max-width: 760px;
  font-size: 1.08rem;
  margin: 22px 0 28px;
}
.centered p {
  margin-left: auto;
  margin-right: auto;
}
.service-hero {
  padding: 88px 0 64px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
}
.service-hero p {
  font-size: 1.08rem;
  margin: 22px 0 28px;
}
.service-summary {
  background: var(--green);
  border-radius: 28px;
  padding: 30px;
  color: #fff;
}
.service-summary h3 {
  color: #fff;
  margin-bottom: 16px;
}
.service-summary p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.service-summary .check-item {
  color: #fff;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}
.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 20px;
}
.detail-card h3 {
  margin-bottom: 10px;
}
.cta-box {
  background: var(--lime);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box p {
  max-width: 650px;
  color: #000000;
  margin-top: 10px;
}
.form-section {
  padding-top: 30px;
}
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-head {
  margin-bottom: 26px;
}
.form-head h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--green);
  font-size: 0.9rem;
}
.form-grid .full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cad0c5;
  border-radius: 12px;
  background: #f8f8f6;
  padding: 13px 14px;
  outline: 0;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 1px #041d3bb0;
}
textarea {
  resize: vertical;
}
.form-note {
  font-size: 0.78rem;
  margin-top: 12px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}
.site-footer {
    background: #041d3b !important;
    color: #fff;
    padding: 68px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer-brand .brand-copy strong {
  color: #fff;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  max-width: 360px;
}
.site-footer h4 {
  font-family: "DM Sans";
  color: var(--lime);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.site-footer a:not(.brand) {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 9px 0;
  font-size: 0.9rem;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s ease;
}
.reveal-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .service-hero-grid,
  .two-col,
  .highlight-grid {
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .nav-dropdown > a {
    display: block;
    padding: 12px 14px;
  }
  .main-nav > a.active:not(.btn):after,
  .nav-dropdown > a.active:after {
    display: none;
  }
  .nav-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--cream);
    margin-top: 4px;
  }
  .dropdown-menu.mobile-open {
    display: block;
  }
  .main-nav .btn {
    margin-top: 5px;
  }
  .hero-grid,
  .service-hero-grid,
  .two-col,
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 650px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  section {
    padding: 68px 0;
  }
  .hero {
    padding-top: 58px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .services-grid,
  .detail-grid,
  .process-list,
  .form-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .section-head,
  .cta-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-box {
    padding: 32px;
  }
  .lead-form {
    padding: 24px;
  }
  .hero-card {
    padding: 26px;
  }
  .simple-hero {
    padding-top: 70px;
  }
  .footer-bottom {
    gap: 8px;
  }
}

/* Expanded content blocks */
.audience-grid,
.format-grid,
.quality-grid,
.journey-grid {
  display: grid;
  gap: 18px;
}
.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}
.journey-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: journey;
}
.format-grid {
  grid-template-columns: repeat(3, 1fr);
}
.quality-grid {
  grid-template-columns: repeat(4, 1fr);
}
.audience-card,
.journey-card,
.format-card,
.quality-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  padding: 28px;
  transition: 0.25s;
}
.audience-card:hover,
.journey-card:hover,
.format-card:hover,
.quality-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow);
}
.audience-card .icon-box,
.quality-card .icon-box {
  margin-bottom: 20px;
}
.journey-card {
  position: relative;
  padding-top: 72px;
}
.journey-card:before {
  counter-increment: journey;
  content: "0" counter(journey);
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: "Playfair Display";
  font-weight: 800;
  color: var(--green);
  font-size: 1.05rem;
}
.journey-card:after {
  content: "";
  position: absolute;
  top: 47px;
  left: 28px;
  width: 42px;
  height: 3px;
  background: var(--lime);
  border-radius: 3px;
}
.format-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.format-card .format-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--lime);
  color: var(--green);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.format-card p {
  flex: 1;
  margin: 12px 0 20px;
}
.section-soft {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 54px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0 20px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--green);
  padding: 19px 36px 19px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  font-size: 1.2rem;
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  padding: 0 0 20px;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.outcome-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.outcome-card strong {
  display: block;
  font-family: "Playfair Display";
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 10px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  padding: 26px;
  border-radius: 20px;
  background: var(--green);
  color: #fff;
}
.related-card h3 {
  color: #fff;
  margin-bottom: 10px;
}
.related-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.related-card a {
  color: var(--lime);
  font-weight: 800;
}

/* Reusable popup lead form */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: #041d3bbf;
    backdrop-filter: blur(5px);
}
.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(88vh, 850px);
  overflow: auto;
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  padding: 34px;
}
.quote-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.quote-modal__intro {
  padding-right: 55px;
  margin-bottom: 22px;
}
.quote-modal__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 10px;
}
.quote-modal__intro p {
  max-width: 670px;
}
.popup-lead-form {
  box-shadow: none;
  padding: 25px;
  background: #fff;
}
.popup-lead-form .form-head {
  display: none;
}
.popup-submit {
  width: 100%;
}
body.modal-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .audience-grid,
  .quality-grid,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-wrap {
    grid-template-columns: 1fr;
  }
  .outcome-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .format-grid {
    grid-template-columns: 1fr;
  }
  .outcome-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .quote-modal {
    padding: 10px;
  }
  .quote-modal__dialog {
    padding: 24px 18px;
    border-radius: 22px;
    max-height: 94vh;
  }
  .quote-modal__intro {
    padding-right: 42px;
  }
  .popup-lead-form {
    padding: 18px;
  }
}
@media (max-width: 560px) {
  .audience-grid,
  .quality-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
    position: relative;
    padding: 110px 20px;
    background: #EAE8E4;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #d6b07d;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.28;
    top: -180px;
    right: -120px;
}

.testimonial-section::after {
    content: "“";
    position: absolute;
    left: -25px;
    bottom: -170px;
    font-family: Georgia, serif;
    font-size: 500px;
    line-height: 1;
    color: rgba(28, 58, 19, 0.035);
    pointer-events: none;
}

.testimonial-container {
    width: min(1240px, 100%);
    margin: auto;
    position: relative;
    z-index: 2;
}


/* Header */

.testimonial-header {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.testimonial-tag {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 18px;
    border-radius: 100px;
    background: #d6b07d;
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.testimonial-header h2 {
    margin: 0;
    color: #041d3b;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.testimonial-header h2 span {
    position: relative;
    display: inline;
}

.testimonial-header h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 9px;
    background: #d6b07d;
    z-index: -1;
}

.testimonial-header > p {
    margin: 0;
    color: #62675f;
    font-size: 16px;
    line-height: 1.8;
    max-width: 440px;
}


/* Grid */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Cards */

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(28, 58, 19, 0.10);
    border-radius: 24px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(28, 58, 19, 0.26);
    box-shadow: 0 25px 55px rgba(28, 58, 19, 0.10);
}

.testimonial-card.featured-review {
    background: #041d3b;
    color: white;
}

.testimonial-card.featured-review::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #d6b07d;
    opacity: 0.10;
    right: -65px;
    bottom: -65px;
}
.quote-icon {
    position: absolute;
    right: 25px;
    top: 12px;
    color: #d6b07d;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
}

.stars {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: #1C3A13;
    font-size: 15px;
    letter-spacing: 3px;
}

.featured-review .stars {
    color: #d6b07d;
}

.review-text {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    color: #555b52;
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
}

.featured-review .review-text {
    color: rgba(255, 255, 255, 0.82);
}


/* Reviewer */

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d6b07d;
    color: #000000;
    font-weight: 900;
    font-size: 13px;
}

.reviewer h4 {
    margin: 0 0 3px;
    color: #000000;
    font-size: 15px;
}

.featured-review .reviewer h4 {
    color: #fff;
}

.reviewer span {
    color: #777d74;
    font-size: 12px;
}

.featured-review .reviewer span {
    color: rgba(255, 255, 255, 0.62);
}


/* Service tag */
.review-service {
    position: absolute;
    right: 20px;
    bottom: 23px;
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(28, 58, 19, 0.07);
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.featured-review .review-service {
    background: rgba(210, 250, 153, 0.12);
    color: #d6b07d;
}


/* Bottom CTA */

.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 45px;
}

.testimonial-bottom-line {
    height: 1px;
    background: rgb(0 0 0 / 22%);
    flex: 1;
}

.testimonial-bottom p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 22px;
    border-radius: 100px;
    background: #041d3b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.25s ease;
}

.testimonial-btn span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d6b07d;
    color: #000000;
}

.testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(28, 58, 19, 0.18);
}


/* Tablet */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 85px 20px;
    }

    .testimonial-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-header > p {
        max-width: 650px;
    }

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

}


/* Mobile */

@media (max-width: 650px) {

    .testimonial-section {
        padding: 70px 15px;
    }

    .testimonial-header {
        margin-bottom: 35px;
    }

    .testimonial-header h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

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

    .testimonial-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .review-service {
        position: static;
        width: fit-content;
        margin-top: 18px;
    }

    .testimonial-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-bottom-line {
        width: 100%;
        flex: none;
    }

}


/* =====================================================
   PREMIUM BOOK CONTACT SECTION
===================================================== */

.book-contact-section {
    position: relative;
    padding: 110px 20px;
    background: #041d3b;
    overflow: hidden;
}

.book-contact-section .container,
.author-support-section .container,
.pre-footer-cta .container {
    width: min(1240px, 100%);
    margin: 0 auto;
}


/* Background decoration */

.book-contact-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decoration-one {
    width: 480px;
    height: 480px;
    background: #d6b07d;
    opacity: 0.07;
    right: -170px;
    top: -180px;
}

.decoration-two {
    width: 280px;
    height: 280px;
    border: 1px solid rgba(210, 250, 153, 0.13);
    left: -100px;
    bottom: -110px;
}


/* Layout */

.book-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.05fr;
    gap: 80px;
    align-items: center;
}


/* Left */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d6b07d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.section-eyebrow > span {
    display: block;
    width: 28px;
    height: 2px;
    background: #d6b07d;
}
.book-contact-content h2 {
    color: #fff;
    margin: 0;
    max-width: 600px;
    font-size: clamp(44px, 5vw, 67px);
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.book-contact-content h2 em {
    display: block;
    color: #d6b07d;
    font-style: normal;
}

.book-contact-intro {
    max-width: 570px;
    margin: 25px 0 38px;
    color: rgba(255, 255, 255, .69);
    line-height: 1.8;
    font-size: 15px;
}


/* Benefits */

.contact-benefits {
    display: flex;
    flex-direction: column;
}

.contact-benefit {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 17px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.contact-benefit:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.contact-benefit-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d6b07d4d;
    color: #d6b07d;
    border: 1px solid rgba(210, 250, 153, .2);
    font-size: 11px;
    font-weight: 800;
}

.contact-benefit h4 {
    margin: 2px 0 6px;
    color: #fff;
    font-size: 15px;
}

.contact-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.65;
}

.contact-bottom-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D2FA99;
    box-shadow: 0 0 0 6px rgba(210, 250, 153, .09);
}


/* =====================================================
   FORM CARD
===================================================== */

.book-form-column {
    position: relative;
}

.book-form-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    z-index: 4;
    padding: 10px 16px;
    border-radius: 100px;
    background: #d6b07d;
    color: #000000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}
.premium-form-card {
    position: relative;
    background: #fff;
    padding: 42px;
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .22);
}

.premium-form-card::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50px;
    width: 8px;
    height: 95px;
    border-radius: 10px 0 0 10px;
    background: #d6b07d;
}


/* Existing lead-form styling override */

.premium-form-card form {
    width: 100%;
}

.premium-form-card h2, .premium-form-card h3 {
    color: #041d3b;
}

.premium-form-card input,
.premium-form-card select,
.premium-form-card textarea {
    border: 1px solid #d7ddd3 !important;
    background: #F8F9F6 !important;
    border-radius: 12px !important;
    transition: .2s ease;
}

.premium-form-card input:focus, .premium-form-card select:focus, .premium-form-card textarea:focus {
    border-color: #041d3b !important;
    box-shadow: 0 0 0 1px #041d3bb5 !important;
    background: #fff !important;
}

.premium-form-card button, .premium-form-card input[type="submit"] {
    background: #041d3b !important;
    color: #fff !important;
    border-radius: 100px !important;
    border: 0 !important;
    padding: 16px 28px !important;
    font-weight: 800 !important;
    transition: .25s ease;
}

.premium-form-card button:hover, .premium-form-card input[type="submit"]:hover {
    background: #d6b07d !important;
    color: #000000 !important;
    transform: translateY(-2px);
}


/* =====================================================
   SECTION 2 — AUTHOR SUPPORT
===================================================== */

.author-support-section {
    padding: 110px 20px;
    background: #EAE8E4;
}

.support-heading {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.dark-eyebrow {
    display: inline-block;
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 17px;
}

.support-heading h2 {
    margin: 0;
    color: #041d3b;
    font-size: clamp(39px, 5vw, 50px);
    line-height: 1;
    letter-spacing: -2.2px;
}

.support-heading h2 span {
    display: block;
    color: #d6b07d;
}

.support-heading > p {
    margin: 0;
    color: #686e65;
    font-size: 15px;
    line-height: 1.8;
}


.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.support-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 385px;
    padding: 27px;
    border-radius: 22px;
    background: #F5F4F1;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(28, 58, 19, .08);
    transition: .3s ease;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 25px 50px rgba(28, 58, 19, .09);
}

.featured-support-card {
    background: #d6b07d;
}


.support-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-number {
    color: #000000;
    font-size: 11px;
    font-weight: 800;
}

.support-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d6b07d;
    color: #fff;
    transition: .25s ease;
    border: solid 1px #0000004f;
}

.support-card:hover .support-arrow {
    transform: rotate(45deg);
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 40px 0 24px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #041d3b;
    color: #d6b07d;
    font-size: 23px;
}

.support-card h3 {
    margin: 0 0 13px;
    color: #041d3b;
    font-size: 22px;
}

.support-card > p {
    margin: 0 0 24px;
    color: #000000;
    font-size: 13px;
    line-height: 1.7;
}

.support-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.support-services span {
    padding: 7px 9px;
    border-radius: 100px;
    background: rgba(28, 58, 19, .07);
    color: #000000;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =====================================================
   SECTION 3 — PRE FOOTER CTA
===================================================== */

.pre-footer-cta {
    position: relative;
    padding: 90px 20px 80px;
    background: #d6b07d;
    overflow: hidden;
}

.pre-footer-pattern {
    position: absolute;
    width: 470px;
    height: 470px;
    right: -120px;
    top: -190px;
    border: 75px solid #041d3b87;
    border-radius: 50%;
}

.pre-footer-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding-bottom: 55px;
}

.cta-label {
    color: #041d3b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.pre-footer-copy h2 {
    max-width: 750px;
    margin: 16px 0;
    color: #041d3b;
    font-size: clamp(39px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
}
.pre-footer-copy h2 span {
    display: block;
    color: #041d3b;
}

.pre-footer-copy p {
    max-width: 600px;
    margin: 0;
    color: rgb(0 0 0);
    line-height: 1.75;
}


.pre-footer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pre-footer-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 10px 25px;
    border-radius: 100px;
    background: #041d3b;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.pre-footer-btn span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d6b07d;
    color: #000000;
    transition: .25s ease;
}

.pre-footer-btn:hover span {
    transform: translateX(3px);
}

.pre-footer-action small {
    color: rgb(0 0 0);
    font-size: 10px;
}


/* Promise row */

.author-promises {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.author-promise {
    padding: 28px 25px 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.author-promise:first-child {
    padding-left: 0;
}

.author-promise:last-child {
    border-right: 0;
}
.author-promise > span {
    color: #041d3b;
    font-size: 25px;
    font-weight: 900;
}

.author-promise strong {
    display: block;
    margin: 9px 0 7px;
    color: #000000;
    font-size: 15px;
}
.author-promise p {
    margin: 0;
    color: rgb(0 0 0);
    font-size: 12px;
    line-height: 1.6;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .book-contact-grid {
        gap: 45px;
    }

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

}


@media (max-width: 900px) {

    .book-contact-grid {
        grid-template-columns: 1fr;
    }

    .book-contact-content {
        max-width: 700px;
    }

    .support-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pre-footer-inner {
        grid-template-columns: 1fr;
    }

    .pre-footer-action {
        align-items: flex-start;
    }

    .author-promises {
        grid-template-columns: repeat(2, 1fr);
    }

    .author-promise:nth-child(2) {
        border-right: 0;
    }

}

@media (max-width: 600px) {
 h1 {
    font-size: 40px;
    letter-spacing: -0.045em;
}
}


@media (max-width: 600px) {

    .book-contact-section,
    .author-support-section {
        padding: 70px 15px;
    }

    .pre-footer-cta {
        padding: 70px 15px 60px;
    }

    .book-contact-content h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .premium-form-card {
        padding: 30px 20px 24px;
        border-radius: 20px;
    }

    .book-form-badge {
        right: 15px;
    }

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

    .support-card {
        min-height: 340px;
    }

    .author-promises {
        grid-template-columns: 1fr;
    }

    .author-promise,
    .author-promise:first-child {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .author-promise:last-child {
        border-bottom: 0;
    }

}


.brand-marquee {
    width: 100%;
    overflow: hidden;
    background: #041D3B;
    padding: 8px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: brandMarquee 32s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 32px;
    padding-right: 32px;
}

.marquee-content span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.marquee-content i {
    color: #d6b07d;
    font-style: normal;
    font-size: 15px;
    flex-shrink: 0;
}

@keyframes brandMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* Pause on hover */

.brand-marquee:hover .marquee-track {
    animation-play-state: paused;
}


/* Fade effect on edges */

.brand-marquee::before,
.brand-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(
        to right,
        #041D3B,
        transparent
    );
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        #041D3B,
        transparent
    );
}


/* Mobile */

@media (max-width: 768px) {

    .brand-marquee {
        padding: 15px 0;
    }

    .marquee-track {
        animation-duration: 24s;
    }

    .marquee-content {
        gap: 22px;
        padding-right: 22px;
    }

    .marquee-content span {
        font-size: 13px;
    }

    .brand-marquee::before,
    .brand-marquee::after {
        width: 35px;
    }
}


article.audience-card img {
    border: solid 4px #d6b07d;
}