:root{
      --bg:#15120f;
      --panel:#1d1915;
      --glass:#26211b;
      --text:#ffe6a8;
      --gold:#ffd668;
      --muted:#ffeebb;
      --ink:#0e0c0a;
      --shadow: #ffd66833;
      --glow: #ffd66866;
    }
    html,body{background:var(--bg); color:var(--text); font-family: "Segoe UI",system-ui,-apple-system,Arial,sans-serif;}

    section{
      background-color: #15120f;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      background-size: 100%;
    }

      /* Features Key font customization */
      .features-key {
        font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
        font-weight: 700;
        letter-spacing: 0.02em;
      }

      /* Glass Card font customization */
      .glass-card {
        font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
        font-weight: 600;
        letter-spacing: 0.01em;
      }

    /* Navbar */
    .navbar{background:#1a1816;border-bottom:1px solid #2c230e;}
    .navbar-brand{color:var(--gold)!important; font-weight:900; letter-spacing:1.2px;}
    .nav-link{color:var(--muted)!important; font-weight:600; font-size: larger;}
    .nav-link:hover,.nav-link.active{color:var(--gold)!important;}
    .navbar-toggler{border-color:var(--gold);}
    .navbar-toggler-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 214, 104, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");}

    /* Sections */
    section.section {max-width:1140px; margin:0 auto; padding:3.5rem 1.25rem;}
    .section-narrow{max-width:980px;}
    .section-narrow_feature{max-width:980px;}
    /* Section fills viewport (adjust as needed) */
.hero-video {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Background video fills and crops like a background-image */
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* cover to fill, contain to fit */
  object-position: center;        /* adjust focal point */
  z-index: 0;
}

/* Optional contrast overlay */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
  z-index: 1;
}

/* Foreground content */
.hero-video__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffeebb;
}

