/* ===================== TOKENS ===================== */
:root{
  --navy: #884A30;
  --navy-deep: #5A3120;
  --gold: #CA7B37;
  --cream: #F8F5EE;
  --ink: #21242C;
  --muted: #6B7180;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 52px; /* space for sticky bottom bar */
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0 0 16px; line-height:1.2; color: var(--navy-deep); }
h2{ font-size: clamp(28px, 4vw, 42px); }
h3{ font-size: 22px; }
p{ margin:0 0 14px; color: var(--muted); }
.container{ max-width: 1180px; margin:0 auto; padding: 0 24px; }
.section-sub{ max-width: 640px; margin: 0 auto 40px; text-align:center; }

/* Buttons */
.btn{
  display:inline-block;
  border:none;
  padding:14px 30px;
  border-radius: 999px;
  font-weight:600;
  cursor:pointer;
  font-size:15px;
  letter-spacing:.02em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary{ background: var(--gold); color: white; }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 8px 18px rgba(198,162,77,.4); }
.btn-secondary{ background: #CA7B37; color:var(--white); width:100%; }
.btn-secondary:hover{ background: var(--navy-deep); }

/* ===================== HEADER ===================== */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 24px;
  gap: 20px;
}
.logo{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  line-height:1;
}
.logo img{
  width:auto;
  height:auto;
  max-height:100px;
  object-fit:contain;
}

.main-nav ul{ list-style:none; margin:0; padding:0; }
.main-nav > ul{ display:flex; gap: 22px; align-items:center; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a{ font-weight:600; font-size:14px; padding:8px 0; }
.main-nav .dropdown{
  position:absolute; top:100%; left:0; min-width:260px;
  display:flex; flex-direction:column; gap:4px;
  background:var(--white); box-shadow: var(--shadow); border-radius: 8px;
  padding:10px; opacity:0; visibility:hidden; transform: translateY(8px);
  transition: all .15s ease;
}
.has-dropdown:hover .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.main-nav .dropdown li{ width:100%; }
.dropdown li a{ display:block; width:100%; padding:10px 12px; border-radius:6px; font-size:14px; }
.dropdown li a:hover{ background: var(--cream); color: var(--navy-deep); }

.header-phone{
  background: var(--navy); color:var(--white); padding:9px 16px; border-radius: 999px; font-weight:600; font-size:14px; white-space:nowrap;
}
.nav-toggle{ display:none; background:none; border:none; font-size:24px; cursor:pointer; }

/* ===================== HERO ===================== */
.hero{
  background:
    linear-gradient(90deg, rgba(248,245,238,.94), rgba(255,255,255,.78)),
    url("../images/book-writing-banner.png") center/cover no-repeat;
  padding: 60px 0 0;
}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:48px; align-items:start; padding-bottom: 60px;
}
.eyebrow{ color: black; font-weight:700; text-transform:uppercase; letter-spacing:.08em; font-size:14px; margin-bottom:12px;}
.hero-copy h1{ 
    font-size: clamp(32px, 5vw, 48px); 
    color: #CA7B37 !important;
}
.hero-form-card,
.lp-form-card,
.modal-box,
.contact-form-wrap{
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-form-card{
  padding: 28px; border-top: 4px solid var(--gold);
}
.lp-form-card{
  padding: 28px 24px; border-top: 4px solid var(--gold);
}
.modal-box{
  padding: 28px;
}
.contact-form-wrap{ padding:30px; }

.lead-form,
.contact-form{
  display:grid;
  gap:12px;
  width:100%;
  margin-top:16px;
  text-align:left;
}
.form-group{ display:grid; gap:8px; }
.form-group label{ display:none; }
.lead-form input,
.lead-form textarea,
.lead-form select,
.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  box-sizing:border-box;
  padding:13px 15px;
  margin:0;
  border:1px solid rgba(22,35,63,.12);
  border-radius:14px;
  font-family:var(--font-body);
  font-size:15px;
  color:var(--ink);
  background:#fff;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.04);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.lead-form textarea,
.contact-form textarea{
  min-height:110px;
  resize:vertical;
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:rgba(198,162,77,.7);
  box-shadow:0 0 0 3px rgba(198,162,77,.16);
}
.checkbox-line{ display:flex; gap:10px; font-size:13px; color:var(--muted); margin:4px 0 0; align-items:flex-start; line-height:1.5; }
.checkbox-line input{ margin-top:3px; width:auto; box-shadow:none; }
.lead-form .btn,
.lead-form button,
.contact-form .btn,
.contact-form button{
  width:100%;
  justify-content:center;
  border-radius:999px;
  padding:13px 18px;
  margin-top:2px;
}

.hero-strip{
  background: var(--navy-deep); color:var(--white);
  display:flex; align-items:center; justify-content:center; gap:48px;
  padding: 40px 24px; flex-wrap:wrap; text-align:center;
}
.hero-strip img{ max-height:220px; width:auto; }
.hero-strip-text h2{ color:var(--white); }
.hero-strip-text p{ color: #C7CCDA; }

/* ===================== TESTIMONIALS ===================== */
.testimonials{ padding: 80px 0; text-align:center; }
.testimonial-slider{ max-width:500px; margin: 30px auto; }
.testimonial-slide{ display:flex; gap:16px; align-items:center; background:var(--cream); padding:24px; border-radius: var(--radius); text-align:left; }
.avatar{ width:56px; height:56px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:20px; flex-shrink:0; }
.testimonial-slide h4{ margin:0; font-family:var(--font-body); font-weight:700; }
.testimonial-slide span{ color:var(--muted); font-size:13px; }
.testimonial-slide audio{ display:block; margin-top:10px; width:100%; }
.slider-controls{ display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:24px; }
.slider-controls button{ background:var(--navy); color:var(--white); border:none; width:36px; height:36px; border-radius:50%; cursor:pointer; }
.trustpilot-badge{ display:block; width:max-content; margin:0 auto; background:#00B67A; color:var(--white); padding:10px 20px; border-radius:6px; font-weight:600; font-size:14px; }

/* ===================== WHY US ===================== */
.why-us{ padding: 80px 0; text-align:center; background: var(--cream); margin: 30px 0 30px 0; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
  align-items:stretch;
  margin-top: 40px;
  text-align:center;
}
.why-card{
  background:var(--white);
  min-height: 260px;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:32px 28px;
  border:1px solid rgba(22,35,63,.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card h3{
  min-height: 58px;
  display:flex;
  align-items:flex-start;
  margin-bottom:14px;
}
.why-card p{
  margin-bottom:0;
  line-height:1.65;
}
.why-card a{ color: var(--navy); font-weight:600; text-decoration:underline; }
.why-card:hover{
  transform: translateY(-8px);
  border-color: #CA7B37;
  box-shadow: 0 20px 42px rgba(15,23,42,.18);
}
.why-steps{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 50px;
  color: var(--navy-deep);
  font-weight:700;
}
.animated-market-text{
  display:inline-block;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: marketShine 2.8s ease-in-out infinite, marketLift 2.8s ease-in-out infinite;
}

/* ===================== PARTNERS ===================== */
.partners{
  padding: 58px 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(198,162,77,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-bottom: 1px solid rgba(198,162,77,.22);
  border-top: 1px solid rgba(198,162,77,.22);
  overflow:hidden;
}
.partner-marquee{
  --partner-logo-width: 190px;
  --partner-logo-gap: 26px;
  width: calc((var(--partner-logo-width) * 3) + (var(--partner-logo-gap) * 2));
  max-width: calc(100% - 48px);
  margin:0 auto;
  overflow:hidden;
}
.logo-row{
  display:flex;
  align-items:center;
  gap:var(--partner-logo-gap);
  width:max-content;
}
.partner-track{
  animation: partnerSlide 18s ease-in-out infinite;
}
.partner-marquee:hover .partner-track{
  animation-play-state: paused;
}
.logo-row img{
  width: var(--partner-logo-width);
  height: 96px;
  padding:20px 24px;
  object-fit:contain;
  flex:0 0 auto;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(198,162,77,.32);
  border-radius:8px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  opacity:1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.2));
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.logo-row img:hover{
  transform: translateY(-4px) scale(1.04);
  background: rgba(255,255,255,.14);
  border-color: rgba(198,162,77,.68);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
}

@media (max-width: 720px){
  .partner-marquee{
    --partner-logo-width: 96px;
    --partner-logo-gap: 14px;
  }
  .logo-row img{
    height: 62px;
    padding:12px 14px;
  }
}

/* ===================== SERVICES ===================== */
.services{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  text-align:center;
  background:
    radial-gradient(circle at 8% 20%, rgba(198,162,77,.16), transparent 26%),
    radial-gradient(circle at 92% 74%, rgba(22,35,63,.12), transparent 28%),
    linear-gradient(180deg, var(--white), #FBF8F1);
}
.services .container{
  position:relative;
  z-index:2;
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align:center;
  margin: 44px auto 40px;
}
.service-card{
  min-height: 305px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background:rgba(255,255,255,.94);
  border:1px solid #ECEBE4;
  border-radius: var(--radius);
  padding:30px 28px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  backdrop-filter: blur(8px);
}
.service-card h3{
  min-height:54px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  color: var(--navy-deep);
}
.service-card p{
  margin-bottom:0;
  text-align:center;
}
.services-art{
  position:absolute;
  z-index:1;
  width:220px;
  min-height:420px;
  pointer-events:none;
}
.services-art img{
  position:absolute;
  width:190px;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 22px 28px rgba(15,23,42,.18));
  animation: serviceFloat 6s ease-in-out infinite;
}
.services-art-left{
  left:max(18px, calc((100vw - 1180px) / 2 - 170px));
  top:170px;
}
.services-art-right{
  right:max(18px, calc((100vw - 1180px) / 2 - 170px));
  top:230px;
}
.services-art-left img{
  left:0;
  top:46px;
  transform-origin:center;
}
.services-art-right img{
  right:0;
  top:38px;
  width:150px;
  animation-delay:-2s;
}
.service-doodle,
.service-paper{
  position:absolute;
  display:block;
  animation: serviceDrift 7s ease-in-out infinite;
}
.service-doodle::before{
  content:"";
  display:block;
  width:58px;
  height:22px;
  border-top:6px solid var(--navy-deep);
  border-radius:50%;
  transform:rotate(18deg);
}
.service-doodle-one{
  left:8px;
  top:0;
}
.service-doodle-two{
  right:16px;
  top:0;
  animation-delay:-1.5s;
}
.service-paper{
  width:58px;
  height:82px;
  border:6px solid var(--navy-deep);
  border-radius:8px 16px 8px 8px;
  box-shadow:10px 8px 0 rgba(14,24,48,.14);
  transform:rotate(-12deg);
}
.service-paper::before{
  content:"";
  position:absolute;
  inset:12px 11px auto;
  height:6px;
  border-radius:999px;
  background:var(--navy-deep);
  box-shadow:0 18px 0 var(--navy-deep);
}
.service-paper-teal{
  left:118px;
  top:314px;
  background:#55D5CB;
  animation-delay:-2.2s;
}
.service-paper-red{
  right:124px;
  top:292px;
  background:#FF614F;
  animation-delay:-3.4s;
}

/* ===================== UNIQUE ===================== */
.unique{
  position:relative;
  overflow:hidden;
  padding: 90px 0;
  background-image: url(images/what-to-expect-from-our-audiobook-production-team-2.png);
  background-size: 160% 160%;
  background-position: center;
  background-repeat: no-repeat;
  text-align:center;
 
}
.unique::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url(images/what-to-expect-from-our-audiobook-production-team-2.png);
  background-size: 54px 54px;
  opacity:.32;
 
}
.unique::after{
  content:"";
  position:absolute;
  width:340px;
  height:340px;
  right:-110px;
  top:-120px;
  border-radius:50%;
  background:rgba(198,162,77,.16);
  filter:blur(4px);
  animation: uniqueOrbFloat 9s ease-in-out infinite;
}
.unique .container{
  position:relative;
  z-index:1;
}
.unique h2{ color: black; }
.unique-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:24px;
  text-align:center;
  margin: 36px 0;
}
.unique-card{
  min-height: 205px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:30px 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease, border-color .32s ease;
}
.unique-card h3{
  color: var(--gold);
  min-height: 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.unique-card p{
  color: #D7DCE8;
  margin-bottom:0;
  text-align:center;
}
.unique-card:hover{
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,.12);
  border-color: rgba(198,162,77,.58);
  box-shadow: 0 24px 52px rgba(0,0,0,.32);
}

/* ===================== CTA BANNER ===================== */
.cta-banner{ background: var(--gold); padding: 60px 0; text-align:center; }
.cta-banner h2{ color: var(--navy-deep); }
.cta-banner p{ color: var(--navy-deep); max-width:720px; margin:0 auto 12px; }
.cta-banner a{ font-weight:700; }

/* ===================== PORTFOLIO — TWO ROW MARQUEE CAROUSEL ===================== */
.portfolio{ padding:80px 0; text-align:center; overflow:hidden; }
.marquee-row{
  width:100%; overflow:hidden; margin-top:22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display:flex; gap:16px; width:max-content;
}
.marquee-track img{
  width: 150px; aspect-ratio: 2/3; object-fit:cover; border-radius:8px; box-shadow: var(--shadow);
  background: #EDEBE3; flex-shrink:0;
  transition: transform .35s ease, box-shadow .35s ease;
}
.marquee-track img:hover{
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 18px 34px rgba(15,23,42,.22);
  z-index: 2;
}
.marquee-left{ animation: scrollLeft 90s linear infinite; }
.marquee-right{ animation: scrollRight 90s linear infinite; }
.marquee-row:hover .marquee-track{ animation-play-state: paused; }

@keyframes scrollLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@keyframes scrollRight{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}
@keyframes partnerSlide{
  0%,16%{ transform: translateX(0); }
  20%,36%{ transform: translateX(calc(-3 * (var(--partner-logo-width) + var(--partner-logo-gap)))); }
  40%,56%{ transform: translateX(calc(-6 * (var(--partner-logo-width) + var(--partner-logo-gap)))); }
  60%,76%{ transform: translateX(calc(-9 * (var(--partner-logo-width) + var(--partner-logo-gap)))); }
  80%,96%{ transform: translateX(calc(-12 * (var(--partner-logo-width) + var(--partner-logo-gap)))); }
  100%{ transform: translateX(0); }
}
@keyframes serviceFloat{
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%{ transform: translateY(-18px) rotate(3deg); }
}
@keyframes serviceDrift{
  0%,100%{ transform: translateY(0) rotate(-12deg); }
  50%{ transform: translateY(16px) rotate(8deg); }
}
@keyframes uniqueBgMove{
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
@keyframes uniqueGridDrift{
  from{ background-position: 0 0; }
  to{ background-position: 54px 54px; }
}
@keyframes uniqueOrbFloat{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-36px,42px,0) scale(1.12); }
}
@keyframes journeyBgMove{
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
@keyframes journeyPatternMove{
  from{ background-position: 0 0, 0 0; }
  to{ background-position: 74px 0, 0 74px; }
}
@keyframes journeyIconFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-8px) rotate(-3deg); }
}

