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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #111111;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      display: block;
      width: 100%;
    }

    button {
      font-family: inherit;
    }

    :root {
      --red: #d6001c;
      --red-hover: #b80018;
      --text: #111111;
      --text-2: #444444;
      --text-3: #777777;
      --bg: #ffffff;
      --bg-soft: #f7f7f8;
      --bg-card: #ffffff;
      --line: #ececec;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      --radius: 18px;
      --container: 1380px;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      background: #111;
      border-radius: 999px;
    }

    .logo {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 1px;
      color: #111;
    }

    .logo span {
      color: var(--red);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      color: #222;
    }

    .nav-menu a {
      position: relative;
      transition: .25s ease;
    }

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

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      transition: .25s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-1px);
    }

    .btn-outline {
      border: 1px solid #d8d8d8;
      color: #111;
      background: #fff;
    }

    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
    }

    /* Mobile side drawer */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.35);
      opacity: 0;
      visibility: hidden;
      transition: .25s ease;
      z-index: 1200;
    }

    .drawer-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 300px;
      max-width: 82vw;
      height: 100vh;
      background: #fff;
      z-index: 1300;
      box-shadow: 10px 0 30px rgba(0,0,0,.12);
      transition: .28s ease;
      display: flex;
      flex-direction: column;
    }

    .mobile-drawer.show {
      left: 0;
    }

    .drawer-head {
      height: 78px;
      padding: 0 18px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    .drawer-nav {
      padding: 12px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .drawer-nav a {
      padding: 14px 12px;
      border-radius: 12px;
      color: #111;
      font-weight: 700;
      transition: .2s ease;
    }

    .drawer-nav a:hover {
      background: #f7f7f8;
      color: var(--red);
    }

    .drawer-actions {
      padding: 0 18px 20px;
      display: grid;
      gap: 12px;
    }

    /* Hero */
    .hero {
      position: relative;
      background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.48) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      min-height: 760px;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: 60px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214,0,28,.08), rgba(214,0,28,0));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 40px;
      align-items: center;
      padding: 70px 0;
    }

    .hero-copy {
      max-width: 720px;
    }

    .hero-kicker {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--red);
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 14px;
      border: 1px solid #f0d2d7;
      border-radius: 999px;
      background: #fff;
    }

    .hero h1 {
      font-size: 64px;
      line-height: 1.04;
      font-weight: 900;
      margin-bottom: 18px;
      color: #111;
    }

    .hero h1 strong {
      color: var(--red);
    }

    .hero p {
      color: #4d4d4d;
      font-size: 18px;
      max-width: 620px;
      margin-bottom: 30px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: #666;
      font-size: 14px;
      font-weight: 600;
    }

    .hero-card {
      justify-self: end;
      width: 100%;
      max-width: 510px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .hero-slide-tag {
      color: var(--red);
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: 800;
    }

    .hero-slide-title {
      font-size: 34px;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 12px;
      color: #111;
    }

    .hero-slide-desc {
      color: #555;
      font-size: 15px;
      margin-bottom: 18px;
    }

    .hero-machine {
      height: 280px;
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 18px;
      background: #f1f1f1;
    }

    .hero-machine img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slider-dots {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    .hero-slider-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d6d6d6;
      cursor: pointer;
      transition: .25s ease;
    }

    .hero-slider-dots span.active {
      width: 28px;
      border-radius: 999px;
      background: var(--red);
    }

    /* Section common */
    section {
      padding: 88px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: 42px;
      line-height: 1.1;
      font-weight: 900;
      color: #111;
    }

    .section-head p {
      color: var(--text-3);
      max-width: 640px;
    }

    .eyebrow {
      color: var(--red);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    /* Stats */
    .stats {
      background: #fafafa;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .stat-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px 22px;
      min-height: 150px;
      transition: .25s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #f2b8c1;
    }

    .stat-card h3 {
      font-size: 40px;
      color: #111;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .stat-card p {
      color: #666;
      font-size: 14px;
    }

    /* Products */
    .products {
      background: #fff;
    }

    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .tab-btn {
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: #222;
      font-size: 14px;
      cursor: pointer;
      transition: .25s ease;
      font-weight: 700;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .product-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      transition: .25s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }

    .product-media {
      height: 240px;
      overflow: hidden;
      background: #f1f1f1;
    }

    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s ease;
    }

    .product-card:hover .product-media img {
      transform: scale(1.06);
    }

    .product-body {
      padding: 24px;
    }

    .product-tag {
      font-size: 13px;
      color: var(--red);
      font-weight: 800;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .product-title {
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 12px;
      color: #111;
    }

    .spec-list {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
      color: #555;
      font-size: 14px;
    }

    .card-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Solutions */
    .solutions {
      background: #fafafa;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .solution-card {
      position: relative;
      min-height: 320px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      transition: .3s ease;
      display: flex;
      align-items: flex-end;
    }

    .solution-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }

    .solution-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .solution-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.02) 10%, rgba(0,0,0,.68) 100%);
    }

    .solution-body {
      position: relative;
      z-index: 2;
      padding: 24px;
      color: #fff;
    }

    .solution-body h3 {
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .solution-body p {
      color: rgba(255,255,255,.88);
      font-size: 14px;
      margin-bottom: 14px;
    }

    /* Cases */
    .case-wrap {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
    }

    .case-main,
    .case-side {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .case-main-media {
      height: 380px;
      overflow: hidden;
    }

    .case-main-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .case-main-body {
      padding: 26px;
    }

    .case-main h3 {
      font-size: 30px;
      font-weight: 900;
      margin-bottom: 12px;
      color: #111;
    }

    .case-main p {
      color: #666;
      margin-bottom: 18px;
    }

    .case-side {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .case-side h4 {
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 4px;
      color: #111;
    }

    .related-card {
      background: #fafafa;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
    }

    .related-card strong {
      font-size: 18px;
      display: block;
      margin-bottom: 10px;
      color: #111;
    }

    .related-card span {
      display: block;
      color: #666;
      font-size: 14px;
      margin: 4px 0;
    }

    /* Service */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      transition: .25s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }

    .service-media {
      height: 210px;
      overflow: hidden;
    }

    .service-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-content {
      padding: 24px;
    }

    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: rgba(214,0,28,.08);
      border: 1px solid rgba(214,0,28,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .service-card h3 {
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 10px;
      color: #111;
    }

    .service-card p {
      color: #666;
      margin-bottom: 18px;
      font-size: 14px;
    }

    /* News */
    .news {
      background: #fafafa;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .news-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      transition: .25s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }

    .news-media {
      height: 220px;
      overflow: hidden;
    }

    .news-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-body {
      padding: 22px;
    }

    .news-meta {
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .news-title {
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 10px;
      line-height: 1.25;
      color: #111;
    }

    .news-body p {
      color: #666;
      font-size: 14px;
      margin-bottom: 16px;
    }

    /* Quote */
    .quote-wrap {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: 24px;
      align-items: stretch;
    }

    .quote-info,
    .quote-form {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }

    .quote-info h2 {
      font-size: 44px;
      font-weight: 900;
      margin-bottom: 14px;
      line-height: 1.05;
      color: #111;
    }

    .quote-info p {
      color: #666;
      margin-bottom: 20px;
    }

    .quote-banner {
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 22px;
      height: 220px;
    }

    .quote-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .quote-list {
      display: grid;
      gap: 12px;
      color: #444;
    }

    .quote-list li {
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fafafa;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

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

    .form-group.full {
      grid-column: 1 / -1;
    }

    label {
      color: #111;
      font-size: 14px;
      font-weight: 700;
    }

    input, select, textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #dddddd;
      background: #fff;
      color: #111;
      outline: none;
      font-size: 14px;
      transition: .2s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(214,0,28,.55);
      box-shadow: 0 0 0 3px rgba(214,0,28,.08);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #666;
      font-size: 13px;
      margin-top: 6px;
    }

    .checkbox input {
      width: 18px;
      height: 18px;
      margin-top: 1px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      background: #fafafa;
      padding: 28px 0;
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: #777;
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .solution-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { justify-self: start; }
      .quote-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 992px) {
      .nav-menu,
      .nav-actions {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .product-grid,
      .service-grid,
      .case-wrap {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 48px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-head h2 {
        font-size: 34px;
      }
    }

    @media (max-width: 768px) {
      .stats-grid,
      .solution-grid,
      .news-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        background-position: center;
      }

      .hero h1 {
        font-size: 38px;
      }

      .hero-card {
        padding: 18px;
      }

      .hero-slide-title {
        font-size: 28px;
      }

      .topbar .nav {
        height: 70px;
      }

      .quote-info h2 {
        font-size: 34px;
      }
    }
    .site-footer{
  background:#f3f3f3;
  margin-top:60px;
  border-top:1px solid #e5e5e5;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:80px;
  padding:48px 0 36px;
}

.footer-col{
  flex:1;
  min-width:220px;
}

.footer-brand{
  flex:1.6;
}

.footer-logo a{
  font-size:20px;
  font-weight:700;
  color:#111;
  text-decoration:none;
  line-height:1.4;
}

.footer-desc{
  margin-top:18px;
  max-width:420px;
  font-size:15px;
  line-height:1.9;
  color:#444;
}

.footer-title{
  margin:0 0 18px;
  font-size:16px;
  font-weight:700;
  color:#6b4a1f;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  color:#111;
  text-decoration:none;
  font-size:15px;
  line-height:1.7;
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#8a5a22;
}

.footer-bottom{
  border-top:1px solid #e2e2e2;
  padding:16px 0;
  background:#efefef;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:14px;
  color:#555;
}

.footer-bottom-inner a{
  color:#111;
  text-decoration:none;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
}

@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    gap:30px;
    padding:36px 0 28px;
  }

  .footer-desc{
    max-width:none;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}