
        * {
            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;
            }
        }
    
        /* 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;
            }
        }
        /* ===========================
       TERMS & CONDITIONS SECTION
       60-30-10 Rule Applied:
       60% - White/Light backgrounds (#fafafa, white)
       30% - Dark text and accents (#1a1a1a, #7c7b7b)
       10% - Brand red (#c22620)
    =========================== */

        .terms-section {
            background: #fafafa;
            padding: 6rem 0 8rem;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        .terms-section .container {
            max-width: 1140px;
        }

        /* Hero Header */
        .terms-hero {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        .terms-badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(194, 38, 32, 0.08);
            color: #c22620;
            font-size: 0.813rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .terms-badge:hover {
            background: rgba(194, 38, 32, 0.12);
            transform: translateY(-2px);
        }

        .terms-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .terms-subtitle {
            font-size: 1.25rem;
            color: #7c7b7b;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .terms-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #7c7b7b;
        }

        .meta-item svg {
            opacity: 0.6;
        }

        /* Quick Navigation */
        .terms-nav {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow:
                0 1px 3px rgba(0, 0, 0, 0.04),
                0 8px 24px rgba(0, 0, 0, 0.06);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
        }

        .terms-nav-title {
            font-size: 0.938rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .terms-nav-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .nav-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: #fafafa;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .nav-card:hover {
            background: white;
            border-color: #c22620;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(194, 38, 32, 0.15);
        }

        .nav-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #c22620, #a51d18);
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            flex-shrink: 0;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .nav-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.3;
        }

        /* Terms Content */
        .terms-content {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .term-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow:
                0 1px 3px rgba(0, 0, 0, 0.04),
                0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
        }

        .term-item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .term-item:nth-child(2) {
            animation-delay: 0.35s;
        }

        .term-item:nth-child(3) {
            animation-delay: 0.4s;
        }

        .term-item:nth-child(4) {
            animation-delay: 0.45s;
        }

        .term-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .term-item:nth-child(6) {
            animation-delay: 0.55s;
        }

        .term-item:nth-child(7) {
            animation-delay: 0.6s;
        }

        .term-item:hover {
            box-shadow:
                0 2px 4px rgba(0, 0, 0, 0.06),
                0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .term-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 2.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            user-select: none;
        }

        .term-header:hover {
            background: rgba(194, 38, 32, 0.02);
        }

        .term-number {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #c22620, #a51d18);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(194, 38, 32, 0.25);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .term-header:hover .term-number {
            transform: scale(1.05) rotate(-5deg);
        }

        .term-info {
            flex: 1;
        }

        .term-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
            letter-spacing: -0.01em;
        }

        .term-preview {
            font-size: 0.875rem;
            color: #7c7b7b;
            margin: 0;
            line-height: 1.5;
        }

        .term-toggle {
            width: 36px;
            height: 36px;
            background: rgba(0, 0, 0, 0.04);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .term-toggle svg {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .term-header[aria-expanded="true"] .term-toggle {
            background: #c22620;
        }

        .term-header[aria-expanded="true"] .term-toggle svg {
            transform: rotate(180deg);
            stroke: white;
        }

        .term-header:hover .term-toggle {
            background: rgba(194, 38, 32, 0.1);
        }

        .term-body {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .term-content-inner {
            padding: 2rem 2.5rem 2.5rem;
            color: #1a1a1a;
            line-height: 1.8;
        }

        .term-content-inner p {
            margin-bottom: 1.25rem;
            font-size: 0.938rem;
            color: #1a1a1a;
        }

        .term-content-inner p:last-child {
            margin-bottom: 0;
        }

        .term-content-inner h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .term-content-inner h4:first-child {
            margin-top: 0;
        }

        /* Custom Lists */
        .custom-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .custom-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 0.938rem;
            line-height: 1.7;
        }

        .custom-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            background: #c22620;
            border-radius: 50%;
        }

        .custom-list li strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Highlight Boxes */
        .highlight-box {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(194, 38, 32, 0.05);
            border-left: 3px solid #c22620;
            border-radius: 12px;
            margin: 1.5rem 0;
            font-size: 0.938rem;
            line-height: 1.7;
        }

        .highlight-box svg {
            flex-shrink: 0;
            color: #c22620;
            margin-top: 0.125rem;
        }

        .highlight-box strong {
            color: #c22620;
            font-weight: 600;
        }

        .highlight-box.warning {
            background: rgba(255, 193, 7, 0.08);
            border-left-color: #ffc107;
        }

        .highlight-box.warning svg {
            color: #ffc107;
        }

        .highlight-box.warning strong {
            color: #f59e0b;
        }

        /* Info Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.25rem;
            margin: 1.5rem 0;
        }

        .info-card {
            padding: 1.75rem;
            background: #fafafa;
            border-radius: 12px;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .info-card:hover {
            background: white;
            border-color: rgba(194, 38, 32, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #c22620, #a51d18);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .info-icon.success {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .info-icon.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .info-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 0.5rem 0;
        }

        .info-card p {
            font-size: 0.875rem;
            color: #7c7b7b;
            margin: 0;
            line-height: 1.6;
        }

        /* Footer CTA */
        .terms-footer {
            margin-top: 4rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards;
        }

        .footer-cta-box {
            background: linear-gradient(135deg, #c22620, #a51d18);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            box-shadow:
                0 8px 24px rgba(194, 38, 32, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer-cta-box::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: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

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

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .footer-cta-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
            position: relative;
            z-index: 1;
        }

        .footer-cta-box p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .footer-btn {
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', sans-serif;
        }

        .footer-btn.primary {
            background: white;
            color: #c22620;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .footer-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .footer-btn.secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .footer-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .terms-section {
                padding: 4rem 0 6rem;
            }

            .terms-title {
                font-size: 2.75rem;
            }

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

            .terms-nav {
                padding: 2rem;
            }

            .terms-nav-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }

            .term-header {
                padding: 1.5rem 2rem;
            }

            .term-content-inner {
                padding: 1.5rem 2rem 2rem;
            }

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

            .footer-cta-box {
                padding: 2.5rem 2rem;
            }

            .footer-cta-box h3 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 767px) {
            .terms-section {
                padding: 3rem 0 4rem;
            }

            .terms-hero {
                margin-bottom: 3rem;
            }

            .terms-title {
                font-size: 2.25rem;
            }

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

            .terms-nav {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .terms-nav-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .nav-card {
                padding: 0.875rem 1rem;
            }

            .nav-icon {
                width: 32px;
                height: 32px;
                font-size: 0.813rem;
            }

            .nav-text {
                font-size: 0.813rem;
            }

            .term-header {
                padding: 1.25rem 1.5rem;
                gap: 1rem;
            }

            .term-number {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .term-title {
                font-size: 1.125rem;
            }

            .term-preview {
                font-size: 0.813rem;
            }

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

            .term-toggle svg {
                width: 18px;
                height: 18px;
            }

            .term-content-inner {
                padding: 1.25rem 1.5rem 1.75rem;
            }

            .term-content-inner p,
            .term-content-inner .custom-list li {
                font-size: 0.875rem;
            }

            .term-content-inner h4 {
                font-size: 1rem;
            }

            .footer-cta-box {
                padding: 2rem 1.5rem;
            }

            .footer-cta-box h3 {
                font-size: 1.5rem;
            }

            .footer-cta-box p {
                font-size: 1rem;
            }

            .footer-actions {
                flex-direction: column;
            }

            .footer-btn {
                width: 100%;
            }
        }

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

            .terms-meta {
                flex-direction: column;
                gap: 0.75rem;
            }

            .term-header {
                padding: 1rem 1.25rem;
            }

            .term-number {
                width: 40px;
                height: 40px;
                font-size: 0.938rem;
            }

            .term-content-inner {
                padding: 1rem 1.25rem 1.5rem;
            }

            .custom-list li {
                padding-left: 1.5rem;
            }

            .highlight-box {
                flex-direction: column;
                gap: 0.75rem;
                padding: 1.25rem;
            }

            .info-card {
                padding: 1.5rem;
            }
        }
