 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     color: #333;
     overflow-x: hidden;
     background: #fff;
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     padding: 1.2rem 8%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .logo {
     height: 45px;
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 100%;
     width: auto;
 }

 .nav-links {
     display: flex;
     gap: 3rem;
     list-style: none;
     align-items: center;
 }

 .nav-links a {
     text-decoration: none;
     color: #5a5a5a;
     font-weight: 500;
     font-size: 0.95rem;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: #d4a259;
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: #d4a259;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .mobile-menu {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: #5a5a5a;
 }

 /* Hero Section */
 .hero {
     margin-top: 80px;
     height: 100vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     padding: 0 8%;
     background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(212, 162, 89, 0.08) 0%, transparent 70%);
     top: -300px;
     right: -300px;
     border-radius: 50%;
     animation: float 10s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     50% {
         transform: translate(-30px, 30px) scale(1.05);
     }
 }

 .hero-content {
     z-index: 2;
     animation: fadeInUp 1s ease;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-tag {
     display: inline-block;
     padding: 0.5rem 1.2rem;
     background: rgba(212, 162, 89, 0.1);
     color: #d4a259;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     border: 1px solid rgba(212, 162, 89, 0.2);
 }

 .hero h1 {
     font-size: 4.5rem;
     line-height: 1.1;
     color: #2a2a2a;
     margin-bottom: 1.5rem;
     font-weight: 800;
     letter-spacing: -2px;
 }

 .hero h1 .highlight {
     background: linear-gradient(135deg, #d4a259 0%, #c59147 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero p {
     font-size: 1.25rem;
     color: #666;
     margin-bottom: 2.5rem;
     line-height: 1.7;
     max-width: 500px;
 }

 .cta-group {
     display: flex;
     gap: 1.2rem;
     align-items: center;
 }

 .btn {
     padding: 1rem 2.5rem;
     font-size: 1rem;
     font-weight: 600;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary {
     background: linear-gradient(135deg, #d4a259 0%, #c59147 100%);
     color: white;
     box-shadow: 0 10px 30px rgba(212, 162, 89, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(212, 162, 89, 0.4);
 }

 .btn-secondary {
     background: transparent;
     color: #5a5a5a;
     border: 2px solid #d4a259;
 }

 .btn-secondary:hover {
     background: #d4a259;
     color: white;
     transform: translateY(-3px);
 }

 .hero-visual {
     position: relative;
     height: 600px;
     animation: fadeIn 1.2s ease 0.3s both;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .furniture-showcase {
     position: absolute;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .furniture-item {
     position: absolute;
     width: 350px;
     height: 350px;
     background: linear-gradient(135deg, #5a5a5a 0%, #3a3a3a 100%);
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 8rem;
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
     animation: rotate3d 20s ease-in-out infinite;
 }

 @keyframes rotate3d {

     0%,
     100% {
         transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
     }

     50% {
         transform: perspective(1000px) rotateY(15deg) rotateX(-10deg);
     }
 }

 /* About Section */
 .about {
     padding: 8rem 8%;
     background: white;
 }

 .section-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 5rem;
 }

 .section-tag {
     display: inline-block;
     padding: 0.5rem 1.5rem;
     background: rgba(212, 162, 89, 0.1);
     color: #d4a259;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section-header h2 {
     font-size: 3.5rem;
     color: #2a2a2a;
     margin-bottom: 1.5rem;
     font-weight: 800;
     letter-spacing: -1px;
 }

 .section-header p {
     font-size: 1.2rem;
     color: #666;
     line-height: 1.8;
 }

 .about-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 4rem;
     margin-top: 4rem;
 }

 .about-item {
     text-align: center;
     transition: transform 0.3s ease;
 }

 .about-item:hover {
     transform: translateY(-10px);
 }

 .about-icon {
     font-size: 4rem;
     margin-bottom: 1.5rem;
     display: inline-block;
     animation: bounce 3s ease-in-out infinite;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .about-item:nth-child(2) .about-icon {
     animation-delay: 0.3s;
 }

 .about-item:nth-child(3) .about-icon {
     animation-delay: 0.6s;
 }

 .about-item h3 {
     font-size: 1.5rem;
     color: #2a2a2a;
     margin-bottom: 1rem;
     font-weight: 700;
 }

 .about-item p {
     color: #666;
     line-height: 1.7;
     font-size: 1.05rem;
 }

 /* Products Section - Modern Grid Layout */
 .products {
     padding: 8rem 8%;
     background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
 }

 .products-showcase {
     margin-top: 5rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
 }

 .product-display {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
     padding: 3rem;
     background: white;
     border-radius: 30px;
     transition: all 0.4s ease;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
 }

 .product-display:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

 .product-display:nth-child(odd) {
     grid-column: 1 / -1;
 }

 .product-image-container {
     width: 100%;
     aspect-ratio: 1;
     background: linear-gradient(135deg, #d4a259 0%, #c59147 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 6rem;
     position: relative;
     overflow: hidden;
     transition: transform 0.4s ease;
 }

 .product-display:hover .product-image-container {
     transform: scale(1.05) rotate(-2deg);
 }

 .product-image-container::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transform: rotate(45deg);
     animation: shine 3s ease-in-out infinite;
 }

 @keyframes shine {

     0%,
     100% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     50% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 .product-info {
     padding: 1rem;
 }

 .product-category {
     color: #d4a259;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 0.8rem;
 }

 .product-info h3 {
     font-size: 2rem;
     color: #2a2a2a;
     margin-bottom: 1rem;
     font-weight: 700;
 }

 .product-info p {
     color: #666;
     line-height: 1.7;
     margin-bottom: 1.5rem;
     font-size: 1.05rem;
 }

 .product-features {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
     margin-bottom: 1.5rem;
 }

 .feature-tag {
     padding: 0.5rem 1rem;
     background: rgba(212, 162, 89, 0.1);
     color: #d4a259;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 500;
 }

 .product-price {
     font-size: 2.5rem;
     color: #2a2a2a;
     font-weight: 800;
     margin-bottom: 1.5rem;
 }

 .product-price span {
     color: #d4a259;
 }

 /* Video Section */
 .videos {
     padding: 8rem 8%;
     background: #2a2a2a;
     color: white;
 }

 .videos .section-header h2,
 .videos .section-header p {
     color: white;
 }

 .video-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 3rem;
     margin-top: 4rem;
 }

 .video-container {
    height: 250px;
    overflow: hidden !important;
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     overflow: auto;
     cursor: pointer;
     transition: all 0.4s ease;
     border: 2px solid rgba(212, 162, 89, 0.2);
 }

 .video-container:hover {
     transform: scale(1.02);
     border-color: #d4a259;
     box-shadow: 0 20px 60px rgba(212, 162, 89, 0.3);
 }

 .video-container video {
width: 100%;
height: 245px;
overflow: hidden;
 }

 .video-placeholder {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 55px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(90, 90, 90, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
     font-size: 5rem;
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80px;
     height: 80px;
     background: rgba(212, 162, 89, 0.9);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: white;
     transition: all 0.3s ease;
 }

 .video-container:hover .play-button {
     transform: translate(-50%, -50%) scale(1.1);
     background: #d4a259;
 }

 .video-title {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 1.5rem;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     font-size: 1.2rem;
     font-weight: 600;
 }

 /* Benefits Section */
 .benefits {
     padding: 8rem 8%;
     background: white;
 }

 .benefits-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 5rem;
     margin-top: 4rem;
     align-items: center;
 }

 .benefits-visual {
     width: 100%;
     height: 500px;
     background: linear-gradient(135deg, #5a5a5a 0%, #3a3a3a 100%);
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10rem;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
     position: relative;
     overflow: hidden;
 }

 .benefits-visual::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(212, 162, 89, 0.1), transparent);
     animation: slideAcross 4s ease-in-out infinite;
 }

 @keyframes slideAcross {

     0%,
     100% {
         transform: translateX(-100%);
     }

     50% {
         transform: translateX(100%);
     }
 }

 .benefits-list {
     display: flex;
     flex-direction: column;
     gap: 2.5rem;
 }

 .benefit-item {
     display: flex;
     gap: 1.5rem;
     align-items: flex-start;
     transition: transform 0.3s ease;
 }

 .benefit-item:hover {
     transform: translateX(10px);
 }

 .benefit-icon {
     font-size: 3rem;
     width: 80px;
     height: 80px;
     background: rgba(212, 162, 89, 0.1);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .benefit-item:hover .benefit-icon {
     background: #d4a259;
     transform: rotate(5deg);
 }

 .benefit-content h3 {
     font-size: 1.8rem;
     color: #2a2a2a;
     margin-bottom: 0.8rem;
     font-weight: 700;
 }

 .benefit-content p {
     color: #666;
     line-height: 1.7;
     font-size: 1.05rem;
 }

 /* Testimonials Section */
 .testimonials {
     padding: 8rem 8%;
     background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
 }

 .testimonials-slider {
     margin-top: 4rem;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 3rem;
 }

 .testimonial {
     background: white;
     padding: 3rem;
     border-radius: 30px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
     border: 2px solid transparent;
 }

 .testimonial:hover {
     transform: translateY(-10px);
     border-color: #d4a259;
     box-shadow: 0 20px 60px rgba(212, 162, 89, 0.2);
 }

 .testimonial-rating {
     color: #d4a259;
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .testimonial-text {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #666;
     margin-bottom: 2rem;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #d4a259 0%, #c59147 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     font-weight: 700;
     color: white;
 }

 .author-info h4 {
     font-size: 1.1rem;
     color: #2a2a2a;
     margin-bottom: 0.3rem;
     font-weight: 600;
 }

 .author-info p {
     font-size: 0.95rem;
     color: #999;
 }

 /* CTA Section */
 .cta-section {
     padding: 8rem 8%;
     background: linear-gradient(135deg, #d4a259 0%, #c59147 100%);
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     top: -200px;
     right: -200px;
     border-radius: 50%;
 }

 .cta-section h2 {
     font-size: 4rem;
     margin-bottom: 1.5rem;
     font-weight: 800;
     letter-spacing: -1px;
     position: relative;
     z-index: 2;
 }

 .cta-section p {
     font-size: 1.4rem;
     margin-bottom: 3rem;
     opacity: 0.95;
     position: relative;
     z-index: 2;
 }

 .cta-section .btn-secondary {
     background: white;
     color: #d4a259;
     border: none;
     font-size: 1.1rem;
     padding: 1.2rem 3rem;
     position: relative;
     z-index: 2;
 }

 .cta-section .btn-secondary:hover {
     background: #f8f8f8;
     transform: translateY(-5px);
 }

 /* Footer */
 footer {
     background: #1a1a1a;
     color: white;
     padding: 4rem 8% 2rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 4rem;
     margin-bottom: 3rem;
 }

 .footer-logo {
     height: 45px;
     margin-bottom: 1.5rem;
 }

 .footer-logo img {
     height: 100%;
     background-color: transparent;
 }

 .footer-desc {
     color: #999;
     line-height: 1.7;
     margin-bottom: 1.5rem;
 }

 .footer-section h4 {
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
     color: #d4a259;
     font-weight: 600;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.8rem;
 }

 .footer-links a {
     color: #999;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #d4a259;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(212, 162, 89, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #d4a259;
     text-decoration: none;
     font-size: 1.2rem;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: #d4a259;
     color: white;
     transform: translateY(-3px);
 }

 .footer-bottom {
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     color: #999;
 }

 /* Responsive */
 @media (max-width: 1024px) {

     .hero,
     .products-showcase,
     .benefits-layout,
     .video-grid {
         grid-template-columns: 1fr;
     }

     .product-display {
         grid-template-columns: 1fr;
     }

     .product-display:nth-child(odd) {
         grid-column: auto;
     }

     .about-grid,
     .testimonials-slider {
         grid-template-columns: 1fr;
     }

     .footer-content {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 768px) {
     nav {
         padding: 1rem 5%;
     }

     .nav-links {
         display: none;
     }

     .mobile-menu {
         display: block;
     }

     .hero {
         padding: 2rem 5%;
         height: auto;
         padding-bottom: 4rem;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero-visual {
         height: 400px;
     }

     .furniture-item {
         width: 280px;
         height: 280px;
         font-size: 5rem;
     }

     .section-header h2 {
         font-size: 2.2rem;
     }

     .about,
     .products,
     .benefits,
     .testimonials,
     .videos,
     .cta-section {
         padding: 4rem 5%;
     }

     .cta-section h2 {
         font-size: 2.5rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }