* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 568px) {
  .container {
    padding: 0 15px;
  }
}

/* SECTIONS PARENT CLASS */
.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

@media (max-width: 900px) {
  .section--pad {
    padding: 56px 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: #0B2341;
  border-color: #E6E8EB;
}
.btn--outline-navy:hover {
  background: #0B2341;
  color: #fff;
  border-color: #0B2341;
  transform: translateY(-2px);
}
.btn--sm {
  padding: 12px 18px;
  font-size: 12px;
}

/* HERO */
.machines-hero {
  background:
    radial-gradient(ellipse at 92% 10%, rgba(198, 162, 90, .12), transparent 55%),
    radial-gradient(ellipse at 4% 90%, rgba(198, 162, 90, .10), transparent 55%),
    #FAF9F6;
  text-align: center;
  padding-top: 60px;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 22px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #C6A25A;
}
.machines-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.25;
  color: #0B2341;
  margin-bottom: 22px;
}
.machines-hero h1 .accent {
  color: #C6A25A;
}
.machines-hero p {
  color: #6B7280;
  font-size:17px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  position: relative;
}
.trust-bar-item+.trust-bar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  height: 60px;
  width: 1px;
  background: #E6E8EB;
}
.trust-icon {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B2341;
}
.trust-icon svg {
  width:32px;
  height:32px;
}
.trust-bar-item span.label {
  font-size: 13.5px;
  font-weight: 700;
  color: #0B2341;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 800px) {
  .trust-bar-item {
    padding: 0 18px 20px;
  }
  .trust-bar-item+.trust-bar-item::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .machines-hero {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

@media (max-width: 414px) {
  .machines-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* MACHINE CARD */
.machines-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.machine-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.machine-card:hover {
  box-shadow: 0 26px 50px -24px rgba(11, 35, 65, .16);
}
.machine-card.reverse {
  grid-template-columns: 1fr 1.15fr;
}
.machine-card.reverse .machine-copy {
  order: 2;
}
.machine-card.reverse .machine-visual {
  order: 1;
}
.machine-tag {
  font-size:15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom:12px;
}
.machine-copy h2 {
  font-family: '', serif;
  font-size: clamp(22px, 2.4vw, 36px);
  color: #0B2341;
  line-height: 1.25;
  margin-bottom: 14px;
}
.machine-copy>p.machine-intro {
  color: #6B7280;
  font-size:17px;
  margin-bottom: 18px;
}
.best-for {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #F5F0E8;
  border: 1px solid #E6E8EB;
  border-radius: 8px;
  padding: 10px 16px;
  font-size:15px;
  margin-bottom: 20px;
}
.best-for .best-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.best-for .best-icon svg {
  width: 12px;
  height: 12px;
}
.best-for strong {
  color: #0B2341;
  font-weight: 700;
  margin-right: 2px;
}
.best-for span.tags {
  color: #6B7280;
}
.machine-desc {
  color: #6B7280;
  font-size:17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.cols-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size:17px;
  color: #0B2341;
  margin-bottom: 12px;
}
.col-head svg {
  width:18px;
  height:18px;
  color: #C6A25A;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size:17px;
  color: #2B2F33;
}
.check-list li svg {
  width: 13px;
  height: 13px;
  color: #C6A25A;
  margin-top: 3px;
  flex-shrink: 0;
}
.mini-features {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid #E6E8EB;
  border-bottom: 1px solid #E6E8EB;
  margin-bottom: 24px;
}
.mini-feature {
  display: flex;
  align-items: center;
  gap:10px;
}
.mini-feature-icon {
  width:35px;
  height:35px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-feature-icon svg {
  width:25px;
  height:25px;
}
.mini-feature span {
  font-size:15px;
  font-weight: 600;
  color: #0B2341;
  line-height: 1.3;
}
.machine-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.machine-footnote {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size:15px;
  color: #6B7280;
}
.machine-footnote svg {
  width: 14px;
  height: 14px;
  color: #C6A25A;
  flex-shrink: 0;
}
.spec-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5F0E8;
  border: 1px solid #E6E8EB;
  border-radius: 10px;
  padding: 12px 18px;
  flex: 1;
  min-width: 130px;
}
.spec-chip-icon {
  color: #C6A25A;
  flex-shrink: 0;
}
.spec-chip-icon svg {
  width: 20px;
  height: 20px;
}
.spec-chip-text {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.3;
}
.spec-chip-text strong {
  display: block;
  color: #0B2341;
  font-size: 14px;
  font-weight: 700;
}

/* MACHINE VISUAL */
.machine-visual img {
    width: 100%;
    height: auto;
}
.device-pen {
  width: 36px;
  height: 260px;
  background: linear-gradient(160deg, #2B2F33, #111417 60%);
  border-radius: 18px 18px 4px 4px;
  box-shadow: 0 26px 40px -16px rgba(11, 35, 65, .3);
  position: relative;
}
.device-pen::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0B2341;
}
.device-pen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  background: rgba(198, 162, 90, .3);
  border-radius: 0 0 8px 8px;
}

@media (max-width: 1000px) {

  .machine-card,
  .machine-card.reverse {
    grid-template-columns: 1fr;
  }
  .machine-card.reverse .machine-copy {
    order: 1;
  }
  .machine-card.reverse .machine-visual {
    order: 2;
  }
  .cols-two {
    grid-template-columns: 1fr;
  }
  .machine-card {
    padding: 32px 26px;
  }
}

/* HELP BAR */
.help-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #F5F0E8;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 30px 40px;
  flex-wrap: wrap;
}
.help-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.help-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0B2341;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-icon svg {
  width: 24px;
  height: 24px;
}
.help-left h4 {
  font-size: 18px;
  color: #0B2341;
  font-weight: 700;
  margin-bottom: 6px;
}
.help-left p {
  font-size: 14px;
  color: #6B7280;
}
.help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .help-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 414px) {
  .help-bar {
    padding: 30px;
  }
  .section.help-sec.section--pad {
    padding-bottom: 0;
  }
}






/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding:36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.fcta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width:280px;
}
.fcta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.fcta-icon svg {
  width:32px;
  height:32px;
}
.fcta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #fff;
  margin-bottom: 6px;
}
.fcta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  max-width:450px;
}
.fcta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fcta-footer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  justify-content: center;
}
.fcta-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.fcta-footer-item svg {
  width: 14px;
  height: 14px;
  color: #C6A25A;
}
.fcta-sep {
  color: rgba(255, 255, 255, .3);
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
  }
}

/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width:280px;
}
.cta-icon-circle {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width:34px;
  height:34px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:22px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:18px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:32px;
  flex-wrap: wrap;
  margin-top:10px;
  padding-top:24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}
.cta-footer-item {
  display: flex;
  align-items: center;
  gap:10px;
  color: #fff;
  font-size:17px;
  font-weight: 600;
}
.cta-footer-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
    gap: 0;
  }
}