:root {
  --bg: #fff;
  --surface: #ffffff;
  --text: #111111;
  --muted: #606060;
  --line: #e5e5e5;
  --brand: #ffcc3e;
  --brand-dark: #e1b12c;
  --placeholder: #f1f3f8;
  --placeholder-border: #c8cfdd;
  --heading-h2-size: clamp(2rem, 2vw, 57.4px);
  --heading-h2-weight: 700;
  --heading-h2-leading: 2;
  --heading-h2-tracking: -0.01em;
  --heading-h2-color: #000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

h2 {
  margin: 0 0 clamp(12px, 2vw, 24px);
  font-size: var(--heading-h2-size);
  font-weight: var(--heading-h2-weight);
  line-height: var(--heading-h2-leading);
  letter-spacing: var(--heading-h2-tracking);
  color: var(--heading-h2-color);
  text-align: left;
}

.top-line {
  background: #000;
  color: var(--brand);
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  font-weight: 600;
}

.top-line-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 0;
}

.top-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.top-line-link:hover,
.top-line-link:focus-visible {
  color: #fff;
  opacity: 1;
}

@media (max-width: 560px) {
  .top-line-inner {
    min-height: auto;
    padding: 10px 0;
  }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #dfdfdf;
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  width: auto;
  height: clamp(28px, 4.5vw, 44px);
}

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

.nav a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 2px 12px;
  border-bottom: 3px solid transparent;
}

.nav a:hover {
  color: #000;
}

.nav a.active {
  border-bottom-color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  background: var(--brand);
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn-sm {
  height: 30px;
  font-size: 0.72rem;
  padding: 0 14px;
}

.btn-quote {
  height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}

.btn-trial {
  margin-top: 80px;
  height: 38px;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-full {
  width: 100%;
}

.hero {
  padding-top: 34px;
}

.hero-grid {
  display: flex;

  gap: 30px;
  align-items: start;
}

.subtitle {
  margin-top: 10px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.95rem;
}

.stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
}

.stat-item {
  /* background: var(--surface); */
  /* border: 1px solid #ebebeb; */
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 18px;
}

.stat-copy {
  display: grid;
  line-height: 1.2;
  width: 200px;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.78rem;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

/* .about-text {
  color: var(--muted);
  display: grid;
  gap: 10px;
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 0.92rem;
} */

.operations-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(460px, 500px) minmax(250px, 1fr);
  gap: 40px;
  align-items: start;
}

.operations-copy {
  display: flex;
  gap: 18px;
  padding-top: 46px;
  flex-direction: column;
  min-height: 90%;
  justify-content: space-around;
  align-items: space-between;
}

.ops-item h3 {
  margin: 0 0 4px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.ops-item p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.78rem;
  line-height: 1.35;
}

.operations-copy-left .ops-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
}

.ops-icon {
  width: 26px;
  height: 26px;
  margin-top: 4px;
  object-fit: contain;
}

.ops-body {
  display: grid;
  gap: 0;
}

.operations-machines {
  display: grid;
  grid-template-columns: 212px 30px 252px;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.image-machine-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image-machine-main h3 {

  margin-bottom: 24px;
}
.machine-standard img {
  width: 212px;
  height: 502px;
  object-fit: cover;
}

.machine-classic img {
  width: 252px;
  height: 502px;
  object-fit: contain;
}

.products {
  background: var(--surface);
}

.products .container h2{
  margin-bottom: 72px!important;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 200px;
  align-items: stretch;
}

.product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 240px;
  gap: 16px;
  align-items: start;
}

.product-details h3 {
  /* margin-bottom: 22px; */
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.product-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 0.9rem;
  color: #1e1e1e;
}

