
  /* =============================================================================
     CSS CUSTOM PROPERTIES — GREEN THEME
     Primary:   #106c7b  (dark teal-green)
     Medium:    #028e8d  (medium teal)
     Light:     #29a7a6  (light teal)
     Previously red (#c41230) is now replaced throughout with these three values.
     ============================================================================= */
  :root {
    /* ── Brand Green Palette ── */
    --green-dark:    #106c7b;   /* replaces old --red dark state (#a00e26) */
    --green-mid:     #028e8d;   /* replaces old --red (#c41230) — main brand color */
    --green-light:   #29a7a6;   /* accent / hover highlights */

    /* ── Neutrals (unchanged from original) ── */
    --dark:          #1a1a1a;
    --mid:           #2d2d2d;
    --gray:          #555;
    --light-gray:    #f5f5f5;
    --border:        #e0e0e0;
    --white:         #ffffff;

    /* ── Layout ── */
    --nav-height:    72px;
  }

  /* =============================================================================
     RESET & BASE
     ============================================================================= */
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }


  /* =============================================================================
     TOP BAR
     Dark strip at very top — phone, search, language selector
     ============================================================================= */
  /* .top-bar {
    background: var(--dark);
    color: #aaa;
    font-size: 12px;
    padding: 6px 0;
  }
  .top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-bar a { color: #aaa; transition: color .2s; }
  .top-bar a:hover { color: var(--white); }

  .top-bar-right { display: flex; gap: 20px; align-items: center; }
  .top-bar-right .lang { cursor: pointer; position: relative; }
  .top-bar-right .lang:hover { color: var(--white); }
 */

  /* =============================================================================
     HEADER — Sticky navigation bar
     ============================================================================= */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  /* ── Logo ── */
  /* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s;
}
.logo:hover .logo-img {
  opacity: 0.85;
}

/* ── RESPONSIVE LOGO ── */
@media (max-width: 1024px) {
  .logo-img { height: 138px; }
}
@media (max-width: 768px) {
  .logo-img { height: 134px; }
}
@media (max-width: 480px) {
  .logo-img { height: 130px; }
}

  /* =============================================================================
     DESKTOP NAVIGATION
     ============================================================================= */
  nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }

  .nav-item { position: relative; }

  /* Nav trigger / link */
  .nav-item > a,
  .nav-item > span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    padding: 24px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color .2s;
    white-space: nowrap;
  }
  .nav-item > a:hover,
  .nav-item > span:hover,
  .nav-item:hover > a,
  .nav-item:hover > span { color: var(--green-mid); }    /* GREEN: was --red */

  /* Dropdown arrow */
  .nav-item > span::after {
    content: '▾';
    font-size: 10px;
    transition: transform .2s;
  }
  .nav-item:hover > span::after { transform: rotate(180deg); }

  /* Dropdown panel */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-top: 3px solid var(--green-mid);   /* GREEN: was --red */
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    min-width: 240px;
    z-index: 200;
    padding: 8px 0;
  }
  .nav-item:hover .dropdown { display: block; }

  .dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    transition: background .15s, color .15s, padding-left .15s;
    border-left: 3px solid transparent;
  }
  .dropdown a:hover {
    background: var(--light-gray);
    color: var(--green-mid);                  /* GREEN: was --red */
    border-left-color: var(--green-mid);      /* GREEN: was --red */
    padding-left: 24px;
  }


  /* =============================================================================
     HEADER ACTIONS — Search + CTA + Hamburger
     ============================================================================= */
  .header-actions { display: flex; align-items: center; gap: 16px; }

  /* Get a Quote CTA */
  .btn-contact {
    background: var(--green-mid);             /* GREEN: was --red */
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .btn-contact:hover {
    background: var(--green-dark);            /* GREEN: was #a00e26 */
    transform: translateY(-1px);
  }

  /* Search icon button */
  .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray);
    transition: color .2s;
  }
  .search-btn:hover { color: var(--green-mid); }   /* GREEN: was --red */


  /* =============================================================================
     HAMBURGER BUTTON — Mobile only
     ============================================================================= */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all .3s;
    border-radius: 2px;
  }
  /* Hamburger animates to X when open */
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


  /* =============================================================================
     MOBILE NAVIGATION — Accordion drawer
     ============================================================================= */
  .mobile-nav {
    display: none;
    background: var(--white);
    border-top: 3px solid var(--green-mid);   /* GREEN: was --red */
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
  }
  .mobile-nav.open { display: block; }

  .mobile-nav-item { border-bottom: 1px solid var(--border); }

  .mobile-nav-item > a,
  .mobile-nav-item > .mobile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
  }
  .mobile-nav-item > a:hover,
  .mobile-nav-item > .mobile-section:hover { color: var(--green-mid); }

  /* Accordion toggle + / − */
  .mobile-section-toggle { font-size: 20px; color: var(--gray); line-height: 1; }
  .mobile-section-toggle::after { content: '+'; }
  .mobile-section-toggle.open::after { content: '−'; }

  /* Accordion submenu */
  .mobile-submenu { display: none; background: var(--light-gray); padding: 8px 0; }
  .mobile-submenu.open { display: block; }
  .mobile-submenu a {
    display: block;
    padding: 10px 36px;
    font-size: 14px;
    color: var(--gray);
    transition: color .2s, padding-left .2s;
    border-left: 3px solid transparent;
  }
  .mobile-submenu a:hover {
    color: var(--green-mid);               /* GREEN: was --red */
    padding-left: 42px;
    border-left-color: var(--green-mid);
  }

  /* Mobile CTA row */
  .mobile-cta {
    padding: 16px 24px;
    display: flex;
    gap: 12px;
  }


  /* =============================================================================
     HERO SECTION — Full-width banner with headline + animated card
     ============================================================================= */
  .hero {
    position: relative;
    min-height: 620px;
    /* Navy-to-dark-teal gradient — matches green brand instead of pure navy */
    background: linear-gradient(135deg, #091e24 0%, #106c7b 45%, #091e24 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
  }

  /* Radial glow overlays — now teal instead of red */
  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(2,142,141,.2) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
    pointer-events: none;
  }

  /* Subtle grid lines */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* Two-column content wrapper */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  /* ── Hero text column ── */
  .hero-text { color: white; }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);            /* GREEN: was --red */
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--green-light);       /* GREEN: was --red */
    flex-shrink: 0;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: white;
  }
  .hero-title span { color: var(--green-light); }   /* GREEN: was --red */

  .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
  }

  /* CTA buttons row */
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

  /* Primary filled button */
  .btn-primary {
    background: var(--green-mid);             /* GREEN: was --red */
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    border: 2px solid var(--green-mid);
  }
  .btn-primary:hover {
    background: var(--green-dark);            /* GREEN: was #a00e26 */
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2,142,141,.4);
  }
  .btn-primary svg { transition: transform .2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  /* Outline / ghost button */
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.4);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
  }
  .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
  }

  /* Stat badges row */
  .hero-stat-badges {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
  }
  .stat-badge {
    border-left: 2px solid var(--green-light);  /* GREEN: was --red */
    padding-left: 14px;
  }
  .stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  /* ── Hero card (right column) ── */
  .hero-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 32px;
    width: 100%;
    max-width: 420px;
  }
  .hero-card-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0e4a55 0%, #091e24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }

  /* Animated generator schematic inside card */
  .generator-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gen-body {
    width: 200px;
    height: 110px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
  }
  .gen-engine {
    width: 60px;
    height: 70px;
    background: rgba(2,142,141,.3);         /* GREEN: was red tint */
    border: 1px solid rgba(41,167,166,.5);  /* GREEN: was red border */
    border-radius: 3px;
    flex-shrink: 0;
  }
  .gen-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .gen-line { height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; }
  .gen-line:nth-child(2) { width: 70%; }
  .gen-line:nth-child(3) { width: 50%; }

  /* Floating heat arrows */
  .heat-arrows {
    position: absolute;
    top: -24px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
  }
  .arrow-up {
    color: var(--green-light);            /* GREEN: was --red */
    font-size: 22px;
    animation: float 1.8s ease-in-out infinite;
    line-height: 1;
  }
  .arrow-up:nth-child(2) { animation-delay: .3s; }
  .arrow-up:nth-child(3) { animation-delay: .6s; }

  @keyframes float {
    0%, 100% { opacity: .3; transform: translateY(0); }
    50%       { opacity: 1;  transform: translateY(-8px); }
  }

  .hero-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 10px;
  }
  .hero-card-text {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .hero-card-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-light);            /* GREEN: was --red */
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .hero-card-link:hover { gap: 12px; }


  /* =============================================================================
     FEATURES STRIP — Green band with 4 value propositions
     ============================================================================= */
  .features-strip {
    background: var(--green-mid);           /* GREEN: was --red */
  }
  .features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-item {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255,255,255,.2);
    transition: background .2s;
    cursor: default;
  }
  .feature-item:last-child { border-right: none; }
  .feature-item:hover { background: rgba(255,255,255,.1); }

  .feature-icon { width: 40px; height: 40px; flex-shrink: 0; opacity: .9; }
  .feature-icon svg { width: 100%; height: 100%; fill: white; }

  .feature-text .title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    line-height: 1.2;
  }
  .feature-text .sub { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }


  /* =============================================================================
     SECTION SHARED — Padding, containers, labels, titles
     ============================================================================= */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }

  /* Red eyebrow label → green */
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-mid);              /* GREEN: was --red */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-mid);         /* GREEN: was --red */
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }
  .section-desc { font-size: 16px; line-height: 1.7; color: var(--gray); max-width: 640px; }


  /* =============================================================================
     EFFICIENCY SECTION — Light bg, 2-col: text + bar chart
     ============================================================================= */
  .efficiency { background: var(--light-gray); }
  .efficiency .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* Chart container */
  .efficiency-visual {
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .efficiency-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--green-mid);         /* GREEN: was --red */
  }

  /* Bar chart */
  .savings-chart { width: 100%; padding: 32px; }
  .chart-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
  }
  .bar-group { display: flex; flex-direction: column; gap: 14px; }
  .bar-item { display: flex; align-items: center; gap: 12px; }
  .bar-label {
    font-size: 12px;
    color: var(--gray);
    width: 110px;
    flex-shrink: 0;
    text-align: right;
    line-height: 1.3;
  }
  .bar-track {
    flex: 1;
    height: 28px;
    background: #eeeeee;
    border-radius: 2px;
    overflow: hidden;
  }