.hero-video__content h1 { color: #ffd668; font-weight: 900; }

    /* Hero */
    .hero{min-height:70vh; display:grid; place-items:center; text-align:center;
      background: radial-gradient(1200px 600px at 50% -10%, #3a2d16 0%, transparent 60%) , linear-gradient(180deg, #1a1713 0%, #15120f 100%);
    }
    .hero h1{font-size:2.6rem; font-weight:900; letter-spacing:-0.02em; color:var(--gold);}
    .hero .lead{color:var(--muted); font-size:1.18rem;}
    .btn-main{background:var(--gold); color:#1c170c; border:none; border-radius:48px; padding:.9rem 2rem; font-weight:800;}
    .btn-main:hover{background:#dbbe54; color:#0f0d09;}

    /* Clubbed section wrapper */
.clubbed {
  background: linear-gradient(180deg, #191613 0%, #171410 100%);
  padding: 36px 0 40px;
}
/* Centered stack with side columns (for surrounding feature glow context) */
.clubbed-grid {
  /* max-width: 1100px; */
  margin: 0 0;
  display: grid;
  grid-template-columns: 0.5fr minmax(280px, 600px) 0.5fr;
  gap: 20px;
  align-items: start;
  align-content: center;
}
@media (max-width: 900px) {
  .clubbed-grid { grid-template-columns: 1fr; }
}

/* Machine image card */
.machine-card {
  position: relative;
  background: #201a13;
  border-radius: 18px;
  /* padding: 12px; */
  width: 100%;
  /* max-width: 340px; */
  /* margin: 0 auto; */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,   /* subtle inner stroke */
    0 6px 18px rgba(0,0,0,0.6),
    0 0 36px rgba(255,214,104,0.18);          /* soft outer gold glow */
}
.machine-card::after { /* extra halo */
  content: "";
  position: absolute;
  inset: -14px -12px -18px;
  border-radius: 26px;
  background: radial-gradient(70% 110% at 50% 10%, rgba(255,214,104,0.12), transparent 60%);
  pointer-events: none;
  filter: blur(6px);
}
.machine-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.machine-caption {
  margin-top: 8px;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  color: #ffd668;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}

/* Optional floating label chip (like mock “Torty Machine”) */
.machine-chip {
  position: absolute;
  left: -12px;
  top: 18px;
  background: #2a2419;
  border: 1px solid rgba(255,255,255,0.06);
  color: #ffe7b4;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* Lottie box styled to sit under/near image (or side-by-side if preferred) */
.lottie-box {
  background: linear-gradient(135deg, #26211b 78%, rgba(255,214,104,0.18) 100%);
  border-radius: 24px;
  /* padding: 18px 14px; */
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(222, 179, 61, 0.732);
  width: 100%;
  /* max-width: 320px; */
  /* margin: 18px auto 0; */
}
#lottieContainer {
  width: 100%;
  height: 100%; /* adjust to your JSON aspect */
}

    /* Glassmorphic Key Features (screenshot style) */
    .glass-panel{background:linear-gradient(135deg, #1b1814 20%, #1f1b15 100%); border-radius:32px;
      box-shadow:0 0 70px #000a, 0 0 60px var(--shadow); padding:2rem 1.2rem 2.6rem;
    }
    .glass-panel h2{font-weight:900; color:var(--gold); margin-bottom:1.5rem;}
    .glass-card{background:rgba(24,20,15,.92); border-radius:18px; padding:1.4rem 1.1rem; height:100%;
      box-shadow: 0 12px 28px #0009, 0 0 30px #ffd66812, inset 0 1px 0 #fff1;
      transition:box-shadow .2s, transform .2s;
    }
    .glass-card:hover{box-shadow:0 14px 40px #000b, 0 0 50px var(--glow); transform: translateY(-2px);}
    .glass-card b{display:block; font-size:1.08rem; margin-bottom:.35rem; color:#ffebad;}
    .glass-muted{color:#e8d9a9; opacity:.9;}

    /* Icon Features Row (dark/glass) */
    .icon-row{background:linear-gradient(180deg,#191612 0%,#171410 100%); border-radius:24px; padding:1.8rem 1rem; box-shadow:0 8px 32px #0009;}
    .icon-item{display:flex; flex-direction:column; align-items:center; gap:.4rem; color:#ffe9b9; font-weight:700;}
    .icon-badge{width:46px; height:46px; border-radius:12px; background:#2a2319; display:grid; place-items:center; box-shadow:inset 0 1px 0 #fff1, 0 6px 16px #0008;}

    .icon-badge{ width: 56px; height: 56px; font-size: 1.6rem; }
    @media (min-width: 768px){
      .icon-badge{ width: 68px; height: 68px; font-size: 2rem; }
    }
    @media (min-width: 1200px){
      .icon-badge{ width: 76px; height: 76px; font-size: 2.25rem; }
    }

    /* Product Showcase (dark card) */
    .product-card{background:#201b15; color:#ffe9b9; border-radius:20px; padding:1.2rem; box-shadow:0 12px 40px #000b, 0 0 40px #ffd6681a;}
    .product-card img{max-width:92%; border-radius:14px; display:block; margin: .6rem auto;}
    .product-meta{font-size:.95rem; color:#f6e6b6;}
    .btn-outline-gold{border:1px solid #e3c45a; color:#e3c45a; border-radius:40px; font-weight:800;}
    .btn-outline-gold:hover{background:#e3c45a; color:#1b160e;}

    /* Case Study (gold/cream band on dark) */
    .case-band{background:linear-gradient(90deg,#2a2318 0%, #43321b 30%, #2a2318 100%); border-radius:26px; padding:2.2rem 1rem; color:#ffeec4; box-shadow:0 12px 40px #000b;}
    .case-band .btn-main{box-shadow:0 6px 24px var(--shadow);}

    /* Perfect For grid */
    .perfect-card{background:#241e17; color:#ffeec4; border-radius:16px; padding:1.1rem 0; text-align:center; font-weight:700;
      box-shadow:0 8px 22px #0009; transition:transform .15s;
    }
    .perfect-card:hover{transform:translateY(-3px);}

    /* Footer */
    footer{background:#120f0a; color:#e0c36f; text-align:center; padding:2rem 1rem; margin-top:2rem;}
    footer a{color:#e0c36f; margin:0 .75rem; text-decoration:none;}
    footer a:hover{color:var(--gold); text-decoration:underline;}

    @media (max-width: 768px){
      .hero h1{font-size:1.6rem;}
    }

    /* Features section */
    .feature-icon { font-size:3rem; margin-bottom:.5rem; display:block;}
    .highlight-section, .case-study, .perfect-section {
      background: #211a13;
      color: #ffd47f;
      border-radius:14px;
      margin-bottom: 1.5rem;
      padding:1.7rem .5rem;
      text-align: center;
    }

      /* Sections */
    section.section {
      max-width: 1140px;
      margin: 0 auto;
      padding: 3.2rem 1.25rem;
    }
    .section-narrow {
      max-width: 980px;
    }

    /* About.html */

    /* About Hero */
    .hero-about {
      min-height: 48vh;
      display: grid;
      place-items: center;
      text-align: center;
      background:
        radial-gradient(1200px 600px at 50% -10%, #3a2d16 0%, transparent 60%),
        linear-gradient(180deg, #1a1713 0%, #15120f 100%);
    }
    .hero-about h1 {
      font-size: 2.3rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: -0.02em;
    }
    .hero-about p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    
    /* Timeline */
    .timeline {
      position: relative;
      padding-left: 22px;
    }
    .timeline::before {
      content: "";
      position: absolute;
      left: 8px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #3a2f1a;
    }
    .tl-item {
      position: relative;
      margin: 0 0 1.2rem 0;
    }
    .tl-item::before {
      content: "";
      position: absolute;
      left: -2px;
      top: .35rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px var(--glow);
    }
    .tl-title {
      font-weight: 800;
      color: #ffebad;
    }
    .tl-desc {
      color: #ffeec4;
      opacity: .95;
    }

    /* support.html */
    
    /* Hero */
    .hero{
      min-height:46vh; display:grid; place-items:center; text-align:center;
      background:
        radial-gradient(1200px 600px at 50% -10%, #3a2d16 0%, transparent 60%),
        linear-gradient(180deg,#1a1713 0%,#15120f 100%);
    }
    .hero h1{font-weight:900;color:var(--gold);letter-spacing:-.02em;}
    .hero p{color:var(--muted)}

    /* Glass/blocks */
    .glass{background:linear-gradient(135deg,#1b1814 20%,#1f1b15 100%);border-radius:28px;
      box-shadow:0 0 70px #000a,0 0 60px var(--shadow);padding:1.8rem 1.2rem 2.2rem;}
    .glass h2{font-weight:900;color:var(--gold);margin-bottom:1rem;}
    .card-soft{background:rgba(24,20,15,.92);border-radius:16px;padding:1.1rem 1rem;height:100%;
      box-shadow:0 12px 28px #0009,0 0 30px #ffd66812,inset 0 1px 0 #fff1;}
    .card-soft b{color:#ffebad}
    .muted{color:#e8d9a9;opacity:.95}

    /* Quick access */
    .cta-grid .cta{
      background:#241f18;border-radius:16px;padding:1rem; text-align:center; height:100%;
      box-shadow:0 8px 24px #0008, 0 0 24px #ffd6681a; transition:transform .15s;
    }
    .cta-grid .cta:hover{transform:translateY(-3px)}
    .cta .icon{font-size:1.8rem; display:block; margin-bottom:.35rem}
    .btn-gold{background:var(--gold);color:#1b150e;font-weight:800;border:none;border-radius:48px;padding:.7rem 1.3rem;}
    .btn-gold:hover{background:#dbbe54;color:#0f0d09}

    /* Lists */
    .check-list li{margin:.35rem 0}
    .step-list li{margin:.35rem 0}

    /* Tables / plans */
    .plan{background:#241f18;border-radius:16px;padding:1.1rem}
    .tag{display:inline-block;background:#2b2419;border:1px solid #3a2f1a;padding:.2rem .55rem;border-radius:10px;color:#ffeabb;font-weight:700;font-size:.85rem}

    /* contact.html */
    
    /* Cards & CTAs */
    .cta-card{
      background:#241f18;border-radius:16px;padding:1.1rem;height:100%;
      box-shadow:0 8px 24px #0008, 0 0 24px #ffd6681a;
      text-align:center;
    }
    .cta-card .icon{font-size:1.8rem;display:block;margin-bottom:.4rem}
    .btn-gold{background:var(--gold);color:#1b150e;font-weight:800;border:none;border-radius:40px;padding:.7rem 1.2rem;}
    .btn-gold:hover{background:#dbbe54;color:#0f0d09}

    /* Form */
    .form-panel{
      background:#201b15;border-radius:20px;padding:1.5rem;
      box-shadow:0 12px 36px #000b, 0 0 36px #ffd6681a;
    }
    .form-control, .form-select{
      background:#2a241c; border:1px solid #3a2f1a; color:#ffeec4;
    }
    .form-control::placeholder{color:#d9c995}
    .form-control:focus, .form-select:focus{
      border-color:#e2c25e; box-shadow:0 0 0 .2rem rgba(226,194,94,.25);
      background:#2a241c; color:#ffeec4;
    }

    /* Map */
    .map-wrap{
      border-radius:20px; overflow:hidden;
      box-shadow:0 12px 36px #000b, 0 0 36px #ffd6681a;
      background:#201b15;
    }

    /* FAQ */
    .faq-item{
      background:#241f18;border-radius:16px;padding:1rem 1.1rem;
      box-shadow:0 8px 24px #0008;
    }
    .faq-item b{color:#ffebad}

    /* product.html */

    /* Product cards (catalog) */
    .prod-card{
      background:#201b15;border-radius:12px;padding:1rem;height:100%;
      justify-content: center; align-items: center; text-align: center;
      box-shadow:0 8px 30px #0008;
    }
    .prod-meta{text-align: left;}
    .prod-card img{width:100%;border-radius:10px;align-self: center;justify-self: center; object-fit:cover;max-width: 100%;}
    .badge-gold{background:#2b2419;border:1px solid #3a2f1a;color:#ffeabb;font-weight:800;border-radius:10px;padding:.25rem .6rem;}

    .btn-gold{background:var(--gold);color:#1b150e;font-weight:800;border:none;border-radius:40px;padding:.6rem 1rem;}
    .btn-outline-gold{border:1px solid #e3c45a;color:#e3c45a;border-radius:40px;font-weight:800;padding:.5rem .9rem;}
    
    /* Gallery / Buy panel */
    .gallery{background:#201b15;border-radius:14px;padding:1rem;box-shadow:0 10px 36px #0009;}
    .gallery .main{width:100%;height:360px;border-radius:10px;object-fit:contain;background:#171310;display:block}
    .thumb{cursor:pointer;border-radius:8px; overflow:hidden;}
    .thumb img{
      width:100%;
      height:100%;
      object-fit:contain;   /* crop and fill uniformly */
      display:block;
      opacity:.92;
      transition:opacity .15s, transform .15s;
    }
    .thumb img:hover{ opacity:1; transform:scale(1.02); }


    .buy-bar{
      background:#201b15;border-radius:12px;padding:1rem;box-shadow:0 8px 28px #0008;
      position:sticky; top:90px;
    }
    .price{font-size:1.45rem;font-weight:900;color:#ffdd82;}
    .sub{color:#ffeec4;opacity:.9}

    /* Specs */
    .specs{background:#201b15;border-radius:12px;padding:1rem;box-shadow:0 10px 30px #0008;}
    .specs table{--bs-table-bg:transparent;--bs-table-color:#ffeec4;--bs-table-border-color:#3a2f1a;}

    /* Feature cards */
    .card-soft{background:#241f18;border-radius:12px;padding:1rem;height:100%;box-shadow:0 8px 22px #0008;}
    .card-soft .icon{font-size:1.7rem;display:block;margin-bottom:.4rem}

    /* Compare / config */
    .compare-card{background:#201b15;border-radius:12px;padding:1rem;height:100%;box-shadow:0 8px 28px #0008;}

    /* Reviews / FAQ */
    .review{background:#221c16;border-radius:12px;padding:1rem;box-shadow:0 8px 22px #0008;}
    .faq-item{background:#1f1914;border-radius:10px;padding:1rem;margin-bottom:.6rem;}

    footer{background:#120f0a;color:#e0c36f;text-align:center;padding:2rem 1rem;margin-top:2rem}
    footer a{color:#e0c36f;margin:0 .75rem;text-decoration:none}

    /* Small screens */
    @media (max-width:992px){
      .gallery .main{height:260px}
      .buy-bar{position:static;margin-top:1rem}
    }
    @media (max-width:576px){
      .gallery .main{height:220px}
      .prod-card img{height:120px}
      .hero h1{font-size:1.5rem}
    }