/* ========================================== */
        /*  ABOUT HERO                                */
        /* ========================================== */
        .about-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }
        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }
        .about-hero-badge {
            display: inline-block;
            background: var(--primary-red);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .about-hero-content h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 7vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .about-hero-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========================================== */
        /*  OUR STORY                                 */
        /* ========================================== */
        .story-section {
            padding: 100px 20px;
            background: #fff;
        }
        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .story-image {
            position: relative;
        }
        .story-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        .story-image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary-red);
            color: #fff;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(219,0,11,0.3);
        }
        .story-image-badge span:first-child {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }
        .story-image-badge span:last-child {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .story-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        .story-text h2 span {
            color: var(--primary-red);
        }
        .story-text p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .story-highlight {
            background: linear-gradient(135deg, rgba(219,0,11,0.05), rgba(219,0,11,0.02));
            border-left: 4px solid var(--primary-red);
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin-top: 25px;
        }
        .story-highlight p {
            font-weight: 600;
            color: #333;
            margin: 0;
            font-style: italic;
        }

        /* ========================================== */
        /*  MISSION & VISION                          */
        /* ========================================== */
        .mission-section {
            padding: 100px 20px;
            background: #f8f8f8;
        }
        .mission-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .mission-card {
            background: #fff;
            border-radius: 20px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }
        .mission-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
        }
        .mission-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(219,0,11,0.1), rgba(219,0,11,0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.6rem;
            color: var(--primary-red);
        }
        .mission-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mission-card p {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.7;
        }

        /* ========================================== */
        /*  STATS                                     */
        /* ========================================== */
        .about-stats {
            padding: 80px 20px;
            background: #111;
            color: #fff;
        }
        .about-stats-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        .about-stat {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        .about-stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            color: #fff;
        }
        .about-stat-suffix {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-red);
        }
        .about-stat-label {
            margin-top: 10px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.5px;
        }
        .about-stat-divider {
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.12);
        }

        /* ========================================== */
        /*  VALUES / VÅRA VÄRDERINGAR                 */
        /* ========================================== */
        .values-section {
            padding: 100px 20px;
            background: #fff;
        }
        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .values-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .values-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #111;
            display: inline-block;
            position: relative;
        }
        .values-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        .values-header p {
            margin-top: 30px;
            font-size: 1.1rem;
            color: #666;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .value-card {
            background: #fafafa;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .value-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            background: #fff;
        }
        .value-card:hover::after {
            transform: scaleX(1);
        }
        .value-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary-red), #ff4444);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.4rem;
            color: #fff;
            box-shadow: 0 8px 20px rgba(219,0,11,0.25);
            transition: transform 0.3s;
        }
        .value-card:hover .value-card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        .value-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 10px;
        }
        .value-card p {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
        }

        /* ========================================== */
        /*  TIMELINE                                  */
        /* ========================================== */
        .timeline-section {
            padding: 100px 20px;
            background: #f8f8f8;
        }
        .timeline-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .timeline-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #111;
            display: inline-block;
            position: relative;
        }
        .timeline-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        .timeline {
            position: relative;
            padding-left: 50px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-red), rgba(219,0,11,0.15));
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 45px;
            padding: 30px;
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .timeline-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: -42px;
            top: 32px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-red);
            border: 3px solid #f8f8f8;
            box-shadow: 0 0 0 3px var(--primary-red);
        }
        .timeline-year {
            display: inline-block;
            background: var(--primary-red);
            color: #fff;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .timeline-item h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 8px;
        }
        .timeline-item p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* ========================================== */
        /*  TEAM SECTION                              */
        /* ========================================== */
        .team-section {
            padding: 100px 20px;
            background: #fff;
        }
        .team-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .team-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #111;
            display: inline-block;
            position: relative;
        }
        .team-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        .team-header p {
            margin-top: 30px;
            font-size: 1.1rem;
            color: #666;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .team-card {
            text-align: center;
            background: #fafafa;
            border-radius: 20px;
            padding: 40px 25px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            background: #fff;
        }
        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .team-avatar.av-1 { background: linear-gradient(135deg, #db000b, #ff4444); }
        .team-avatar.av-2 { background: linear-gradient(135deg, #111, #444); }
        .team-avatar.av-3 { background: linear-gradient(135deg, #9b0600, #db000b); }
        .team-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 5px;
        }
        .team-role {
            display: block;
            font-size: 0.85rem;
            color: var(--primary-red);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        .team-card p {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
        }

        /* ========================================== */
        /*  FULL CTA                                  */
        /* ========================================== */
        .about-cta {
            position: relative;
            padding: 100px 20px;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5)),
                        url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: #fff;
        }
        .about-cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-cta h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .about-cta p {
            font-size: 1.15rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        .about-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--primary-red);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(219,0,11,0.4);
        }
        .cta-btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(219,0,11,0.5);
            background: #ff1a1a;
        }
        .cta-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s;
        }
        .cta-btn-outline:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        /* ========================================== */
        /*  RESPONSIVE                                */
        /* ========================================== */
        @media (max-width: 991px) {
            .about-hero {
                height: auto;
                min-height: 60vh;
                padding: 140px 20px 80px;
            }
            .story-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .story-image-badge {
                right: 10px;
                bottom: -15px;
                width: 90px;
                height: 90px;
            }
            .story-image-badge span:first-child {
                font-size: 1.8rem;
            }
            .mission-container {
                grid-template-columns: 1fr;
            }
            .about-stats-container {
                flex-direction: column;
                gap: 30px;
            }
            .about-stat-divider {
                display: none;
            }
            .values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            .timeline {
                padding-left: 40px;
            }
            .timeline-dot {
                left: -32px;
            }
            .about-cta h2 {
                font-size: 2rem;
            }
            .about-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .cta-btn-glow, .cta-btn-outline {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
        }
        @media (max-width: 600px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }