/* Case Study Page Specific Styles */

/* Ensure fonts are loaded */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800&display=swap');

/* HERO TYPOGRAPHY UPDATE - INTER & BIG SHOULDERS */
.case-hero h1, 
.case-hero .hero-title {
    font-family: 'Big Shoulders Display', sans-serif !important;
    font-weight: 800 !important;
    font-size: 4rem !important;
    line-height: 1.1 !important;
}

.case-hero .hero-subtitle,
.case-hero p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
}

.breadcrumb-nav-hero {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    padding-bottom: 2rem;
}

.breadcrumb-nav-hero a {
    color: #F96F6E !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav-hero span {
    color: white !important;
}

.breadcrumb-nav-hero a:hover {
    color: #FF5252 !important;
    text-decoration: underline;
}

/* Text Alignment Classes */
.align-center {
    text-align: center !important;
}

.align-left {
    text-align: left !important;
}

.meta-tag {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
}

/* Reset and ensure proper layout */
.campaign-section {
    display: block !important;
    padding: 4rem 0 !important;
}

.strategy-showcase {
    display: block !important;
    margin: 2rem 0 !important;
}

.strategy-flow {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

/* Case Study Content Sections */
.case-study-content {
    background: var(--bg-primary);
}

.content-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.content-section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    color: #F96F6E;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    color: #F96F6E;
    margin-bottom: 2.5rem;
    position: relative;
    display: block;
    line-height: 1.2;
}

/* Standardized ::after pseudo-element for section-title with proper spacing */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #F96F6E;
    border-radius: 2px;
    margin: 1rem 0;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #F96F6E;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p, p {

    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Case Study Hero */
.case-hero {
    display: block; /* Not grid */
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    color: white;
    overflow: hidden;
}

