
     :root {
            --primary-color: #004a99;    
            --secondary-color: #007bff;     
            --light-bg: #f9f9fb;            
            --card-bg: white;              
            --text-color: #2c3e50;          
            --soft-border: #e6e6e9;        
            --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.08); 
            --radius: 8px;             
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }
        
        .tag-page-container a {
            text-decoration: none;
            color: #059669;
            transition: color 0.3s;
        }
        .tag-page-container a:hover {
            color: var(--primary-color);
        }

        .tag-page-container {
            max-width: 1430px; 
            margin: 0 auto;
            padding: 20px 30px 60px 30px;
        }
        
        header {
            background-color: var(--primary-color); 
            color: white; 
            padding: 20px 30px; 
            text-align: left; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 15px 30px;
            font-size: 0.9em;
            border-bottom: 1px solid var(--soft-border);
        }

        .tag-hero-section {
            padding: 40px 0;
            margin-bottom: 30px;
        }

        .tag-title {
            font-size: 3.5em; 
            font-weight: 700;
            color: #059669;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            text-align: center;
        }
        .tag-hero-section .hero-section-p {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: #059669;
        }
        
        .editor-content-1 {
            font-size: 16px;
            color: #555;
            padding: 20px;
            background-color: #e6f0ff;
            border-radius: var(--radius);
            line-height: 1.8;
            border-left: 5px solid var(--secondary-color);
        }
        .editor-content-1 strong {
            font-weight: bold;
        }
        .product-preview-section .list {
  margin-top: 50px;
}


.product-preview-section .list span.swiper-notification {
  display: none;
}
.product-preview-section .list .box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.product-preview-section .list .newbox1 {
  padding: 10px;
  background: #eeeeee;
}
.product-preview-section .box .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-preview-section .list .box .con {
  margin-top: 20px;
}
.product-preview-section .list .box .con p {
    font-size: 14px;
}
.product-preview-section .list .box .con h6 {
  font-size: 16px;
  font-family: Roboto;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  text-transform: capitalize;
}
        .content-matrix {
            display: grid;
            gap: 40px;
            grid-template-columns: 2fr 1fr; 
        }

        .editor-module {
            font-size: 14px;
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            box-shadow: var(--shadow-elevation);
            transition: transform 0.3s;
        }
        .editor-module:hover {
            transform: translateY(-2px);
        }
        .editor-module strong {
            font-weight: bold;
        }
        .editor-module h2 {
            font-size: 1.8em;
            color: var(--text-color);
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-top: 0;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .editor-module h3,.editor-module h4 {
             color: var(--primary-color);
             margin-bottom: 10px;
             font-weight: bold;
             font-size: 24px;
             text-align: center;
        }
        
        .editor-module ul {
            list-style: none;
            padding-left: 0;
        }
        .editor-module li {
            padding: 5px 0;
            border-bottom: 1px dotted var(--soft-border);
            position: relative;
            padding-left: 20px;
            line-height: 2;
        }
        .editor-module li::before {
            content: '✓';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .info-column1 table th, .info-column1 table td{
            padding: 5px 10px;
    border: 1px solid #666;
    width: 50%;
        }
        .info-column1 table th {
            font-weight: bold;
        }
        .info-column1 table tbody tr td:first-of-type {
            font-weight: bold;
        }
        .spec-table {
            width: 100%;
            border-collapse: separate; 
            border-spacing: 0;
            margin-top: 15px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .spec-table th, .spec-table td {
            padding: 15px;
            text-align: left;
            font-size: 0.95em;
            border-bottom: 1px solid var(--soft-border);
        }
        .spec-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 400;
            text-transform: uppercase;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        .product-preview-section {
            padding-top: 40px;
            border-top: 1px solid var(--soft-border);
            margin-bottom: 40px;
        }
        .product-preview-section h2 {
            font-size: 2.2em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
        }
        
        .product-preview-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .preview-card {
            width: 300px;
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow-elevation);
            transition: box-shadow 0.3s;
            text-align: center;
        }
        .preview-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .preview-card img {
            border-radius: 4px;
            transition: opacity 0.3s;
        }
        .preview-card:hover img {
            opacity: 0.9;
        }
        .preview-card h3 {
            font-size: 1.2em;
            color: var(--text-color);
            margin: 15px 0 5px 0;
        }
        .preview-card a {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 15px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 4px;
        }
        .preview-card a:hover {
            background-color: var(--primary-color);
        }
.editor-module1 {
            margin: 30px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .editor-module1 h3, .editor-module1 h4, .editor-module-faq h4{
            text-align: center;
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-top: 20px;
            font-weight: bold;
            position: relative;
            padding-bottom: 10px;
        }
        .editor-module1 h3::after,.editor-module1 h4::after, .editor-module-faq h4::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 8px auto 0;
            border-radius: 2px;
        }
        .jinfeng-ul-1 {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: space-between;
            gap: 25px;
            flex-wrap: wrap;
            padding-bottom: 30px;
        }
        .jinfeng-ul-1 li {
            flex: 1 1 auto; 
            min-width: min-content; 
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }
        .jinfeng-ul-1 li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: #007bff;
        }
        .jinfeng-ul-1 li::before {
            content: '⭐';
            font-size: 36px; 
            margin-right: 15px;
            color: #ffc107;
            line-height: 1;
        }
        .jinfeng-ul-1 li span {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            display: inline;
        }
.editor-module-service h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
    text-align: left;
}
.editor-module-faq {
    background-color: #fcfcfc;
    padding: 15px 10px; 
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.editor-module-faq h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
}
.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden; 
}
.editor-module-faq li {
    padding: 15px;
    transition: background-color 0.3s ease;
}
.editor-module-faq li:first-child {
    font-weight: bold;
    cursor: pointer; 
    background-color: #f7f7f7;
    color: #333;
    border-bottom: 1px solid #ddd;
    position: relative; 
}
.editor-module-faq li:first-child::after {
    content: '+'; 
    position: absolute;
    right: 5px;
    font-size: 1.2em;
    line-height: 1;
    top: 50%; 
    transform: translateY(-50%); 
    transition: transform 0.3s ease, content 0.3s ease;
}
.editor-module-faq li:first-child.expanded::after {
    content: '-'; 
}
.editor-module-faq li:last-child {
    background-color: #ffffff;
    color: #555;
    max-height: 0; 
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
}
.editor-module-faq li:last-child.active {
    max-height: 500px; 
    padding: 15px;
    opacity: 1;
}
.more-info {
    background-color: #FFFFFF;
    border-radius: 8px;  
    border: 1px solid #E0E0E0; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    padding: 25px 30px; 
    margin-top: 40px;
}
.more-info h2 {
    color: #2c3e50;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.more-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
}
.more-info ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}
.more-info li {
    margin: 0;
    padding: 0;
    margin-right: 15px;
    margin-bottom: 10px;
}
.more-info a {
    display: block; 
    text-decoration: none; 
    color: #2980b9;
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7; 
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    
    white-space: nowrap; 
    transition: all 0.2s;
}

