.content-marketing-hero .hero-content h1{
font-size: 56px;
max-width: 550px;

}
.content-marketing-hero .hero-content{
    max-width: 700px;
}
.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-inner{
    justify-content: end    ;
}
.content-marketing-hero .hero-image{
    position: static;
}
 

.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 {
        display: none !important;
    }
    .content-marketing-hero .hero-content {
        padding-bottom: 150px;
    }
}

@media (max-width: 768px) {
    .content-marketing-hero .hero-content h1 {
        font-size: 38px;
    }
    .content-marketing-hero .hero-content p {
        font-size: 16px;
    }
    .content-marketing-hero .hero-content {
        padding-bottom: 100px;
    }
}




/* 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);
}

.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: 50px; }
    .struggle-headline { font-size: 38px; }
    .struggle-portrait-area { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .social-struggle-section { padding: 70px 24px; }
    .struggle-headline { font-size: 36px; margin-bottom: 30px; }
    .struggle-headline .text-signature { font-size: 42px; }
    .struggle-lead-desc { font-size: 16px; }
    .pain-point-item h3 { font-size: 16px; }
    .pain-point-item p { font-size: 16px; }
    .struggle-anchor-text { font-size: 26px; }
    .struggle-main-card { padding: 30px 20px; border-radius: 16px; }
    .struggle-portrait-area { max-width: 320px; margin: 0 auto; }
}




/* Social Secret Weapon Section */
.social-secret-weapon-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.social-secret-weapon-section::before{
    content: "";
    position: absolute;
    top: 20%px;
    right: 0;
    width: 450px;
    height: 450px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(100px);
    border-radius: 50%;

}

.secret-weapon-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Header & Lead Text */
.social-secret-weapon-section .section-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text-color);
}

.social-secret-weapon-section .section-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 55px;
    max-width: 600px;
    opacity: 0.9;
}