.bar-fill {
    height: 100%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    animation: barGrow 1.2s cubic-bezier(.22,1,.36,1) forwards;
    animation-play-state: paused;
  }
  .bar-fill.green { background: var(--green-mid); }
  .bar-fill.teal  { background: var(--green-dark); }
  .bar-fill.red   { background: var(--green-mid); }
  .bar-fill.blue  { background: var(--green-dark); }
  @keyframes barGrow { from { width: 0 !important; } }
  .bar-val { font-size: 11px; font-weight: 600; color: white; }

  /* Efficiency feature callouts */
  .efficiency-features { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
  .eff-feat {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--green-mid);  /* GREEN: was --red */
    transition: transform .2s, box-shadow .2s;
  }
  .eff-feat:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
  .eff-feat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--green-mid);              /* GREEN: was --red */
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
  }
  .eff-feat-text h4 { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
  .eff-feat-text p  { font-size: 13px; color: var(--gray); line-height: 1.5; }


  /* =============================================================================
     MARKETS SECTION — 3-col grid of market cards
     ============================================================================= */
  .markets { background: var(--white); }
  .markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
    background: var(--border);
  }
  .market-card {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background .2s;
  }
  /* Expanding bottom border on hover */
  .market-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--green-mid);         /* GREEN: was --red */
    transition: width .3s;
  }
  .market-card:hover::after { width: 100%; }
  .market-card:hover { background: var(--light-gray); }

  .market-icon {
    width: 52px;
    height: 52px;
    background: var(--green-mid);         /* GREEN: was --red */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .market-icon svg { width: 28px; height: 28px; fill: white; }
  .market-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .market-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
  .market-link {
    margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-mid);              /* GREEN: was --red */
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity .2s, gap .2s;
  }
  .market-card:hover .market-link { opacity: 1; gap: 10px; }


  /* =============================================================================
     PRODUCTS SECTION — Dark bg, 4-col grid
     ============================================================================= */
  .products { background: var(--dark); color: white; }
  .products .section-title { color: white; }
  .products .section-desc { color: rgba(255,255,255,.65); }
  /* Override label color on dark bg */
  .products .section-label { color: var(--green-light); }
  .products .section-label::before { background: var(--green-light); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 48px;
    background: rgba(255,255,255,.05);
  }
  .product-card {
    background: var(--mid);
    padding: 28px 24px;
    cursor: pointer;
    transition: background .2s;
    position: relative;
    overflow: hidden;
  }
  /* Left accent border on hover */
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--green-mid);         /* GREEN: was --red */
    transition: height .3s;
  }
  .product-card:hover::before { height: 100%; }
  .product-card:hover { background: #333; }

  .product-icon {
    width: 44px;
    height: 44px;
    background: rgba(2,142,141,.15);      /* GREEN: was red tint */
    border: 1px solid rgba(2,142,141,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .2s;
  }
  .product-card:hover .product-icon { background: rgba(2,142,141,.25); }
  .product-icon svg { width: 22px; height: 22px; fill: var(--green-light); }  /* GREEN */

  .product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .product-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }


  /* =============================================================================
     NEWS SECTION — Light bg, 3-col card grid
     ============================================================================= */
  .news { background: var(--light-gray); }
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .news-card {
    background: var(--white);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }

  /* Card image area — teal gradient instead of navy */
  .news-img {
    height: 200px;
    background: linear-gradient(135deg, #106c7b, #091e24);   /* GREEN: was navy */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .news-img-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(41,167,166,.25) 0%, transparent 60%);
  }
  .news-img-icon { z-index: 1; opacity: .3; }
  .news-img-icon svg { width: 60px; height: 60px; fill: white; }

  .news-body { padding: 24px; }
  .news-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);              /* GREEN: was --red */
    margin-bottom: 10px;
  }
  .news-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
    transition: color .2s;
  }
  .news-card:hover .news-title { color: var(--green-mid); }  /* GREEN */
  .news-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; }
  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-mid);              /* GREEN: was --red */
    margin-top: 16px;
    transition: gap .2s;
  }
  .news-card:hover .read-more { gap: 10px; }


  /* =============================================================================
     CTA BANNER — Full-width green band
     ============================================================================= */
  .cta-banner {
    background: var(--green-mid);         /* GREEN: was --red */
    padding: 64px 24px;
  }
  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .cta-text .cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 40px);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .cta-text p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.6; }

  /* White button on green background */
  .btn-white {
    background: white;
    color: var(--green-dark);             /* GREEN: was --red */
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
  }


  /* ── FOOTER ── */
  footer {
    background: #111;
    color: rgba(255,255,255,.7);
    padding: 64px 24px 0;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .footer-logo-mark {
    width: 36px; height: 36px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
  }
  .footer-logo-mark svg { width: 22px; height: 22px; fill: white; }
  .footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    color: white;
  }
  .footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
  .footer-contact { font-size: 13px; display: flex; flex-direction: column; gap: 6px; }
  .footer-contact a { color: rgba(255,255,255,.7); transition: color .2s; }
  .footer-contact a:hover { color: white; }
  .footer-social { display: flex; gap: 12px; margin-top: 20px; }
  .social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    cursor: pointer;
  }
  .social-btn:hover { background: var(--red); }
  .social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,.8); }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col li a {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    transition: color .2s, padding-left .2s;
    display: block;
  }
  .footer-col li a:hover { color: white; padding-left: 4px; }

  .footer-bottom {
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
  .footer-bottom a:hover { color: rgba(255,255,255,.8); }
  .footer-bottom-links { display: flex; gap: 20px; }


  /* ── COOKIE BAR ── */
  /* .cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    transform: translateY(0);
    transition: transform .4s;
    flex-wrap: wrap;
  }
  .cookie-bar.hidden { transform: translateY(100%); }
  .cookie-text { font-size: 13px; color: rgba(255,255,255,.8); flex: 1; }
  .cookie-text a { color: var(--red); text-decoration: underline; }
  .btn-accept {
    background: var(--red);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
  }
  .btn-accept:hover { background: #106c7b; }
 */

  /* =============================================================================
     SCROLL TO TOP — Fixed bottom-right button
     ============================================================================= */
  .scroll-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--green-mid);         /* GREEN: was --red */
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .2s;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(2,142,141,.35);
  }
  .scroll-top.visible { opacity: 1; transform: translateY(0); }
  .scroll-top:hover { background: var(--green-dark); }
  .scroll-top svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }


  /* =============================================================================
     RESPONSIVE BREAKPOINTS
     ============================================================================= */

 /* =============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* Large tablet — 1024px */
@media (max-width: 1024px) {

  /* Header */
  header nav               { display: none; }
  .hamburger               { display: flex; }
  .btn-contact             { display: none; }
  .search-btn              { display: none; }
  .header-inner            { padding: 0 20px; }

  /* Layout */
  .features-inner          { grid-template-columns: repeat(2, 1fr); }
  .feature-item            { border-bottom: 1px solid rgba(255,255,255,.2); }
  .feature-item:nth-child(2n) { border-right: none; }
  .products-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-inner            { grid-template-columns: 1fr 1fr; }
}

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

  /* Header */
  /* .top-bar-right .lang     { display: none; }
  .top-bar-inner           { padding: 0 16px; } */

  /* Mobile nav full width */
  .mobile-nav              { padding-bottom: 16px; }
  .mobile-cta              { padding: 16px; gap: 10px; }

  /* Hero */
  .hero                    { padding: 60px 0; min-height: auto; }
  .hero-content            { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .hero-image-side         { display: none; }
  .hero-stat-badges        { flex-wrap: wrap; gap: 12px; }
  .hero-text               { max-width: 100%; }

  /* Sections */
  .efficiency .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .markets-grid            { grid-template-columns: 1fr 1fr; }
  .products-grid           { grid-template-columns: 1fr 1fr; }
  .news-grid               { grid-template-columns: 1fr; }
  .news-header             { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inner               { flex-direction: column; align-items: flex-start; }
  .footer-inner            { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom           { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Utilities */
  .cookie-bar              { flex-direction: column; align-items: flex-start; }
  .scroll-top              { bottom: 20px; right: 16px; }

  /* Contact page */
  .contact-inner           { grid-template-columns: 1fr; }
  .contact-sidebar         { grid-template-columns: 1fr 1fr; }
  .hours-card              { grid-column: 1 / -1; }
}

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

  /* Header */
  /* .top-bar                 { font-size: 11px; }
  .top-bar a               { font-size: 11px; } */
  .logo-img                { height: 30px; }

  /* Sections */
  section                  { padding: 56px 16px; }
  .markets-grid            { grid-template-columns: 1fr; }
  .products-grid           { grid-template-columns: 1fr; }
  .features-inner          { grid-template-columns: 1fr; }
  .feature-item            { border-right: none; }
  .hero-ctas               { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline  { justify-content: center; width: 100%; }
  .section-title           { font-size: 32px; }
  .cta-title               { font-size: 28px; }

  /* Contact page */
  .contact-sidebar         { grid-template-columns: 1fr; }
  .form-grid               { grid-template-columns: 1fr; }
  .form-group.span-2       { grid-column: 1; }
  .form-actions            { flex-direction: column; align-items: stretch; }
  .btn-submit              { justify-content: center; }

  /* Footer */
  .footer-bottom-links     { flex-direction: column; gap: 8px; }
}

/* Small mobile — 360px */
@media (max-width: 360px) {
  .logo-img                { height: 26px; }
  .header-inner            { padding: 0 12px; }
  .about-stat-num          { font-size: 40px; }
  .hero-stat-badges        { flex-direction: column; }
}



/* =============================================================================
   CONTACT PAGE STYLES
   ============================================================================= */

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #091e24 0%, #106c7b 45%, #091e24 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(2,142,141,.2) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.page-breadcrumb .sep { opacity: .4; }
.page-breadcrumb .current { color: rgba(255,255,255,.85); }
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero-title span { color: #29a7a6; }
.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Contact Layout ── */
.contact-section {
  padding: 80px 24px;
  background: var(--light-gray);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* ── Contact Form Card ── */
.contact-form-wrap {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 48px;
}
.contact-form-head { margin-bottom: 36px; }
.contact-form-head .section-label { margin-bottom: 10px; }
.contact-form-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.contact-form-head p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* Form grid */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.span-2 { grid-column: 1 / -1; }

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
}
.form-label .req { color: var(--red); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(2,142,141,.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #bbb; font-size: 13px; }
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error { border-color: #d63; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 11px;
  pointer-events: none;
}
.form-select { padding-right: 36px; cursor: pointer; color: var(--dark); }
.form-select option { color: var(--dark); }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.field-error {
  font-size: 11px;
  color: #d63;
  display: none;
  margin-top: -2px;
}
.field-error.show { display: block; }

/* Privacy checkbox */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 0 0;
}
.checkbox-wrap input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--red);
}
.checkbox-wrap label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-wrap label a { color: var(--red); text-decoration: underline; }

/* Submit row */
.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-submit {
  background: var(--red);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-submit:hover {
  background: #106c7b;
  border-color: #106c7b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2,142,141,.35);
}
.btn-submit:hover svg { transform: translateX(3px); }
.btn-submit svg { transition: transform .2s; }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { font-size: 12px; color: #aaa; }

/* Success banner */
.form-success {
  display: none;
  background: #f0faf9;
  border: 1.5px solid #29a7a6;
  border-left: 4px solid var(--red);
  padding: 22px 24px;
  margin-top: 28px;
  gap: 14px;
  align-items: flex-start;
}
.form-success.show { display: flex; }
.success-icon { font-size: 24px; flex-shrink: 0; }
.success-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--dark);
}
.success-body p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── Sidebar ── */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Info card */
.info-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 32px;
}
.info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  width: 42px; height: 42px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-text-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.info-text-value { font-size: 14px; color: var(--dark); line-height: 1.5; }
.info-text-value a { color: var(--red); transition: color .2s; }
.info-text-value a:hover { color: #106c7b; text-decoration: underline; }

/* Hours card */
.hours-card {
  background: var(--dark);
  padding: 32px;
}
.hours-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,.55); }
.hours-time { color: white; font-weight: 600; }
.hours-closed { color: rgba(255,255,255,.3); font-style: italic; }

/* Social mini card */
.social-card {
  background: var(--dark);
  padding: 28px 32px;
}
.social-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 14px;
}
.social-card .footer-social { margin-top: 0; }
.social-card .social-btn { background: rgba(255,255,255,.15); }
.social-card .social-btn:hover { background: rgba(255,255,255,.3); }

