/* about.css - Toy Universe — Light Modern About Page */

* {
    box-sizing: border-box;
}

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 80px;
    margin: 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    min-height: 480px;
    border-bottom: 1px solid #edf0f4;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0722b;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.about-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: about-badge-pulse 2s ease-in-out infinite;
}

@keyframes about-badge-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.about-hero-badge-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-hero-badge-icon svg {
    width: 100%;
    height: 100%;
}

.about-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-hero-title-accent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #6b7b8d;
    line-height: 1.75;
    max-width: 460px;
}

/* HERO VISUAL */
.about-hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    z-index: 1;
    justify-self: center;
}

.about-hero-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82%;
    height: 82%;
    background: linear-gradient(160deg, #fff0e6, #e8f4fd);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.about-hero-visual-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
    height: 58%;
    background: linear-gradient(160deg, #ffe4cc, #d0ecf9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.about-hero-shape {
    position: absolute;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: about-float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-hero-shape:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: #dde2e8;
}

.about-hero-shape-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-shape-icon svg {
    width: 100%;
    height: 100%;
}

.about-hero-shape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff7f0, #ffffff);
    border-color: rgba(255, 107, 107, 0.15);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.12);
    animation-delay: 0s;
}

.about-hero-shape-1 .about-hero-shape-icon {
    width: 52px;
    height: 52px;
}

.about-hero-shape-2 {
    top: 12%;
    left: 12%;
    animation-delay: 1s;
    background: linear-gradient(145deg, #eefbf9, #ffffff);
    border-color: rgba(46, 196, 182, 0.15);
}

.about-hero-shape-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
    background: linear-gradient(145deg, #fffcf0, #ffffff);
    border-color: rgba(253, 203, 110, 0.2);
}

@keyframes about-float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-14px);
    }
}

