.content-marketing-hero .hero-content h1 {
  font-size: 56px;
  max-width: 550px;
}
.content-marketing-hero .hero-content p {
  font-size: 18px;
  max-width: 807px;
  font-weight: 300;
  line-height: 170%;
  text-transform: capitalize !important;
}

.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .content-marketing-hero .hero-content h1 {
    font-size: 42px;
  }
  .hero-section .hero-image {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .content-marketing-hero .hero-content h1 {
    font-size: 32px;
  }
  .content-marketing-hero .hero-content p {
    font-size: 16px;
  }
  .hero-section .hero-image {
    max-width: 320px;
  }
}




/* Social Media Struggle Section */
.social-struggle-section {
    padding: 100px 24px;
    background-color: var(--body-bg); /* Black background */
}

.struggle-main-card {
    background: rgba(28, 28, 28, 1); /* Dark grey card */
    border-radius: 27px; /* Matches Figma/mockup */
    padding: 30px 22px;
    max-width: 1390px;
    margin: 0 auto;
}

.struggle-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Portrait Styling */
.struggle-portrait-area img {
    border-radius: 16px;
    filter: grayscale(100%); /* Editorial grayscale */
    display: block;
    width: 100%;
}

/* Typography Scale */
.struggle-headline {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 435px;
}

.struggle-headline .text-signature {
    font-size: 64px; /* Signifies "Exhausting" */
}

.struggle-lead-desc {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Pain Points List */
.pain-points-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
}

