@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root {
  --color-dark-bg: #00110f;
  --color-dark-card: #0c211b;
  --color-light-bg: #f4f6f1;
  --color-light-card: #ffffff;
  --color-accent-green: #337356;
  --color-accent-hover: #337356;
  --color-text-dark: #0a281e;
  --color-text-light: #f4f6f1;
  --color-text-muted: #6b7a74;
  --color-border: #cfd4c8;
  --color-border-dark: #1b352e;
  --bg-color: #f3efe9; /* Light beige background */
  --dark-green: #0a251c; /* Button and dark text */
  --accent-green: #1f4e3d; /* Icon and title color */
  --text-gray: #4a4a4a;
  --line-color: #b5b5b5;
  --text-dark: #0c211b; 
  --primary-green: #0c211b; 
  --border-color: #dcd7cb; 
  --accent-brown: #8a6a4b; 
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-dark);
  background-color: #E8ECE8;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.font-mono-tech {
  font-family: 'JetBrains Mono', monospace;
}

/* Nav Bar Styles */
/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.navbar-x2go{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 18px 0;
    transition:
        background .35s ease,
        box-shadow .35s ease,
        padding .35s ease;
}
/* Container */
.navbar-x2go .container-fluid{
    padding-left:60px;
    padding-right:60px;
}
/* Logo */
.navbar-brand{
    padding:0;
}
.navbar-brand img{
    width:90px;
    height:auto;
    transition:.35s;
}
/* Navigation */
.navbar-x2go .navbar-nav{
    /* align-items:center; */
    gap:8px;
}
.navbar-x2go .nav-link{
    color:#ffffff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:18px;
    font-weight:500;
    text-transform:none;
    letter-spacing:.02em;
    padding:10px 18px !important;
    transition:.3s;
}
.navbar-x2go .nav-link:hover{
    color:#33C481;
}
.navbar-x2go .nav-link.active{
    color:#33C481;
}
/* Dropdown Arrow */
.navbar-x2go .dropdown-toggle::after{
    border-top:.35em solid;
    border-right:.35em solid transparent;
    border-left:.35em solid transparent;
    transition:.3s;
}
/* Toggler */
.navbar-toggler{
    border:1px solid rgba(255,255,255,.35);
    padding:8px 10px;
}
.navbar-toggler:focus{
    box-shadow:none;
}
/* ==========================================================================
   SCROLLED NAVBAR
   ========================================================================== */
.navbar-x2go.scrolled{
    background:#E8ECE8;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:12px 0;
}
.navbar-x2go.scrolled .nav-link{
    color:#111111;
}
.navbar-x2go.scrolled .nav-link:hover{
    color:#33C481;
}
.navbar-x2go.scrolled .nav-link.active{
    color:#33C481;
}
.navbar-x2go.scrolled .dropdown-toggle::after{
    color:#111;
}
.navbar-x2go.scrolled .navbar-brand img{
    width:82px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-content{
    padding-top:80px;
}
/* Hero Background */

.hero-bg-image{
    position:absolute;
    inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    z-index:0;
}
.hero-bg-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    );
}
/* Hero Content */
.hero-content{
    position:relative;
    z-index:2;
}
/* Hero Heading */
.hero-title{
    font-size:5rem;
    font-weight:500;
    line-height:.95;
    letter-spacing:-2px;
    margin-bottom:30px;
    color: #fff;
}
.hero-title span{
    color:#33C481;
}
/* Subtitle */

.hero-subtitle{
    font-size:22px;
    color:#d8d8d8;
    line-height:1.6;
}
/* ==========================================================================
   MOBILE
   ========================================================================== */
@media(max-width:991px){
    .navbar-x2go{
        background:#00110f;
        padding:12px 0;
    }
    .navbar-x2go .container-fluid{
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-collapse{
        background:#00110f;
        margin-top:15px;
        padding:20px;
        border-radius:10px;
    }
    .navbar-x2go.scrolled .navbar-collapse{
        background:#ffffff;
    }
    .navbar-x2go.scrolled .navbar-collapse .nav-link{
        color:#111;
    }
    .navbar-brand img{
        width:70px;
    }
    .hero-title{
        font-size:42px;
    }
    .hero-subtitle{
        font-size:18px;
    }
}
/* ==========================================================================
   Megamenu (Product Dropdown Submenu)
   ========================================================================== */

/* Megamenu triggers and transitions on Desktop */
@media (min-width: 992px) {

  .navbar-x2go .dropdown-megamenu {
    position: static !important; /* Forces the dropdown to align with container width */
  }

  /* Full screen width megamenu dropdown menu */
  .navbar-x2go .dropdown-megamenu .megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff !important;
    border-top: 1px solid var(--color-border);
    border-bottom: 3px solid var(--color-accent-green);
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 3rem 0 0 0; /* padding at bottom is handled by support bar */
    margin: 0;
    visibility: hidden;
    opacity: 0;
    display: block; /* always block so transitions work */
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    pointer-events: none;
  }

  /* Invisible hover bridge to prevent menu disappearing when moving cursor down */
  .navbar-x2go .dropdown-megamenu .megamenu::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 45px;
    background: transparent;
    z-index: 10;
  }

  /* Show on hover of parent */
  .navbar-x2go .dropdown-megamenu:hover .megamenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Dropdown indicator arrow rotation */
  .navbar-x2go .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.35em;
    vertical-align: 0.25em;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
    transition: transform 0.25s ease;
  }

  .navbar-x2go .dropdown-megamenu:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Megamenu Product Card items */
.megamenu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 6px;
  background-color: transparent;
  text-decoration: none !important;
  color: var(--color-text-dark) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  height: 100%;
}

.megamenu-card:hover {
  background-color: #f8f9f6;
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-5px);
}

/* Image container */
.megamenu-img-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.megamenu-card:hover .megamenu-img-wrapper {
  transform: scale(1.08);
}

.megamenu-card:hover .megamenu-svg {
  filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.15));
}

.megamenu-svg {
  transition: all 0.3s ease;
}

/* Product title */
.megamenu-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.megamenu-card:hover .megamenu-title {
  color: var(--color-accent-green);
}

.megamenu-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 220px;
}

/* Support bar at bottom of megamenu */
.megamenu-support-bar {
  background-color: #f8f9fa;
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 3rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
}

.megamenu-support-text {
  font-size: 0.92rem;
  color: #495057;
  font-weight: 500;
}