@media (max-width: 720px){
  .marquee-track img{ width: 110px; }
}

@media (max-width: 1180px){
  .services-art{
    opacity:.16;
    transform:scale(.9);
  }
  .services-art-left{
    left:12px;
  }
  .services-art-right{
    right:12px;
  }
}

@media (max-width: 900px){
  .journey-inner{
    grid-template-columns:1fr;
    gap:24px;
  }
  .journey-content-box{
    text-align:center;
    padding:36px 28px;
  }
  .journey h2,
  .journey p{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 560px){
  .journey{
    padding:64px 0;
  }
  .journey-icon-box{
    grid-template-columns:1fr;
    gap:22px;
    padding:28px 24px;
  }
  .journey-step{
    justify-content:center;
    font-size:24px;
  }
  .journey-btn{
    min-width:0;
    width:100%;
  }
}

/* ===================== SCROLL-REVEAL ANIMATIONS ===================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
  align-content: center;
}

/* Generic image hover lift, used across logos/hero/etc. */
.service-card{
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(15,23,42,.12);
}
.hero-strip img{ animation: floatY 5s ease-in-out infinite; }
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
@keyframes marketShine{
  0%,100%{ background-position: 0% center; }
  50%{ background-position: 100% center; }
}
@keyframes marketLift{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

/* ===================== JOURNEY ===================== */
.journey{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(198,162,77,.18), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy), #0A1022);
  background-size: 180% 180%;
  color: var(--white);
  padding: 84px 0;
  animation: journeyBgMove 13s ease-in-out infinite;
}
.journey::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 74px);
  opacity:.5;
  animation: journeyPatternMove 18s linear infinite;
}
.journey-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: .82fr 1.18fr;
  align-items:center;
  gap:54px;
}
.journey-icon-box,
.journey-content-box{
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:rgba(255,255,255,.06);
  box-shadow:0 18px 48px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}
.journey-icon-box{
  display:grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap:36px 34px;
  padding:42px 36px;
}
.journey-step{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--white);
  font-size:28px;
  font-weight:800;
}
.journey-step svg{
  width:48px;
  height:48px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--gold);
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.22));
  animation: journeyIconFloat 4.5s ease-in-out infinite;
}
.journey-step:nth-child(2) svg{ animation-delay:-1s; }
.journey-step:nth-child(3) svg{ animation-delay:-2s; }
.journey-step:nth-child(4) svg{ animation-delay:-3s; }
.journey-content-box{
  padding:44px 48px;
  text-align:left;
}
.journey h2{
  color: var(--white);
  max-width:650px;
  margin:0 0 24px;
  font-size:clamp(34px, 4.6vw, 48px);
}
.journey p{
  color:#E6EAF3;
  max-width:720px;
  margin:0 0 18px;
  font-weight:500;
}
.journey-btn{
  display:block;
  width:max-content;
  min-width:284px;
  margin:34px auto 0;
  background:#05070C;
  color:var(--white);
  border-radius:4px;
  text-transform:uppercase;
}
.journey-btn:hover{
  background:var(--gold);
  color:var(--navy-deep);
}

/* ===================== FAQ ===================== */
.faq{
  padding:80px 0;
  text-align:center;
  overflow:hidden;
}

.faq .container h2{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.faq.in-view .container h2{
  opacity:1;
  transform:translateY(0);
}

.faq-list{
  max-width: 780px;
  margin: 40px auto 0;
  text-align:left;
}

.faq-item{
  border-bottom:1px solid #E7E5DE;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .5s ease, transform .5s ease, border-color .3s ease;
}

.faq.in-view .faq-item{
  opacity:1;
  transform:translateY(0);
}

/* Staggered entrance */
.faq.in-view .faq-item:nth-child(1){ transition-delay:.05s; }
.faq.in-view .faq-item:nth-child(2){ transition-delay:.1s; }
.faq.in-view .faq-item:nth-child(3){ transition-delay:.15s; }
.faq.in-view .faq-item:nth-child(4){ transition-delay:.2s; }
.faq.in-view .faq-item:nth-child(5){ transition-delay:.25s; }
.faq.in-view .faq-item:nth-child(6){ transition-delay:.3s; }
.faq.in-view .faq-item:nth-child(7){ transition-delay:.35s; }
.faq.in-view .faq-item:nth-child(8){ transition-delay:.4s; }

.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:18px 0;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: var(--navy-deep);
  font-family:var(--font-body);
  transition:color .3s ease;
}

.faq-q:hover{
  color: var(--gold);
}

.faq-q::after{
  content:'+';
  font-size:22px;
  color: var(--gold);
  display:inline-block;
  transition:transform .35s ease;
  margin-left:16px;
  flex-shrink:0;
}

.faq-item.open .faq-q::after{
  transform:rotate(135deg);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-a-inner{
  padding-bottom:18px;
  opacity:0;
  transform:translateY(-8px);
  transition:opacity .35s ease .05s, transform .35s ease .05s;
}

.faq-item.open .faq-a-inner{
  opacity:1;
  transform:translateY(0);
}

/* ===================== CONTACT ===================== */
.contact{ background: var(--cream); padding: 80px 0; }
.contact-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap:48px; }
.contact-info p a{ display:inline-block; margin-bottom:12px; font-weight:600; }
.contact-form-wrap{ background:var(--white); padding:30px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Contact icons --- */
.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
}
.contact-icon{
  flex:0 0 auto;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--secondary, #b8862c);
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.contact-icon svg{
  width:18px;
  height:18px;
}

/* idle animations, each icon its own personality */
.icon-phone svg{ animation: ring 2.6s ease-in-out infinite; transform-origin: 50% 20%; }
.icon-mail svg{ animation: float-y 2.8s ease-in-out infinite; }
.icon-pin svg{ animation: pulse-pin 2.2s ease-in-out infinite; }

@keyframes ring{
  0%, 80%, 100% { transform: rotate(0deg); }
  82% { transform: rotate(-15deg); }
  84% { transform: rotate(12deg); }
  86% { transform: rotate(-10deg); }
  88% { transform: rotate(6deg); }
  90% { transform: rotate(0deg); }
}

@keyframes float-y{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes pulse-pin{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* hover feedback */
.contact-item:hover .contact-icon{
  background: #CA7B37;
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

@media (prefers-reduced-motion: reduce){
  .icon-phone svg, .icon-mail svg, .icon-pin svg{
    animation: none;
  }
}

/* ===================== FOOTER ===================== */
.site-footer{ background: var(--navy-deep); color:#C7CCDA; padding: 70px 0 20px; }
.footer-grid{ display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .logo{
  width:max-content;
  padding:8px 10px;
  background:none;
  border-radius:8px;
  margin-bottom:16px;
}
.footer-brand .logo img{
  width:auto;
  max-height:auto;
}
.footer-brand p{
  margin-bottom:0;
}
.social-row{ display:flex; gap:14px; margin-top:16px; flex-wrap:wrap; }
.social-link{ display:inline-flex; align-items:center; gap:8px; font-size:13px; color:#fff; text-decoration:none; transition:color .2s ease; }
.social-link:hover{ color: var(--gold); }
.social-icon{ width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.social-icon svg{ width:100%; height:100%; display:block; }
.footer-col h4{ color: var(--white); font-size:16px; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; font-size:14px; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{ text-align:center; margin-top: 50px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); font-size:13px; }

/* ===================== MODAL ===================== */
.modal-overlay{
  position:fixed; inset:0; background: rgba(14,24,48,.6); display:flex; align-items:center; justify-content:center; z-index:1000; padding:20px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .35s ease-in-out, visibility 0s linear .35s;
}
.modal-overlay.active{
  opacity:1; visibility:visible; pointer-events:auto;
  transition: opacity .35s ease-in-out, visibility 0s linear 0s;
}
.modal-box{
  background:var(--white); border-radius: var(--radius); padding:32px; max-width:420px; width:100%; position:relative;
  transform: scale(.9) translateY(18px); opacity:0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease-in-out;
}
.modal-overlay.active .modal-box{
  transform: scale(1) translateY(0); opacity:1;
}
.modal-close{ position:absolute; top:12px; right:16px; background:none; border:none; font-size:24px; cursor:pointer; color: var(--muted); transition: color .2s ease, transform .2s ease; }
.modal-close:hover{ color:#222; transform: rotate(90deg); }

@media (max-width: 480px){
  .modal-box{ padding:24px 20px; max-width:100%; border-radius:10px; }
  .modal-box h3{ font-size:21px; }
  .lead-form input, .lead-form textarea{ font-size:16px; } /* prevents iOS auto-zoom on focus */
}
@media (max-width: 340px){
  .modal-overlay{ padding:10px; }
  .modal-box{ padding:18px 16px; }
}

/* ===================== STICKY BOTTOM BAR ===================== */
.sticky-bar{
  position: fixed; bottom: 0; left:0; right:0; z-index: 400;
  display:flex; justify-content:center; gap: 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
}
.sticky-bar a{
  flex:1; text-align:center; padding: 14px 10px; font-weight:700; font-size:14px;
}
.sticky-chat{ background: var(--navy-deep); color:var(--white); }
.sticky-call{ background: var(--gold); color: var(--navy-deep); }
.sticky-chat:hover{ background: var(--navy); }
.sticky-call:hover{ filter: brightness(1.05); }

/* ===================== THEME-ALIGNED LIVE CHAT LINKS (used on LPs) ===================== */
.lp-chat-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  letter-spacing:.04em;
  color:var(--navy);
  text-decoration:none;
  position:relative;
  overflow:hidden;
  background: rgba(248,245,238,.9);
  border:1px solid rgba(22,35,63,.10);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.lp-chat-link::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(198,162,77,.0), rgba(198,162,77,.55), rgba(198,162,77,.0));
  transform: translateX(-120%);
  opacity:0;
  transition: transform .55s ease, opacity .18s ease;
}

.lp-chat-link:hover{
  transform: translateY(-2px);
  background: #884A30;
  border-color: rgba(198,162,77,.65);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(15,23,42,.20);
}

.lp-chat-link:hover::before{
  opacity:1;
  transform: translateX(0);
}

.lp-chat-link:focus-visible{
  outline: 3px solid rgba(198,162,77,.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .lp-chat-link{ transition:none; }
  .lp-chat-link::before{ transition:none; }
}


/* ===================== COUPON / EXIT POPUPS ===================== */
.coupon-highlight{
  font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight:700; margin-bottom:18px;
}
#couponModal .modal-box, #exitModal .modal-box{ border-top: 4px solid var(--gold); }

@media (max-width: 480px){
  .coupon-highlight{ font-size:18px; }
}

/* Note: .modal-overlay / .modal-box base styles (including the fade + scale animation
   and responsive rules) live in the 1st popup's CSS file since both popups share them. */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px){
  .why-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .services-grid, .unique-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  /* Use absolute positioning so the menu expands directly under the header
     regardless of the header's computed height (avoids hard-coded 70px offset). */
  /* Mobile menu is hidden by collapsing its max-height and opacity; opening adds the .open class which expands it with animation. */
  .main-nav{ position:absolute; top:100%; left:0; right:0; background:var(--white); box-shadow: var(--shadow); padding:20px; max-height:0; overflow:hidden; opacity:0; pointer-events:none; transition: max-height .32s ease, opacity .22s ease; z-index:600; }
  .main-nav.open{ max-height: 1000px; opacity:1; pointer-events:auto; }
  .main-nav > ul{ flex-direction:column; align-items:flex-start; gap:6px; }
  .main-nav .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; display:none; padding:6px 0 0 12px; width:100%; }
  .has-dropdown.open .dropdown{ display:flex; }
  .nav-toggle{ display:block; }
  .header-phone{ display:none; }
  .why-grid, .services-grid, .unique-grid, .footer-grid{ grid-template-columns: 1fr; }
  .hero-strip{ gap:24px; padding:32px 16px; }
  .hero-strip img{ max-height:160px; }
}

@media (max-width: 900px){
  .journey-inner{
    grid-template-columns:1fr;
    gap:24px;
  }
  .journey-content-box{
    text-align:center;
    padding:36px 28px;
  }
  .journey h2,
  .journey p{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 560px){
  .journey{
    padding:64px 0;
  }
  .journey-icon-box{
    grid-template-columns:1fr;
    gap:22px;
    padding:28px 24px;
  }
  .journey-step{
    justify-content:center;
    font-size:24px;
  }
  .journey-btn{
    min-width:0;
    width:100%;
  }
}

/* ========== RESPONSIVE VIDEO THUMBNAIL SECTION ========== */
.bp-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
}

.bp-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bp-video-wrapper:hover .bp-video-thumbnail {
    transform: scale(1.03);
}

.bp-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    cursor: pointer;
}

.bp-play-button:hover {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.bp-play-button svg {
    width: 34px;
    height: 34px;
    fill: #1a1a2e;
    margin-left: 4px;
}

.bp-play-button:hover svg {
    fill: white;
}

.bp-video-label {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */

/* Tablet */
@media (max-width: 768px) {
    .bp-video-wrapper {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .bp-play-button {
        width: 68px;
        height: 68px;
    }
    
    .bp-play-button svg {
        width: 30px;
        height: 30px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .bp-video-wrapper {
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .bp-play-button {
        width: 60px;
        height: 60px;
    }
    
    .bp-play-button svg {
        width: 26px;
        height: 26px;
    }
    
    .bp-video-label {
        font-size: 10.5px;
        padding: 4px 10px;
        bottom: 10px;
        right: 10px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .bp-play-button {
        width: 54px;
        height: 54px;
    }
    
    .bp-play-button svg {
        width: 24px;
        height: 24px;
    }
}

  .lp-floats .lead-form{
    display:grid;
    gap:12px;
    margin-top:14px;
  }
  .lp-floats .lead-form input,
  .lp-floats .lead-form textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid rgba(22,35,63,.12);
    border-radius:14px;
    padding:12px 14px;
    font:inherit;
    font-size:15px;
    color:var(--ink);
    background:#fff;
    box-shadow:inset 0 1px 1px rgba(0,0,0,.04);
  }
  .lp-floats .lead-form textarea{
    min-height:96px;
    resize:vertical;
  }
  .lp-floats .lead-form input:focus,
  .lp-floats .lead-form textarea:focus{
    outline:none;
    border-color:rgba(198,162,77,.7);
    box-shadow:0 0 0 3px rgba(198,162,77,.16);
  }
  .lp-floats .lead-form .btn,
  .lp-floats .lead-form button{
    width:100%;
    border-radius:999px;
    padding:13px 18px;
    justify-content:center;
    margin-top:2px;
  }

  body{ padding-bottom:52px; }

  .lp-header{ position:sticky; top:0; z-index:500; background:var(--white); box-shadow:0 1px 0 rgba(0,0,0,.06); }
  .lp-header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px; }
  .lp-header .logo img{ max-height:64px; width:auto; }
  .lp-header-phone{ background:var(--navy); color:var(--white); padding:9px 18px; border-radius:999px; font-weight:700; font-size:14px; white-space:nowrap; }

  .audio-hero{
    position:relative; overflow:hidden; padding:92px 0 84px; color:var(--white);
    background-size:160% 160%;
    min-height:640px; display:flex; align-items:center;
  }
  
  .audio-hero::before{
    content:""; position:absolute; inset:0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:54px 54px; opacity:.32; animation: uniqueGridDrift 18s linear infinite;
  }
  .audio-hero .container{ position:relative; z-index:1; max-width:1180px; width:100%; }
  .audio-hero-grid{ display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr); gap:56px; align-items:center; }
  .audio-hero-copy{ display:flex; flex-direction:column; align-items:flex-start; text-align:left; }
  .audio-hero h1{ color:black; font-size:clamp(32px,5vw,50px); line-height:1.12; max-width:780px; margin:0 0 18px; text-align:left; }
  .audio-hero p{ color:grey; font-size:17px; max-width:720px; margin:0 0 24px; text-align:left; }
  .audio-hero .btn{ margin-top:4px; }
  .audio-waves{ display:flex; gap:4px; justify-content:flex-start; align-items:flex-end; height:40px; margin:0 0 28px; }
  .audio-waves span{ width:5px; background:var(--gold); border-radius:3px; animation: waveBounce 1.2s ease-in-out infinite; }
  .audio-waves span:nth-child(1){ height:14px; animation-delay:0s; }
  .audio-waves span:nth-child(2){ height:26px; animation-delay:.1s; }
  .audio-waves span:nth-child(3){ height:38px; animation-delay:.2s; }
  .audio-waves span:nth-child(4){ height:22px; animation-delay:.3s; }
  .audio-waves span:nth-child(5){ height:34px; animation-delay:.4s; }
  .audio-waves span:nth-child(6){ height:16px; animation-delay:.5s; }
  .audio-waves span:nth-child(7){ height:28px; animation-delay:.6s; }
  @keyframes waveBounce{ 0%,100%{ transform:scaleY(.4); } 50%{ transform:scaleY(1); } }

  .stat-row{ display:flex; justify-content:flex-start; gap:70px; margin-top:48px; flex-wrap:wrap; }
  .stat{ min-width:180px; text-align:left; }
  .stat .stat-num{ font-family:var(--font-display); font-size:clamp(34px,4vw,48px); font-weight:800; color:var(--gold); }
  .stat .stat-label{ color:#C7CCDA; font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
  .audio-hero-form{ display:flex; justify-content:flex-end; }
  .audio-hero-form .lp-form-card{ margin:0; width:100%; max-width:480px; text-align:left; }

  .audio-lead{ padding:70px 0; background:var(--cream); }
  .audio-lead-card{ max-width:560px; margin:0 auto; background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:34px; text-align:center; border-top:4px solid var(--gold); }

  .lp-split{ padding:80px 0; overflow:hidden; }
  .lp-split-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  .lp-split-grid img{ border-radius:var(--radius);  }
  .lp-split.lp-split-alt .lp-split-grid{ direction:rtl; }
  .lp-split.lp-split-alt .lp-split-grid > *{ direction:ltr; }


  /* Enhanced process layout (dashed circle, large background numbers, positioned cards) */
  .process-stage{ position:relative; padding:0px 0 30px; }
  .process-stage .process-grid{ position:relative; margin-top:28px; height:760px; max-width:1280px; margin-left:auto; margin-right:auto; }
  /* floating decorative image behind the process cards */
  .process-stage .process-grid::before{ content:''; position:absolute; inset:0; pointer-events:none; background-image:url('images/audio.webp'); background-repeat:no-repeat; background-position:center 45%; background-size:58%; opacity:0.08; filter:contrast(.95) saturate(.95); transform:translateY(0); animation:floatY 9s ease-in-out infinite; z-index:0; }
  .process-stage .bg-dashed{ position:absolute; inset:0; pointer-events:none; display:block; background-position:center; background-size:95%; opacity:1; z-index:0; }
  .process-stage .bg-dashed::after{ content:''; display:block; position:absolute; inset:0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'><circle cx='500' cy='500' r='380' fill='none' stroke='%23EAD9B3' stroke-width='6' stroke-dasharray='16 18' opacity='0.06'/></svg>"); background-position:center; background-size:100%; opacity:1; z-index:0; }
  .process-number{ position:absolute; font-size:160px; color:rgba(198,162,77,0.06); font-weight:800; font-family:var(--font-display); pointer-events:none; user-select:none; letter-spacing:2px; z-index:1; }
  /* Align numbers to match each card position */
  .process-number.n1{ left:28%; transform:translateX(-50%); top:-50px; font-size:160px; }
  .process-number.n2{ left:-10%; top:260px; font-size:140px; }
  .process-number.n3{ right:-10%; top:260px; font-size:140px; }
  .process-number.n4{ left:50%; transform:translateX(-50%); top:640px; font-size:160px; }

  .process-card{ position:absolute; width:320px; background:var(--white); border:1px solid rgba(22,35,63,.06); border-radius:14px; box-shadow:0 18px 40px rgba(10,18,30,.08); padding:26px 26px 30px; transition:transform .5s cubic-bezier(.2,.9,.2,1), box-shadow .34s ease, opacity .5s ease; opacity:0; transform:translateY(36px); }
  .process-card:hover{ transform:translateY(-10px) scale(1.02); box-shadow:0 30px 60px rgba(10,18,30,.14); }
  .process-card .process-icon{ width:56px; height:56px; border-radius:50%; background:var(--gold); color:var(--navy); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-family:var(--font-display); font-weight:800; font-size:18px; }

  .position-top{ top:36px; left:50%; margin-left:-160px; z-index:4; }
  .position-left{ top:320px; left:6%; z-index:2; }
  .position-right{ top:320px; right:6%; z-index:3; }
  .position-bottom{ top:540px; left:50%; margin-left:-160px; z-index:5; }

  @keyframes floatY{ 0%{ transform:translateY(0px); } 50%{ transform:translateY(-12px); } 100%{ transform:translateY(0px); } }

  .process-card.revealed{ opacity:1; transform:translateY(0); }

  /* Reveal when intersecting (uses existing .reveal -> .in-view script) */
  .process-card.reveal.in-view{ opacity:1; transform:translateY(0); }
  .process-card.delay-1{ transition-delay:0.06s; }
  .process-card.delay-2{ transition-delay:0.14s; }
  .process-card.delay-3{ transition-delay:0.22s; }
  .process-card.delay-4{ transition-delay:0.3s; }

  @media (max-width:960px){
    .process-stage .process-grid{ height:auto; display:grid; grid-template-columns:1fr; gap:22px; padding:18px 0 36px; }
    .process-number{ display:none; }
    .process-card{ position:static; width:100%; transform:none; opacity:1; }
  }

  .feature-split{ padding:80px 0; }
  .feature-list{ display:flex; flex-direction:column; gap:26px; }
  .feature-item{ display:flex; gap:18px; align-items:flex-start; }
  .feature-item .feature-icon{ flex:0 0 auto; width:46px; height:46px; border-radius:50%; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; font-weight:800; }
  .feature-item h3{ margin-bottom:6px; font-size:19px; }
  .feature-item p{ margin-bottom:0; }

  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; text-align:left; }
  .testi-card{ background:var(--cream); border-radius:var(--radius); padding:26px; box-shadow:0 8px 24px rgba(15,23,42,.06); transition:transform .3s ease, box-shadow .3s ease; }
  .testi-card:hover{ transform:translateY(-6px); box-shadow:0 18px 36px rgba(15,23,42,.14); }
  .testi-stars{ color:var(--gold); letter-spacing:2px; margin-bottom:8px; }
  .testi-card p{ font-style:italic; color:var(--ink); }
  .testi-person strong{ display:block; font-size:14px; }
  .testi-person span{ color:var(--muted); font-size:12px; }

  .contact-item{ margin:0 0 16px; }
  .contact-item a{ display:inline-flex; align-items:center; gap:14px; padding:14px 18px; border-radius:18px; background:rgba(255,255,255,.08); color:var(--navy); font-weight:700; text-decoration:none; box-shadow:0 12px 28px rgba(10,18,30,.08); transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .contact-item a:hover{ transform:translateY(-3px); background:rgba(255,255,255,.18); box-shadow:0 18px 40px rgba(10,18,30,.14); }
  .contact-icon{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:var(--gold); color:var(--navy); font-size:16px; flex-shrink:0; box-shadow:0 6px 16px rgba(10,18,30,.12); transition:transform .25s ease;
  }
  .contact-item a:hover .contact-icon{ transform:translateX(4px); }

  .lp-form-card{
    background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:34px; text-align:center; border-top:4px solid var(--gold);
  }
  .audio-lead-card .lead-form{
    text-align:left;
  }
  @media (max-width:960px){
    .lp-split-grid{ grid-template-columns:1fr; }
    .lp-split.lp-split-alt .lp-split-grid{ direction:ltr; }
    .process-grid{ grid-template-columns:repeat(2,1fr); }
    .testi-grid{ grid-template-columns:1fr; }
    .stat-row{ gap:40px; }
    .audio-hero-grid{ grid-template-columns:1fr; gap:32px; }
    .audio-hero-form{ justify-content:center; }
    .audio-hero-form .lp-form-card{ max-width:100%; }
    .contact > .container{ grid-template-columns:1fr !important; }
  }
  @media (max-width:600px){
    .process-grid{ grid-template-columns:1fr; }
    .lp-header-inner{ flex-wrap:wrap; }
    .stat-row{ flex-direction:column; gap:24px; }
  }

    .lp-floats .lead-form{
    display:grid;
    gap:12px;
    margin-top:14px;
  }
  .lp-floats .lead-form input,
  .lp-floats .lead-form textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid rgba(22,35,63,.12);
    border-radius:14px;
    padding:12px 14px;
    font:inherit;
    font-size:15px;
    color:var(--ink);
    background:#fff;
    box-shadow:inset 0 1px 1px rgba(0,0,0,.04);
  }
  .lp-floats .lead-form textarea{
    min-height:96px;
    resize:vertical;
  }
  .lp-floats .lead-form input:focus,
  .lp-floats .lead-form textarea:focus{
    outline:none;
    border-color:rgba(198,162,77,.7);
    box-shadow:0 0 0 3px rgba(198,162,77,.16);
  }
  .lp-floats .lead-form .btn,
  .lp-floats .lead-form button{
    width:100%;
    border-radius:999px;
    padding:13px 18px;
    justify-content:center;
    margin-top:2px;
  }