.pain-point-item h3 {
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Bold */
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

/* Custom Red Dot Bullet */
.pain-point-item h3::before {
    content: '●';
    color: #A30933; /* Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.pain-point-item p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    padding-left: 25px;
    opacity: 0.8;
}

.struggle-anchor-text {
    font-family: 'Prata', serif;
    font-size: 32px;
    font-weight: 400;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .struggle-main-card { padding: 40px 30px; }
    .struggle-grid-layout { grid-template-columns: 1fr; gap: 40px; }
    .struggle-headline { font-size: 38px; }
    .struggle-portrait-area { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .social-struggle-section { padding: 50px 20px; }
    .struggle-headline { font-size: 32px; margin-bottom: 20px; }
    .struggle-headline .text-signature { font-size: 36px; }
    .struggle-lead-desc { font-size: 16px; margin-bottom: 25px; }
    .pain-points-stack { margin-bottom: 30px; }
    .pain-point-item h3 { font-size: 16px; }
    .pain-point-item p { font-size: 15px; }
    .struggle-anchor-text { font-size: 22px; }
    .struggle-main-card { padding: 30px 20px; border-radius: 16px; }
    .struggle-portrait-area { max-width: 320px; margin: 0 auto; }
    .struggle-grid-layout { gap: 30px; }
}





/* Content Elevated Section Styling */
.content-elevated-section {
  padding: 100px 24px 0;
  background-color: var(--body-bg);
  position: relative;
  overflow: hidden;
}

.content-elevated-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  /* transform: translate(-50%, -50%); */
  width: 600px;
  height: 600px;
  background: rgba(246, 0, 67, 0.4);
  border-radius: 50%;
  filter: blur(277px);
  z-index: 0;
}

.elevated-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Typography Scaling */
.elevated-title {
  font-family: "Prata", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 35px;
  color: var(--text-color);
}

.elevated-lead {
  font-family: "Garet", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 580px;
  opacity: 0.9;
}

/* Value Propositions */
.value-props-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.prop-title {
  font-family: "Garet", sans-serif;
  font-weight: 850; /* Garet-Bold */
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

/* Red Dot Bullets */
.prop-title::before {
  content: "●";
  color: #a30933;
  position: absolute;
  left: 0;
  font-size: 14px;
}

.prop-text {
  font-family: "Garet", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  padding-left: 25px;
  opacity: 0.8;
}

/* Image Column & Glow Effect */
.elevated-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.elevated-image-wrap img {
  filter: grayscale(100%);
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .elevated-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .elevated-title {
    font-size: 42px;
  }

  .elevated-image-wrap {
    order: -1; /* Image appears first on mobile */
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .content-elevated-section {
    padding: 50px 20px;
  }
  .content-elevated-section::before {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }
  .elevated-title {
    font-size: 32px;
  }
  .elevated-lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .value-props-list {
      gap: 20px;
  }
  .prop-title {
    font-size: 18px;
  }
  .prop-text {
    font-size: 15px;
  }
  .elevated-image-wrap {
    max-width: 320px;
  }
}



/* What We Offer Experiential Section */
.what-we-offer-experiential {
    padding: 120px 24px;
    background-color: #000;
    background-image: 
        linear-gradient(180deg, #000000 8.17%, rgba(0, 0, 0, 0) 100%),
        url('../experimental-marketing-images/brick-texture.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.offer-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.offer-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: #fff;
    margin-bottom: 25px;
}

.offer-subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Staggered Grid Layout */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Individual Glass Card */
.offer-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 9, 51, 0.4);
}

.card-title {
    font-family: 'Prata', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
}

.card-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Absolute Editorial Image Positioning */
.offer-editorial-image {
    position: absolute;
    right: -130px;
    bottom: -207px;
    width: 600px;
    z-index: 2;
    pointer-events: none;
}

.offer-editorial-image img {
    width: 100%;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .what-we-offer-experiential {
        padding: 80px 24px;
    }
    .offer-title {
        font-size: 42px;
    }
    .offer-header {
        margin-bottom: 50px;
    }
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .offer-editorial-image {
        display: none;
    }
}
@media (max-width: 768px) {
    .what-we-offer-experiential {
        padding: 50px 20px;
    }
    .offer-title {
        font-size: 32px;
    }
    .offer-subtitle {
        font-size: 16px;
    }
    .offer-header {
        margin-bottom: 30px;
    }
    .offer-card {
        padding: 30px 20px;
    }
    .card-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .card-description {
        font-size: 15px;
    }
}




/* Testimonials Section Styling */
.testimonials-section {
  padding: 100px 24px;
  background-color: var(--body-bg);
}

.testimonials-header {
  margin-bottom: 70px;
}

.testimonials-header .eyebrow {
  font-family: "Garet", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.testimonials-title {
  font-family: "Prata", serif;
  font-size: 64px;
  margin-top: 10px;
}

.testimonials-slider {
  display: block;
  margin: 0 -20px;
  /* Offset the slide margins */
}

.testimonial-card {
  background: rgba(26, 26, 26, 1);
  border: 5.32px solid rgba(32, 32, 32, 0.93);
  border-radius: 20px;
  padding: 48px;
  min-height: 420px;
  position: relative;
  display: flex !important;
  flex-direction: column;
  /* margin: 0 20px;  Removed from here, applied to slick-slide instead */
}

.testimonial-card > img {
  width: 120px;
}

.testimonial-text {
  flex-grow: 1;
}

.testimonial-card p {
  font-family: "Garet";
  font-weight: 300;
  font-size: 16px;
  line-height: 27.59px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.testimonial-author img {
  width: 87px;
  height: 87px;
}

.testimonial-author strong {
  font-family: "Poppins";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 23px;
  line-height: 26.97px;
  letter-spacing: -2%;
  text-transform: capitalize;
}

.testimonials-cta {
  text-align: center;
  margin-top: 70px;
}

.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide {
  height: inherit !important;
  margin: 0 40px; /* Creates the 80px gap */
}

.testimonials-slider {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .testimonials-slider {
    margin: 0;
  }
  .testimonials-section {
    padding: 70px 24px;
  }
  .testimonials-header {
    margin-bottom: 40px;
  }
  .testimonials-title {
    font-size: 42px;
  }

  .testimonial-card {
    width: 100%;
    padding: 24px;
    min-height: auto;
  }

  .testimonial-card > img {
    width: 60px;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
  }

  .testimonial-author strong {
    font-size: 16px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-text p:last-child {
    margin-bottom: 0;
  }

  .testimonial-author {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 20px;
  }
  .testimonials-header {
      margin-bottom: 30px;
  }
  .testimonials-title {
    font-size: 32px;
  }
  .testimonials-slider .slick-slide {
      margin: 0 10px;
  }
}





/* Why Moxie Section Styling */
.why-moxie-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow background */
.why-moxie-section::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(120px);
    z-index: 0;
}

.why-moxie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 125px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-moxie-image img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    display: block;
}

.why-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.why-subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 850;
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.why-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
    opacity: 0.9;
}

/* Pillar Card Stack */
.why-pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pillar-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 4px;
}

.pillar-card h4 {
    font-family: 'Garet', sans-serif;
    font-weight: 850;
    font-size: 20px;
    color: #fff;
}

.pillar-card p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-title { font-size: 42px; }
    .why-moxie-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-moxie-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-moxie-section {
        padding: 50px 20px;
    }
    .why-moxie-section::before {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
    .why-title {
        font-size: 32px;
    }
    .why-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .why-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .pillar-card {
        padding: 20px 15px;
    }
    .pillar-card h4 {
        font-size: 18px;
    }
    .pillar-card p {
        font-size: 15px;
    }
    .why-moxie-image {
        max-width: 320px;
    }
}




