/* ── Map Strip ── */
.map-strip {
  height: 300px;
  background: #d4eaec;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,108,123,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,108,123,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin-icon {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(2,142,141,.35);
}
.map-pin-icon svg {
  transform: rotate(45deg);
  width: 24px; height: 24px;
  fill: white;
}
.map-pin-wrap p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 4px;
}
.map-pin-wrap small { font-size: 12px; color: var(--gray); }
.map-pin-wrap .btn-primary {
  margin-top: 16px;
  font-size: 12px;
  padding: 10px 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hours-card { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .contact-section { padding: 56px 16px; }
  .contact-form-wrap { padding: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .hours-card { grid-column: auto; }
  .map-strip { height: 240px; }
  .page-hero { padding: 56px 16px; }
}
@media (max-width: 480px) {
  .form-actions { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
  .info-card, .hours-card, .social-card { padding: 24px 20px; }
}


/* =============================================================================
   ABOUT PAGE STYLES
   ============================================================================= */
.about-story { background: var(--white); }
.about-story .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-visual { position: relative; background: linear-gradient(135deg, #091e24 0%, #106c7b 100%); min-height: 460px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-story-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 40px 40px; }
.about-story-visual::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.founded-badge { position: relative; z-index: 1; text-align: center; color: white; }
.founded-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 120px; line-height: 1; color: rgba(255,255,255,.12); letter-spacing: -4px; display: block; margin-bottom: -20px; }
.founded-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 4px; text-transform: uppercase; color: #29a7a6; margin-bottom: 16px; }
.founded-tagline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 36px; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.1; max-width: 260px; margin: 0 auto; }
.about-story-text p + p { margin-top: 16px; }

.about-stats { background: var(--red); padding: 56px 24px; }
.about-stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.15); }
.about-stat-item { background: var(--red); padding: 36px 28px; text-align: center; transition: background .2s; }
.about-stat-item:hover { background: rgba(255,255,255,.1); }
.about-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 56px; color: white; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.about-stat-num sup { font-size: 28px; vertical-align: super; letter-spacing: 0; }
.about-stat-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.75); }

