  
        /* ABOUT SECTION STYLES */
        .about-section {
            background: #fafafa;
            overflow: hidden;
        }

        /* About Hero */
        .about-hero {
            position: relative;
            height: 65vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            /* margin-bottom: 8rem; */
        }

        .about-hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            scale: 1;
            transition: scale 8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-hero:hover .hero-img {
            scale: 1.05;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(194, 38, 32, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: white;
        }

        .hero-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            line-height: 1.5;
            opacity: 0.95;
            max-width: 650px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Story Section */
        .story-section {
            padding: 6rem 0;
        }

        .story-image-wrapper {
            position: relative;
            height: 600px;
        }

        .story-image-main {
            position: relative;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
        }

        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .story-image-main:hover .story-img {
            transform: scale(1.05);
        }

        .image-badge {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .badge-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #c22620;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .badge-text {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .story-image-float {
            position: absolute;
            top: 0;
            right: -3rem;
            width: 280px;
            height: 200px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(194, 38, 32, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

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

            50% {
                transform: translateY(-20px);
            }
        }

        .float-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-content {
            padding-left: 2rem;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #c22620;
            padding: 0.5rem 1.25rem;
            background: rgba(194, 38, 32, 0.08);
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #1a1a1a;
            margin-bottom: 2rem;
        }

        .section-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #7c7b7b;
            margin-bottom: 1.5rem;
        }

        .story-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid rgba(0, 0, 0, 0.06);
        }

        .stat-item {
            text-align: left;
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 700;
            color: #c22620;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #7c7b7b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Why Section */
        .why-section {
            padding: 8rem 0;
            background: white;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #7c7b7b;
            margin-top: 1rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
        }

        .why-card {
            position: relative;
            grid-column: span 4;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-card.card-large {
            grid-column: span 8;
            grid-row: span 2;
        }

        .why-card.card-wide {
            grid-column: span 12;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(194, 38, 32, 0.1);
        }

        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-large .card-image {
            height: 100%;
            position: absolute;
            inset: 0;
        }

        .card-wide .card-image {
            height: 250px;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .why-card:hover .card-gradient {
            opacity: 1;
        }

        .card-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .card-large .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.98) 20%, white 100%);
            padding: 3rem 2.5rem 2.5rem;
        }

        .card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #c22620, #a51d18);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(194, 38, 32, 0.3);
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 2.5;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .card-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #7c7b7b;
        }

        .card-badge {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(194, 38, 32, 0.08);
            color: #c22620;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 100px;
        }

        .inventory-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .inv-icon {
            width: 48px;
            height: 48px;
            background: rgba(194, 38, 32, 0.06);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .why-card:hover .inv-icon {
            background: rgba(194, 38, 32, 0.12);
            transform: translateY(-4px);
        }

        /* Values Section */
        .values-section {
            padding: 8rem 0;
            background: #1a1a1a;
            color: white;
        }

        .values-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .values-section .section-tag {
            background: rgba(194, 38, 32, 0.2);
            color: #ff6b66;
        }

        .values-section .section-title {
            color: white;
        }

        .values-list {
            margin-top: 3rem;
        }

        .value-item {
            display: flex;
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .value-item:hover {
            padding-left: 1rem;
            background: rgba(194, 38, 32, 0.05);
            margin-left: -1rem;
            margin-right: -1rem;
            padding-right: 1rem;
        }

        .value-number {
            font-size: 2rem;
            font-weight: 700;
            color: #c22620;
            font-family: 'JetBrains Mono', monospace;
            flex-shrink: 0;
        }

        .value-info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .value-info p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .visual-circle {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            box-shadow:
                0 0 0 20px rgba(194, 38, 32, 0.1),
                0 0 0 40px rgba(194, 38, 32, 0.05),
                0 30px 80px rgba(0, 0, 0, 0.3);
            animation: pulse 4s ease-in-out infinite;
            margin: 0 auto;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow:
                    0 0 0 20px rgba(194, 38, 32, 0.1),
                    0 0 0 40px rgba(194, 38, 32, 0.05),
                    0 30px 80px rgba(0, 0, 0, 0.3);
            }

            50% {
                transform: scale(1.02);
                box-shadow:
                    0 0 0 25px rgba(194, 38, 32, 0.15),
                    0 0 0 50px rgba(194, 38, 32, 0.08),
                    0 35px 90px rgba(0, 0, 0, 0.4);
            }
        }

        .visual-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Section */
        .about-cta {
            padding: 8rem 0;
        }

        .cta-card {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            background: white;
            border-radius: 32px;
            padding: 4rem;
            box-shadow:
                0 20px 80px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(194, 38, 32, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.125rem;
            line-height: 1.6;
            color: #7c7b7b;
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary,
        .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #c22620, #a51d18);
            color: white;
            box-shadow:
                0 4px 16px rgba(194, 38, 32, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 24px rgba(194, 38, 32, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .btn-secondary {
            background: white;
            color: #1a1a1a;
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            border-color: #c22620;
            color: #c22620;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .cta-image {
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }

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

            .story-image-wrapper {
                height: 400px;
                margin-bottom: 3rem;
            }

            .story-image-main {
                height: 100%;
            }

            .story-image-float {
                display: none;
            }

            .story-content {
                padding-left: 0;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .why-card {
                grid-column: span 6 !important;
            }

            .why-card.card-large,
            .why-card.card-wide {
                grid-column: span 12 !important;
                grid-row: span 1 !important;
            }

            .card-large .card-image {
                position: relative;
                height: 300px;
            }

            .card-large .card-content {
                position: relative;
                background: white;
                padding: 2rem;
            }

            .values-wrapper {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .cta-card {
                grid-template-columns: 1fr;
                padding: 3rem;
            }

            .cta-image {
                order: -1;
            }
        }

        @media (max-width: 767px) {
            .about-hero {
                height: 50vh;
                min-height: 400px;
                margin-bottom: 4rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

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

            .story-section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-text {
                font-size: 1rem;
            }

            .story-stats {
                gap: 2rem;
            }

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

            .why-section,
            .values-section,
            .about-cta {
                padding: 4rem 0;
            }

            .why-card {
                grid-column: span 12 !important;
            }

            .value-item {
                gap: 1.5rem;
            }

            .value-number {
                font-size: 1.5rem;
            }

            .value-info h4 {
                font-size: 1.125rem;
            }

            .cta-card {
                padding: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 2rem;
            }

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

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .story-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .cta-image {
                height: 250px;
            }
        }

    /* ============================================
       SHIPPING POLICY SECTION STYLES
       60-30-10 Color Rule: 60% White/Light, 30% Gray, 10% Red
    ============================================ */
    
    .shipping-policy-section {
        padding: 8rem 0;
        background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%); /* 60% - Dominant neutral */
        position: relative;
        overflow: hidden;
    }
    
    .shipping-policy-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1400px;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(194, 38, 32, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(124, 123, 123, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .shipping-policy-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }
    
    /* ============================================
       SECTION HEADER
    ============================================ */
    
    .section-header {
        text-align: center;
        margin-bottom: 5rem;
    }
    
    .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        background: rgba(194, 38, 32, 0.06); /* 10% - Accent */
        border-radius: 100px;
        margin-bottom: 1.5rem;
        animation: badgePulse 3s ease-in-out infinite;
    }
    
    @keyframes badgePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .badge-dot {
        width: 8px;
        height: 8px;
        background: #c22620; /* 10% - Accent */
        border-radius: 50%;
        animation: dotPulse 2s ease-in-out infinite;
    }
    
    @keyframes dotPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }
    
    .badge-text {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #c22620; /* 10% - Accent */
    }
    
    .section-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
        letter-spacing: -0.03em;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: #7c7b7b; /* 30% - Secondary gray */
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    /* ============================================
       SHIPPING HIGHLIGHTS
    ============================================ */
    
    .shipping-highlights {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-bottom: 5rem;
    }
    
    .highlight-card {
        background: white; /* 60% - Dominant */
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        box-shadow: 
            0 1px 3px rgba(0,0,0,0.04),
            0 8px 24px rgba(0,0,0,0.04),
            inset 0 0 0 1px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        position: relative;
        overflow: hidden;
    }
    
    .highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #c22620, #a51d18); /* 10% - Accent */
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    
    .highlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 
            0 4px 12px rgba(0,0,0,0.06),
            0 16px 48px rgba(194, 38, 32, 0.12),
            inset 0 0 0 1px rgba(194, 38, 32, 0.1);
    }
    
    .highlight-card:hover::before {
        transform: scaleX(1);
    }
    
    .highlight-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, rgba(194, 38, 32, 0.08), rgba(194, 38, 32, 0.12)); /* 10% - Accent background */
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        position: relative;
    }
    
    .highlight-card:hover .highlight-icon {
        background: linear-gradient(135deg, #c22620, #a51d18); /* 10% - Accent on hover */
        transform: scale(1.1) rotate(5deg);
    }
    
    .highlight-icon svg {
        width: 32px;
        height: 32px;
        color: #c22620; /* 10% - Accent */
        transition: color 0.3s;
    }
    
    .highlight-card:hover .highlight-icon svg {
        color: white;
    }
    
    .highlight-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    
    .highlight-desc {
        font-size: 0.875rem;
        color: #7c7b7b; /* 30% - Secondary */
        line-height: 1.5;
    }
    
    /* ============================================
       POLICY GRID
    ============================================ */
    
    .policy-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .policy-card {
        background: white; /* 60% - Dominant */
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 
            0 1px 3px rgba(0,0,0,0.04),
            0 8px 24px rgba(0,0,0,0.05),
            inset 0 0 0 1px rgba(0,0,0,0.06);
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        position: relative;
        overflow: hidden;
    }
    
    .policy-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(194, 38, 32, 0.03) 0%, transparent 70%); /* 10% - Subtle accent */
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }
    
    .policy-card:hover {
        box-shadow: 
            0 4px 12px rgba(0,0,0,0.06),
            0 20px 48px rgba(0,0,0,0.08),
            inset 0 0 0 1px rgba(194, 38, 32, 0.15);
    }
    
    .policy-card:hover::after {
        opacity: 1;
    }
    
    .policy-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .policy-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, rgba(194, 38, 32, 0.08), rgba(194, 38, 32, 0.12)); /* 10% - Accent */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    
    .policy-card:hover .policy-icon {
        background: linear-gradient(135deg, #c22620, #a51d18); /* 10% - Accent */
        transform: rotate(5deg);
    }
    
    .policy-icon svg {
        width: 24px;
        height: 24px;
        color: #c22620; /* 10% - Accent */
        transition: color 0.3s;
    }
    
    .policy-card:hover .policy-icon svg {
        color: white;
    }
    
    .policy-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
    }
    
    .policy-content {
        position: relative;
        z-index: 1;
    }
    
    /* ============================================
       SHIPPING METHODS
    ============================================ */
    
    .shipping-method {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem;
        background: #fafafa; /* 60% - Light background */
        border-radius: 12px;
        margin-bottom: 0.75rem;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        border: 1px solid transparent;
    }
    
    .shipping-method:last-child {
        margin-bottom: 0;
    }
    
    .shipping-method:hover {
        background: white;
        border-color: rgba(194, 38, 32, 0.2); /* 10% - Accent border */
        transform: translateX(4px);
    }
    
    .shipping-method.featured {
        background: linear-gradient(135deg, rgba(194, 38, 32, 0.06), rgba(194, 38, 32, 0.08)); /* 10% - Accent */
        border: 1px solid rgba(194, 38, 32, 0.2);
    }
    
    .shipping-method.featured:hover {
        background: linear-gradient(135deg, rgba(194, 38, 32, 0.08), rgba(194, 38, 32, 0.12));
        border-color: rgba(194, 38, 32, 0.3);
    }
    
    .method-info {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .method-name {
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
    }
    
    .method-time {
        font-size: 0.813rem;
        color: #7c7b7b; /* 30% - Secondary */
    }
    
    .method-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: #c22620; /* 10% - Accent */
    }
    
    .shipping-method.featured .method-price {
        color: #c22620;
    }
    
    /* ============================================
       INFO ITEMS
    ============================================ */
    
    .info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .info-item:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .info-label {
        font-size: 0.938rem;
        font-weight: 500;
        color: #7c7b7b; /* 30% - Secondary */
    }
    
    .info-value {
        font-size: 0.938rem;
        font-weight: 600;
        color: #1a1a1a;
    }
    
    .info-note {
        margin-top: 1.5rem;
        padding: 1.25rem;
        background: rgba(194, 38, 32, 0.04); /* 10% - Accent background */
        border-left: 3px solid #c22620; /* 10% - Accent */
        border-radius: 8px;
        font-size: 0.875rem;
        color: #7c7b7b; /* 30% - Secondary */
        line-height: 1.6;
    }
    
    /* ============================================
       COVERAGE LIST
    ============================================ */
    
    .coverage-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .coverage-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #fafafa; /* 60% - Light */
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    
    .coverage-item:hover {
        background: rgba(194, 38, 32, 0.04); /* 10% - Accent */
        transform: translateX(4px);
    }
    
    .coverage-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #c22620, #a51d18); /* 10% - Accent */
        color: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .coverage-text {
        font-size: 0.938rem;
        font-weight: 500;
        color: #1a1a1a;
    }
    
    /* ============================================
       TRACKING STEPS
    ============================================ */
    
    .tracking-steps {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tracking-step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        position: relative;
    }
    
    .tracking-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 19px;
        top: 48px;
        width: 2px;
        height: calc(100% + 1.5rem);
        background: linear-gradient(180deg, #c22620 0%, rgba(194, 38, 32, 0.2) 100%); /* 10% - Accent gradient */
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #c22620, #a51d18); /* 10% - Accent */
        color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(194, 38, 32, 0.25);
        position: relative;
        z-index: 1;
    }
    
    .step-info {
        flex: 1;
        padding-top: 0.25rem;
    }
    
    .step-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.25rem;
    }
    
    .step-desc {
        font-size: 0.875rem;
        color: #7c7b7b; /* 30% - Secondary */
    }
    
    /* ============================================
       ADDITIONAL INFO
    ============================================ */
    
    .additional-info {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .info-box {
        background: white; /* 60% - Dominant */
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 
            0 1px 3px rgba(0,0,0,0.04),
            0 8px 24px rgba(0,0,0,0.05),
            inset 0 0 0 1px rgba(0,0,0,0.06);
    }
    
    .info-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
    }
    
    .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .info-list li {
        padding-left: 1.75rem;
        margin-bottom: 1rem;
        font-size: 0.938rem;
        color: #7c7b7b; /* 30% - Secondary */
        line-height: 1.6;
        position: relative;
    }
    
    .info-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.5rem;
        width: 6px;
        height: 6px;
        background: #c22620; /* 10% - Accent */
        border-radius: 50%;
    }
    
    .info-list li:last-child {
        margin-bottom: 0;
    }
    
    .contact-cta {
        background: linear-gradient(135deg, #c22620, #a51d18); /* 10% - Accent gradient */
        border-radius: 20px;
        padding: 2.5rem;
        color: white;
        box-shadow: 
            0 4px 16px rgba(194, 38, 32, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    .contact-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: ctaShine 8s linear infinite;
    }
    
    @keyframes ctaShine {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .cta-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 1;
    }
    
    .cta-text {
        font-size: 0.938rem;
        opacity: 0.9;
        line-height: 1.6;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .cta-buttons {
        display: flex;
        gap: 1rem;
        position: relative;
        z-index: 1;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.938rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        display: inline-block;
        border: 2px solid white;
    }
    
    .btn-primary {
        background: white;
        color: #c22620; /* 10% - Accent */
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .btn-primary:hover {
        background: #fafafa;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    
    .btn-secondary {
        background: transparent;
        color: white;
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    /* ============================================
       ANIMATIONS
    ============================================ */
    
    [data-aos] {
        opacity: 0;
        transition-property: opacity, transform;
        transition-duration: 0.6s;
        transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    }
    
    [data-aos].aos-animate {
        opacity: 1;
    }
    
    [data-aos="fade-up"] {
        transform: translateY(30px);
    }
    
    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }
    
    /* ============================================
       RESPONSIVE DESIGN
    ============================================ */
    
    @media (max-width: 991px) {
        .shipping-policy-section {
            padding: 6rem 0;
        }
        
        .shipping-highlights {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
        
        .policy-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .additional-info {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 767px) {
        .shipping-policy-section {
            padding: 4rem 0;
        }
        
        .shipping-policy-section .container {
            padding: 0 1.5rem;
        }
        
        .section-header {
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .shipping-highlights {
            grid-template-columns: 1fr;
            margin-bottom: 3rem;
        }
        
        .highlight-card {
            padding: 2rem 1.5rem;
        }
        
        .policy-card {
            padding: 2rem;
        }
        
        .policy-title {
            font-size: 1.25rem;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }
    }
    
    @media (max-width: 575px) {
        .shipping-policy-section {
            padding: 3rem 0;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .highlight-card {
            padding: 1.5rem;
        }
        
        .policy-card {
            padding: 1.5rem;
        }
        
        .policy-card-header {
            margin-bottom: 1.5rem;
        }
        
        .shipping-method {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .method-price {
            align-self: flex-end;
        }
        
        .info-box,
        .contact-cta {
            padding: 2rem;
        }
        
        .cta-title {
            font-size: 1.25rem;
        }
    }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fafafa;
            -webkit-font-smoothing: antialiased;
        }

        /* COMPACT HEADER - Single Row Only */
        .header-wrapper {
            position: sticky;
            top: 16px;
            z-index: 1000;
            padding: 0 1.5rem;
            /* margin-bottom: 5rem; */
        }

        .header-bar {
            position: relative;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(24px) saturate(180%);
            border-radius: 16px;
            height: 56px;
            /* COMPACT HEIGHT */
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem 0 0;
            box-shadow:
                0 1px 2px rgba(0, 0, 0, 0.04),
                0 4px 12px rgba(0, 0, 0, 0.03),
                inset 0 0 0 1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-bar:hover {
            box-shadow:
                0 2px 4px rgba(0, 0, 0, 0.05),
                0 8px 20px rgba(0, 0, 0, 0.05),
                inset 0 0 0 1px rgba(0, 0, 0, 0.08);
        }

        /* Logo - Breaks out of header bounds (unique concept) */
        .logo-zone {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .logo-float {
            position: relative;
            width: 140px;
            height: 140px;
            /* BIG logo */
            /* background: white; */
            border-radius: 20px;
            padding: 14px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: logoHover 6s ease-in-out infinite;
        }

        @keyframes logoHover {

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

            50% {
                transform: translateY(-4px);
            }
        }

        .logo-float::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, #c22620, #7c7b7b);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* .logo-float:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 
                0 8px 20px rgba(194,38,32,0.15),
                0 20px 40px rgba(0,0,0,0.08);
        } */

        /* .logo-float:hover::before {
            opacity: 1;
        } */

        .logo-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        /* Tagline beside logo */
        .brand-tag {
            position: absolute;
            left: 120px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #1a1a1a;
            opacity: 0.6;
            font-family: 'JetBrains Mono', monospace;
            white-space: nowrap;
        }

        /* Navigation - Compact & Minimal */
        .nav-main {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin: 0;
            padding: 0;
            padding-left: 240px;
            /* Space for logo + tagline */
        }

        .nav-link {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #c22620;
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .nav-link span {
            position: relative;
            z-index: 1;
        }

        .nav-link:hover {
            color: white;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        /* CTA Group - Compact */
        .cta-zone {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
            margin-left: auto;
        }

        .search-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.04);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .search-icon:hover {
            background: #c22620;
        }

        .search-icon svg {
            width: 16px;
            height: 16px;
            stroke: #1a1a1a;
            transition: stroke 0.2s;
        }

        .search-icon:hover svg {
            stroke: white;
        }

        .cta-btn {
            padding: 0.625rem 1.5rem;
            background: linear-gradient(135deg, #c22620, #a51d18);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow:
                0 2px 8px rgba(194, 38, 32, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow:
                0 4px 16px rgba(194, 38, 32, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:active {
            transform: translateY(0);
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            width: 36px;
            height: 36px;
            background: rgba(0, 0, 0, 0.04);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .mobile-toggle span {
            position: absolute;
            width: 18px;
            height: 2px;
            background: #1a1a1a;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-toggle span:nth-child(1) {
            top: 11px;
        }

        .mobile-toggle span:nth-child(2) {
            top: 17px;
        }

        .mobile-toggle span:nth-child(3) {
            top: 23px;
        }

        .mobile-toggle:hover {
            background: #c22620;
        }

        .mobile-toggle:hover span {
            background: white;
        }

        .mobile-toggle.active span:nth-child(1) {
            top: 17px;
            transform: translateX(-50%) rotate(45deg);
            background: white;
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            top: 17px;
            transform: translateX(-50%) rotate(-45deg);
            background: white;
        }

        .mobile-toggle.active {
            background: #c22620;
        }

        /* Mobile Menu Close Button */
        .mobile-close {
            display: none;
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 44px;
            height: 44px;
            background: rgba(0, 0, 0, 0.05);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s;
        }

        .mobile-close::before,
        .mobile-close::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: #1a1a1a;
            top: 50%;
            left: 50%;
            transition: background 0.2s;
        }

        .mobile-close::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .mobile-close::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .mobile-close:hover {
            background: #c22620;
        }

        .mobile-close:hover::before,
        .mobile-close:hover::after {
            background: white;
        }

        /* Demo Content */
        .content-area {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
        }

        .content-area h1 {
            font-size: 4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .content-area p {
            font-size: 1.25rem;
            color: #7c7b7b;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .header-wrapper {
                top: 12px;
                padding: 0 1rem;
            }

            .header-bar {
                height: 64px;
                padding: 0 1rem 0 0;
            }

            .logo-zone {
                left: 1rem;
            }

            .logo-float {
                width: 70px;
                height: 70px;
                padding: 10px;
            }

            .brand-tag {
                display: none;
            }

            .nav-main {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(40px) saturate(180%);
                padding: 5rem 2rem 2rem;
                flex-direction: column;
                gap: 0.5rem;
                box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                margin: 0;
            }

            .nav-main.active {
                right: 0;
            }

            .nav-link {
                width: 100%;
                text-align: left;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                border-radius: 12px;
            }

            .mobile-toggle {
                display: block;
            }

            .mobile-close {
                display: block;
            }

            .search-icon {
                display: none;
            }

            /* Mobile overlay */
            .mobile-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(4px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.4s;
                z-index: 999;
            }

            .mobile-overlay.active {
                opacity: 1;
                pointer-events: all;
            }

            .content-area h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            .header-bar {
                height: 60px;
                padding: 0 0.75rem 0 0;
            }

            .logo-zone {
                left: 0.75rem;
            }

            .logo-float {
                width: 60px;
                height: 60px;
                padding: 8px;
                border-radius: 14px;
            }

            .cta-btn {
                padding: 0.5rem 1.25rem;
                font-size: 0.813rem;
            }
        }

        @media (max-width: 575px) {
            .header-wrapper {
                top: 8px;
                padding: 0 0.75rem;
            }

            .header-bar {
                height: 56px;
                padding: 0 0.5rem 0 0;
            }

            .logo-zone {
                left: 0.5rem;
            }

            .logo-float {
                width: 52px;
                height: 52px;
                padding: 7px;
                border-radius: 12px;
            }

            .cta-zone {
                gap: 0.5rem;
            }

            .cta-btn {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .nav-main {
                /* width: 100%; */
                right: -100%;
                padding: 4rem 1.5rem 2rem;
            }

            .content-area {
                padding: 2rem 1rem;
            }

            .content-area h1 {
                font-size: 2rem;
            }

            .content-area p {
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            .header-bar {
                height: 52px;
                padding: 0 0.5rem 0 0;
            }

            .logo-zone {
                left: 0.5rem;
            }

            .logo-float {
                width: 44px;
                height: 44px;
                padding: 6px;
                border-radius: 10px;
            }

            .cta-btn {
                padding: 0.4rem 0.75rem;
                font-size: 0.7rem;
            }

            .mobile-toggle {
                width: 32px;
                height: 32px;
            }

            .mobile-toggle span {
                width: 16px;
            }

            .mobile-toggle span:nth-child(1) {
                top: 9px;
            }

            .mobile-toggle span:nth-child(2) {
                top: 15px;
            }

            .mobile-toggle span:nth-child(3) {
                top: 21px;
            }

            .mobile-toggle.active span:nth-child(1),
            .mobile-toggle.active span:nth-child(3) {
                top: 15px;
            }
        }