.more-info a:hover {
    background-color: #3498db;
    border-color: #3498db;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3); 
}

.container-about {
    width: 1670px;
    padding: 0 15px;
    position: relative;
    margin-left: -140px;
}

.product-page .container .right {
    width: auto;
    padding-left: 30px;
}
.container-title {
    width: 1670px;
    padding: 0 15px;
    position: relative;
}
.inner-banner .inner-text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 60px;
}

        @media (max-width: 900px) {
            .content-matrix {
                grid-template-columns: 1fr; 
                gap: 20px;
            }
            .tag-title {
                font-size: 2.5em;
            }
            .editor-module {
                margin-bottom: 20px;
            }
            .tag-page-container, header, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        @media (max-width: 768px) {
            .jinfeng-ul-1 {
                flex-direction: column;
                gap: 15px;
            }
            .jinfeng-ul-1 li {
                width: 100%;
                min-width: unset;
                justify-content: flex-start;
                padding: 15px;
            }
        }









/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #059669;
  background: #ECFDF5;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: #64748B;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
  font-size: 15px;
}

.btn-primary {
  background: #059669;
  color: #FFFFFF;
  padding: 14px 28px;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
}

.btn-outline {
  background: transparent;
  color: #0F172A;
  padding: 14px 28px;
  border: 1.5px solid #E2E8F0;
}

.btn-outline:hover {
  border-color: #059669;
  color: #059669;
  background: #F0FDF4;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

/* ========== Icons ========== */
.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #F1F5F9;
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: #059669;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  background: #059669;
  padding: 8px 20px;
  border-radius: 10px;
  transition: background 200ms ease;
}

.nav-cta:hover {
  background: #047857;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #0F172A;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #064E3B 0%, #0F172A 50%, #1E293B 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #34D399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-buttons .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-outline:hover {
  border-color: #34D399;
  color: #34D399;
  background: rgba(52, 211, 153, 0.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 13px;
  font-weight: 500;
}

.trust-item svg {
  color: #34D399;
}

/* ========== Tags Section ========== */
.tags-section {
  padding: 64px 0;
  background: #F8FAFC;
}

.tags-heading {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  color: #059669;
  background: #ECFDF5;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: default;
  transition: all 200ms ease;
}

.tag:hover {
  background: #D1FAE5;
  transform: translateY(-1px);
}

/* ========== Products Section ========== */
.products-section {
  padding: 96px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 300ms ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-img {
  position: relative;
  height: auto;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  background: #059669;
  padding: 4px 12px;
  border-radius: 8px;
  z-index: 2;
}

.badge-new {
  background: #FBBF24;
  color: #0F172A;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 19px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: #0F172A;
}

.product-old-price {
  font-size: 15px;
  color: #94A3B8;
  text-decoration: line-through;
}

/* ========== Rooms Section ========== */
.rooms-section {
  padding: 96px 0;
  background: #F8FAFC;
}

.rooms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.room-item {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 300ms ease;
}

.room-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.room-item.reverse {
  flex-direction: row-reverse;
}

.room-img {
  flex-shrink: 0;
  width: 45%;
  height: 320px;
  overflow: hidden;
}

.room-content {
  padding: 36px 40px 36px 0;
  flex: 1;
}

.room-item.reverse .room-content {
  padding: 36px 0 36px 40px;
}

.room-content h5 {
  font-size: 24px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: auto;
  padding-left: 10px;
}

.room-content p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  background: #ECFDF5;
  padding: 5px 14px;
  border-radius: 8px;
}

/* ========== Features Section ========== */
.features-section {
  padding: 96px 0;
}

.feature-table-wrap {
  margin-bottom: 64px;
  overflow-x: auto;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.feature-table thead {
  background: #F8FAFC;
}

.feature-table th {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}

.feature-table td {
  font-size: 14px;
  color: #334155;
  padding: 20px 24px;
  line-height: 1.6;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: top;
}

.feature-table tr:last-child td {
  border-bottom: none;
}

.feature-table tr:hover td {
  background: #F8FAFC;
}

.feature-table td strong {
  color: #0F172A;
  font-size: 15px;
}

.feature-list-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.feature-list-title {
  font-size: 24px;
  font-weight: 600;
  color: #0F172A;
  text-align: center;
  margin-bottom: 36px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  transition: all 300ms ease;
}

.feature-list li:hover {
  border-color: #D1FAE5;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #ECFDF5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.feature-list li strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 6px;
}

.feature-list li p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
}

/* ========== Bundles Section ========== */
.bundles-section {
  padding: 96px 0;
  background: #F8FAFC;
}

.bundles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 300ms ease;
}

.bundle-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.bundle-img {
  position: relative;
  flex-shrink: 0;
  width: 40%;
  height: 280px;
  overflow: hidden;
}

.bundle-save {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  background: #DC2626;
  padding: 5px 14px;
  border-radius: 8px;
  z-index: 2;
}

.bundle-content {
  padding: 32px 40px 32px 0;
  flex: 1;
}

.bundle-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: auto;
  padding-left: 15px;
}

.bundle-includes {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: auto;
}

.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bundle-total {
  font-size: 28px;
  font-weight: 600;
  color: #059669;
}

.bundle-original {
  font-size: 16px;
  color: #94A3B8;
  text-decoration: line-through;
}

/* ========== Love Section ========== */
.love-section {
  padding: 96px 0;
}

.love-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.love-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #E2E8F0;
  transition: all 300ms ease;
}

.love-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.love-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.love-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.love-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.love-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.love-author strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.love-author span {
  font-size: 13px;
  color: #94A3B8;
}

/* ========== FAQ Section (静态展示) ========== */
.faq-section {
  padding: 96px 0;
  background: #F8FAFC;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-group {
  list-style: none;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-group:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

/* 问题行 */
.faq-q {
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ECFDF5;
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}

/* 答案行 */
.faq-a {
  padding: 16px 24px 18px 64px;
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  background: #0F172A;
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #94A3B8;
  padding: 5px 0;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: #34D399;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
}

/* ========== Products Lead Section ========== */
.products-lead-section {
  padding: 48px 0;
  background: #FFFFFF;
  position: relative;
}

.products-lead {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  color: #475569;
  line-height: 1.8;
  max-width: auto;
  margin: 0 auto;
  padding: 32px 40px;
  position: relative;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  background: #FAFBFC;
}

.products-lead::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #059669;
  border-radius: 0 0 4px 4px;
}

/* ========== Products Section ========== */
.products-section {
  padding: 96px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ... 后续不变 */


/* ========== Responsive ========== */
@media (max-width: 1023px) {
  .hero-title {
    font-size: 42px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .love-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .love-list .love-item:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .room-item,
  .room-item.reverse {
    flex-direction: column;
  }

  .room-img {
    width: 100%;
    height: 220px;
  }

  .room-content,
  .room-item.reverse .room-content {
    padding: 24px;
  }

  .bundle-item {
    flex-direction: column;
  }

  .bundle-img {
    width: 100%;
    height: 220px;
  }

  .bundle-content {
    padding: 24px;
  }

  .love-list {
    grid-template-columns: 1fr;
  }

  .love-list .love-item:last-child {
    max-width: none;
  }

  .faq-q {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-a {
    padding: 14px 20px 16px 56px;
    font-size: 13px;
  }

  .feature-table th,
  .feature-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {

  .products-lead-section {
    padding: 32px 0;
  }

  .products-lead {
    font-size: 15px;
    padding: 24px 20px;
  }
}