.about-values { background: var(--light-gray); }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); padding: 36px 28px; border-top: 3px solid var(--red); transition: transform .2s, box-shadow .2s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.value-icon { width: 52px; height: 52px; background: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

.about-certs { background: var(--dark); }
.about-certs .section-title { color: white; }
.about-certs .section-desc { color: rgba(255,255,255,.65); }
.about-certs .section-label { color: #29a7a6; }
.about-certs .section-label::before { background: #29a7a6; }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.06); }
.cert-card { background: var(--mid); padding: 32px 24px; text-align: center; transition: background .2s; }
.cert-card:hover { background: #333; }
.cert-icon { width: 56px; height: 56px; background: rgba(2,142,141,.15); border: 1px solid rgba(41,167,166,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.cert-icon svg { width: 26px; height: 26px; stroke: #29a7a6; fill: none; stroke-width: 2; }
.cert-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 6px; }
.cert-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }

@media (max-width: 1024px) {
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-story .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-visual { min-height: 280px; }
  .founded-year { font-size: 80px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 16px; }
  .timeline-dot { width: 34px; height: 34px; }
  .timeline-dot-wrap { width: 34px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .timeline-item { gap: 20px; }
}




/* =============================================================================
   PRODUCTS PAGE
   ============================================================================= */

/* ── Filter Tabs ── */
.product-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--green-dark); color: var(--green-dark); }
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

/* ── Category Block ── */
.products-page { background: var(--light-gray); }
.product-category { margin-bottom: 72px; }
.product-category:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--border);
}
.category-icon {
  width: 56px; height: 56px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.category-icon svg { width: 26px; height: 26px; fill: white; }
.category-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.category-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.category-desc { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 600px; }

/* ── Product Cards Grid ── */
.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-catalog-card {
  background: var(--white);
  border-top: 3px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--red);
}
.product-catalog-card.featured { border-color: var(--red); }

.product-catalog-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-catalog-img {
  height: 160px;
  background: linear-gradient(135deg, #091e24, #106c7b);
  display: flex; align-items: center; justify-content: center;
}
.product-catalog-icon { width: 64px; height: 64px; opacity: .25; }
.product-catalog-icon svg { width: 100%; height: 100%; fill: white; }

.product-catalog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-catalog-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.product-catalog-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-catalog-desc { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.product-catalog-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
  flex: 1;
}
.product-catalog-specs li {
  font-size: 12px;
  color: var(--dark);
  padding-left: 14px;
  position: relative;
}
.product-catalog-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .category-header { flex-direction: column; gap: 16px; }
  .products-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 12px; }
}
@media (max-width: 480px) {
  .products-catalog-grid { grid-template-columns: 1fr; }
  .product-category { margin-bottom: 48px; }
}



/* =============================================================================
   PRODUCT DETAIL PAGE
   ============================================================================= */

/* ── Hero extras ── */
.pd-hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #29a7a6;
  margin-bottom: 12px;
}
.pd-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
}