.megamenu-support-link {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--color-accent-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.megamenu-support-link:hover {
  color: var(--color-accent-hover);
}
/* Grid Overlay on Hero */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: 
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(6, 20, 16, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 20, 16, 0.45) 1px, transparent 1px); */
  background-size: 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--color-accent-green);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #a3b8b0;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-x2go-primary {
  background-color: var(--color-accent-green);
  color: var(--color-light-card);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-x2go-primary:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-x2go-secondary {
  background-color: transparent;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-x2go-secondary:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background-color: rgba(16, 185, 129, 0.05);
}

.btn-x2go-outline-dark {
  background-color: transparent;
  color: var(--color-text-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-x2go-outline-dark:hover {
  background-color: var(--color-text-dark);
  color: #ffffff;
}

.btn-x2go-solid-dark {
  background-color: var(--color-dark-bg);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-x2go-solid-dark:hover {
  background-color: var(--color-accent-green);
  color: var(--color-dark-bg);
  transform: translateY(-2px);
}

/* Metric / Specs Floating Bar */
.metrics-floating-bar {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  padding: 1.75rem 1.5rem;
}

.metric-item {
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.metric-item:last-child {
  border-right: none;
}

.metric-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Structural Layout Sections */
.section-light {
  background-color: var(--color-light-bg);
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.section-white {
  background-color: #E8ECE8;
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.section-dark {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  padding: 3.25rem 0;
}

.section-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--color-accent-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title {
  font-size: 3.25rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
}

.section-dark .section-title {
  color: #ffffff;
}

/* Bottleneck Warning Block */
.warning-alert-box {
  background-color: #0b231c;
  border-left: 4px solid var(--color-accent-green);
  padding: 1.75rem 2rem;
  color: #a3b8b0;
  font-size: 1.1rem;
  font-weight: 400;
  /* margin-bottom: 3.5rem; */
}

.warning-alert-box strong {
  color: #ffffff;
}

/* Bottleneck 4 Columns Grid */
.bottleneck-card {
  padding: 1.5rem 1rem;
  border-left: 1px solid var(--color-border);
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: cardReveal 0.8s ease forwards;
  transition: all 0.4s ease;
}

.bottleneck-card .number {
  font-family: 'JetBrains Mono', monospace;
  color: var(--color-accent-green);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bottleneck-card .title {
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.bottleneck-card .desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
/* Delay for each card */
.bottleneck-card:nth-child(1) {
  animation-delay: .1s;
}

.col-lg-3:nth-child(2) .bottleneck-card {
  animation-delay: .25s;
}

.col-lg-3:nth-child(3) .bottleneck-card {
  animation-delay: .4s;
}

.col-lg-3:nth-child(4) .bottleneck-card {
  animation-delay: .55s;
}

.bottleneck-card:hover {
  transform: translateY(-8px);
  border-left-color: var(--color-accent-green);
}

.bottleneck-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-accent-green);
  transition: height .4s ease;
}

.bottleneck-card:hover::before {
  height: 100%;
}

.bottleneck-card .number,
.bottleneck-card .title,
.bottleneck-card .desc {
  transition: all .35s ease;
}

.bottleneck-card:hover .number {
  letter-spacing: 2px;
}

.bottleneck-card:hover .title {
  color: var(--color-accent-green);
}

/* .bottleneck-card:hover .desc {
  color: #fff;
} */

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Specs Table styling */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  animation: tableFadeIn 0.8s ease forwards;
}
.specs-table thead {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.7s ease forwards;
}
.specs-table tbody tr {
  opacity: 0;
  transform: translateX(-25px);
  animation: rowReveal 0.6s ease forwards;
}
/* Stagger Animation */
.specs-table tbody tr:nth-child(1) { animation-delay: .15s; }
.specs-table tbody tr:nth-child(2) { animation-delay: .25s; }
.specs-table tbody tr:nth-child(3) { animation-delay: .35s; }
.specs-table tbody tr:nth-child(4) { animation-delay: .45s; }
.specs-table tbody tr:nth-child(5) { animation-delay: .55s; }
.specs-table tbody tr:nth-child(6) { animation-delay: .65s; }
.specs-table tbody tr:nth-child(7) { animation-delay: .75s; }
.specs-table tbody tr:nth-child(8) { animation-delay: .85s; }
.specs-table tbody tr:nth-child(9) { animation-delay: .95s; }
.specs-table tbody tr:nth-child(10){ animation-delay: 1.05s; }

.specs-table th {
  background-color: var(--color-dark-card);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.25rem;
  font-size: 1.1rem;
  text-align: left;
}
/* Hover Effect */
.specs-table tbody tr {
    transition: background-color .35s ease,
                transform .35s ease,
                box-shadow .35s ease;
}
.specs-table tbody tr:hover {
    background: rgba(25,135,84,.08);
    transform: translateX(8px);
    box-shadow: inset 4px 0 0 var(--color-primary);
}
.specs-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.specs-table td {
    transition: color .3s ease;
}

.specs-table tbody tr:hover td.specification {
    color: var(--color-primary);
}
/* Animations */
@keyframes tableFadeIn {
    from {
        opacity: 0;
        transform: scale(.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rowReveal {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.specs-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.specs-table td.parameter {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--color-text-dark);
  width: 45%;
}

.specs-table td.specification {
  font-family: 'JetBrains Mono', monospace;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Comparison Showdown Table styling */
.showdown-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}
.showdown-table tbody tr{
    opacity:0;
    transform:translateY(35px);
    animation:tableRowReveal .7s ease forwards;
}
/* Stagger Animation */
.showdown-table tbody tr:nth-child(1){animation-delay:.15s;}
.showdown-table tbody tr:nth-child(2){animation-delay:.30s;}
.showdown-table tbody tr:nth-child(3){animation-delay:.45s;}
.showdown-table tbody tr:nth-child(4){animation-delay:.60s;}
.showdown-table tbody tr:nth-child(5){animation-delay:.75s;}
.showdown-table tbody tr:nth-child(6){animation-delay:.90s;}

@keyframes tableRowReveal{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* Cell Transition */
.showdown-table td,
.showdown-table th{
    transition:.35s ease;
}


/* Hover Effect */
.showdown-table tbody tr:hover{
    transform:translateY(-4px) scale(1.01);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    background:#f9fffb;
}


/* PowerSet Column Animation */

.showdown-table td.powerset-col{
    position:relative;
    overflow:hidden;
    background:rgba(16,185,129,.07);
    transition:.4s;
}

.showdown-table td.powerset-col::before{
    content:"";
    position:absolute;
    top:0;
    left:-140%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );
    transition:.7s;
}

.showdown-table tbody tr:hover .powerset-col::before{
    left:160%;
}


/* PowerSet Cell Glow */

.showdown-table tbody tr:hover .powerset-col{
    background:rgba(16,185,129,.15);
    color:#11834d;
}


/* Conventional Column */

.showdown-table tbody tr:hover .conventional-col{
    color:#b91c1c;
}


/* Parameter Column */

.showdown-table tbody tr:hover .parameter-col{
    padding-left:1.7rem;
    color:var(--color-accent-hover);
}


/* Header Animation */

.showdown-table thead th{
    animation:headerDrop .8s ease;
}

@keyframes headerDrop{
    from{
        opacity:0;
        transform:translateY(-25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.showdown-table td.powerset-col{
    animation:greenPulse 3s ease-in-out infinite;
}

@keyframes greenPulse{

    0%,100%{
        background:rgba(16,185,129,.07);
    }

    50%{
        background:rgba(16,185,129,.14);
    }

}
.showdown-table th {
  background-color: var(--color-dark-bg);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
}

.showdown-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}

.showdown-table tr:hover {
  background-color: rgba(16, 185, 129, 0.03);
}

.showdown-table td.parameter-col {
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.showdown-table td.conventional-col {
  color: #dc3545;
  font-weight: 500;
  text-align: center;
}

.showdown-table td.powerset-col {
  background-color: rgba(16, 185, 129, 0.07);
  color: var(--color-accent-hover);
  font-weight: 600;
  text-align: center;
  border-left: 1px solid rgba(16, 185, 129, 0.2);
  border-right: 1px solid rgba(16, 185, 129, 0.2);
}

/* Solid-State comparison table on Page 3 */
.matrix-table {
  width: 100%;
}

.matrix-table th {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.1rem;
}

.matrix-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.matrix-table td.feature-name {
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  color: var(--color-text-dark);
}

.matrix-table td.highlight-col {
  background-color: rgba(16, 185, 129, 0.06);
  font-weight: 600;
  color: var(--color-accent-hover);
  text-align: center;
  border-left: 1px solid rgba(16, 185, 129, 0.15);
  border-right: 1px solid rgba(16, 185, 129, 0.15);
}

.matrix-table td.normal-col {
  text-align: center;
  color: var(--color-text-muted);
}

/* Interactive SVG Render Containers */
.container-3d-wrapper {
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 80%);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature Key Indicators column on right */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.checklist-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-accent-green);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.checklist-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.checklist-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Value Chain Map layout */
.value-chain-wrapper {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
}

.value-chain-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.flow-step {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  flex: 1;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: stepFadeUp 0.8s ease forwards;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
/* Sequential Animation */
.flow-step:nth-child(1) {
  animation-delay: .2s;
}

.flow-step:nth-child(3) {
  animation-delay: .5s;
}

.flow-step:nth-child(5) {
  animation-delay: .8s;
}

.flow-step:nth-child(7) {
  animation-delay: 1.1s;
}
.flow-step.highlighted-step {
  background-color: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-dark-bg);
}

.flow-step .step-icon {
  font-size: 2.25rem;
  color: var(--color-accent-green);
  margin-bottom: 1rem;
}

.flow-step.highlighted-step .step-icon {
  color: var(--color-dark-bg);
}

.flow-step .step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.flow-step .step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.flow-arrow {
  color: var(--color-accent-green);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: arrowFade 0.6s ease forwards;
}
.flow-arrow:nth-child(2) {
  animation-delay: .35s;
}

.flow-arrow:nth-child(4) {
  animation-delay: .65s;
}

.flow-arrow:nth-child(6) {
  animation-delay: .95s;
}
/* Hover Effect */
.flow-step:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-green);
  box-shadow: 0 15px 35px rgba(60, 220, 120, .18);
}

.flow-step.highlighted-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(60, 220, 120, .35);
}
.step-icon img {
  transition: transform .4s ease;
  height: 100px;
  object-fit: contain;
}

.flow-step:hover .step-icon img {
  transform: scale(1.12) rotate(5deg);
}
.flow-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );
  transform: skewX(-25deg);
  transition: .8s;
}

.flow-step:hover::before {
  left: 150%;
}

/* Arrow Pulse */
.flow-arrow i {
  animation: arrowMove 1.4s infinite ease-in-out;
}

/* Keyframes */
@keyframes stepFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowFade {
  from {
    opacity: 0;
    transform: scale(.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes arrowMove {
  0%,100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}
/* Application Sub-Grids */
.sub-grid-box {
  background-color: #040e0b;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 0.5rem 1rem;
}

.sub-grid-box h4 {
  color: var(--color-accent-green);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--color-border-dark);
  padding-bottom: 0.75rem;
}

.app-circle-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.app-circle-image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border-dark);
  transition: all 0.3s ease;
  position: relative;
}

.app-circle-item:hover .app-circle-image-wrapper {
  border-color: var(--color-accent-green);
  transform: scale(1.08);
}

.app-circle-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-circle-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #a3b8b0;
}

/* Products Cards */
.product-showcase-box {
  background-color: var(--color-light-bg);
  border-top: 2px solid var(--color-dark-bg);
  padding: 3.5rem;
  height: 100%;
}

.product-showcase-box.genset-side {
  border-left: 1px solid var(--color-border);
}

.product-showcase-box .product-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--color-accent-green);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-showcase-box .product-name {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.product-showcase-box .product-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.bullet-spec-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bullet-spec-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.bullet-spec-list li::before {
  content: "→";
  color: var(--color-accent-green);
  font-weight: bold;
}

/* Comparison side cards (metrics) on Page 3 */
.comparison-metric-card {
  border: 1px solid var(--color-border);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-metric-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-accent-hover);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.comparison-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.comparison-metric-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Contact / Inquiry Form */
.inquiry-left-col {
  padding-right: 3rem;
}

.inquiry-title {
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 2rem;
}

.inquiry-bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inquiry-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #a3b8b0;
  font-size: 1.05rem;
}

.inquiry-bullets li i {
  color: var(--color-accent-green);
  font-size: 1.2rem;
}

.inquiry-form-card {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-border-dark);
  padding: 3rem;
  border-radius: 4px;
}

.inquiry-form-card .form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-green);
  margin-bottom: 0.5rem;
}

.inquiry-form-card .form-control,
.inquiry-form-card .form-select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  color: #ffffff;
  padding: 0.85rem 1rem;
  margin-bottom: 1.75rem;
  transition: all 0.2s ease;
}

.inquiry-form-card .form-control:focus,
.inquiry-form-card .form-select:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.15);
  color: #ffffff;
}

.inquiry-form-card .form-select option {
  background-color: var(--color-dark-card);
  color: #ffffff;
}

/* How It Works Steps Diagram on Page 5 */
.step-arrow-line {
  position: relative;
}

.step-arrow-line::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: -15px;
  color: var(--color-border);
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 991px) {
  .step-arrow-line::after {
    content: "↓";
    top: auto;
    bottom: -15px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.how-step-card {
  text-align: center;
  padding: 1rem;
  height: 100%;
}

.how-step-num {
  width: 32px;
  height: 32px;
  background-color: var(--color-dark-bg);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.how-step-icon-box {
  height: 110px;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.how-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.how-step-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Performance Highlights 4 columns on Page 5 */
.performance-stats-grid {
  background-color: var(--color-light-bg);
}
.performance-stat-card {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--color-border);
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  animation: statFadeUp 0.8s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* Stagger Delay */
.performance-stats-grid .col-lg-3:nth-child(1) .performance-stat-card {
  animation-delay: 0.15s;
}

.performance-stats-grid .col-lg-3:nth-child(2) .performance-stat-card {
  animation-delay: 0.3s;
}

.performance-stats-grid .col-lg-3:nth-child(3) .performance-stat-card {
  animation-delay: 0.45s;
}

.performance-stats-grid .col-lg-3:nth-child(4) .performance-stat-card {
  animation-delay: 0.6s;
}

/* Hover Effect */
.performance-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.performance-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--color-dark-card);
  line-height: 1;
  margin-bottom: 0.75rem;
  animation: zoomIn 0.8s ease both;
}

.performance-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-accent-green);
}
.performance-stat-label {
  animation: fadeIn 1s ease both;
}

.performance-stat-desc {
  animation: fadeIn 1.2s ease both;
}

/* Keyframes */
@keyframes statFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.performance-stat-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* HyAI Platform grid on Page 5 */
.hyai-grid-card {
  background-color: #E8ECE8;
  border: 1px solid var(--color-border);
  padding: 6%;
  height: 100%;
  transition: all 0.2s ease;
}

.hyai-grid-card:hover {
  border-color: var(--color-accent-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.hyai-grid-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--color-accent-green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hyai-grid-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hyai-grid-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Ready to Deploy 4 Steps list on Page 6 */
.deploy-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deploy-step-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-dark);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.deploy-step-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--color-accent-green);
}

.deploy-step-num {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-accent-green);
  font-family: 'JetBrains Mono', monospace;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.deploy-step-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.deploy-step-text span {
  color: var(--color-accent-green);
  font-weight: 600;
}

/* Slick Slider custom CSS */
.slick-slider-container {
  position: relative;
  padding: 0 1rem;
}

.slick-slide {
  padding: 0 12px;
}
.slick-slider-container .slick-list {
  overflow: hidden !important;
  position: relative;
}
.slick-slider-container .slick-track {
  display: flex; /* slick normally does this via JS inline styles, this is just a safety net */
}
.border.rounded.overflow-hidden:has(.specs-table) {
  overflow-x: auto !important;
  overflow-y: hidden;
}
.app-slider-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.app-slider-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.app-slider-img-wrapper {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.app-slider-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.app-slider-card:hover .app-slider-img-wrapper img {
  transform: scale(1.05);
}

.app-slider-content {
  padding: 1.75rem;
}

.app-slider-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.app-slider-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Slick slider arrows overrides */
.slick-arrow-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-dark-bg);
  border: 1px solid var(--color-border-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slick-arrow-custom:hover {
  background-color: var(--color-accent-green);
  color: var(--color-dark-bg);
  border-color: var(--color-accent-green);
}

.slick-arrow-prev {
  left: -20px;
}

.slick-arrow-next {
  right: -20px;
}

/* Bottom banner green alert */
.banner-alert-green {
  background-color: #0b231c;
  color: #a3b8b0;
  font-size: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 0px;
  border-left: 4px solid var(--color-accent-green);
  margin-top: 3.5rem;
}

/* Footer Section */
.footer-x2go {
  background-color: #030b08;
  /* Added the requested background image */
  background-image: url('https://sixaelite.com/wp-content/uploads/2026/07/Footer-Image.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #6b7a74;
  border-top: 1px solid #12211c;
  /* Increased top padding significantly to make room for the molecule background image */
  padding: 26% 0 3rem 0; 
  font-size: 0.9rem;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 140px; /* Increased slightly to better match the visual weight in the image */
}

.footer-logo span {
  color: #00b37e; /* Fallback for var(--color-accent-green) */
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Slightly increased gap for better readability */
}

.footer-links a, 
.footer-links li.text-light {
  color: #8c9c95 !important; /* Forces the text to match the muted gray-green in the design */
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00b37e;
}

.footer-bottom {
  border-top: 1px solid #12211c;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a.text-secondary {
  color: #8c9c95 !important;
  transition: color 0.2s ease;
}

.footer-bottom a.text-secondary:hover {
  color: #ffffff !important;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 991px) {
  .footer-x2go {
    background-size: cover; /* Ensures background still looks good on small screens */
    padding-top: 8rem;
  }
}
.main-heading {
    color: var(--dark-green);
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.sub-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-custom {
    background-color: var(--dark-green);
    color: #ffffff;
    font-weight: 400;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-custom:hover {
    background-color: #1a4231;
    color: #ffffff;
}

/* Feature List Styling */
.feature-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 2rem; */
    position: relative;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-right: 1.25rem;
    margin-top: -5px;
}

.feature-title {
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Connecting Lines (Desktop Only) */
@media (min-width: 992px) {
    .feature-list-container {
        position: relative;
    }
    .feature-item::before {
        content: '';
        position: absolute;
        left: -80px; 
        top: 15px;
        width: 60px;
        height: 1px;
        background-color: var(--line-color);
    }
    .feature-item::after {
        content: '';
        position: absolute;
        left: -80px;
        top: 13px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: var(--accent-green);
    }
}
.products-section {
    padding: 3.25rem 0;
    margin: 0 auto;
}

.products-section .section-header {
    margin-bottom: 3rem;
    position: relative;
}

.products-section .section-title {
    padding-top: 1.5rem;
}

.products-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-brown);
}

.products-section .main-divider {
    border: 0;
    height: 2px;
    background-color: var(--primary-green);
    opacity: 1;
    margin: 1.5rem 0 3rem 0;
}


@media (min-width: 992px) {
    .products-section .product-col:last-child {
        /* padding-left: 3rem; */
        border-left: 1px solid var(--border-color);
    }
}

.products-section .product-label {
    color: var(--accent-green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.products-section .product-title {
    font-size: 30px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.products-section .product-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0; /* Margin removed to let flex-grow handle spacing */
}

.products-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-section .feature-list li {
    font-size: 0.75rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

.products-section .feature-list li:first-child {
    border-top: 1px solid var(--border-color);
}

.products-section .feature-list li i {
    color: var(--primary-green);
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-top: -2px;
}

.products-section .btn-group-custom {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.products-section .btn-custom {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    border-radius: 0; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.products-section .btn-custom i {
    margin-left: 0.5rem;
    font-size: 1rem;
}

.products-section .btn-dark-green {
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--primary-green);
}

.products-section .btn-dark-green:hover {
    background-color: #051b14;
    color: #ffffff;
}

.products-section .btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--border-color); 
}

.products-section .btn-outline:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-green);
}

.products-section .product-image-container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-section .product-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.comparison-section {
    background-color: var(--color-light-bg);
    padding: 3.25rem 0;
    margin: 0 auto;
}

.comparison-section .comparison-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #337356;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.comparison-section .comparison-label::before {
    content: "";
    width: 22px;
    height: 2px;
    background: #337356;
}

.comparison-section .comparison-title {
    font-size: 3.25rem;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #07161a;
    margin-bottom: 45px;
}

.comparison-section .comparison-table {
    background: #fff;
    border: 1px solid #e9e4db;
    margin-bottom: 15px;
}

.comparison-section .comparison-table table {
    margin: 0;
}

.comparison-section .comparison-table th {
    font-size: 13px;
    text-transform: uppercase;
    color: #222;
    padding: 18px 20px;
    border: 1px solid #ece7de;
    background: #fff;
    font-weight: 700;
}

.comparison-section .comparison-table td {
    padding: 24px 20px;
    border: 1px solid #ece7de;
    vertical-align: middle;
    color: #3d3d3d;
    font-size: 16px;
}

.comparison-section .comparison-table tbody td:first-child {
    font-weight: 700;
    color: #1b1b1b;
    width: 28%;
}

.comparison-section .comparison-table thead th:nth-child(2) {
    color: #337356;
}

.comparison-section .comparison-green {
    color: #337356 !important;
    font-weight: 700;
}

.comparison-section .comparison-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.comparison-section .stat-card {
    background: transparent;
    border: 1px solid #e8e2d8;
    padding: 20px;
    margin-bottom: 10px;
}

.comparison-section .stat-number {
    font-size: 42px;
    line-height: 1;
    color: #337356;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Bebas Neue", sans-serif;
}

.comparison-section .stat-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    font-size: 12px;
    margin-bottom: 10px;
}

.comparison-section .stat-divider {
    width: 100%;
    height: 1px;
    background: #e7e2da;
    margin-bottom: 10px;
}

.comparison-section .stat-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* --- New Hover Animations --- */
.comparison-section .comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-section .comparison-table tbody td {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent; 
}

.comparison-section .comparison-table tbody tr:hover td {
    background-color: #ecfdf5; 
    color: #022c22; 
    cursor: default;
}

.comparison-section .comparison-table tbody tr:hover {
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1); 
    transform: scale(1.01); 
    z-index: 10;
    position: relative;
}

.comparison-section .comparison-table tbody tr:hover td.comparison-green {
    color: #047857 !important; 
}
/* 2nd column background */
.comparison-section .comparison-table th:nth-child(2),
.comparison-section .comparison-table td:nth-child(2) {
    background: #E8ECE8; /* Light green */
    border: 1px solid #f4f6f1;
}

/* Keep the text green and bold */
/* .comparison-section .comparison-table th:nth-child(2),
.comparison-section .comparison-table td:nth-child(2) {
} */
/* --------------------------- */

@media(max-width:1399px) {
    .comparison-section .comparison-title {
        font-size: 3.25rem;
    }
}

@media(max-width:991px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-section .comparison-title {
        font-size: 42px;
    }

    .comparison-section .stat-card {
        height: auto;
    }

    .comparison-section .comparison-table {
        overflow: auto;
    }

    .comparison-section .comparison-table table {
        min-width: 700px;
    }
}

@media(max-width:576px) {
    .comparison-section .comparison-title {
        font-size: 34px;
    }

    .comparison-section .stat-number {
        font-size: 52px;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .product-showcase-box {
    padding: 2rem;
  }
  .product-showcase-box.genset-side {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}
.process-container {
    margin: 0 auto;
    background-color: #fbfbfb;
    border: 1px solid #eaeaea;
    padding: 2rem 1rem;
}

/* Step Header (Number + Line) */
.process-container .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.process-container .step-num {
    color: #1b5e20;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
}

.process-container .step-line {
    flex-grow: 1;
    height: 1.5px;
    background-color: #4caf50;
}

/* Text Styling */
.process-container h4 {
    color: #1a2522;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-container p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Icon Container */
.process-container .icon-container {
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #1b5e20;
    gap: 10%;
}

/* Connecting Arrows */
.process-container .step-col {
    position: relative;
}

.process-container .connecting-arrow {
    position: absolute;
    right: -4%;
    top: 30%;
    width: 32px;
    height: 32px;
    background-color: #fbfbfb;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b5e20;
    z-index: 10;
}

/* Hide arrows on smaller screens where columns stack */
@media (max-width: 767px) {
    .process-container .connecting-arrow {
        display: none;
    }
    .process-container .step-col {
        margin-bottom: 3rem;
    }
    .process-container .step-col:not(:last-child) {
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 2rem;
    }
}

/* Vertical borders for desktop layout */
@media (min-width: 768px) {
    .process-container .border-md-end {
        border-right: 1px solid #eaeaea;
    }
    .process-container .step-col {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
/* ==========================
   PROCESS SECTION ANIMATION
========================== */

/* Initial State */
.process-container .step-col{
    opacity:0;
    transform:translateY(60px);
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
    will-change:transform,opacity;
}

/* Active */
.process-container.animate .step-col{
    opacity:1;
    transform:translateY(0);
}

/* Stagger Effect */
.process-container.animate .step-col:nth-child(1){
    transition-delay:.15s;
}
.process-container.animate .step-col:nth-child(2){
    transition-delay:.4s;
}
.process-container.animate .step-col:nth-child(3){
    transition-delay:.65s;
}

/* Number Animation */
.process-container .step-num{
    opacity:0;
    transform:scale(.4);
    transition:
        transform .6s cubic-bezier(.34,1.56,.64,1),
        opacity .6s ease;
}

.process-container.animate .step-num{
    opacity:1;
    transform:scale(1);
}

/* Header Line */
.process-container .step-line{
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .8s ease;
}

.process-container.animate .step-line{
    transform:scaleX(1);
}

/* Icons */
.process-container .icon-container svg{
    opacity:0;
    transform:translateY(25px) scale(.85);
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
}

.process-container.animate .icon-container svg{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* Delay each SVG */
.process-container.animate .step-col:nth-child(1) .icon-container svg{
    transition-delay:.35s;
}
.process-container.animate .step-col:nth-child(2) .icon-container svg{
    transition-delay:.55s;
}
.process-container.animate .step-col:nth-child(3) .icon-container svg{
    transition-delay:.75s;
}

/* Titles */
.process-container h4{
    opacity:0;
    transform:translateY(20px);
    transition:all .6s ease;
}

.process-container.animate h4{
    opacity:1;
    transform:none;
}

/* Paragraph */
.process-container p{
    opacity:0;
    transform:translateY(25px);
    transition:all .8s ease;
}

.process-container.animate p{
    opacity:1;
    transform:none;
}

/* Connecting Arrow */
.process-container .connecting-arrow{
    opacity:0;
    transform:translateX(-15px) scale(.8);
    transition:
        transform .6s ease,
        opacity .6s ease;
}

.process-container.animate .connecting-arrow{
    opacity:1;
    transform:none;
}

/* Arrow Hover */
.process-container .connecting-arrow:hover{
    transform:scale(1.12);
    transition:.3s;
}

/* SVG Flow Animation */
.process-container .icon-container line,
.process-container .icon-container polyline,
.process-container .icon-container rect,
.process-container .icon-container circle,
.process-container .icon-container polygon{
    stroke-dasharray:400;
    stroke-dashoffset:400;
    transition:stroke-dashoffset 2s ease;
}

.process-container.animate .icon-container line,
.process-container.animate .icon-container polyline,
.process-container.animate .icon-container rect,
.process-container.animate .icon-container circle,
.process-container.animate .icon-container polygon{
    stroke-dashoffset:0;
}
.process-container .step-col{
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.process-container .step-col:hover{
    transform:translateY(-10px);
}

.process-container .step-col:hover .icon-container svg{
    transform:scale(1.08) rotate(-2deg);
}
/* Custom CSS scoped to .four-steps */
.four-steps {
    color: var(--color-text-dark);
    padding: 4rem 1rem;
}

/* Top Steps Section */
.four-steps .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.four-steps .step-num {
    background-color: var(--color-text-dark);
    color: #ffffff;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.four-steps .step-line {
    flex-grow: 1;
    border-top: 1.5px dotted var(--color-text-dark);
    position: relative;
    margin-left: 10px;
}

.four-steps .step-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--color-text-dark);
}

.four-steps .icon-area {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.four-steps .icon-area svg {
    max-height: 100%;
    max-width: 100%;
}

.four-steps .step-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.four-steps .step-divider {
    width: 25px;
    border-top: 2px solid #9dafa6;
    margin-bottom: 1rem;
}

.four-steps .step-text {
    font-size: 0.85rem;
    color: #5a6660;
    line-height: 1.6;
}

.four-steps .col-step {
    border-right: 1px solid #e1dfda;
    padding: 0 1.5rem;
}

.four-steps .col-step:last-child {
    border-right: none;
}

/* Bottom Benefits Section */
.four-steps .benefits-container {
    background-color: #f4f2eb;
    padding: 2.5rem 1.5rem;
    margin-top: 4rem;
}

.four-steps .benefit-item {
    display: flex;
    gap: 1rem;
    border-right: 1px solid #dcd9d1;
    padding-right: 1rem;
    height: 100%;
}

.four-steps .col-md-3:last-child .benefit-item {
    border-right: none;
    padding-right: 0;
}

.four-steps .benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-text-dark);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.four-steps .benefit-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.four-steps .benefit-text {
    font-size: 0.75rem;
    color: #5a6660;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .four-steps .col-step, 
    .four-steps .benefit-item {
        border-right: none;
        border-bottom: 1px solid #e1dfda;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .four-steps .col-step:last-child, 
    .four-steps .col-md-3:last-child .benefit-item {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .four-steps .step-header {
        max-width: 200px;
    }
}
/* ===========================
   FOUR STEPS ANIMATION
=========================== */

/* Initial State */
.four-steps .col-step,
.four-steps .benefit-item{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
    will-change:transform,opacity;
}

/* Active */
.four-steps.animate .col-step,
.four-steps.animate .benefit-item{
    opacity:1;
    transform:translateY(0);
}

/* Stagger Delay */
.four-steps.animate .col-step:nth-child(1){
    transition-delay:.1s;
}
.four-steps.animate .col-step:nth-child(2){
    transition-delay:.3s;
}
.four-steps.animate .col-step:nth-child(3){
    transition-delay:.5s;
}
.four-steps.animate .col-step:nth-child(4){
    transition-delay:.7s;
}

/* Benefit Delay */
.four-steps.animate .benefit-item:nth-child(1){
    transition-delay:.2s;
}
.four-steps.animate .benefit-item:nth-child(2){
    transition-delay:.35s;
}
.four-steps.animate .benefit-item:nth-child(3){
    transition-delay:.5s;
}
.four-steps.animate .benefit-item:nth-child(4){
    transition-delay:.65s;
}

/* SVG Animation */
.four-steps .icon-area svg{
    transform:scale(.85);
    opacity:0;
    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;
}

.four-steps.animate .icon-area svg{
    transform:scale(1);
    opacity:1;
}

/* Step Number */
.four-steps .step-num{
    transform:scale(.5);
    opacity:0;
    transition:
        transform .6s cubic-bezier(.34,1.56,.64,1),
        opacity .6s ease;
}

.four-steps.animate .step-num{
    transform:scale(1);
    opacity:1;
}

/* Step Line Animation */
.four-steps .step-line{
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .8s ease;
}

.four-steps.animate .step-line{
    transform:scaleX(1);
}

/* Divider */
.four-steps .step-divider{
    width:0;
    transition:width .6s ease;
}

.four-steps.animate .step-divider{
    width:25px;
}

/* Title */
.four-steps .step-title{
    opacity:0;
    transform:translateY(12px);
    transition:all .6s ease;
}

.four-steps.animate .step-title{
    opacity:1;
    transform:none;
}

/* Text */
.four-steps .step-text{
    opacity:0;
    transform:translateY(18px);
    transition:all .7s ease;
}

.four-steps.animate .step-text{
    opacity:1;
    transform:none;
}

/* Benefit Icon */
.four-steps .benefit-icon{
    transform:rotate(-25deg) scale(.6);
    opacity:0;
    transition:all .7s ease;
}

.four-steps.animate .benefit-icon{
    transform:none;
    opacity:1;
}
.four-steps .col-step{
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.four-steps .col-step:hover{
    transform:translateY(-8px);
}

.four-steps .benefit-item{
    transition:
        transform .35s ease;
}

.four-steps .benefit-item:hover{
    transform:translateY(-5px);
}

/* Scoped styles for the Powerset section */
.powerset-section {
    color: #ffffff;
    min-height: 100vh;
}

.powerset-section .subtitle {
    color: #6bb077;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.powerset-section .subtitle::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #6bb077;
    margin-right: 15px;
}

.powerset-section .main-title {
    font-family: Impact, "Arial Narrow Bold", sans-serif; 
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: normal;
}

.powerset-section .description {
    color: #b5c4bc;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.powerset-section .main-divider {
    width: 100%;
    height: 1px;
    background-color: #1a3022;
    margin-bottom: 3rem;
}

/* --- THE ADDED BORDERS ARE CONFIGURED HERE --- */
.powerset-section .feature-col {
    border-right: 1px solid #1a3022; 
    padding-right: 2rem;
    padding-left: 2rem;
    
    /* Animation Initial State */
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Staggered Entrance Delays */
.powerset-section .feature-col:nth-child(1) { animation-delay: 0.1s; }
.powerset-section .feature-col:nth-child(2) { animation-delay: 0.3s; }
.powerset-section .feature-col:nth-child(3) { animation-delay: 0.5s; }
.powerset-section .feature-col:nth-child(4) { animation-delay: 0.7s; }

.powerset-section .feature-col:first-child {
    padding-left: 15px; 
}

.powerset-section .feature-col:last-child {
    border-right: none; 
    padding-right: 15px;
}
/* --------------------------------------------- */

.powerset-section .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: #6bb077;
    font-size: 0.9rem;
}

.powerset-section .step-line {
    flex-grow: 1;
    height: 1px;
    background-color: #1a3022;
    margin-left: 15px;
    transition: background-color 0.4s ease;
}

.powerset-section .icon-circle {
    background-color: #0b2219;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    /* Added transitions for hover effects */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s ease, box-shadow 0.4s ease;
}

.powerset-section .icon-circle svg {
    width: 36px;
    height: 36px;
    stroke: #6bb077;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease, transform 0.4s ease;
}
.powerset-section .icon-circle img {
    width: 60%;
    stroke: #6bb077;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease, transform 0.4s ease;
}
.powerset-section .feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    color: #fff;
}

.powerset-section .feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
}

/* --- HOVER ANIMATIONS --- */
.powerset-section .feature-col:hover .icon-circle {
    transform: translateY(-8px) scale(1.05);
    background-color: #113628;
    box-shadow: 0 10px 20px rgba(107, 176, 119, 0.1);
}

.powerset-section .feature-col:hover .icon-circle svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

.powerset-section .feature-col:hover .step-line {
    background-color: #6bb077;
}

.powerset-section .feature-col:hover .feature-title {
    color: #6bb077;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive behavior for mobile devices */
@media (max-width: 991px) {
    .powerset-section .feature-col {
        border-right: none; 
        border-bottom: 1px solid #1a3022; 
        padding: 2.5rem 15px;
    }
    .powerset-section .feature-col:first-child {
        padding-top: 0;
    }
    .powerset-section .feature-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
.touch {
    background-color: var(--color-dark-bg); /* Dark forest green background */
    padding: 2.5rem 0;
    font-family: 'Oswald', sans-serif;
}

.touch .touch-subtitle {
    color: #55876d; /* Light green/grey text */
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.touch .touch-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.touch .touch-btn-primary {
    background-color: #2b5b46; /* Solid muted green */
    color: #ffffff;
    border: none;
    border-radius: 2px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: normal;
    text-transform: uppercase;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.touch .touch-btn-primary:hover,
.touch .touch-btn-primary:focus {
    background-color: #38755a;
    color: #ffffff;
}

.touch .touch-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #3c5449; /* Darker outline */
    border-radius: 2px;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.2s ease;
}

.touch .touch-btn-secondary:hover,
.touch .touch-btn-secondary:focus {
    background-color: #3c5449;
    color: #ffffff;
}
/* Mobile responsive menu */
@media (max-width: 991.98px) {
  .navbar-x2go .megamenu {
    display: none;
    position: static;
    background-color: var(--color-dark-card) !important;
    border: none;
    box-shadow: none;
    padding: 1.5rem 0.75rem !important;
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar-x2go .dropdown-megamenu.show .megamenu {
    display: block !important;
  }

  .megamenu-card {
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
  }

  .megamenu-card:hover {
    background-color: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
  }

  .megamenu-img-wrapper {
    display: none; /* Hide illustrative SVGs on mobile for neat list layout */
  }

  .megamenu-title {
    color: #ffffff;
    font-size: 1.15rem;
  }

  .megamenu-desc {
    color: #a3b8b0;
    max-width: 100%;
  }

  .megamenu-support-bar {
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .megamenu-support-text {
    color: #a3b8b0;
    font-size: 0.85rem;
  }

  .megamenu-support-link {
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   GLOBAL RESPONSIVE IMPROVEMENTS
   Add this at the END of your stylesheet
   ========================================================================== */

/* ---------- Large Tablet ---------- */
@media (max-width: 1199.98px) {

    .container-fluid{
        padding-left:30px;
        padding-right:30px;
    }

    .hero-title{
        font-size:4rem;
    }

    .section-title,
    .comparison-section .comparison-title{
        font-size:3rem;
    }

    .main-heading{
        font-size:3rem;
    }

    .products-section,
    .section-light,
    .section-white,
    .section-dark,
    .comparison-section{
        padding:90px 0;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:991.98px){

    .container-fluid{
        padding-left:24px;
        padding-right:24px;
    }

    .hero-section{
        min-height:auto;
        padding:90px 0 70px;
    }

    .hero-title{
        font-size:3.2rem;
        line-height:1;
        margin-bottom:20px;
    }

    .hero-subtitle{
        font-size:1rem;
        max-width:100%;
        margin-bottom:30px;
    }

    .main-heading{
        font-size:2.8rem;
    }

    .section-title,
    .comparison-section .comparison-title{
        font-size:2.5rem;
        margin-bottom:30px;
    }

    .products-section,
    .section-light,
    .section-white,
    .section-dark,
    .comparison-section{
        padding:75px 0;
    }

    .metrics-floating-bar{
        margin-top:40px;
        padding:20px;
    }

    .metric-item{
        border-right:none;
        border-bottom:1px solid var(--color-border);
        padding:20px 0;
    }

    .metric-item:last-child{
        border-bottom:none;
    }

    .metric-value{
        font-size:2rem;
    }

    .warning-alert-box{
        padding:24px;
    }

    .bottleneck-card{
        border-left:none;
        border-top:1px solid var(--color-border);
        padding:30px 0;
    }

    .comparison-metric-card{
        margin-bottom:25px;
    }

    .comparison-metric-value{
        font-size:3rem;
    }

    .product-showcase-box{
        padding:35px;
        margin-bottom:30px;
    }

    .product-showcase-box.genset-side{
        border-left:none;
        border-top:1px solid var(--color-border);
    }

    .value-chain-flow{
        flex-direction:column;
    }

    .flow-arrow{
        transform:rotate(90deg);
    }

    .deploy-step-item{
        padding:20px;
    }

    .deploy-step-text{
        font-size:1rem;
    }

    .performance-stat-card{
        border-left:none;
        border-top:1px solid var(--color-border);
    }

    .inquiry-left-col{
        padding-right:0;
        margin-bottom:40px;
    }

    .inquiry-form-card{
        padding:35px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
    .navbar-x2go .dropdown-megamenu{
        width:100%;
    }

    .navbar-x2go .dropdown-megamenu .megamenu{
        display:none;
        position:static;
        visibility:visible;
        opacity:1;
        transform:none;
        pointer-events:auto;
        width:100%;
        background:#0c211b;
        padding:15px;
        margin-top:0;
        border:none;
        box-shadow:none;
    }

    .navbar-x2go .dropdown-megamenu.show > .megamenu{
        display:block;
    }

    .navbar-x2go .dropdown-toggle::after{
        float:right;
        margin-top:10px;
        transition:.3s;
    }

    .navbar-x2go .dropdown-megamenu.show > .dropdown-toggle::after{
        transform:rotate(180deg);
    }

}


/* ---------- Mobile ---------- */
@media (max-width:767.98px){

    body{
        font-size:15px;
    }

    .container-fluid{
        padding-left:18px;
        padding-right:18px;
    }

    .hero-section{
        padding:80px 0 60px;
    }

    .hero-title{
        font-size:2.4rem;
        line-height:1;
    }

    .hero-subtitle{
        font-size:0.95rem;
    }

    .section-tagline{
        font-size:12px;
        margin-bottom:12px;
    }

    .section-title,
    .comparison-section .comparison-title,
    .main-heading,
    .inquiry-title{
        font-size:2rem;
        line-height:1.15;
        letter-spacing:0;
    }

    .products-section,
    .section-light,
    .section-white,
    .section-dark,
    .comparison-section{
        padding:60px 0;
    }

    .btn-x2go-primary,
    .btn-x2go-secondary,
    .btn-x2go-solid-dark,
    .btn-x2go-outline-dark,
    .btn-custom{
        width:100%;
        justify-content:center;
        padding:14px 20px;
    }

    .metrics-floating-bar{
        margin-top:30px;
        padding:15px;
    }

    .metric-item{
        padding:18px 0;
    }

    .metric-value{
        font-size:1.8rem;
    }

    .metric-label{
        font-size:11px;
    }

    .warning-alert-box{
        padding:20px;
        font-size:15px;
    }

    .bottleneck-card{
        padding:25px 0;
    }

    .bottleneck-card .title{
        font-size:1.4rem;
    }

    .comparison-section .stat-card{
        padding:25px;
    }

    .comparison-section .stat-number{
        font-size:2.8rem;
    }

    .comparison-metric-card{
        padding:25px;
    }

    .comparison-metric-value{
        font-size:2.8rem;
    }

    .performance-stat-card{
        padding:25px 0;
    }

    .performance-stat-value{
        font-size:2.8rem;
    }

    .performance-stat-label{
        font-size:1.1rem;
    }

    .hyai-grid-card{
        padding:25px;
    }

    .product-showcase-box{
        padding:30px 25px;
    }

    .product-showcase-box .product-name{
        font-size:2rem;
    }

    .products-section .product-title{
        font-size:2rem;
    }

    .products-section .btn-group-custom{
        flex-direction:column;
    }

    .products-section .btn-custom{
        width:100%;
    }

    .feature-item{
        margin-bottom:25px;
    }

    .feature-title{
        font-size:13px;
    }

    .feature-desc{
        font-size:14px;
    }

    .sub-grid-box{
        padding:30px 20px;
    }

    .app-circle-image-wrapper{
        width:70px;
        height:70px;
    }

    .comparison-section .comparison-table{
        overflow-x:auto;
    }

    .comparison-section table{
        min-width:700px;
    }

    .specs-table{
        min-width:650px;
    }

    .showdown-table{
        min-width:700px;
    }

    .matrix-table{
        min-width:700px;
    }

    .table-responsive{
        overflow-x:auto;
    }

    .inquiry-form-card{
        padding:25px;
    }

    .footer-x2go{
        padding:60px 0 30px;
        text-align:center;
    }

    .footer-heading{
        margin-top:30px;
    }

    .slick-arrow-custom{
        width:38px;
        height:38px;
    }

    .slick-arrow-prev{
        left:-5px;
    }

    .slick-arrow-next{
        right:-5px;
    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:575.98px){

    .hero-section{
        padding:70px 0 50px;
    }

    .hero-title{
        font-size:2rem;
    }

    .hero-subtitle{
        font-size:15px;
    }

    .section-title,
    .comparison-section .comparison-title,
    .main-heading,
    .inquiry-title{
        font-size:1.75rem;
    }

    .products-section,
    .section-light,
    .section-white,
    .section-dark,
    .comparison-section{
        padding:50px 0;
    }

    .metric-value{
        font-size:1.6rem;
    }

    .comparison-section .stat-number{
        font-size:2.5rem;
    }

    .comparison-metric-value{
        font-size:2.4rem;
    }

    .performance-stat-value{
        font-size:2.4rem;
    }

    .product-showcase-box .product-name{
        font-size:1.8rem;
    }

    .products-section .product-title{
        font-size:1.75rem;
    }

    .hyai-grid-title{
        font-size:1.25rem;
    }

    .deploy-step-item{
        flex-direction:column;
        text-align:center;
    }

    .deploy-step-text{
        font-size:15px;
    }

    .flow-step{
        padding:25px 20px;
    }

    .flow-step .step-title{
        font-size:1.25rem;
    }

    .banner-alert-green{
        padding:20px;
        font-size:14px;
    }

    .footer-logo{
        font-size:2rem;
    }
    .lead {
        font-size: 15px;
    }
    html,
    body{
        overflow-x:hidden;
        width:100%;
        max-width:100%;
    }
}


