/* ========================================
   ICE SCOOPS GLOBAL LOCALIZATION CSS
   Inspired by premium ice cream brand psychology
   ======================================== */

:root {
    /* Primary Brand Colors - Cool & Refreshing */
    --ice-blue: #87CEEB;
    --mint-green: #98FB98;
    --vanilla-cream: #FFF8DC;
    --arctic-white: #F8FBFF;
    
    /* Premium Ice Cream Brand Colors */
    --premium-navy: #1B365D;
    --golden-caramel: #FFB347;
    --strawberry-pink: #FFB6C1;
    --chocolate-brown: #8B4513;
    
    /* Neutral Palette */
    --bg-primary: #0F1419;
    --bg-secondary: #1A2332;
    --bg-tertiary: #253447;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D1;
    --text-muted: #8A9BA8;
    
    /* Cultural Accent Colors */
    --arabic-gold: #DAA520;
    --japanese-sakura: #FFB7C5;
    --american-red: #DC143C;
    
    /* Interactive Elements */
    --hover-blue: #5DADE2;
    --focus-ring: rgba(135, 206, 235, 0.3);
    
    /* Design System */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --card-radius: 16px;
    --shadow-soft: 0 8px 32px rgba(135, 206, 235, 0.1);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Typography Scale */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.case-study-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--ice-blue) 0%, 
        var(--mint-green) 35%, 
        var(--vanilla-cream) 70%, 
        var(--arctic-white) 100%);
    position: relative;
    overflow: hidden;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(27, 54, 93, 0.85) 0%, 
        rgba(15, 20, 25, 0.75) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.case-study-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(135, 206, 235, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        var(--vanilla-cream) 0%, 
        var(--ice-blue) 50%, 
        var(--mint-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.detail-item {
    background: rgba(248, 251, 255, 0.15);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(248, 251, 255, 0.25);
    transform: translateY(-2px);
}

.detail-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    color: var(--ice-blue);
    font-weight: 600;
}

.detail-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   HERO VISUAL - FLYER SHOWCASE
   ======================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.flyer-showcase {
    position: relative;
    transform-style: preserve-3d;
}

.flyer-stack {
    position: relative;
    width: 350px;
    height: 450px;
}

.flyer-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
    object-fit: cover;
}

.arabic-flyer {
    transform: translateZ(0px) rotateY(-15deg);
    z-index: 3;
}

.japanese-flyer {
    transform: translateZ(-50px) translateX(-20px) rotateY(0deg);
    z-index: 2;
}

.english-flyer {
    transform: translateZ(-100px) translateX(-40px) rotateY(15deg);
    z-index: 1;
}

.flyer-showcase:hover .arabic-flyer {
    transform: translateZ(20px) rotateY(-10deg) scale(1.05);
}

.flyer-showcase:hover .japanese-flyer {
    transform: translateZ(-30px) translateX(-15px) rotateY(5deg) scale(1.02);
}

.flyer-showcase:hover .english-flyer {
    transform: translateZ(-80px) translateX(-35px) rotateY(20deg) scale(1.01);
}

/* ========================================
   SECTION LAYOUTS
   ======================================== */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, 
        var(--ice-blue) 0%, 
        var(--mint-green) 50%, 
        var(--golden-caramel) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   CHALLENGE SECTION
   ======================================== */
.challenge-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.constraint-title, .approach-title {
    color: var(--ice-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.constraints-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.constraint-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: var(--transition);
}

.constraint-item:hover {
    border-color: var(--ice-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .case-study-hero {
        background: white;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .case-study-hero::before,
    .case-study-hero::after {
        display: none;
    }
    
    .hero-text h1 {
        color: black !important;
        -webkit-text-fill-color: initial;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
    
    .culture-card,
    .design-item,
    .framework-step {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--ice-blue), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, 
        var(--ice-blue) 0%, 
        var(--mint-green) 50%, 
        var(--vanilla-cream) 100%);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-deep {
    box-shadow: var(--shadow-deep);
}

.border-radius {
    border-radius: var(--card-radius);
}

.transition {
    transition: var(--transition);
}

/* ========================================
   LOADING STATES
   ======================================== */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading-shimmer {
    animation: shimmer 1.5s ease-in-out infinite;
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 0%,
        rgba(135, 206, 235, 0.1) 50%,
        var(--bg-secondary) 100%
    );
    background-size: 400px 100%;
}

/* ========================================
   HIGH CONTRAST MODE SUPPORT
   ======================================== */
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --ice-blue: #00bfff;
        --mint-green: #00ff7f;
        --golden-caramel: #ffa500;
    }
    
    .culture-card,
    .design-item,
    .constraint-item {
        border-width: 2px;
    }
}

/* ========================================
   DARK MODE OPTIMIZATIONS
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0a0f14;
        --bg-secondary: #151b23;
        --bg-tertiary: #1f2833;
    }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--ice-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-blue);
}

/* ========================================
   SELECTION STYLES
   ======================================== */
::selection {
    background: var(--ice-blue);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--ice-blue);
    color: var(--bg-primary);
    -shadow: var(--shadow-soft);
}

.constraint-item h4 {
    color: var(--golden-caramel);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.approach-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border-left: 4px solid var(--mint-green);
}

/* ========================================
   CULTURAL RESEARCH SECTION
   ======================================== */