/* ── Overview ── */
.pd-overview { background: var(--white); }
.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pd-image-wrap { display: flex; flex-direction: column; gap: 12px; }
.pd-image-main {
  background: linear-gradient(135deg, #091e24, #106c7b);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pd-image-main::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.pd-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
}
.pd-image-placeholder svg {
  width: 64px; height: 64px;
  fill: rgba(255,255,255,.2);
}
.pd-image-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pd-image-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pd-thumb {
  background: var(--light-gray);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.pd-thumb:hover { border-color: var(--red); }
.pd-thumb.active { border-color: var(--red); background: #e8f4f5; }
.pd-thumb svg { width: 24px; height: 24px; fill: var(--gray); }
.pd-thumb.active svg { fill: var(--red); }

.pd-overview-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.pd-description p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Features ── */
.pd-features { background: var(--light-gray); }
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pd-feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-top: 3px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.pd-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.pd-feature-icon {
  width: 48px; height: 48px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pd-feature-icon svg { width: 24px; height: 24px; fill: white; }
.pd-feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.pd-feature-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── Specifications ── */
.pd-specs { background: var(--white); }
.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.pd-specs-table-wrap {
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  overflow: hidden;
}
.pd-specs-table { width: 100%; border-collapse: collapse; }
.pd-specs-table tr { border-bottom: 1px solid var(--border); }
.pd-specs-table tr:last-child { border-bottom: none; }
.pd-specs-table tr:nth-child(even) { background: var(--light-gray); }
.spec-label {
  padding: 14px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  width: 50%;
  border-right: 1px solid var(--border);
}
.spec-value {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gray);
}

/* ── Applications ── */
.pd-applications { background: var(--light-gray); }
.pd-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pd-app-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.pd-app-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.pd-app-icon {
  width: 44px; height: 44px;
  background: rgba(2,142,141,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pd-app-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pd-app-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pd-app-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ── Related Products ── */
.pd-related { background: var(--dark); }
.pd-related .section-label { color: #29a7a6; }
.pd-related .section-label::before { background: #29a7a6; }
.pd-related .section-title { color: white; }
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pd-related-card {
  background: var(--mid);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .2s, background .2s;
  border-top: 3px solid transparent;
}
.pd-related-card:hover { transform: translateY(-4px); background: #333; border-color: var(--red); }
.pd-related-img {
  height: 140px;
  background: linear-gradient(135deg, #091e24, #0a2a30);
  display: flex; align-items: center; justify-content: center;
}
.pd-related-img svg { width: 48px; height: 48px; fill: rgba(255,255,255,.15); }
.pd-related-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pd-related-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #29a7a6;
  margin-bottom: 6px;
}
.pd-related-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.pd-related-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; flex: 1; }
.pd-related-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 14px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-apps-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pd-hero-badges { gap: 8px; }
  .pd-badge { font-size: 11px; padding: 6px 10px; }
  .pd-features-grid { grid-template-columns: 1fr 1fr; }
  .pd-apps-grid { grid-template-columns: 1fr 1fr; }
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-image-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pd-actions { flex-direction: column; }
  .pd-actions .btn-primary,
  .pd-actions .btn-outline { justify-content: center; }
}
@media (max-width: 480px) {
  .pd-features-grid { grid-template-columns: 1fr; }
  .pd-apps-grid { grid-template-columns: 1fr; }
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-image-thumbs { grid-template-columns: repeat(4, 1fr); }
  .spec-label { font-size: 11px; padding: 12px 14px; }
  .spec-value { font-size: 12px; padding: 12px 14px; }
}