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

   :root {
       --black: #000000;
       --red-dark: #690c0c;
       --red-strong: #c11718;
       --white: #ffffff;
       --red-glow: rgba(193, 23, 24, 0.3);
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       line-height: 1.6;
       color: var(--white);
       background: var(--black);
       overflow-x: hidden;
   }

   /* Header & Navigation */
   header {
       position: fixed;
       top: 0;
       width: 100%;
       background: rgba(0, 0, 0, 0.95);
       backdrop-filter: blur(20px);
       z-index: 1000;
       border-bottom: 1px solid rgba(193, 23, 24, 0.2);
       transition: all 0.3s ease;
   }

   header.scrolled {
       background: rgba(0, 0, 0, 0.98);
       border-bottom: 1px solid var(--red-strong);
       box-shadow: 0 4px 30px rgba(193, 23, 24, 0.2);
   }

   nav {
       max-width: 1600px;
       margin: 0 auto;
       padding: 1rem 3rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .logo {
       height: 37px;
       transition: all 0.3s ease;
   }

   .logo:hover {
       filter: drop-shadow(0 0 10px var(--red-glow));
       transform: scale(1.05);
   }

   .nav-links {
       display: flex;
       gap: 3rem;
       list-style: none;
   }

   .nav-links a {
       text-decoration: none;
       color: var(--white);
       font-weight: 500;
       font-size: 0.95rem;
       transition: all 0.3s ease;
       position: relative;
   }

   .nav-links a::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: var(--red-strong);
       transition: width 0.3s ease;
   }

   .nav-links a:hover {
       color: var(--red-strong);
   }

   .nav-links a:hover::after {
       width: 100%;
   }

   .menu-toggle {
       display: none;
       flex-direction: column;
       gap: 5px;
       cursor: pointer;
       z-index: 1001;
   }

   .menu-toggle span {
       width: 25px;
       height: 2px;
       background: var(--white);
       transition: all 0.3s ease;
   }

   .menu-toggle.active span:nth-child(1) {
       transform: rotate(45deg) translate(5px, 5px);
       background: var(--red-strong);
   }

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

   .menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(7px, -6px);
       background: var(--red-strong);
   }

   /* Hero Section */
   .hero {
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       background: radial-gradient(ellipse at center, var(--red-dark) 0%, var(--black) 70%);
       position: relative;
       overflow: hidden;
       padding: 2rem;
   }

   .hero::before {
       content: '';
       position: absolute;
       width: 200%;
       height: 200%;
       background:
           radial-gradient(circle at 30% 40%, var(--red-glow) 0%, transparent 40%),
           radial-gradient(circle at 70% 60%, rgba(105, 12, 12, 0.4) 0%, transparent 40%);
       animation: rotate 20s linear infinite;
   }

   @keyframes rotate {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   .hero-content {
       max-width: 1200px;
       text-align: center;
       color: var(--white);
       z-index: 2;
       animation: fadeInUp 1s ease;
   }

   .hero-logo {
       max-width: 800px;
       width: 90%;
       margin-bottom: 3rem;
       filter: drop-shadow(0 0 30px var(--red-glow));
       animation: pulse 3s ease-in-out infinite;
   }

   @keyframes pulse {

       0%,
       100% {
           filter: drop-shadow(0 0 30px var(--red-glow));
       }

       50% {
           filter: drop-shadow(0 0 50px var(--red-glow)) brightness(1.1);
       }
   }

   .hero h1 {
       font-size: clamp(2.5rem, 6vw, 4.5rem);
       font-weight: 900;
       margin-bottom: 1.5rem;
       letter-spacing: -2px;
       line-height: 1.1;
       background: linear-gradient(135deg, var(--white) 0%, var(--red-strong) 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }

   .hero p {
       font-size: clamp(1.2rem, 2.5vw, 1.6rem);
       font-weight: 300;
       margin-bottom: 3rem;
       opacity: 0.9;
       color: var(--white);
   }

   .cta-button {
       display: inline-block;
       padding: 1.2rem 3rem;
       background: linear-gradient(135deg, var(--red-strong) 0%, var(--red-dark) 100%);
       color: var(--white);
       text-decoration: none;
       border-radius: 50px;
       font-weight: 600;
       font-size: 1.1rem;
       transition: all 0.4s ease;
       box-shadow: 0 10px 40px var(--red-glow);
       border: 2px solid transparent;
       position: relative;
       overflow: hidden;
   }

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

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

   .cta-button:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 50px rgba(193, 23, 24, 0.5);
       border-color: var(--red-strong);
   }

   /* Sections */
   section {
       padding: 8rem 3rem;
       max-width: 1600px;
       margin: 0 auto;
       position: relative;
   }

   section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 80%;
       height: 1px;
       background: linear-gradient(90deg, transparent, var(--red-strong), transparent);
   }

   section h2 {
       font-size: clamp(2.5rem, 5vw, 4rem);
       font-weight: 800;
       margin-bottom: 1rem;
       letter-spacing: -1px;
       color: var(--white);
       position: relative;
       display: inline-block;
   }

   section h2::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60%;
       height: 4px;
       background: linear-gradient(90deg, var(--red-strong), transparent);
   }

   section .subtitle {
       font-size: 1.3rem;
       color: rgba(255, 255, 255, 0.7);
       margin-bottom: 4rem;
       font-weight: 300;
   }

   /* About Section */
   .about {
       background: linear-gradient(180deg, var(--black) 0%, var(--red-dark) 50%, var(--black) 100%);
   }

   .about-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 5rem;
       align-items: center;
   }

   .about-text p {
       font-size: 1.15rem;
       line-height: 1.9;
       color: rgba(255, 255, 255, 0.9);
       margin-bottom: 1.5rem;
   }

   .founder {
       display: inline-block;
       margin-top: 2rem;
       padding: 1.5rem 2.5rem;
       background: rgba(193, 23, 24, 0.1);
       border-radius: 12px;
       border-left: 4px solid var(--red-strong);
       border-right: 4px solid var(--red-strong);
       box-shadow: 0 0 30px rgba(193, 23, 24, 0.2);
   }

   .founder strong {
       color: var(--red-strong);
       font-size: 1.1rem;
   }

   .about-visual {
       display: flex;
       gap: 1.5rem;
       flex-wrap: wrap;
   }

   .stat-card {
       flex: 1;
       min-width: 150px;
       padding: 2.5rem;
       background: linear-gradient(135deg, var(--red-strong), var(--red-dark));
       color: var(--white);
       border-radius: 20px;
       text-align: center;
       transition: all 0.4s ease;
       border: 1px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 10px 40px rgba(193, 23, 24, 0.3);
   }

   .stat-card:hover {
       transform: translateY(-10px) scale(1.05);
       box-shadow: 0 20px 60px rgba(193, 23, 24, 0.5);
   }

   .stat-card h3 {
       font-size: 3rem;
       font-weight: 900;
       margin-bottom: 0.5rem;
   }

   .stat-card p {
       font-size: 0.95rem;
       opacity: 0.95;
   }

   /* Products Section */
   .products {
       background: var(--black);
   }

   .products-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 2.5rem;
       margin-top: 3rem;
   }

   .product-card {
       background: linear-gradient(135deg, rgba(105, 12, 12, 0.3), rgba(0, 0, 0, 0.8));
       padding: 3rem;
       border-radius: 20px;
       transition: all 0.4s ease;
       border: 1px solid rgba(193, 23, 24, 0.3);
       position: relative;
       overflow: hidden;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
   }

   .product-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, var(--red-strong) 0%, transparent 60%);
       opacity: 0;
       transition: opacity 0.4s ease;
   }

   .product-card:hover::before {
       opacity: 0.1;
   }

   .product-card:hover {
       transform: translateY(-15px);
       box-shadow: 0 20px 60px rgba(193, 23, 24, 0.4);
       border-color: var(--red-strong);
   }

   .product-icon {
       width: 70px;
       height: 70px;
       background: linear-gradient(135deg, var(--red-strong), var(--red-dark));
       border-radius: 16px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 2rem;
       margin-bottom: 1.5rem;
       box-shadow: 0 5px 20px var(--red-glow);
       position: relative;
       z-index: 1;
   }

   .product-card h3 {
       font-size: 2rem;
       font-weight: 700;
       margin-bottom: 1rem;
       color: var(--white);
       position: relative;
       z-index: 1;
   }

   .product-card p {
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.8;
       font-size: 1.05rem;
       position: relative;
       z-index: 1;
   }

   .coming-soon {
       border: 2px dashed rgba(193, 23, 24, 0.5);
       background: linear-gradient(135deg, rgba(105, 12, 12, 0.2), rgba(0, 0, 0, 0.9));
   }

   .coming-soon .product-icon {
       background: rgba(193, 23, 24, 0.3);
   }

   .badge {
       display: inline-block;
       padding: 0.6rem 1.3rem;
       background: var(--red-strong);
       color: var(--white);
       border-radius: 25px;
       font-size: 0.85rem;
       font-weight: 700;
       margin-top: 1.5rem;
       box-shadow: 0 5px 15px var(--red-glow);
       position: relative;
       z-index: 1;
   }

   .coming-soon .badge {
       background: rgba(193, 23, 24, 0.4);
       box-shadow: none;
   }

   /* Philosophy Section */
   .philosophy {
       background: radial-gradient(ellipse at center, var(--red-dark) 0%, var(--black) 60%);
   }

   .philosophy-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 3rem;
       margin-top: 4rem;
   }

   .value-card {
       text-align: center;
       padding: 3rem 2rem;
       transition: transform 0.4s ease;
       background: rgba(193, 23, 24, 0.05);
       border-radius: 20px;
       border: 1px solid rgba(193, 23, 24, 0.2);
   }

   .value-card:hover {
       transform: translateY(-10px);
       background: rgba(193, 23, 24, 0.1);
       border-color: var(--red-strong);
   }

   .value-icon {
       font-size: 3.5rem;
       margin-bottom: 1.5rem;
       filter: drop-shadow(0 0 20px var(--red-glow));
   }

   .value-card h3 {
       font-size: 1.8rem;
       font-weight: 700;
       margin-bottom: 1rem;
       color: var(--red-strong);
   }

   .value-card p {
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.8;
       font-size: 1.05rem;
   }

   /* Contact Section */
   .contact {
       background: var(--black);
   }

   .contact-container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 5rem;
       margin-top: 3rem;
   }

   .contact-info h3 {
       font-size: 2rem;
       margin-bottom: 1.5rem;
       color: var(--red-strong);
   }

   .contact-info p {
       font-size: 1.15rem;
       line-height: 1.9;
       margin-bottom: 1.5rem;
       opacity: 0.9;
   }

   .contact-email {
       color: var(--red-strong);
       text-decoration: none;
       font-weight: 600;
       font-size: 1.3rem;
       transition: all 0.3s ease;
   }

   .contact-email:hover {
       text-shadow: 0 0 20px var(--red-glow);
   }

   .contact-form {
       display: flex;
       flex-direction: column;
       gap: 1.5rem;
   }

   .form-group {
       display: flex;
       flex-direction: column;
   }

   .form-group label {
       margin-bottom: 0.7rem;
       font-weight: 500;
       color: var(--red-strong);
   }

   .form-group input,
   .form-group textarea {
       padding: 1.2rem;
       border: 2px solid rgba(193, 23, 24, 0.3);
       border-radius: 12px;
       font-size: 1rem;
       font-family: inherit;
       background: rgba(193, 23, 24, 0.05);
       color: var(--white);
       transition: all 0.3s ease;
   }

   .form-group input:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: var(--red-strong);
       background: rgba(193, 23, 24, 0.1);
       box-shadow: 0 0 20px var(--red-glow);
   }

   .form-group textarea {
       min-height: 150px;
       resize: vertical;
   }

   .submit-button {
       padding: 1.2rem 2rem;
       background: linear-gradient(135deg, var(--red-strong), var(--red-dark));
       color: var(--white);
       border: none;
       border-radius: 12px;
       font-size: 1.1rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.4s ease;
       box-shadow: 0 10px 30px var(--red-glow);
   }

   .submit-button:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 40px rgba(193, 23, 24, 0.5);
   }

   /* Footer */
   footer {
       background: linear-gradient(180deg, var(--black) 0%, var(--red-dark) 100%);
       color: var(--white);
       padding: 4rem 3rem 2rem;
       border-top: 1px solid rgba(193, 23, 24, 0.3);
   }

   .footer-content {
       max-width: 1600px;
       margin: 0 auto;
       display: grid;
       grid-template-columns: 2fr 1fr 1fr;
       gap: 4rem;
       margin-bottom: 3rem;
   }

   .footer-brand h3 {
       font-size: 1.8rem;
       margin-bottom: 1rem;
       color: var(--red-strong);
   }

   .footer-brand p {
       opacity: 0.8;
       line-height: 1.8;
   }

   .footer-links h4 {
       margin-bottom: 1.5rem;
       font-size: 1.2rem;
       color: var(--red-strong);
   }

   .footer-links ul {
       list-style: none;
   }

   .footer-links ul li {
       margin-bottom: 0.9rem;
   }

   .footer-links a {
       color: var(--white);
       text-decoration: none;
       opacity: 0.8;
       transition: all 0.3s ease;
   }

   .footer-links a:hover {
       opacity: 1;
       color: var(--red-strong);
       padding-left: 5px;
   }

   .footer-bottom {
       max-width: 1600px;
       margin: 0 auto;
       padding-top: 2rem;
       border-top: 1px solid rgba(193, 23, 24, 0.3);
       text-align: center;
       opacity: 0.7;
   }

   .badge-button {
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       display: inline-block;
   }

   .badge-button:hover {
       transform: scale(1.05);
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   }

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

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

   .fade-in {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.8s ease;
   }

   .fade-in.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* Responsive */
   @media (max-width: 968px) {
       nav {
           padding: 1rem 2rem;
       }

       .nav-links {
           position: fixed;
           top: 0;
           right: -100%;
           width: 70%;
           height: 100vh;
           background: rgba(0, 0, 0, 0.98);
           flex-direction: column;
           padding: 5rem 2rem;
           border-left: 2px solid var(--red-strong);
           transition: right 0.4s ease;
       }

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

       .menu-toggle {
           display: flex;
       }

       .about-content,
       .contact-container,
       .footer-content {
           grid-template-columns: 1fr;
           gap: 3rem;
       }

       section {
           padding: 5rem 2rem;
       }

       .hero {
           padding: 2rem 1rem;
       }

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

       .logo {
           height: 40px;
       }

       .hero-logo {
           max-width: 300px;
       }
   }