
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fefcf8;
            color: #1e1e2a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #d4520c;
            color: white;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(212, 82, 12, 0.2);
        }

        .btn i {
            font-size: 1.1rem;
        }

        .btn:hover {
            background-color: #b34107;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(212, 82, 12, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #d4520c;
            color: #d4520c;
            box-shadow: none;
        }

        .btn-outline:hover {
            background: #d4520c;
            color: white;
        }

        /* Hero */
        .hero {
            padding: 48px 0 24px 0;
            border-bottom: 1px solid #f0e7dc;
        }

        .hero-badge {
            background: #ffe7d4;
            color: #b95a1c;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #2b2b36 0%, #4a3724 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: #5a4a3a;
            max-width: 80%;
        }

        /* Product showcase */
        .product-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin: 56px 0 64px 0;
            align-items: center;
        }

        .product-image {
            background: linear-gradient(145deg, #f9f3ea, #efe3d6);
            border-radius: 48px;
            padding: 20px;
            box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.12);
            text-align: center;
        }

        .product-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 32px;
            display: block;
            margin: 0 auto;
            background: #e2d5c8;
        }

        .image-caption {
            margin-top: 16px;
            font-size: 0.85rem;
            color: #7e6a58;
            font-weight: 500;
        }

        .usp-list {
            list-style: none;
        }

        .usp-list li {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
            align-items: flex-start;
        }

        .usp-icon {
            background: #fff0e5;
            width: 52px;
            height: 52px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #d4520c;
            font-size: 1.6rem;
        }

        .usp-text h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .usp-text p {
            color: #5c4c3c;
        }

        /* Sections */
        .section {
            margin: 80px 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-sub {
            text-align: center;
            color: #6b5a48;
            max-width: 680px;
            margin: 0 auto 48px auto;
        }

        /* Advantages cards */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }

        .adv-card {
            background: white;
            padding: 28px 24px;
            border-radius: 32px;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.06);
            transition: all 0.25s;
            border: 1px solid #efe3d6;
            text-align: center;
        }

        .adv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
            border-color: #ffcd9e;
        }

        .adv-icon {
            font-size: 2.8rem;
            color: #d4520c;
            margin-bottom: 20px;
        }

        .adv-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .adv-card p {
            color: #665545;
        }

        /* Scenes grid */
        .scenes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .scene-item {
            background: #fef8f0;
            border-radius: 28px;
            padding: 28px 16px;
            text-align: center;
            transition: 0.2s;
        }

        .scene-item i {
            font-size: 2.6rem;
            color: #d4520c;
            margin-bottom: 20px;
        }

        .scene-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .scene-item p {
            font-size: 0.9rem;
            color: #6b5b4b;
        }

        /* Specification table */
        .spec-table-wrapper {
            background: white;
            border-radius: 36px;
            padding: 8px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
            border: 1px solid #efe3d6;
            overflow-x: auto;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 1rem;
        }

        .spec-table th, .spec-table td {
            text-align: left;
            padding: 16px 20px;
            border-bottom: 1px solid #f0e3d6;
        }

        .spec-table th {
            background-color: #fdf7f0;
            font-weight: 700;
            width: 35%;
            color: #3a2c1e;
        }

        .spec-table tr:last-child td, .spec-table tr:last-child th {
            border-bottom: none;
        }

        /* FAQ accordion */
        .faq-list {
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 24px;
            margin-bottom: 16px;
            border: 1px solid #f0e2d4;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 28px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.05rem;
            background: white;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #fefaf5;
        }

        .faq-question i {
            font-size: 1.2rem;
            color: #d4520c;
            transition: transform 0.25s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out, padding 0.2s;
            padding: 0 28px;
            color: #665545;
            border-top: 0px solid #f0e2d4;
        }

        .faq-item.active .faq-answer {
            max-height: 280px;
            padding: 0 28px 24px 28px;
            border-top-width: 1px;
            border-top-style: solid;
            border-top-color: #f0e2d4;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA banner */
        .cta-banner {
            background: linear-gradient(110deg, #2c241a 0%, #4a3522 100%);
            border-radius: 48px;
            padding: 56px 32px;
            text-align: center;
            color: white;
            margin: 60px 0 40px;
        }

        .cta-banner h2 {
            font-size: 1.9rem;
            margin-bottom: 12px;
        }

        .cta-banner p {
            opacity: 0.85;
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            text-align: center;
            padding: 32px 0 48px;
            border-top: 1px solid #f0e2d4;
            margin-top: 40px;
            color: #8b7764;
            font-size: 0.85rem;
        }

        @media (max-width: 880px) {
            .product-showcase {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-sub {
                max-width: 100%;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .cta-banner h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 10px 22px;
            }
        }
    