.case-hero-with-bg {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.case-hero-with-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.case-hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.case-hero-with-bg .container {
    position: relative;
    z-index: 2;
}

.case-hero-with-bg .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Left-aligned hero content for better positioning over background images */
.case-hero-with-bg .hero-content-left {
    text-align: left !important;
    margin: 0 !important;
    max-width: 600px;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.case-hero-with-bg .hero-content-left .hero-text {
    text-align: left !important;
}

.case-hero-with-bg .hero-content-left .hero-tags {
    justify-content: flex-start !important;
}

.case-hero-with-bg .hero-content-left .breadcrumb-nav-hero {
    text-align: left !important;
}

.case-hero-with-bg h1,
.case-hero-with-bg .hero-subtitle {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.case-hero-with-bg h1 {
    font-weight: 800;
}

.case-hero-with-bg .hero-subtitle {
    letter-spacing: 0.03em;
    word-spacing: 0.15em;
    font-weight: 500;
    font-size: 1.3rem;
}

.case-hero-with-bg .hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.case-hero-with-bg .tag {
    letter-spacing: 0.08em;
    word-spacing: 0.1em;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb {
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 3;
    padding-top: 1rem;
    text-align: left;
    font-weight: 500;
}

.breadcrumb a, .breadcrumb span {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: var(--coral-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--coral-red);
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.hero-content {
    display: block; /* Not grid */
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.project-tags,
.hero-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--coral-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-hero h1, .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Big Shoulders Display', sans-serif;
}

.case-hero-with-bg h1,
.case-hero-with-bg .hero-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.case-hero-with-bg .hero-subtitle {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.project-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.detail .value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.hero-media {
    position: relative;
}

.video-container {
    width: 100%;
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Styling */
.strategy-image,
.visual-image,
.tonality-image,
.hero-imagery,
.element-image,
.social-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.video-caption, .image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.video-container:hover {
    transform: translateY(-5px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Project Overview */
.project-overview {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Section Spacing */
.project-overview,
.campaign-section,
.visual-language,
.hero-content-section,
.modular-elements,
.platform-execution,
.behind-strategy,
.performance-impact,
.reflection {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.overview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral-red);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Overview Stats */
.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--coral-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.key-metrics {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.key-metrics h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metrics-grid .metric-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metrics-grid .metric-item h3 {
    font-size: 3rem;
    color: var(--coral-red);
    font-family: 'Big Shoulders Display', sans-serif;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.metrics-grid .metric-item p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.metric {
    text-align: center;
    padding: 1rem;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-red);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Challenge Section */
.challenge-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--coral-red) 0%, var(--cool-gray) 100%);
    color: white;
}

/* Removed duplicate section-header styles - now defined at top of file */

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.challenge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.challenge-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.challenge-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Strategy Section */
.strategy-section {
    padding: 8rem 0 10rem;
    background: var(--bg-primary);
}

/* Campaign Section */
.campaign-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.campaign-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.campaign-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-content {
    text-align: center;
    margin-bottom: 4rem;
}

.strategy-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.strategy-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.strategy-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral-red);
    margin-bottom: 1rem;
    margin-top: 0;
}

.strategy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.campaign-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.campaign-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.campaign-lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

.strategy-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-flow {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-milestone {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    text-align: left;
}

.strategy-milestone:hover {
    transform: none;
}

.strategy-milestone.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.milestone-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--coral-red);
    opacity: 0.4;
    min-width: 140px;
    line-height: 1;
    flex-shrink: 0;
}

.milestone-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.milestone-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Zig-Zag Layout Styles */
.strategy-zigzag {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
}

.strategy-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    bottom: 2rem;
    width: 3px;
    background: linear-gradient(to bottom, transparent 0%, var(--coral-red) 10%, var(--coral-red) 90%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.zigzag-item {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;
    margin: 2rem 0;
}

.zigzag-left {
    justify-content: flex-start;
    padding-right: 45%;
    animation: slideInLeft 0.8s ease-out;
}

.zigzag-right {
    justify-content: flex-end;
    padding-left: 45%;
    flex-direction: row-reverse;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zigzag-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    min-width: 140px;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, var(--coral-red), #ff6b6b);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    position: relative;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zigzag-number:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.zigzag-number::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--coral-red), #ff6b6b);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.zigzag-left .zigzag-number::before {
    right: -46px;
}

.zigzag-right .zigzag-number::before {
    left: -46px;
}

.zigzag-content {
    flex: 1;
    max-width: 450px;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zigzag-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.zigzag-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.zigzag-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.zigzag-left .zigzag-content {
    text-align: right;
}

.zigzag-right .zigzag-content {
    text-align: left;
}

/* Features Section */
.features-section {
    padding: 8rem 0 6rem;
    background: var(--bg-primary);
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.2;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--coral-red), #ff6b6b);
    border-radius: 24px;
    padding: 4rem;
    color: white;
    text-align: center;
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.feature-main h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-main p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.features-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-compact {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-compact h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-compact p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .campaign-title {
        font-size: 2.5rem;
    }
    
    .campaign-lead {
        font-size: 1.2rem;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .strategy-milestone,
    .strategy-milestone.reverse {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
        padding: 2rem;
    }
    
    .milestone-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .milestone-content h3 {
        font-size: 1.6rem;
    }
    
    .feature-highlight {
        padding: 3rem 2rem;
    }
    
    .feature-main h3 {
        font-size: 2rem;
    }
    
    .feature-main p {
        font-size: 1.1rem;
    }
    
    /* Zig-zag responsive styles */
    .strategy-zigzag::before {
        display: none;
    }
    
    .zigzag-item,
    .zigzag-left,
    .zigzag-right {
        flex-direction: column;
        padding: 0;
        text-align: center;
        gap: 2rem;
    }
    
    .zigzag-content {
        max-width: 100%;
    }
    
    .zigzag-left .zigzag-content,
    .zigzag-right .zigzag-content {
        text-align: center;
    }
    
    .zigzag-number {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        min-width: auto;
    }
    
    .zigzag-number::before {
        display: none;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strategy-item {
        padding: 2rem;
    }
    
    .strategy-content p {
        font-size: 1.1rem;
    }
}

/* Improved spacing for titles and paragraphs */
.campaign-section h3,
.features-section h3,
.impact-section h3,
.partnership-section h3,
.reflection-section h3,
.strategy-item h3,
.feature-item h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.campaign-section h3:first-child,
.features-section h3:first-child,
.impact-section h3:first-child,
.partnership-section h3:first-child,
.reflection-section h3:first-child {
    margin-top: 0;
}

.campaign-section h4,
.features-section h4,
.impact-section h4,
.partnership-section h4,
.reflection-section h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.campaign-section p,
.features-section p,
.impact-section p,
.partnership-section p,
.reflection-section p,
.strategy-item p,
.feature-item p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.strategy-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.campaign-section p:last-child,
.features-section p:last-child,
.impact-section p:last-child,
.partnership-section p:last-child,
.reflection-section p:last-child,
.strategy-item p:last-child,
.feature-item p:last-child {
    margin-bottom: 0;
}

.strategy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.pillar {
    position: relative;
    padding: 2.5rem;
    border-radius: 15px;
    background: var(--card-bg);
    border-left: 5px solid var(--coral-red);
}

.pillar-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--coral-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.pillar h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.pillar.reflection-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pillar li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cool-gray);
    font-weight: bold;
}

/* Execution Section */
.execution-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
}

/* General content spacing improvements */
.container h2:not(.section-title) {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.container h2:first-child {
    margin-top: 0;
}

.container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.container h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.container p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.container p:last-child {
    margin-bottom: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F96F6E;
    border-radius: 2px;
}

.execution-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.execution-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--coral-red);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--border-color);
}

.timeline-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--coral-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partnership-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partnership-content h3 {
    color: white;
}

.reflection-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deliverables {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.deliverable {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.result-category {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--cool-gray);
}

.result-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.result-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-red);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Learnings Section */
.learnings-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.learnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.learning-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid var(--coral-red);
}

.learning-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.learning-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Related Work */
.related-work {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 1.5rem 0.5rem;
}

.related-item p {
    color: var(--text-secondary);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--coral-red);
    color: white;
}

.btn-primary:hover {
    background: var(--coral-red);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.video-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.video-nav-prev {
    left: 2rem;
}

.video-nav-next {
    right: 2rem;
}

.video-modal-player {
    width: 100%;
    max-width: 900px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal-info {
    text-align: center;
    color: white;
    max-width: 600px;
}

.video-modal-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.video-modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item .video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-item .video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-item:hover .video-container::after {
    opacity: 1;
}

/* Scrolling Fix Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* CTA Section Styles */
.cta-section {
    background: #1a1a2e;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
    border-radius: 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #F96F6E;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #e55a5a;
    color: white;
}

/* Strategy Section Styles */
.strategy-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.strategy-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.strategy-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: #F96F6E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

/* SAFE FLEXIBLE ALIGNMENT SYSTEM - CASE STUDIES ONLY */
/* This only affects pages that use case-study.css */

/* Flexible Control Classes - Use these for ANY element in case studies */
.align-left {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.align-center {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.align-right {
    text-align: right !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Special handling for section-title underlines */
.section-title.align-left::after {
    margin: 1rem 0 !important;
}

.section-title.align-center::after {
    margin: 1rem auto !important;
}

.section-title.align-right::after {
    margin: 1rem 0 1rem auto !important;
}

/* Hero Meta Flex Alignment */
.hero-meta.align-left {
    justify-content: flex-start !important;
}

.hero-meta.align-center {
    justify-content: center !important;
}

.hero-meta.align-right {
    justify-content: flex-end !important;
}

/* Case Study Specific Overrides */
.case-hero-with-bg .align-left {
    text-align: left !important;
}

.case-hero-with-bg .align-center {
    text-align: center !important;
}

.case-hero-with-bg .align-right {
    text-align: right !important;
}

/* FIX BLACK RECTANGLE BLOCKING HERO IMAGES */
/* Only apply transparent background to case-hero WITHOUT background images */
.case-hero:not(.case-hero-with-bg) {
    background-color: transparent !important;
    background: transparent !important;
}

/* Allow case-hero-with-bg to use inline background images */
.case-hero-with-bg {
    /* Remove background overrides to allow inline styles */
}

.case-hero .hero-overlay,
.case-hero-with-bg .hero-overlay {
    /* Only use the overlay, not a background color */
    background-color: rgba(0, 0, 0, 0.35) !important;
    background: rgba(0, 0, 0, 0.35) !important;
}

/* Ensure no dark theme backgrounds override the hero */
.case-hero *,
.case-hero-with-bg * {
    background-color: transparent;
}

/* Make sure the section itself has no background - but only for non-bg heroes */
section.case-hero:not(.case-hero-with-bg) {
    background-color: transparent !important;
    background: none !important;
}

/* Allow section.case-hero-with-bg to use inline background images */
section.case-hero-with-bg {
    /* Remove background overrides to allow inline styles */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .strategy-pillars {
        grid-template-columns: 1fr;
    }
    
    .video-modal-content {
        padding: 1rem;
    }
    
    .video-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-nav-prev {
        left: 1rem;
    }
    
    .video-nav-next {
        right: 1rem;
    }
    
    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .case-hero {
        padding: 2rem 0 4rem;
    }

    .case-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .project-details {
        gap: 1rem;
    }
    
    /* Fix hero content grid for mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Ensure proper centering for case studies with background */
    .case-hero-with-bg .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    /* Mobile responsive for left-aligned hero content */
    .case-hero-with-bg .hero-content-left {
        align-items: flex-start !important;
        text-align: left !important;
        padding: 2rem 1rem;
    }
    
    .case-hero-with-bg .hero-content-left .hero-text {
        text-align: left !important;
        max-width: 100%;
    }
    
    .case-hero-with-bg .hero-text {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-tags {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .case-hero-with-bg .hero-content {
        min-height: 60vh;
        padding: 1rem 1rem 6rem;
        justify-content: flex-end;
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .case-hero-with-bg .hero-text {
        width: 100%;
        max-width: 700px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .execution-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 3px;
        width: 20px;
        height: 20px;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Impact Metrics Styles */
.impact-metrics {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .metric-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .case-hero h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    /* Enhanced mobile styles for very small screens */
    .case-hero-with-bg .hero-content {
        min-height: 50vh;
        padding: 0.5rem 1rem 8rem;
        gap: 2rem;
        justify-content: flex-end;
        align-items: center;
        display: flex;
        flex-direction: column;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
    }
    
    /* Override main.css mobile styles for case studies */
    .case-hero-with-bg .hero-text {
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        order: unset !important;
        margin-bottom: 2rem !important;
    }
    
    .case-hero-with-bg .hero-text h1 {
        display: block !important;
        font-size: 2rem !important;
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
        margin-bottom: 1rem !important;
    }
    
    .case-hero-with-bg .hero-text p,
    .case-hero-with-bg .hero-subtitle {
        display: block !important;
        color: white !important;
        font-size: 1.1rem !important;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .case-hero-with-bg .hero-text {
        gap: 2rem;
        max-width: 100%;
    }
    
    .case-hero-with-bg h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .case-hero-with-bg .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .hero-tags {
        margin-top: 0;
        gap: 1rem;
        justify-content: center;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin: 0.25rem;
    }

    .challenge-item,
    .pillar,
    .result-category,
    .learning-item {
        padding: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
    }
    
    .impact-metrics {
        padding: 1.5rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    /* Content Section Responsive */
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .lead-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Rebrand Image Showcase Styles */
.rebrand-showcase {
    margin-top: 4rem;
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rebrand-image-container {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.rebrand-image {
    width: 100%;
    max-width: 1040px;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.3));
}

.rebrand-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(255, 107, 107, 0.5));
}

.rebrand-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.2));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rebrand-image-container:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .rebrand-showcase {
        margin-top: 3rem;
    }
    
    .rebrand-image {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .rebrand-image-container {
        border-radius: 15px;
    }
    
    .rebrand-image-container::before {
        border-radius: 20px;
    }
}

/* Edge Screenshot Showcase Styles */
.edge-screenshot-showcase {
    margin: 3rem 0;
    text-align: center;
}

.edge-screenshot-container {
    display: inline-block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.edge-screenshot-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.edge-screenshot {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.edge-screenshot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.edge-screenshot-container:hover::before {
    opacity: 1;
}

/* Responsive adjustments for edge screenshot */
@media (max-width: 768px) {
    .edge-screenshot-showcase {
        margin: 2rem 0;
    }
    
    .edge-screenshot {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .edge-screenshot-container {
        border-radius: 12px;
    }
    
    .edge-screenshot-container::before {
        border-radius: 12px;
    }
}

/* Strategy Content with Image Layout */
.strategy-content-with-image {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.strategy-image {
    position: sticky;
    top: 2rem;
}

.strategy-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.strategy-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.strategy-text {
    flex: 1;
}

/* Sneak Peek Section */
.sneak-peek-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.sneak-peek-content {
    text-align: center;
    margin-top: 2rem;
}

.sneak-peek-content .video-container {
    display: inline-block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 800px;
    width: 100%;
}

.sneak-peek-content .video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.edge-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Responsive adjustments for new layouts */
@media (max-width: 768px) {
    .strategy-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strategy-image {
        position: static;
        order: 2;
        text-align: center;
    }
    
    .strategy-text {
        order: 1;
    }
    
    .strategy-screenshot {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sneak-peek-content .video-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .edge-video {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .strategy-content-with-image {
        gap: 1.5rem;
    }
    
    .strategy-screenshot {
        max-width: 250px;
    }
    
    .sneak-peek-section {
        padding: 4rem 0;
    }
}

/* Toolkit Movement Section */
.toolkit-movement-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.toolkit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.toolkit-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.toolkit-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.toolkit-visual {
    text-align: center;
}

.toolkit-gif {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.toolkit-gif:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .toolkit-movement-section {
        padding: 4rem 0;
    }
    
    .toolkit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .toolkit-text {
        order: 2;
    }
    
    .toolkit-visual {
        order: 1;
    }
    
    .toolkit-text h3 {
        font-size: 1.3rem;
    }
    
    .toolkit-text p {
        font-size: 1rem;
    }
}

/* Video Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .video-grid {
        gap: 1.5rem;
    }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-item .video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #000;
}

.video-item .video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.video-item .video-container::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.video-item:hover .video-container::after,
.video-item:hover .video-container::before {
    opacity: 1;
}

.video-item video,
.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 1rem;
    pointer-events: none; /* Allow clicks to pass through to video-item */
}

.video-description h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.video-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments for video showcase */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 4rem 0;
    }
    
    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .video-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .video-item .video-container {
        border-radius: 8px;
    }
    
    .video-item video,
    .video-player {
        border-radius: 8px;
    }
    
    .video-description h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .video-showcase-section {
        padding: 3rem 0;
    }
    
    .video-showcase-grid {
        gap: 1.5rem;
    }
    
    .video-item {
        padding: 1rem;
    }
    
    .video-description h3 {
        font-size: 1.125rem;
    }
    
    .video-description p {
        font-size: 0.9rem;
    }
}

/* Campaign Gallery Section */
.campaign-gallery {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-peek {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    color: white;
    font-size: 1.5rem;
}

.gallery-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.gallery-thumbnail:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.modal-prev {
    left: -60px;
}

.modal-next {
    right: -60px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-counter {
    color: white;
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.scroll-indicator.hidden {
    opacity: 0;
}

.scroll-indicator.flashing {
    animation: flash 3s infinite;
}

.scroll-indicator.flashing .scroll-arrow {
    animation: bounce 2s infinite, flash 3s infinite;
}

.scroll-indicator.flashing .scroll-text {
    animation: pulse 2s infinite, flash 3s infinite;
}

.scroll-arrow {
    color: var(--text-primary);
    animation: bounce 2s infinite;
}

.scroll-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes flash {
    0%, 50% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.3;
    }
}

/* Visual Impact Section */
.visual-impact {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.impact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-highlight {
    background: var(--bg-secondary);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-4px);
}

.stat-highlight h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-highlight p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Story to Screen Section */
.story-to-screen {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.story-to-screen .video-container {
    position: relative;
    max-width: 600px;
    margin: 3rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.story-to-screen video {
    width: 100%;
    height: auto;
    display: block;
}

.story-to-screen p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Additional Grid Layouts and Styling */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.element-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.element-item:hover {
    transform: translateY(-5px);
}

.element-item h3 {
    color: var(--coral-red);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.key-learnings ul {
    list-style: none;
    padding: 0;
}

.key-learnings li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

.key-learnings li:last-child {
    border-bottom: none;
}

.key-learnings strong {
    color: var(--coral-red);
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--coral-red);
    padding: 2rem;
    margin: 3rem 0;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .elements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .element-item {
        padding: 1.5rem;
    }
    .campaign-gallery,
    .story-to-screen,
    .visual-impact {
        padding: 4rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .gallery-thumbnail {
        height: 150px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-highlight {
        padding: 1.5rem 1rem;
    }
    
    .stat-highlight h3 {
        font-size: 2rem;
    }
    
    .story-to-screen .video-container {
        margin-top: 2rem;
        border-radius: 12px;
    }
    
    /* Gallery Modal Mobile */
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
    
    .modal-prev,
    .modal-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .campaign-gallery,
    .story-to-screen,
    .visual-impact {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-thumbnail {
        height: 160px;
    }
    
    .impact-content p {
        font-size: 1.1rem;
    }
    
    .stat-highlight {
        padding: 1.25rem 1rem;
    }
    
    .stat-highlight h3 {
        font-size: 1.8rem;
    }
    
    .story-to-screen .video-container {
        border-radius: 8px;
    }
}

/* Case Study Navigation */
.case-study-nav {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.nav-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.nav-btn.secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-btn.primary {
    background: var(--coral-red);
    color: white;
    border-color: var(--coral-red);
}

.nav-btn.primary:hover {
    background: var(--coral-red);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
    .case-study-nav {
        padding: 3rem 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-btn {
        min-width: 160px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Metrics Grid Layout */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.metric-item h3 {
    font-size: 4rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    color: #F96F6E;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.metric-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Elements Grid Layout */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.element-item {
    text-align: center;
}

.element-image,
.visual-image,
.tonality-image,
.hero-imagery,
.social-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

/* Case Study Navigation Buttons */
.case-study-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-button.prev {
    padding-left: 1rem;
}

.nav-button.next {
    padding-right: 1rem;
}

.nav-button .icon {
    font-size: 1.2rem;
    line-height: 1;
}

.nav-button.prev .icon {
    margin-right: 0.5rem;
}

.nav-button.next .icon {
    margin-left: 0.5rem;
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Final CTA Section */
.final-cta-section {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.final-cta-content {
    text-align: center;
    margin-bottom: 3rem;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-coral {
    background: var(--coral-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-coral:hover {
    background: var(--coral-red);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.dividing-line {
    height: 1px;
    background: #333;
    margin: 3rem 0 2rem 0;
}

.final-cta-section .case-study-navigation {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    border-top: none;
}

.final-cta-section .nav-button {
    background-color: #2a2a2a;
    color: #cccccc;
    border-color: #333;
}

.final-cta-section .nav-button:hover {
    background-color: var(--coral-red);
    color: white;
    border-color: var(--coral-red);
}

/* Strategy Section Responsive */
@media (max-width: 768px) {
    .strategy-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .strategy-flow {
        gap: 2rem;
    }
    
    .strategy-milestone {
        padding: 2rem;
    }
    
    .milestone-number {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .milestone-content h3 {
        font-size: 1.25rem;
    }
    
    .milestone-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .strategy-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .strategy-milestone {
        padding: 1.5rem;
    }
    
    .milestone-number {
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-study-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content p {
        font-size: 1rem;
    }
}