.research-section {
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-tertiary) 100%);
}

.cultural-insights {
    margin-top: 3rem;
}

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

.culture-card {
    background: var(--bg-primary);
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.arabic-culture::before {
    background: linear-gradient(90deg, var(--arabic-gold), var(--golden-caramel));
}

.japanese-culture::before {
    background: linear-gradient(90deg, var(--japanese-sakura), var(--strawberry-pink));
}

.american-culture::before {
    background: linear-gradient(90deg, var(--american-red), var(--ice-blue));
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--ice-blue);
}

.culture-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.culture-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.culture-insights h4 {
    color: var(--ice-blue);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.culture-insights ul {
    list-style: none;
    padding: 0;
}

.culture-insights li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.culture-insights li::before {
    content: '❄️';
    position: absolute;
    left: 0;
    top: 0;
}

.culture-insights li strong {
    color: var(--golden-caramel);
    font-weight: 600;
}

/* ========================================
   DESIGN SYSTEM SECTION
   ======================================== */
.design-system-section {
    background: rgba(135, 206, 235, 0.03);
}

.design-system-breakdown {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.system-component {
    background: var(--bg-secondary);
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.component-title {
    color: var(--ice-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Color Strategy Styles */
.color-strategy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.primary-color {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.color-swatch {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.ice-blue {
    background: var(--ice-blue);
    width: 120px;
    height: 120px;
}

.color-details h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.color-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.color-details ul {
    list-style: none;
    padding: 0;
}

.color-details li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.color-details li::before {
    content: '🌍';
    position: absolute;
    left: 0;
}

.color-details li strong {
    color: var(--golden-caramel);
}

.color-rationale h4 {
    color: var(--mint-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.color-rationale p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Logo Adaptation Styles */
.logo-adaptations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.logo-version {
    text-align: center;
}

.logo-container {
    background: var(--bg-primary);
    border-radius: var(--card-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(135, 206, 235, 0.2);
}

.adaptive-logo {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.logo-description h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Typography System Styles */
.typography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.typography-sample {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typography-sample h4 {
    color: var(--ice-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.type-sample {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.english-type .sample-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.arabic-type .sample-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    direction: rtl;
}

.japanese-type .sample-text {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.sample-tagline {
    font-size: 1rem;
    color: var(--golden-caramel);
    margin-top: 0.75rem;
    font-weight: 500;
}

.typography-sample p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */
.showcase-section {
    background: var(--bg-secondary);
}

.designs-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.market-showcase {
    background: var(--bg-primary);
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.market-title {
    color: var(--ice-blue);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

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

.design-item {
    background: var(--bg-secondary);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--mint-green);
}

.design-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--ice-blue), var(--mint-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
}

.design-caption {
    padding: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.95rem;
}

/* ========================================
   FRAMEWORK SECTION
   ======================================== */
.framework-section {
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.05) 0%, 
        rgba(152, 251, 152, 0.05) 100%);
}

.framework-breakdown {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.framework-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--ice-blue), var(--mint-green));
    color: var(--text-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.step-content li::before {
    content: '🍦';
    position: absolute;
    left: 0;
}

/* ========================================
   OUTCOMES SECTION
   ======================================== */
.outcomes-section {
    background: var(--bg-primary);
}

.outcomes {
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.1) 0%, 
        rgba(152, 251, 152, 0.1) 50%,
        rgba(255, 248, 220, 0.1) 100%);
    border-radius: var(--card-radius);
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(135, 206, 235, 0.3);
}

.outcomes h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.outcomes-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.outcome-item {
    padding: 2rem;
    background: rgba(248, 251, 255, 0.05);
    border-radius: var(--card-radius);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: var(--transition);
}

.outcome-item:hover {
    transform: translateY(-5px);
    border-color: var(--ice-blue);
    background: rgba(248, 251, 255, 0.1);
}

.outcome-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-caramel);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.outcome-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.key-learnings, .professional-impact {
    text-align: left;
    margin-top: 3rem;
}

.learnings-title, .impact-title {
    color: var(--ice-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.learnings-list li {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.learnings-list li::before {
    content: '🌟';
    position: absolute;
    left: 0;
    top: 0;
}

.learnings-list li strong {
    color: var(--golden-caramel);
    font-weight: 600;
}

.impact-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.case-study-back {
    text-align: center;
    margin-top: 4rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    border: 2px solid var(--ice-blue);
    border-radius: var(--card-radius);
    transition: var(--transition);
    background: rgba(135, 206, 235, 0.1);
    backdrop-filter: blur(10px);
}

.back-link:hover {
    background: var(--ice-blue);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.back-arrow {
    font-size: 1.5rem;
    transition: var(--transition);
}

.back-link:hover .back-arrow {
    transform: translateX(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .challenge-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .color-strategy {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .project-details {
        grid-template-columns: 1fr;
    }

    .flyer-stack {
        width: 280px;
        height: 360px;
    }

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

    .culture-analysis {
        grid-template-columns: 1fr;
    }

    .logo-adaptations {
        grid-template-columns: 1fr;
    }

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

    .framework-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .section {
        padding: 5rem 1.5rem;
    }
}

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

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

    .flyer-stack {
        width: 240px;
        height: 300px;
    }

    .detail-item {
        padding: 1rem;
    }

    .outcome-value {
        font-size: 2.5rem;
    }
}

