
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ink: #160800;
    --ink2: #180800;
    --paper: #f8faf6;
    --green: #2e8b00;
    --green-dark: #1f6200;
    --green-light: #d4edcc;
    --red: #9b0000;
    --red-dark: #7a0000;
    --white: #ffffff;
    --gray: #5a5a58;
    --border: #c0d8b8;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; background: var(--paper); color: var(--ink); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--ink); display: flex; align-items: center;
    justify-content: space-between; padding: 0 60px; height: 64px;
    border-bottom: 3px solid var(--green); overflow: hidden;
  }
  /* Logo — force a sane size no matter how it's rendered (custom-logo or fallback <img>) */
  .nav-logo { display: flex; align-items: center; height: 44px; flex-shrink: 0; text-decoration: none; }
  .nav-logo img,
  .nav-logo .custom-logo-link img,
  .nav-logo .custom-logo { height: 44px !important; width: auto !important; max-width: none !important; max-height: 44px !important; display: block !important; }
  footer .custom-logo-link img,
  footer .custom-logo { height: 34px !important; width: auto !important; max-width: none !important; max-height: 34px !important; display: block !important; }
  .nav-logo span { color: var(--green); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #a0a09a; text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta { background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; border: none; cursor: pointer; transition: background .2s; text-decoration: none; }
  .nav-cta:hover { background: var(--red-dark); }
  .nav-promo-link { background: var(--red); color: #fff !important; padding: 8px 18px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background .2s; }
  .nav-promo-link:hover { background: var(--red-dark); }
  .nav-phone { color: #fff; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.3px; transition: color .2s; }
  .nav-phone:hover { color: var(--green); }
  .nav-email { color: #888; text-decoration: none; font-size: 11px; font-weight: 400; transition: color .2s; }
  .nav-email:hover { color: var(--green); }

  /* HERO */
  .hero { min-height: 100vh; background: linear-gradient(to bottom, #111110 0%, #888884 100%); display: grid; grid-template-columns: 1fr 1.4fr; padding-top: 64px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(46,139,0,0.05) 28px, rgba(46,139,0,0.05) 30px); z-index: 0; }
  .hero-left { display: flex; flex-direction: column; justify-content: flex-start; padding: 80px 60px; position: relative; z-index: 2; max-width: 680px; }
  .hero-tag { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
  .hero-tag::before { content: ''; display: block; width: 40px; height: 2px; background: var(--green); }
  .hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 76px); line-height: .95; letter-spacing: 2px; color: #ffffff; margin-bottom: 28px; }
  .hero h1 em { font-style: normal; color: var(--green); display: block; }
  .hero-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: #d0d0cc; max-width: 420px; margin-bottom: 40px; }
  .hero-stats { display: flex; gap: 40px; margin-bottom: 44px; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 1px; color: var(--green); line-height: 1; }
  .stat-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #a0a09a; margin-top: 4px; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 15px 32px; border: none; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-outline { border: 1.5px solid #aaa; color: #ccc; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 15px 32px; background: none; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
  .btn-outline:hover { border-color: var(--green); color: var(--green); }
  .hero-right { display: flex; align-items: flex-start; justify-content: center; position: relative; z-index: 2; padding: 76px 20px 0 0; background: transparent; }

  /* ABOUT */
  .about-section { background: var(--white); padding: 90px 60px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .about-section .section-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .about-section .section-label::before { content: ''; width: 32px; height: 2px; background: var(--green); }
  .about-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 3.5vw, 52px); letter-spacing: 2px; line-height: 1; margin-bottom: 24px; }
  .about-section p { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--gray); margin-bottom: 16px; }
  .about-list { list-style: none; margin-top: 8px; }
  .about-list li { font-size: 13px; font-weight: 400; line-height: 1.7; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
  .about-list li::before { content: ''; width: 8px; height: 8px; background: var(--green); flex-shrink: 0; }
  .about-right { background: var(--ink); padding: 44px 40px; }
  .about-right h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; border-bottom: 2px solid var(--red); padding-bottom: 14px; }
  .about-right ul { list-style: none; }
  .about-right ul li { font-size: 13px; font-weight: 300; line-height: 1.7; color: #999; padding: 10px 0; border-bottom: 1px solid #2a2a28; display: flex; align-items: flex-start; gap: 12px; }
  .about-right ul li::before { content: ''; width: 6px; height: 6px; background: var(--red); margin-top: 6px; flex-shrink: 0; }

  /* PRODUCTS */
  .section { padding: 90px 60px; }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .section-label::before { content: ''; width: 32px; height: 2px; background: var(--green); }
  .section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px); letter-spacing: 2px; line-height: 1; margin-bottom: 52px; }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
  .product-card { background: var(--white); padding: 36px 32px; transition: background .2s; cursor: pointer; }
  .product-card:hover { background: var(--green-light); }
  .product-icon { width: 52px; height: 52px; margin-bottom: 20px; color: var(--green-dark); }
  .product-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
  .product-card p { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray); }
  .btn-sizes { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; background: none; border: 1.5px solid var(--green); color: var(--green-dark); padding: 7px 16px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .2s; }
  .btn-sizes:hover { background: var(--green); color: #fff; }

  /* ===== Size list modal — card grid (like a real product catalogue) ===== */
  .size-grid {
    padding: 20px 28px; overflow-y: auto; flex: 1;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px;
  }
  .size-card {
    background: #fff; border: 1px solid #e2e2df; border-radius: 6px; overflow: hidden;
    display: flex; flex-direction: column; transition: all .18s; text-align: left;
  }
  .size-card.has-photo { cursor: pointer; }
  .size-card.has-photo:hover { border-color: var(--green); box-shadow: 0 6px 18px rgba(0,0,0,0.12); transform: translateY(-2px); }
  .size-card-thumb {
    position: relative; width: 100%; aspect-ratio: 1 / 1; background: #f3f5f1;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .size-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .size-card-thumb svg { width: 34%; height: 34%; color: #c7d6c0; }
  .size-card-badge {
    position: absolute; top: 6px; right: 6px; background: rgba(46,139,0,0.92); color: #fff;
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 7px; border-radius: 3px; display: flex; align-items: center; gap: 4px;
  }
  .size-card-body { padding: 10px 12px 12px; }
  .size-card-dims { font-family: monospace; font-size: 13px; font-weight: 700; color: #1a0000; line-height: 1.3; }
  .size-card-hint { font-size: 10px; color: #9a9a97; margin-top: 3px; letter-spacing: .3px; }
  .size-card.has-photo .size-card-hint { color: var(--green-dark); font-weight: 600; }
  @media (max-width: 640px) {
    .size-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; padding: 16px; }
  }

  /* BENEFITS */
  .benefits-section { background: var(--green-dark); padding: 90px 60px; }
  .benefits-section .section-label { color: #a8d890; }
  .benefits-section .section-label::before { background: #a8d890; }
  .benefits-section h2 { color: var(--white); margin-bottom: 52px; }
  .benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .benefit-card { background: rgba(255,255,255,0.08); padding: 28px 24px; border-top: 3px solid rgba(255,255,255,0.2); }
  .benefit-card:hover { background: rgba(255,255,255,0.14); }
  .benefit-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: 0.5px; }
  .benefit-text { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); }

  /* CONDITIONS */
  .conditions-section { padding: 90px 60px; background: var(--paper); }
  .conditions-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
  .conditions-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 3.5vw, 50px); letter-spacing: 2px; line-height: 1; margin-bottom: 36px; }
  .cond-block { background: var(--white); border: 1px solid var(--border); padding: 36px 32px; }
  .cond-block h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--red); margin-bottom: 20px; }
  .cond-list { list-style: none; }
  .cond-list li { font-size: 13px; font-weight: 400; line-height: 1.7; color: var(--ink); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
  .cond-list li:last-child { border-bottom: none; }
  .cond-list li::before { content: ''; width: 6px; height: 6px; background: var(--green); margin-top: 7px; flex-shrink: 0; }
  .highlight-box { background: var(--red); padding: 24px 28px; margin-top: 16px; }
  .highlight-box p { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.6; }

  /* INDUSTRIES */
  .industries-section { background: var(--ink2); padding: 90px 60px; }
  .industries-section .section-label { color: var(--green); }
  .industries-section h2 { color: var(--white); margin-bottom: 48px; }
  .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #111; }
  .industry-item { background: #1c1c1a; padding: 28px 24px; transition: background .2s; }
  .industry-item:hover { background: #252520; }
  .industry-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--red); opacity: 0.5; line-height: 1; margin-bottom: 10px; }
  .industry-name { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.5; }

  /* ADVANTAGES */
  .adv-section { background: var(--white); padding: 90px 60px; }
  .adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 52px; }
  .adv-item { border-left: 3px solid var(--green); padding-left: 20px; }
  .adv-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--green); line-height: 1; margin-bottom: 8px; }
  .adv-title { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; }
  .adv-text { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--gray); }

  /* ORDER */
  #order { background: var(--paper); padding: 90px 60px; }
  .order-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
  .order-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 3.5vw, 50px); letter-spacing: 2px; line-height: 1; margin-bottom: 20px; }
  .order-left > p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--gray); margin-bottom: 32px; }
  .order-contacts { display: flex; flex-direction: column; gap: 14px; }
  .contact-item { display: flex; align-items: flex-start; gap: 14px; font-size: 13px; color: var(--ink); }
  .contact-icon { width: 40px; height: 40px; border: 1.5px solid var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .contact-icon svg { width: 18px; height: 18px; color: var(--green); }
  .contact-text { font-weight: 500; line-height: 1.5; }
  .contact-link { display: inline-block; color: var(--ink); text-decoration: none; transition: color .2s; }
  .contact-link:hover { color: var(--green-dark); text-decoration: underline; }
  .contact-sub { font-size: 11px; font-weight: 300; color: var(--gray); margin-top: 2px; }
  .order-form { background: var(--white); border: 1px solid var(--border); padding: 44px 40px; }
  .form-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 6px; }
  .form-subtitle { font-size: 12px; font-weight: 300; color: var(--gray); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--paper); border: 1.5px solid var(--border); padding: 11px 14px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--ink); outline: none; transition: border-color .2s; appearance: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
  .form-group textarea { resize: vertical; min-height: 88px; }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f6200' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
  .form-submit { width: 100%; background: var(--red); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 17px; border: none; cursor: pointer; transition: background .2s; margin-top: 6px; }
  .form-submit:hover { background: var(--red-dark); }
  .form-note { font-size: 11px; font-weight: 300; color: #aaa; text-align: center; margin-top: 10px; line-height: 1.6; }
  .success-msg { display: none; text-align: center; padding: 36px 20px; }
  .success-msg .check { font-size: 44px; margin-bottom: 14px; color: var(--green); }
  .success-msg h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; color: var(--green-dark); margin-bottom: 8px; }
  .success-msg p { font-size: 13px; color: var(--gray); }

  /* FOOTER */
  footer { background: var(--ink); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; border-top: 3px solid var(--red); flex-wrap: wrap; gap: 12px; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--white); }
  .footer-logo span { color: var(--green); }
  footer p { font-size: 12px; color: #555; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero-left > * { animation: fadeUp .7s ease both; }
  .hero-left > *:nth-child(1) { animation-delay: .1s; }
  .hero-left > *:nth-child(2) { animation-delay: .22s; }
  .hero-left > *:nth-child(3) { animation-delay: .36s; }
  .hero-left > *:nth-child(4) { animation-delay: .5s; }
  .hero-left > *:nth-child(5) { animation-delay: .64s; }


  @media (max-width: 900px) {
    .nav-contacts { display: none !important; }
  }
  /* ========== RESPONSIVE ========== */
  /* Burger button */
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
  .burger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .3s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu overlay */
  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--ink); z-index: 99; flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 18px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #a0a09a; text-decoration: none; }
  .mobile-menu a:hover { color: var(--green); }
  .mobile-menu .nav-cta { margin-top: 16px; font-size: 13px; padding: 14px 36px; }

  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }

    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
    .hero-left { padding: 48px 24px 36px; }
    .hero-right { padding: 0; height: 260px; } .hero-right img { width: 100%; height: 100%; object-fit: cover; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .about-section { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px; }

    .section { padding: 60px 24px; }
    .products-grid { grid-template-columns: 1fr 1fr; }

    .benefits-section { padding: 60px 24px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .conditions-section { padding: 60px 24px; }
    .conditions-inner { grid-template-columns: 1fr; gap: 24px; }

    .industries-section { padding: 60px 24px; }
    .industries-grid { grid-template-columns: 1fr 1fr; }

    .adv-section { padding: 60px 24px; }
    .adv-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    #order { padding: 60px 24px; }
    .order-inner { grid-template-columns: 1fr; gap: 40px; }
    .order-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
  }

  @media (max-width: 560px) {
    nav { height: 56px; }
    .mobile-menu { top: 56px; }
    nav img { height: 34px !important; }
    footer img { height: 34px !important; }

    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
  }
