*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #0a2218;
      --green-mid:   #0d2e1f;
      --green-base:  #14532d;
      --green-bright:#16a34a;
      --green-light: #22c55e;
      --green-glow:  #4ade80;
      --text-white:  #ffffff;
      --text-muted:  rgba(255,255,255,0.55);
      --border:      rgba(255,255,255,0.08);
      --font: 'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    .page {
      font-family: var(--font);
      background: var(--green-dark);
      color: var(--text-white);
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6;
      min-height: 100vh;
      position: relative;
    }

    .page::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem;
      padding: 1rem 3rem;
      background: rgba(10,34,24,0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      height: 64px; width: auto; display: block;
      filter: hue-rotate(-45deg) saturate(1.45) brightness(1.0);
      mix-blend-mode: lighten;
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .nav-brand:hover .nav-logo {
      transform: scale(1.06);
      filter: hue-rotate(-45deg) saturate(1.7) brightness(1.1);
    }
    .nav-brand-name { font-weight: 700; font-size: 1rem; color: var(--green-light); letter-spacing: 0.04em; }
    .nav-brand-accent { color: #ffffff; }

    .nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
    .nav-links a {
      position: relative;
      font-size: 1rem; font-weight: 500;
      color: var(--text-muted); text-decoration: none;
      transition: color 0.2s;
      padding: 0.25rem 0;
    }
    .nav-links a::after {
      content: '';
      position: absolute; left: 0; right: 0; bottom: -4px;
      height: 2px; background: var(--green-light);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s ease;
      border-radius: 2px;
    }
    .nav-links a:hover { color: var(--text-white); }
    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--text-white); }

    .nav-cta {
      padding: 0.6rem 1.4rem; background: var(--green-bright); color: #fff;
      font-weight: 600; font-size: 0.88rem; border-radius: 8px; text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 0 0 rgba(74,222,128,0.0);
    }
    .nav-cta:hover {
      background: var(--green-light); transform: translateY(-1px);
      box-shadow: 0 6px 20px -6px rgba(74,222,128,0.6);
    }

    .hero {
      --mx: 50%;
      --my: 30%;
      padding: 8rem 3rem 4rem;
      position: relative; z-index: 1; overflow: hidden;
      min-height: auto;
    }

    .hero-glow {
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 65%);
      pointer-events: none;
      animation: drift 14s ease-in-out infinite;
    }
    .hero-glow2 {
      position: absolute; bottom: -150px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 65%);
      pointer-events: none;
      animation: drift 18s ease-in-out infinite reverse;
    }

    .hero-content {
      position: relative; z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .hero-text { animation: fadeUp 0.6s 0.1s both; }
    .hero-image { position: relative; z-index: 2; height: 300px; }
    .hero-img {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(74,222,128,0.2);
      box-shadow: 0 0 40px rgba(34,197,94,0.15);
      animation: wordSwap 0.55s cubic-bezier(.2,.8,.2,1);
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(22,163,74,0.2);
      border: 1px solid rgba(34,197,94,0.3);
      color: var(--green-glow);
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.4rem 0.9rem; border-radius: 999px;
      margin-bottom: 2rem;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green-glow);
      animation: pulse 2s infinite;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      font-weight: 800; line-height: 1.05;
      margin-bottom: 1.6rem;
    }
    .hero h1 .line-green { color: var(--green-light); display: block; }

    .rotating-word {
      display: inline-block;
      color: var(--green-light);
      position: relative;
      min-height: 1.05em;
      overflow: hidden;
      vertical-align: bottom;
    }
    .rotating-word-inner {
      display: inline-block;
      animation: wordSwap 0.55s cubic-bezier(.2,.8,.2,1);
    }
    @keyframes wordSwap {
      0%   { opacity: 0; transform: translateY(40%) skewY(4deg); filter: blur(6px); }
      60%  { opacity: 1; filter: blur(0); }
      100% { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); }
    }

    /* Hero dashboard mockup */
    .hero-dash {
      position: relative;
      perspective: 1400px;
      animation: fadeUp 0.7s 0.25s both;
    }
    .hero-dash-glow {
      position: absolute; inset: -20px;
      background: radial-gradient(60% 60% at 50% 50%, rgba(34,197,94,0.25), transparent 70%);
      filter: blur(30px);
      z-index: 0;
      pointer-events: none;
      animation: glowPulse 5s ease-in-out infinite;
    }
    .hero-dash-card {
      position: relative; z-index: 1;
      background: linear-gradient(160deg, rgba(20,83,45,0.55) 0%, rgba(10,34,24,0.85) 100%);
      border: 1px solid rgba(74,222,128,0.25);
      border-radius: 18px;
      padding: 1.1rem 1.2rem 1.3rem;
      box-shadow:
        0 30px 60px -20px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.03) inset;
      transform: rotateX(4deg) rotateY(-6deg);
      transform-style: preserve-3d;
      animation: dashFloat 7s ease-in-out infinite;
      backdrop-filter: blur(8px);
    }
    @keyframes dashFloat {
      0%,100% { transform: rotateX(4deg) rotateY(-6deg) translateY(0); }
      50%     { transform: rotateX(2deg) rotateY(-4deg) translateY(-8px); }
    }
    @keyframes glowPulse {
      0%,100% { opacity: 0.6; }
      50%     { opacity: 1; }
    }
    .dash-head {
      display: flex; align-items: center; gap: 0.75rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .dash-dots { display: flex; gap: 5px; }
    .dash-dots span {
      width: 9px; height: 9px; border-radius: 50%;
      background: rgba(255,255,255,0.18);
    }
    .dash-dots span:first-child { background: #ef4444; }
    .dash-dots span:nth-child(2) { background: #f59e0b; }
    .dash-dots span:nth-child(3) { background: var(--green-light); }
    .dash-title {
      font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.7);
      letter-spacing: 0.04em;
    }
    .dash-status {
      margin-left: auto;
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.65rem; font-weight: 700;
      color: var(--green-glow);
      background: rgba(34,197,94,0.12);
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      letter-spacing: 0.06em;
    }
    .dash-ping {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green-glow);
      box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
      animation: pingDot 1.6s infinite;
    }
    @keyframes pingDot {
      0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
      100% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
    }
    .dash-body { padding-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
    .dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
    .dash-stat {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 10px;
      padding: 0.6rem 0.7rem;
    }
    .dash-stat-label { font-size: 0.62rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
    .dash-stat-value { font-size: 1.05rem; font-weight: 800; margin-top: 0.15rem; color: #fff; }
    .dash-stat-trend { font-size: 0.6rem; font-weight: 700; margin-top: 0.1rem; }
    .dash-stat-trend.up { color: var(--green-glow); }
    .dash-stat-trend.down { color: #fca5a5; }

    .dash-chart {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 10px;
      padding: 0.6rem;
      height: 110px;
    }
    .dash-chart svg { width: 100%; height: 100%; display: block; }
    .dash-line {
      stroke-dasharray: 700;
      stroke-dashoffset: 700;
      animation: drawLine 2.4s 0.4s ease-out forwards;
    }
    .dash-area {
      opacity: 0;
      animation: fadeIn 1.4s 1.6s ease-out forwards;
    }
    @keyframes drawLine { to { stroke-dashoffset: 0; } }
    @keyframes fadeIn  { to { opacity: 1; } }

    .dash-rows { display: flex; flex-direction: column; gap: 0.35rem; }
    .dash-row {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.45rem 0.6rem;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      font-size: 0.72rem;
    }
    .dash-row-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green-glow);
      flex-shrink: 0;
    }
    .dash-row-name { color: rgba(255,255,255,0.78); flex: 1; }
    .dash-row-pill {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
      padding: 0.18rem 0.5rem; border-radius: 999px;
      text-transform: uppercase;
    }
    .dash-row-pill.ok { background: rgba(34,197,94,0.15); color: var(--green-glow); }
    .dash-row-pill.warn { background: rgba(245,158,11,0.15); color: #fbbf24; }

    /* Tilt cards (used for product cards) */
    .tilt-card {
      --rx: 0deg; --ry: 0deg;
      --gx: 50%; --gy: 50%;
      perspective: 1000px;
      background: var(--green-dark);
      position: relative;
    }
    .tilt-card-inner {
      position: relative;
      padding: 2.4rem 2rem;
      transform: rotateX(var(--rx)) rotateY(var(--ry));
      transform-style: preserve-3d;
      transition: transform 0.25s ease;
      border-radius: 14px;
    }
    .tilt-card-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(60,184,122,0.35) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.35s ease;
      border-radius: 14px;
      pointer-events: none;
      z-index: 0;
    }
    .tilt-card:hover .tilt-card-glow { opacity: 1; }
    .tilt-card:hover .tilt-card-glow { opacity: 1; }
    .tilt-card:hover .tilt-card-glow { opacity: 1; }
    .tilt-card:hover .tilt-card-glow { opacity: 1; }

    .hero-sub {
      font-size: 1.05rem; font-weight: 400;
      color: var(--text-muted); max-width: 540px;
      width: 100%;
      line-height: 1.75; margin-bottom: 1.5rem;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-solid {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.9rem 2rem; background: var(--green-bright);
      color: #fff; font-weight: 600; font-size: 0.9rem;
      border-radius: 10px; text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-solid:hover {
      background: var(--green-light); transform: translateY(-2px);
      box-shadow: 0 12px 30px -10px rgba(74,222,128,0.55);
    }

    .btn-outline {
      display: inline-flex; align-items: center;
      padding: 0.9rem 2rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text-white); font-weight: 500; font-size: 0.9rem;
      border-radius: 10px; text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(74,222,128,0.4); }

    .stats-bar {
      display: grid; grid-template-columns: repeat(4,1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative; z-index: 1;
      background: rgba(10,34,24,0.6);
    }
    .stat-item {
      padding: 2rem 2.5rem; border-right: 1px solid var(--border);
      transition: background 0.25s ease;
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: rgba(34,197,94,0.06); }
    .stat-number { font-size: 2.4rem; font-weight: 800; color: var(--green-light); line-height: 1; margin-bottom: 0.35rem; }
    .stat-desc { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

    .section { padding: 4rem 3rem; position: relative; z-index: 1; scroll-margin-top: 90px; }
    .section-badge {
      display: inline-block;
      background: rgba(22,163,74,0.15);
      border: 1px solid rgba(34,197,94,0.25);
      color: var(--green-glow);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.3rem 0.8rem; border-radius: 999px;
      margin-bottom: 1.2rem;
    }
    .section-title { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
    .section-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 500px; line-height: 1.75; font-weight: 400; }

    .about-left {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      padding: 2.5rem;
      min-height: 500px;
      background-image: 
        linear-gradient(rgba(10,34,24,0.85), rgba(10,34,24,0.85)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800&q=80');
      background-size: cover;
      background-position: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .about-left > * {
      position: relative;
      z-index: 1;
    }
    .about-cards { display: flex; flex-direction: column; gap: 1rem; }
    .about-card {
      display: flex; gap: 1rem; align-items: flex-start;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 1.3rem 1.5rem;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .about-card:hover {
      border-color: rgba(34,197,94,0.35); background: rgba(34,197,94,0.05);
      transform: translateX(2px);
    }
    .about-card-num {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(22,163,74,0.2); color: var(--green-glow);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; font-weight: 700;
      flex-shrink: 0; margin-top: 2px;
    }
    .about-card h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.3rem; }
    .about-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

    .products-section { background: rgba(0,0,0,0.15); }
    .products-grid {
      display: grid; grid-template-columns: repeat(2,1fr);
      gap: 1.2rem; margin-top: 1.5rem;
      align-items: stretch;
    }
    .product-card {
      background: #132d24;
      border: 1px solid #1e4033;
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: #3cb87a;
      background: #173529;
      box-shadow:
        0 16px 48px rgba(0,0,0,0.45),
        0 0 0 1.5px rgba(60,184,122,0.3),
        0 0 28px rgba(60,184,122,0.08);
    }
    .product-card:hover .tilt-card-glow { opacity: 1; }
    .product-card:hover p { color: #96c4ae; }
    .product-card:hover h3 { color: #d4f0e4; }
    .product-card:hover {
      border-color: rgba(34,197,94,0.4);
    }
    .product-card .tilt-card-inner {
      position: relative; overflow: hidden;
    }
    .product-card .tilt-card-inner::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--green-bright);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .product-card:hover .tilt-card-inner::after { transform: scaleX(1); }

    .product-tag {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--green-bright);
      margin-bottom: 1.2rem;
      position: relative; z-index: 1;
    }
    .product-card h3 {
      font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; line-height: 1.2;
      position: relative; z-index: 1;
    }
    .product-card p {
      font-size: 0.82rem; color: var(--text-muted); line-height: 1.7;
      position: relative; z-index: 1;
    }

    .industries-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .industry-list { display: flex; flex-direction: column; margin-top: 1rem; }
    .industry-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 1.5rem;
      border: none;
      border-bottom: 1px solid var(--border);
      background: transparent;
      color: inherit;
      font-family: inherit;
      text-align: left;
      width: 100%;
      cursor: pointer;
      transition: background 0.2s, padding-left 0.25s ease;
      position: relative;
    }
    .industry-row:first-child { border-top: 1px solid var(--border); }
    .industry-row::before {
      content: '';
      position: absolute; left: 0; top: 20%; bottom: 20%;
      width: 3px; background: var(--green-light);
      border-radius: 0 3px 3px 0;
      transform: scaleY(0); transform-origin: center;
      transition: transform 0.25s ease;
    }
    .industry-row:hover { background: rgba(34,197,94,0.06); }
    .industry-row.active {
      background: rgba(34,197,94,0.1);
      padding-left: 1.85rem;
    }
    .industry-row.active::before { transform: scaleY(1); }
    .industry-row.active .industry-name { color: var(--green-glow); }
    .industry-name { font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
    .industry-pill {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(22,163,74,0.15);
      border: 1px solid rgba(34,197,94,0.25);
      color: var(--green-glow);
      padding: 0.25rem 0.7rem; border-radius: 999px;
    }

    .industries-right {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 2.5rem;
      margin-top: 1rem;
      min-height: 320px;
      animation: panelIn 0.45s cubic-bezier(.2,.7,.2,1);
    }
    .industries-right-pill {
      display: inline-block;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase;
      background: rgba(22,163,74,0.18);
      border: 1px solid rgba(34,197,94,0.3);
      color: var(--green-glow);
      padding: 0.3rem 0.8rem; border-radius: 999px;
      margin-bottom: 1rem;
    }
    .industries-right h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.3; }
    .industries-right p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
    .feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--text-muted); }
    .feature-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(22,163,74,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--green-glow); font-size: 0.65rem;
    }

    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.5rem; }
    .why-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 2rem 1.8rem;
      transition: border-color 0.25s, background 0.25s, transform 0.25s;
    }
    .why-card:hover {
      border-color: rgba(34,197,94,0.3);
      background: rgba(34,197,94,0.04);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(22,163,74,0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem; font-size: 1.1rem;
      color: var(--green-glow);
      transition: transform 0.3s ease;
    }
    .why-card:hover .why-icon { transform: rotate(-8deg) scale(1.08); }
    .why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
    .why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

    .cta-wrap {
      margin: 0 3rem 4rem;
      background: linear-gradient(135deg, rgba(22,163,74,0.2) 0%, rgba(10,34,24,0.8) 100%);
      border: 1px solid rgba(34,197,94,0.25);
      border-radius: 20px; padding: 2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
      position: relative; overflow: hidden; z-index: 1;
    }
    .cta-logo-bg {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(-6deg);
      width: 560px; height: auto;
      opacity: 0.08;
      filter: drop-shadow(0 0 30px rgba(74,222,128,0.6));
      pointer-events: none;
    }
    .cta-text { position: relative; z-index: 2; flex: 1; }
    .cta-wrap h2 { font-size: 2.1rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.6rem; }
    .cta-wrap p { color: var(--text-muted); font-size: 0.95rem; }
    .cta-contact { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }
    .cta-contact a { color: var(--green-glow); text-decoration: none; transition: color 0.2s; }
    .cta-contact a:hover { color: var(--text-white); }
    .cta-right { text-align: right; flex-shrink: 0; position: relative; z-index: 2; }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.8rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      position: relative; z-index: 1;
      background: rgba(10,34,24,0.8);
    }
    .footer-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .footer-logo {
      height: 48px; width: auto; display: block;
      filter: hue-rotate(-45deg) saturate(1.45) brightness(1.0);
      mix-blend-mode: lighten;
    }
    .footer-name { font-weight: 700; font-size: 1rem; color: var(--green-light); letter-spacing: 0.04em; }
    .footer-copy { font-size: 0.75rem; color: var(--text-muted); }

    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--green-bright), var(--green-glow));
      box-shadow: 0 0 10px rgba(74,222,128,0.6);
      z-index: 200;
      border-radius: 0 3px 3px 0;
    }

    .back-to-top {
      position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 200;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(74,222,128,0.45);
      background: rgba(22,163,74,0.85);
      color: #fff; font-size: 1.1rem; font-weight: 700;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transform: translateY(12px) scale(0.9);
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5), 0 0 0 0 rgba(74,222,128,0);
      backdrop-filter: blur(6px);
    }
    .back-to-top.visible {
      opacity: 1; pointer-events: auto;
      transform: translateY(0) scale(1);
    }
    .back-to-top:hover {
      background: var(--green-light);
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5), 0 0 18px -2px rgba(74,222,128,0.55);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%      { opacity: 0.4; }
    }
    @keyframes drift {
      0%, 100% { transform: translate(0, 0); }
      50%      { transform: translate(30px, -20px); }
    }
    @keyframes panelIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.25rem; gap: 1rem; }
      .nav-links { gap: 1.25rem; }
      .nav-links a { font-size: 0.82rem; }
      .hero { padding: 10rem 1.5rem 4rem; }
      .hero-content { grid-template-columns: 1fr; gap: 3rem; }
      .hero-dash { max-width: 480px; margin: 0 auto; }
      .section { padding: 1.5rem 1.5rem; }
      .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
      .products-grid { grid-template-columns: 1fr; }
      .industries-layout { grid-template-columns: 1fr; gap: 2rem; }
      .why-grid { grid-template-columns: 1fr; }
      .stats-bar { grid-template-columns: repeat(2,1fr); }
      .cta-wrap { margin: 0 1.5rem 3rem; padding: 2rem; flex-direction: column; }
      .cta-right { text-align: left; }
      footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    }