.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(-10px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: linear-gradient(135deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #e0722b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.about-section-title {
    text-align: center;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

.about-section-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #8e99a9;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    padding: 0 20px;
    line-height: 1.65;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.about-mission {
    padding: 88px 40px;
    margin: 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

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

.about-mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    border-radius: 22px;
    margin-bottom: 28px;
    color: #e0722b;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-mission-icon:hover {
    transform: rotate(-5deg) scale(1.05);
}

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

.about-mission-text {
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    color: #5a6578;
    line-height: 1.85;
}

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

.about-value-card {
    padding: 40px 28px;
    background: #f7f8fb;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-value-card:nth-child(1)::after {
    background: linear-gradient(90deg, #e65100, #ff9800);
}

.about-value-card:nth-child(2)::after {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.about-value-card:nth-child(3)::after {
    background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.about-value-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 20px 56px rgba(26, 35, 50, 0.08);
}

.about-value-card:hover::after {
    transform: scaleX(1);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
}

.about-value-icon-innovation {
    background: linear-gradient(145deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.about-value-icon-safety {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.about-value-icon-eco {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

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

.about-value-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.about-value-text {
    font-size: clamp(0.85rem, 1.5vw, 0.92rem);
    color: #8e99a9;
    line-height: 1.7;
}

/* ============================================
   STORY SECTION
   ============================================ */
.about-story {
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: start;
    gap: 60px;
    padding: 88px 60px;
    margin: 0;
    background: #f7f8fb;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.about-story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: sticky;
    top: 120px;
}

.about-story-visual {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.2);
}

.about-story-visual svg {
    width: 80px;
    height: 80px;
    color: #ff6b6b;
}

.about-story-decoration {
    position: absolute;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.08);
    animation: about-float-small 5s ease-in-out infinite;
}

.about-story-decoration svg {
    width: 22px;
    height: 22px;
}

.about-story-decoration-1 {
    top: 20px;
    right: 30px;
    animation-delay: 0s;
    color: #2ec4b6;
}

.about-story-decoration-2 {
    bottom: 20px;
    left: 30px;
    animation-delay: 1.5s;
    color: #ee5a24;
}

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

.about-story-content .about-section-tag {
    display: inline-flex;
}

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

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

.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6b6b, #48dbfb);
    border-radius: 2px;
}

.about-timeline-item {
    position: relative;
    padding: 20px 0;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.about-timeline-item:hover {
    transform: translateX(4px);
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 28px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #ff6b6b;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.about-timeline-item:hover::before {
    background: #ff6b6b;
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.15);
}

.about-timeline-year {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.about-timeline-content h4 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    margin-top: 0;
}

.about-timeline-content p {
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    color: #8e99a9;
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.about-stats {
    padding: 88px 40px;
    margin: 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.about-stats .about-section-title {
    color: #1a1a2e;
}

.about-stats .about-section-subtitle {
    color: #8e99a9;
}

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

.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 28px;
    background: #f7f8fb;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.about-stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2ec4b6, #48dbfb);
}

.about-stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #feca57, #ff9ff3);
}

.about-stat-card:hover {
    background: #ffffff;
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(26, 35, 50, 0.08);
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-stat-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.about-stat-icon svg {
    width: 28px;
    height: 28px;
}

.about-stat-icon-products {
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    color: #e0722b;
}

.about-stat-icon-customers {
    background: linear-gradient(145deg, #eefbf9, #d0ecf9);
    color: #2ec4b6;
}

.about-stat-icon-rating {
    background: linear-gradient(145deg, #fffcf0, #fff3d6);
    color: #e6a700;
}

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

.about-stat-number {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    color: #8e99a9;
    font-weight: 550;
}

/* ============================================
   QUALITY SECTION
   ============================================ */
.about-quality {
    padding: 88px 40px;
    margin: 0;
    background: #f7f8fb;
    font-family: 'Outfit', sans-serif;
}

.about-quality-content {
    margin-bottom: 0;
}

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

.about-quality-card {
    padding: 40px 24px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-quality-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-quality-card:nth-child(1)::after {
    background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.about-quality-card:nth-child(2)::after {
    background: linear-gradient(90deg, #e65100, #ff9800);
}

.about-quality-card:nth-child(3)::after {
    background: linear-gradient(90deg, #7b1fa2, #ba68c8);
}

.about-quality-card:nth-child(4)::after {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.about-quality-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 20px 56px rgba(26, 35, 50, 0.08);
}

.about-quality-card:hover::after {
    opacity: 1;
}

.about-quality-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.about-quality-icon-testing {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.about-quality-icon-certified {
    background: linear-gradient(145deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.about-quality-icon-partners {
    background: linear-gradient(145deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.about-quality-icon-eco {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

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

.about-quality-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.about-quality-text {
    font-size: clamp(0.85rem, 1.5vw, 0.92rem);
    color: #8e99a9;
    line-height: 1.7;
}

/* ============================================
   WHY SECTION
   ============================================ */
.about-why {
    padding: 88px 40px;
    margin: 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

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

.about-why-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px 28px;
    background: #f7f8fb;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.about-why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #ff6b6b, #48dbfb);
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top;
}

.about-why-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.08);
}

.about-why-item:hover::before {
    transform: scaleY(1);
}

.about-why-number {
    font-size: 0.95rem;
    font-weight: 800;
    color: #e0722b;
    padding: 12px;
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: 14px;
    flex-shrink: 0;
    min-width: 48px;
    height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.02em;
}

.about-why-item:hover .about-why-number {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    transform: rotate(-3deg);
}

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

.about-why-content h3 {
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    margin-top: 0;
}

.about-why-content p {
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    color: #8e99a9;
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 80px 72px;
    margin: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            #ff6b6b 0%,
            #feca57 25%,
            #48dbfb 50%,
            #ff9ff3 75%,
            #ff6b6b 100%);
    background-size: 200% 100%;
    animation: ctaRainbow 6s linear infinite;
}

@keyframes ctaRainbow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

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

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

.about-cta-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.about-cta-text {
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.7;
}

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

.about-cta-btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.about-cta-btn svg {
    width: 18px;
    height: 18px;
}

.about-cta-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.35);
}

.about-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(255, 107, 107, 0.45);
}

.about-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.about-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

.about-cta-graphic {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    animation: about-cta-float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.about-cta-graphic:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-cta-graphic svg {
    width: 72px;
    height: 72px;
    color: #ff6b6b;
}

@keyframes about-cta-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

/* ============================================
   RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
    .about-hero {
        padding: 60px 48px;
        gap: 36px;
    }

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

    .about-story {
        grid-template-columns: 280px 1fr;
        padding: 72px 40px;
        gap: 40px;
    }

    .about-story-visual {
        width: 170px;
        height: 170px;
    }

    .about-cta {
        padding: 68px 48px;
    }

    .about-cta-graphic {
        width: 140px;
        height: 140px;
    }

    .about-cta-graphic svg {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 36px;
        gap: 36px;
        min-height: auto;
    }

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

    .about-hero-subtitle {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-visual {
        max-width: 320px;
        justify-self: center;
    }

    .about-story {
        grid-template-columns: 1fr;
        padding: 72px 32px;
        gap: 40px;
    }

    .about-story-image {
        position: relative;
        top: auto;
        width: 100%;
        min-height: 240px;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .about-story-content .about-section-tag {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 68px 32px;
        gap: 40px;
    }

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

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

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

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

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

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .about-hero {
        padding: 44px 24px;
    }

    .about-hero-visual {
        max-width: 260px;
    }

    .about-hero-shape-icon {
        width: 32px;
        height: 32px;
    }

    .about-hero-shape-1 .about-hero-shape-icon {
        width: 42px;
        height: 42px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why {
        padding: 64px 20px;
    }

    .about-section-header {
        margin-bottom: 44px;
    }

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

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

    .about-value-card {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 28px 24px;
    }

    .about-value-card::after {
        height: 100%;
        width: 3px;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        border-radius: 20px 0 0 20px;
    }

    .about-value-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .about-story-visual svg {
        width: 64px;
        height: 64px;
    }

    .about-story-decoration {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .about-story-decoration svg {
        width: 18px;
        height: 18px;
    }

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

    .about-stat-card {
        padding: 32px 16px;
        min-height: 180px;
    }

    .about-stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .about-stat-icon svg {
        width: 24px;
        height: 24px;
    }

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

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

    .about-cta {
        padding: 56px 24px;
    }

    .about-cta-graphic {
        width: 120px;
        height: 120px;
        border-radius: 22px;
    }

    .about-cta-graphic svg {
        width: 52px;
        height: 52px;
    }
}

/* ============================================
   RESPONSIVE — 576px
   ============================================ */
@media (max-width: 576px) {
    .about-hero {
        padding: 36px 20px;
    }

    .about-hero-badge {
        padding: 6px 16px;
        font-size: 0.78rem;
    }

    .about-hero-visual {
        max-width: 220px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why {
        padding: 52px 16px;
    }

    .about-mission-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

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

    .about-story-image {
        max-width: 220px;
        min-height: 180px;
    }

    .about-story-visual {
        width: 130px;
        height: 130px;
        border-radius: 22px;
    }

    .about-story-visual svg {
        width: 52px;
        height: 52px;
    }

    .about-story-decoration {
        width: 38px;
        height: 38px;
        padding: 8px;
        border-radius: 10px;
    }

    .about-story-decoration svg {
        width: 16px;
        height: 16px;
    }

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

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

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

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 360px;
        margin: 0 auto;
    }

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

    .about-stat-card::before {
        height: 100%;
        width: 3px;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        border-radius: 20px 0 0 20px;
    }

    .about-stat-icon {
        margin-bottom: 0;
    }

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

    .about-quality-card {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 28px 24px;
    }

    .about-quality-card::after {
        height: 100%;
        width: 3px;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        border-radius: 20px 0 0 20px;
    }

    .about-quality-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .about-cta {
        padding: 48px 20px;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .about-cta-graphic {
        width: 100px;
        height: 100px;
    }

    .about-cta-graphic svg {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   RESPONSIVE — 400px
   ============================================ */
@media (max-width: 400px) {
    .about-hero {
        padding: 28px 16px;
    }

    .about-hero-visual {
        max-width: 190px;
    }

    .about-mission,
    .about-story,
    .about-stats,
    .about-quality,
    .about-why {
        padding: 44px 12px;
    }

    .about-story-image {
        max-width: 180px;
        min-height: 150px;
    }

    .about-story-visual {
        width: 110px;
        height: 110px;
    }

    .about-story-visual svg {
        width: 44px;
        height: 44px;
    }

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

    .about-stat-card {
        padding: 22px 18px;
        gap: 16px;
    }

    .about-stat-icon {
        width: 46px;
        height: 46px;
    }

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

    .about-why-item::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        border-radius: 20px 20px 0 0;
        transform: scaleX(0);
    }

    .about-why-item:hover::before {
        transform: scaleX(1);
    }

    .about-cta {
        padding: 40px 16px;
    }

    .about-cta-btn {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .about-cta-graphic {
        width: 90px;
        height: 90px;
    }

    .about-cta-graphic svg {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) {

    .about-value-card:hover,
    .about-stat-card:hover,
    .about-quality-card:hover,
    .about-why-item:hover {
        transform: none;
        box-shadow: none;
        background: #f7f8fb;
        border-color: #edf0f4;
    }

    .about-value-card:hover::after,
    .about-stat-card:hover::before,
    .about-quality-card:hover::after,
    .about-why-item:hover::before {
        transform: scaleX(0);
        opacity: 0;
    }

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

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

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

    .about-mission-icon:hover {
        transform: none;
    }

    .about-timeline-item:hover {
        transform: none;
    }

    .about-timeline-item:hover::before {
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .about-hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        padding: 36px 32px;
    }

    .about-hero-subtitle {
        margin-left: 0;
    }

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

    .about-story {
        grid-template-columns: 200px 1fr;
        gap: 24px;
    }

    .about-story-image {
        position: relative;
        top: auto;
        max-width: 200px;
        min-height: 180px;
    }

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

    .about-cta {
        grid-template-columns: 1fr auto;
        text-align: left;
        gap: 24px;
    }

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

    .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: 160px;
    }

    .about-stat-card::before {
        height: 3px;
        width: 100%;
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }

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

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

    .about-quality-card {
        flex-direction: column;
        text-align: center;
    }

    .about-quality-card::after {
        height: 3px;
        width: 100%;
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }

    .about-quality-icon {
        margin-bottom: 16px;
    }

    .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;
    }

    .about-value-card {
        flex-direction: column;
        text-align: center;
    }

    .about-value-card::after {
        height: 3px;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0 0 20px 20px;
    }

    .about-value-icon {
        margin-bottom: 14px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.about-cta-btn:focus-visible,
.about-value-card:focus-visible,
.about-quality-card:focus-visible,
.about-why-item:focus-visible {
    outline: 2px solid #48dbfb;
    outline-offset: 3px;
}

.about-cta-btn:focus:not(:focus-visible),
.about-value-card:focus:not(:focus-visible),
.about-quality-card:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .about-hero-shape,
    .about-story-decoration,
    .about-cta-graphic {
        animation: none;
    }

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

/* ============================================
   PRINT
   ============================================ */
@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;
    }

    .about-hero {
        background: #f8f8f8 !important;
    }

    .about-hero-title {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }

    .about-cta {
        background: #f8f8f8 !important;
    }

    .about-cta-title {
        color: #000 !important;
    }
}