.price {
  margin-top: 36px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.price-note {
  margin-top: 6px;
  color: #7b7b7b;
  font-size: 0.72rem;
}

.image-product {
  width: 240px;
  min-height: 433px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.image-product img {
  display: block;
  width: 240px;
  height: 433px;
  object-fit: contain;
  object-position: center;
}

.vision-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.flow-item {
  background: #8e6f18;
  border: 1px solid #7b6117;
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.84rem;
}

.flow-arrow {
  font-size: 1rem;
  color: #8e6f18;
}

.reach {
  background: var(--surface);
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.result-card {
  border: 1px solid #e8e8e8;
  background: #fff;
}

.result-card p {
  margin: 0;
  background: var(--brand);
  text-align: center;
  font-weight: 700;
  padding: 8px 10px;
  font-size: 0.84rem;
}

.contact-form {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  background: var(--surface);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-form label.full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8dce6;
  border-radius: 6px;
  font: inherit;
  padding: 9px 10px;
  background: #fff;
  font-size: 0.86rem;
}

.contact-form button {
  grid-column: 1 / -1;
  margin-top: 2px;
  height: 38px;
  border-radius: 999px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #fff;
}

.page-intro {
  text-align: center;
  padding: 70px 0 30px;
}

.page-intro h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-intro p {
  color: var(--muted);
  margin-top: 10px;
}

.coming-block {
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  text-align: center;
  color: var(--muted);
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.placeholder {
  border: 2px dashed var(--placeholder-border);
  border-radius: 6px;
  background: linear-gradient(135deg, #f5f7fc, var(--placeholder));
  color: #667189;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  padding: 10px;
  font-size: 0.78rem;
}

.image-hero {
  min-height: 320px;
  text-align: right;
}

.image-about {
  min-height: 220px;
  text-align: center;
}

.image-vision {
  min-height: 160px;
}

.image-reach {
  min-height: 140px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }

  .btn-quote {
    order: 2;
    font-size: 0.82rem;
    height: 34px;
    padding: 0 14px;
  }

  .nav {
    order: 4;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 6px 0 12px;
    border-top: 1px solid #eee;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 4px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    flex-direction: column;
    gap: 24px;
  }

  .hero-media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .subtitle {
    max-width: 100%;
  }

  .stats {
    margin-top: 24px;
    gap: 18px 12px;
  }

  .stat-item {
    min-width: 0;
    width: calc(50% - 6px);
    padding: 0;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.74rem;
  }

  .btn-trial {
    margin-top: 32px;
    height: 44px;
    font-size: 1rem;
  }

  .operations-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .operations-machines {
    order: 1;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: end;
  }

  .machine-standard img,
  .machine-classic img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .operations-copy {
    padding-top: 0;
    min-height: 0;
    gap: 16px;
  }

  .operations-copy-left {
    order: 2;
  }

  .operations-copy-right {
    order: 3;
  }

  .ops-item h3 {
    font-size: 1.1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-details h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .product-specs {
    gap: 10px;
    font-size: 0.88rem;
  }

  .price {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .image-product {
    width: 100%;
    min-height: auto;
  }

  .image-product img {
    width: min(240px, 100%);
    height: auto;
    aspect-ratio: 240 / 433;
    max-height: none;
  }

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

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 32px 0;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    margin-bottom: clamp(10px, 2vw, 16px);
  }

  .stats {
    gap: 14px 10px;
  }

  .stat-item {
    width: 100%;
  }

  .btn-trial {
    width: 100%;
  }

  .btn-quote {
    display: none;
  }

  .vision-flow {
    gap: 8px;
  }

  .flow-item {
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .flow-arrow {
    display: none;
  }

  .image-product img {
    width: min(240px, 100%);
  }

  .product-details h3,
  .price {
    font-size: 1.35rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

/* About Us page styles live in about.css (loaded by about-us.html). */

.pb-0{
  padding-bottom: 0!important;
} 
.pt-0{
  padding-top: 0!important;
}



/* Footer variant on products page */
.site-footer--dark {
  background: #1a1208;
  border-top: 0;
  color: #c4b8a8;
  padding: 40px 0 28px;
}

.site-footer--dark .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}

@media (min-width: 640px) {
  .site-footer--dark .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .site-footer--dark .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1100px) {
  .site-footer--dark .footer-grid {
    grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
  }
}

.site-footer--dark h4 {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer--dark ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer--dark a {
  color: #b0a090;
  text-decoration: none;
  font-size: 0.86rem;
}

.site-footer--dark a:hover {
  color: var(--brand);
}

.site-footer--dark .footer-brand {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.site-footer--dark .footer-contact {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.site-footer--dark .footer-copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  color: #7a6c5c;
}