/* Pillar Styling */
.weapon-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.weapon-pillar .pillar-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 */
.weapon-pillar .pillar-title::before {
    content: '●';
    color: #A30933; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.weapon-pillar .pillar-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 */
.secret-weapon-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.secret-weapon-image img {
    position: relative;
    z-index: 1;
    filter: grayscale(100%); /* Maintain editorial B&W style */
}


/* Responsive Scaling */
@media (max-width: 1024px) {
    .secret-weapon-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .social-secret-weapon-section .section-title {
        font-size: 42px;
    }

    .secret-weapon-image {
        order: -1; /* Image appears first on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .social-secret-weapon-section {
        padding: 70px 24px;
    }
    .social-secret-weapon-section::before {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
    .social-secret-weapon-section .section-title {
        font-size: 36px;
    }
    
    .social-secret-weapon-section .section-lead {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .weapon-pillar .pillar-title {
        font-size: 18px;
    }
    
    .weapon-pillar .pillar-text {
        font-size: 16px;
    }
    
    .secret-weapon-image {
        max-width: 320px;
    }
}




/* PROCESS SECTION — 4 CARD GRID */

.social-process-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.social-process-section .process-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-process-section .eyebrow {
    font-family: 'Garet', sans-serif;
    font-size: 16px;
    opacity: 0.75;
    display: block;
    margin-bottom: 14px;
}

.social-process-section .process-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 22px;
    color: var(--text-color, #fff);
}

.social-process-section .process-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.55;
    opacity: 0.85;
    color: var(--text-color, #fff);
}

/* 4-card centered grid */
.process-layout-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.process-image-side { display: none; }

.process-grid-side { display: contents; }
.process-card-row  { display: contents; }

/* Card */
.process-glass-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 49, 81, 0.25);
    border-radius: 8px;
    padding: 22px 19px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.process-glass-card:hover {
    border-color: rgba(166, 49, 81, 0.65);
}

.card-number-watermark {
    font-family: 'Prata', serif;
    font-size: 76px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    text-align: center;
    user-select: none;
}

.card-inner-content {
    text-align: center;
    margin-top: 20px;
}

.card-inner-content h3 {
    font-family: 'Prata', serif;
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-color, #fff);
}

.card-inner-content p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.78;
    color: var(--text-color, #fff);
}

@media (max-width: 1024px) {
    .social-process-section .process-main-title { font-size: 42px; }
}

@media (max-width: 768px) {
    .social-process-section { padding: 70px 24px; }
    .process-layout-wrapper { grid-template-columns: 1fr; max-width: 500px; }
    .social-process-section .process-main-title { font-size: 36px; }
    .social-process-section .process-intro { font-size: 18px; }
    .card-number-watermark { font-size: 80px; }
    .card-inner-content h3 { font-size: 22px; }
}





/* Stats Section Styling */
.stats-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.stats-header .stats-title {
    font-size: 110px; /* Large signature heading */
    margin-bottom: 60px;
    display: inline-block;
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Stat Card - Glassmorphism */
.stat-card {
    background: rgba(15, 15, 15, 1); /* Solid deep grey/black card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(166, 49, 81, 0.4);
}

/* Numbers - Prata Font */
.stat-number {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

/* Descriptions - Garet Font */
.stat-desc {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: #D63763; /* Brand pink/red for descriptions */
    max-width: 220px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .stats-header .stats-title {
        font-size: 80px;
    }
    .stat-number {
        font-size: 50px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 70px 24px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-header .stats-title {
        font-size: 80px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}





/* What We Offer Social Section */
.what-we-offer-social {
    padding: 100px 24px;
    background-color: #000;
    /* Utilizing the established brick texture background pattern */
    background-image: 
        linear-gradient(180deg, #000000 8.17%, rgba(0, 0, 0, 0) 100%),
        url('../content-marketing-images/brick-texture.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Atmospheric center glow */
.what-we-offer-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: linear-gradient(180deg, #000000 8.17%, rgba(0, 0, 0, 0) 100%);

    filter: blur(80px);
    z-index: 0;
}

.offer-header {
    position: relative;
    z-index: 1;
    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: 800px;
    margin: 0 auto;
}

/* 2x2 Grid Layout */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card Styling */
.offer-card {
    background: rgb(0, 0, 0);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 9, 51, 0.4);
    background: rgba(20, 20, 20, 0.8);
}

.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);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .offer-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-social {
        padding: 70px 24px;
    }
    .what-we-offer-social::before {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
    .offer-title {
        font-size: 36px;
    }
    .offer-subtitle {
        font-size: 18px;
    }
    .offer-card {
        padding: 30px 25px;
    }
    .card-title {
        font-size: 24px;
    }
    .card-description {
        font-size: 16px;
    }
}





/* 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 15px; /* Creates the 30px gap */
}

.testimonials-slider {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .testimonials-slider {
    margin: 0;
  }
  .testimonials-title {
    font-size: 42px;
  }
  .testimonial-card {
    width: 100%;
    padding: 24px;
  }

  .testimonial-card > img {
    width: 80px;
  }

  .testimonial-author img {
    width: 87px;
    height: 87px;
  }

  .testimonial-author strong {
    font-size: 18px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-text p:last-child {
    margin-bottom: 0;
  }

  .testimonial-author {
    margin-top: 20px;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
  }

  .testimonial-author strong {
    font-size: 16px;
  }
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .testimonials-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }
  .testimonials-title {
    font-size: 36px;
  }
  .testimonial-card {
    padding: 20px;
    min-height: auto;
  }
}




/* 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: 60px;
    }
    .why-moxie-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-moxie-section {
        padding: 70px 24px;
    }
    .why-moxie-section::before {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
    .why-title {
        font-size: 42px;
    }
    .why-subtitle {
        font-size: 18px;
    }
    .why-description {
        font-size: 16px;
    }
    .pillar-card {
        padding: 25px 20px;
    }
    .why-moxie-image {
        max-width: 320px;
    }
}
























