/* about.css - Claymorphism Style - Responsive Update */

/* ==================== BASE RESET ==================== */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ==================== ABOUT HERO SECTION ==================== */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    margin: 20px;
    background: linear-gradient(145deg, #f5e6ff, #e6d4ff);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(145deg, #ffd4e5, #ffb6c1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #8b4563;
    margin-bottom: 20px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.08),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: about-pulse 2s ease-in-out infinite;
}

@keyframes about-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #5a3d7a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #7a5a9a;
    line-height: 1.6;
}

.about-hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 1;
    flex-shrink: 0;
}

.about-hero-shape {
    position: absolute;
    font-size: 60px;
    padding: 24px;
    background: linear-gradient(145deg, #fff, #f5f0ff);
    border-radius: 50%;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    animation: about-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-shape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    animation-delay: 0s;
}

.about-hero-shape-2 {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
    background: linear-gradient(145deg, #ffe4ec, #ffb6c1);
}

.about-hero-shape-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
    background: linear-gradient(145deg, #fff8e1, #ffe066);
}

@keyframes about-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.about-hero-shape-2,
.about-hero-shape-3 {
    animation-name: about-float-small;
}

@keyframes about-float-small {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==================== SECTION TITLES ==================== */
.about-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 700;
    color: #5a3d7a;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.about-section-subtitle {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    color: #7a6b8a;
    margin-bottom: 48px;
    font-family: 'Outfit', sans-serif;
    padding: 0 20px;
}

/* ==================== MISSION SECTION ==================== */
.about-mission {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #e6f7ff, #cceeff);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.about-mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.about-mission-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(145deg, #fff, #e6f7ff);
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    width: 100px;
    height: 100px;
}

.about-mission-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4a6a8a;
    line-height: 1.8;
}

.about-mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.about-value-card {
    padding: 32px 24px;
    background: linear-gradient(145deg, #fff, #f5faff);
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow:
        14px 14px 28px rgba(0, 0, 0, 0.1),
        -14px -14px 28px rgba(255, 255, 255, 0.95);
}

.about-value-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 16px;
    background: linear-gradient(145deg, #e6f7ff, #cceeff);
    border-radius: 50%;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    width: 70px;
    height: 70px;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-value-title {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 12px;
}

.about-value-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #5a7a9a;
    line-height: 1.6;
}

/* ==================== STORY SECTION - FIXED ==================== */
.about-story {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 60px;
    margin: 20px;
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.about-story-image {
    flex: 0 0 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-emoji {
    font-size: 100px;
    padding: 40px;
    background: linear-gradient(145deg, #fff, #fff5e6);
    border-radius: 50%;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 2;
}

/* Story Decorations - FIXED */
.about-story-decoration {
    position: absolute;
    font-size: 32px;
    padding: 12px;
    background: linear-gradient(145deg, #fff, #ffe6cc);
    border-radius: 50%;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.9);
    animation: about-float-small 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    z-index: 3;
}

.about-story-decoration-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.about-story-decoration-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

.about-story-content {
    flex: 1;
    min-width: 0;
}

.about-story-content .about-section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-story-timeline {
    position: relative;
    padding-left: 32px;
}

.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffb366, #ff8c00);
    border-radius: 4px;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -2px -2px 4px rgba(255, 255, 255, 0.5);
}

.about-timeline-item {
    position: relative;
    padding: 16px 0;
    padding-left: 28px;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: linear-gradient(145deg, #fff, #ffe6cc);
    border-radius: 50%;
    border: 3px solid #ff8c00;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.1),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.about-timeline-year {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(145deg, #ff9933, #ff8c00);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
    box-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.about-timeline-content h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #8b5a2b;
    margin-bottom: 6px;
}

.about-timeline-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #6b4a3a;
    line-height: 1.6;
}

/* ==================== STATS SECTION - FIXED ==================== */
.about-stats {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    background: linear-gradient(145deg, #fff, #f5fff5);
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    min-height: 200px;
}

.about-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        14px 14px 28px rgba(0, 0, 0, 0.1),
        -14px -14px 28px rgba(255, 255, 255, 0.95);
}

.about-stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.about-stat-number {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 8px;
    line-height: 1.2;
}

.about-stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #5a7a5a;
    font-weight: 500;
}

/* ==================== QUALITY SECTION ==================== */
.about-quality {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #fce4ec, #f8bbd9);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.about-quality-content {
    margin-bottom: 48px;
}

.about-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.about-quality-card {
    padding: 32px 24px;
    background: linear-gradient(145deg, #fff, #fff5f8);
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-quality-card:hover {
    transform: translateY(-10px);
    box-shadow:
        14px 14px 28px rgba(0, 0, 0, 0.1),
        -14px -14px 28px rgba(255, 255, 255, 0.95);
}

.about-quality-icon {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(145deg, #fce4ec, #f8bbd9);
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
}

.about-quality-card:hover .about-quality-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-quality-title {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #8b4563;
    margin-bottom: 12px;
}

.about-quality-text {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #7a5a6a;
    line-height: 1.6;
}

/* ==================== WHY SECTION ==================== */
.about-why {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #fff3e0, #ffe0b2);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.about-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(145deg, #fff, #fffaf5);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.about-why-item:hover {
    transform: translateX(10px);
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.95);
}

.about-why-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ff8c00;
    padding: 14px;
    background: linear-gradient(145deg, #fff3e0, #ffe0b2);
    border-radius: 14px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-item:hover .about-why-number {
    transform: scale(1.1) rotate(-5deg);
}

.about-why-content {
    flex: 1;
    min-width: 0;
}

.about-why-content h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #8b5a2b;
    margin-bottom: 6px;
}

.about-why-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #7a6a5a;
    line-height: 1.6;
}

/* ==================== CTA SECTION - FIXED ==================== */
.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    margin: 20px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 203, 119, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta-content {
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.about-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 16px;
}

.about-cta-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #5a7a5a;
    margin-bottom: 28px;
    max-width: 500px;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-cta-btn {
    padding: 14px 32px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.about-cta-btn-primary {
    background: linear-gradient(145deg, #6bcb77, #4caf50);
    color: white;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.12),
        -6px -6px 12px rgba(255, 255, 255, 0.5),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}

.about-cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.15),
        -10px -10px 20px rgba(255, 255, 255, 0.6);
}

.about-cta-btn-secondary {
    background: linear-gradient(145deg, #fff, #f0f0f0);
    color: #2d5a3d;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.9),
        inset -1px -1px 2px rgba(0, 0, 0, 0.05);
}

.about-cta-btn-secondary:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, #e8f5e9, #d4edda);
}

/* CTA Visual - FIXED */
.about-cta-visual {
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-emoji {
    font-size: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(145deg, #fff, #e8f5e9);
    border-radius: 50%;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.8);
    animation: about-cta-float 4s ease-in-out infinite;
    width: 180px;
    height: 180px;
}

@keyframes about-cta-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .about-hero {
        padding: 50px 60px;
    }

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

    .about-story {
        padding: 50px 40px;
        gap: 36px;
    }

    .about-story-image {
        flex: 0 0 280px;
        height: 280px;
    }

    .about-story-emoji {
        width: 160px;
        height: 160px;
        font-size: 80px;
        padding: 32px;
    }

    .about-story-decoration {
        width: 50px;
        height: 50px;
        font-size: 28px;
        padding: 10px;
    }

    .about-cta {
        padding: 50px;
    }

    .about-cta-emoji {
        width: 160px;
        height: 160px;
        font-size: 80px;
        padding: 28px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
        gap: 32px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-visual {
        width: 250px;
        height: 250px;
    }

    .about-hero-shape {
        font-size: 48px;
        padding: 20px;
    }

    .about-hero-shape-1 {
        font-size: 64px;
    }

    /* Story Section */
    .about-story {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
    }

    .about-story-image {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 220px;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-story-emoji {
        width: 140px;
        height: 140px;
        font-size: 70px;
        padding: 28px;
    }

    .about-story-decoration {
        width: 48px;
        height: 48px;
        font-size: 24px;
        padding: 10px;
    }

    .about-story-decoration-1 {
        top: 10px;
        right: 40px;
    }

    .about-story-decoration-2 {
        bottom: 10px;
        left: 40px;
    }

    .about-story-content .about-section-title {
        text-align: center;
    }

    .about-story-timeline {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Stats Section */
    .about-stats-grid {
        gap: 24px;
    }

    .about-stat-card {
        padding: 28px 20px;
        min-height: 180px;
    }

    .about-stat-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
        padding: 14px;
    }

    /* CTA Section */
    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
        gap: 32px;
    }

    .about-cta-content {
        order: 2;
    }

    .about-cta-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-buttons {
        justify-content: center;
    }

    .about-cta-visual {
        order: 1;
    }

    .about-cta-emoji {
        width: 140px;
        height: 140px;
        font-size: 70px;
        padding: 24px;
    }

    .about-mission-values {
        gap: 20px;
    }

    .about-why-grid {
        gap: 20px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .about-hero {
        padding: 32px 24px;
        margin: 12px;
        border-radius: 28px;
    }

    .about-hero-visual {
        width: 200px;
        height: 200px;
    }

    .about-hero-shape {
        font-size: 36px;
        padding: 16px;
    }

    .about-hero-shape-1 {
        font-size: 52px;
    }

    .about-section-subtitle {
        margin-bottom: 32px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why,
    .about-cta {
        padding: 40px 20px;
        margin: 12px;
        border-radius: 28px;
    }

    .about-mission-icon {
        width: 80px;
        height: 80px;
        padding: 18px;
    }

    .about-mission-values {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-value-card {
        padding: 28px 20px;
    }

    /* Story Section - Mobile */
    .about-story-image {
        max-width: 250px;
        min-height: 180px;
    }

    .about-story-emoji {
        width: 120px;
        height: 120px;
        font-size: 56px;
        padding: 24px;
    }

    .about-story-decoration {
        width: 42px;
        height: 42px;
        font-size: 20px;
        padding: 8px;
    }

    .about-story-decoration-1 {
        top: 5px;
        right: 30px;
    }

    .about-story-decoration-2 {
        bottom: 5px;
        left: 30px;
    }

    .about-timeline-item {
        padding-left: 20px;
    }

    .about-timeline-item::before {
        left: -36px;
        width: 12px;
        height: 12px;
    }

    /* Stats Section - Keep 3 columns but smaller */
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .about-stat-card {
        padding: 20px 12px;
        min-height: 160px;
        border-radius: 20px;
    }

    .about-stat-icon {
        width: 56px;
        height: 56px;
        font-size: 32px;
        padding: 10px;
        margin-bottom: 12px;
    }

    .about-stat-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    .about-quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-quality-card {
        padding: 24px 18px;
    }

    .about-quality-icon {
        width: 64px;
        height: 64px;
        padding: 14px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-why-item {
        padding: 24px 20px;
    }

    /* CTA Section - Mobile */
    .about-cta-emoji {
        width: 120px;
        height: 120px;
        font-size: 56px;
        padding: 20px;
    }

    .about-cta-btn {
        padding: 12px 24px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-hero {
        padding: 28px 16px;
        margin: 8px;
        border-radius: 24px;
    }

    .about-hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .about-hero-visual {
        width: 180px;
        height: 180px;
    }

    .about-hero-shape {
        font-size: 28px;
        padding: 12px;
    }

    .about-hero-shape-1 {
        font-size: 42px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why,
    .about-cta {
        padding: 32px 16px;
        margin: 8px;
        border-radius: 24px;
    }

    .about-mission-content {
        margin-bottom: 32px;
    }

    .about-mission-icon {
        width: 70px;
        height: 70px;
        padding: 14px;
    }

    .about-value-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    /* Story Section - Small Mobile */
    .about-story-image {
        max-width: 200px;
        min-height: 150px;
    }

    .about-story-emoji {
        width: 100px;
        height: 100px;
        font-size: 48px;
        padding: 20px;
    }

    .about-story-decoration {
        width: 36px;
        height: 36px;
        font-size: 16px;
        padding: 6px;
    }

    .about-story-decoration-1 {
        top: 0;
        right: 20px;
    }

    .about-story-decoration-2 {
        bottom: 0;
        left: 20px;
    }

    .about-story-timeline {
        padding-left: 24px;
    }

    .about-timeline-item {
        padding: 12px 0;
        padding-left: 18px;
    }

    .about-timeline-year {
        font-size: 11px;
        padding: 4px 12px;
    }

    /* Stats Section - Stack on small mobile */
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }

    .about-stat-card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
        min-height: auto;
    }

    .about-stat-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .about-stat-card:hover .about-stat-icon {
        transform: scale(1.1);
    }

    .about-stat-info {
        display: flex;
        flex-direction: column;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

    .about-stat-label {
        font-size: 0.875rem;
    }

    .about-quality-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-quality-card {
        padding: 24px 20px;
    }

    .about-quality-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .about-why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 24px 18px;
    }

    .about-why-item:hover {
        transform: translateY(-8px);
    }

    .about-why-number {
        min-width: auto;
    }

    /* CTA Section - Small Mobile */
    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-btn {
        width: 100%;
    }

    .about-cta-emoji {
        width: 100px;
        height: 100px;
        font-size: 48px;
        padding: 16px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .about-hero {
        padding: 24px 12px;
    }

    .about-hero-visual {
        width: 160px;
        height: 160px;
    }

    .about-hero-shape {
        font-size: 24px;
        padding: 10px;
    }

    .about-hero-shape-1 {
        font-size: 36px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why,
    .about-cta {
        padding: 28px 12px;
        margin: 6px;
    }

    /* Story - Extra Small */
    .about-story-image {
        max-width: 180px;
        min-height: 130px;
    }

    .about-story-emoji {
        width: 90px;
        height: 90px;
        font-size: 40px;
        padding: 16px;
    }

    .about-story-decoration {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about-story-decoration-1 {
        top: -5px;
        right: 15px;
    }

    .about-story-decoration-2 {
        bottom: -5px;
        left: 15px;
    }

    .about-timeline-item::before {
        left: -32px;
        width: 10px;
        height: 10px;
    }

    /* Stats - Extra Small */
    .about-stat-card {
        padding: 16px 14px;
        gap: 12px;
    }

    .about-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    .about-quality-card {
        padding: 20px 16px;
    }

    .about-why-item {
        padding: 20px 14px;
    }

    /* CTA - Extra Small */
    .about-cta-emoji {
        width: 90px;
        height: 90px;
        font-size: 40px;
        padding: 14px;
    }

    .about-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .about-hero {
        padding: 20px 10px;
        margin: 4px;
    }

    .about-hero-visual {
        width: 140px;
        height: 140px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why,
    .about-cta {
        padding: 24px 10px;
        margin: 4px;
        border-radius: 20px;
    }

    .about-mission-icon {
        width: 60px;
        height: 60px;
    }

    /* Story - 320px */
    .about-story-image {
        max-width: 160px;
        min-height: 120px;
    }

    .about-story-emoji {
        width: 80px;
        height: 80px;
        font-size: 36px;
        padding: 14px;
    }

    .about-story-decoration {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .about-story-timeline {
        padding-left: 20px;
    }

    /* Stats - 320px */
    .about-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .about-stat-number {
        font-size: 1.25rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    .about-quality-icon {
        width: 50px;
        height: 50px;
    }

    /* CTA - 320px */
    .about-cta-emoji {
        width: 80px;
        height: 80px;
        font-size: 36px;
        padding: 12px;
    }
}

/* ==================== TOUCH DEVICE ADJUSTMENTS ==================== */
@media (hover: none) {
    .about-value-card:hover,
    .about-stat-card:hover,
    .about-quality-card:hover,
    .about-why-item:hover {
        transform: none;
    }

    .about-value-card:active,
    .about-stat-card:active,
    .about-quality-card:active {
        transform: scale(0.98);
    }

    .about-why-item:active {
        transform: scale(0.98);
    }

    .about-cta-btn-primary:hover,
    .about-cta-btn-secondary:hover {
        transform: none;
    }

    .about-cta-btn-primary:active,
    .about-cta-btn-secondary:active {
        transform: scale(0.97);
    }

    .about-stat-card:hover .about-stat-icon,
    .about-value-card:hover .about-value-icon,
    .about-quality-card:hover .about-quality-icon,
    .about-why-item:hover .about-why-number {
        transform: none;
    }
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media (max-width: 768px) and (orientation: landscape) {
    .about-hero {
        flex-direction: row;
        text-align: left;
        padding: 32px;
    }

    .about-hero-visual {
        width: 160px;
        height: 160px;
    }

    .about-story {
        flex-direction: row;
        gap: 24px;
    }

    .about-story-image {
        flex: 0 0 180px;
        max-width: 180px;
        min-height: 160px;
    }

    .about-story-emoji {
        width: 100px;
        height: 100px;
        font-size: 48px;
    }

    .about-story-decoration {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about-story-content .about-section-title {
        text-align: left;
    }

    .about-cta {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .about-cta-content {
        order: 1;
    }

    .about-cta-visual {
        order: 2;
    }

    .about-cta-emoji {
        width: 100px;
        height: 100px;
        font-size: 48px;
    }

    .about-cta-buttons {
        justify-content: flex-start;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stat-card {
        flex-direction: column;
        text-align: center;
        min-height: 140px;
        padding: 16px 12px;
    }

    .about-stat-icon {
        margin-bottom: 8px;
    }

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

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .about-why-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

/* ==================== ACCESSIBILITY ==================== */
.about-cta-btn:focus,
.about-value-card:focus,
.about-quality-card:focus {
    outline: 3px solid #5a3d7a;
    outline-offset: 2px;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    .about-hero-badge,
    .about-hero-shape,
    .about-story-decoration,
    .about-cta-emoji {
        animation: none;
    }

    .about-value-card,
    .about-stat-card,
    .about-quality-card,
    .about-why-item,
    .about-cta-btn {
        transition: none;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .about-hero,
    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why,
    .about-cta {
        box-shadow: none;
        border: 1px solid #ccc;
        margin: 10px 0;
        page-break-inside: avoid;
    }

    .about-hero-visual,
    .about-cta-visual,
    .about-story-decoration {
        display: none;
    }
}