      :root {
        /* Primary Blue from logo */
        --color-primary: #2878c0;
        --color-primary-dark: #1e5f99;
        --color-primary-darker: #164a78;
        --color-primary-light: #3a8ed4;

        /* Orange accent from logo */
        --color-accent: #e87722;
        --color-accent-dark: #c9621a;
        --color-accent-light: #f08a3d;

        /* Neutrals */
        --color-midnight: #0d1b2a;
        --color-deep-blue: #1b2d45;
        --color-slate: #3d5a73;
        --color-steel: #6b6b6b;
        --color-silver: #9ca3af;
        --color-light: #e5e7eb;
        --color-white: #ffffff;

        --font-display:
          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
          Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial,
          sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
        --font-body:
          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
          Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial,
          sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font-body);
        background: var(--color-white);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Animated Background */
      .bg-grid {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          linear-gradient(rgba(40, 120, 192, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(40, 120, 192, 0.05) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
      }

      .bg-glow {
        position: fixed;
        width: 800px;
        height: 800px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(40, 120, 192, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
        z-index: 0;
        animation: float 20s ease-in-out infinite;
      }

      .bg-glow-1 {
        top: -400px;
        right: -200px;
      }
      .bg-glow-2 {
        bottom: -300px;
        left: -200px;
        animation-delay: -10s;
      }

      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(30px, 20px) scale(1.1);
        }
      }

      /* Navigation */
      .desktop-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 4rem;
        z-index: 100;
        background: var(--color-white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: box-shadow 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .desktop-nav.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
      }

      .logo .logo-svg {
        height: 52px;
        width: auto;
      }

      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }

      .nav-links a {
        color: var(--color-slate);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s ease;
        position: relative;
      }

      .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--color-primary);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-item {
        position: relative;
      }

      .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--color-white);
        min-width: 220px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        margin-top: 0.5rem;
        z-index: 1000;
      }

      .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown a {
        display: block;
        padding: 0.75rem 1.25rem;
        color: var(--color-slate);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.2s ease;
      }

      .dropdown a::after {
        display: none;
      }

      .dropdown a:hover {
        background: rgba(40, 120, 192, 0.05);
        color: var(--color-primary);
        padding-left: 1.5rem;
      }

      /* === Mega Menu — Industries === */
      .mega-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 84px; /* nav height: padding 1.5rem*2 + logo 52px ≈ 84px */
        min-width: unset;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 4rem;
        z-index: 999;
      }

      .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }

      .mega-menu-grid a {
        display: block;
        padding: 0.65rem 1rem;
        color: var(--color-slate);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 6px;
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
      }

      .mega-menu-grid a::after {
        display: none;
      }

      .mega-menu .mega-menu-grid a:hover {
        background: rgba(40, 120, 192, 0.05);
        color: var(--color-primary);
        padding-left: 1.25rem;
      }

      /* === Mobile: Industries 2-column grid inside accordion === */
      .drawer-industries-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .drawer-industries-grid .drawer-sublink {
        padding-left: 1.5rem;
        padding-right: 0.5rem;
        font-size: 0.95rem;
      }

      .drawer-industries-grid .drawer-sublink:hover {
        padding-left: 2rem;
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .nav-phone {
        color: var(--color-slate);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        transition: color 0.3s ease;
      }

      .nav-phone:hover {
        color: var(--color-primary);
      }

      .nav-cta {
        text-decoration: none;
        background: var(--color-primary);
        border: none;
        color: var(--color-white);
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .nav-cta:hover {
        background: var(--color-primary-dark);
        box-shadow: 0 4px 15px rgba(40, 120, 192, 0.3);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8rem 4rem 4rem;
        position: relative;
        z-index: 1;
        background-image: url('../hero-bg-desktop.jpg');
        background-image: url('../hero-bg-desktop.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      @media (max-width: 768px) {
        .hero-section {
          background-image: url('../hero-bg-mobile.jpg');
          background-image: url('../hero-bg-mobile.webp');
        }
      }

      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(30, 50, 70, 0.39);
        z-index: 1;
      }

      .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .hero-title {
        font-family: var(--font-body);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--color-white);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        margin: 0 0 1rem;
      }

      .hero-paragraph {
        font-family: var(--font-body);
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.6;
        color: var(--color-light);
        max-width: 600px;
        margin: 0 auto 2rem;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
      }

      .hero-cta {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--color-primary);
        color: var(--color-white);
        text-decoration: none;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .hero-cta:hover {
        background: var(--color-primary-dark);
        box-shadow: 0 4px 15px rgba(40, 120, 192, 0.3);
      }

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

      /* Intro Section */
      /* Why Choose Section */
      .intro-stats {
        padding: 4.5rem 4rem 3.5rem;
        background: var(--color-white);
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-top: 1px solid rgba(40, 120, 192, 0.12);
        border-bottom: 1px solid rgba(40, 120, 192, 0.08);
      }

      .intro-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(40, 120, 192, 0.08) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }

      .intro-stats::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(232, 119, 34, 0.06) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }

      .intro-stats-shell {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .intro-stats-header {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
      }

      .intro-stats-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 600;
        line-height: 1.1;
        color: var(--color-midnight);
        margin-bottom: 1rem;
      }

      .intro-stats-copy {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--color-slate);
      }

      .intro-stats-benefits {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
        margin: 3.25rem 0 2.75rem;
      }

      .benefit-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.1rem;
      }

      .benefit-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .benefit-icon img {
        width: 56px;
        height: 56px;
        display: block;
      }

      .benefit-icon svg {
        fill: var(--color-accent);
        width: 56px;
        height: 56px;
      }

      .benefit-title {
        font-size: 1.08rem;
        font-weight: 700;
        line-height: 1.25;
        color: var(--color-midnight);
        margin-bottom: 0.65rem;
      }

      .benefit-description {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--color-slate);
        max-width: 18rem;
      }

      .intro-stats-cta {
        display: flex;
        justify-content: center;
        margin-bottom: 2.5rem;
      }

      .intro-stats-bottom {
        padding-top: 2.5rem;
        border-top: 1px solid rgba(13, 27, 42, 0.08);
      }

      .intro-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
      }

      .intro-stat-card {
        padding: 1.5rem 1rem;
        transition: transform 0.3s ease;
      }

      .intro-stat-card:not(:last-child) {
        border-right: 1px solid rgba(13, 27, 42, 0.08);
      }

      .intro-stat-card:hover {
        transform: translateY(-3px);
      }

      .stat-number {
        display: block;
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--color-accent);
        margin-bottom: 0.5rem;
        line-height: 1;
      }

      .stat-label {
        display: block;
        font-size: 0.85rem;
        color: var(--color-slate);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .intro-stats-tagline {
        text-align: center;
        color: var(--color-slate);
        font-size: 0.95rem;
        margin-top: 2rem;
        position: relative;
        z-index: 1;
      }

      /* Energy Services Section */
      .energy-services {
        padding: 6rem 4rem 4rem;
        position: relative;
        z-index: 1;
        background: var(--color-white);
      }

      .energy-services-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .energy-services-heading {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        color: var(--color-midnight);
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 3rem;
        text-align: center;
      }

      .energy-rows {
        display: flex;
        flex-direction: column;
        gap: 5rem;
      }

      .energy-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .energy-row-text h3 {
        font-family: var(--font-display);
        font-size: clamp(1.4rem, 3vw, 1.9rem);
        color: var(--color-midnight);
        font-weight: 600;
        margin-bottom: 1.25rem;
      }

      .energy-row-text p {
        font-size: 1rem;
        color: var(--color-slate);
        line-height: 1.8;
        margin-bottom: 2rem;
      }

      .energy-row-image {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      }

      .energy-row-image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
      }

      .btn-accent {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--color-accent);
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .btn-accent:hover {
        background: var(--color-accent-dark);
        box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
        transform: translateY(-2px);
      }

      @media (max-width: 1024px) {
        .intro-stats {
          padding: 3rem 2rem;
        }

        .intro-stats-benefits {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 1.5rem;
        }

        .energy-services {
          padding: 4rem 2rem 3rem;
        }

        .energy-row {
          gap: 3rem;
        }
      }

      @media (max-width: 768px) {
        .intro-stats {
          padding: 2.5rem 1.5rem;
        }

        .intro-stats-title {
          font-size: clamp(1.8rem, 8vw, 2.3rem);
        }

        .intro-stats-copy {
          font-size: 1rem;
        }

        .intro-stats-benefits {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 1rem;
          margin: 2.25rem 0 2rem;
        }

        .benefit-icon {
          width: 56px;
          height: 56px;
          min-width: 56px;
        }

        .benefit-icon img {
          width: 48px;
          height: 48px;
        }

        .benefit-description {
          max-width: none;
        }

        .intro-stats-cta {
          margin-bottom: 2rem;
        }

        .intro-stats-bottom {
          padding-top: 2rem;
        }

        .intro-stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem;
        }

        .intro-stat-card:not(:last-child) {
          border-right: none;
        }

        .intro-stat-card:nth-child(odd) {
          border-right: 1px solid rgba(13, 27, 42, 0.08);
        }

        .energy-services {
          padding: 3rem 1.5rem 2rem;
        }

        .energy-row {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .energy-row-image img {
          height: 260px;
        }

        .energy-row .energy-row-image {
          order: -1;
        }

        .energy-row-text {
          text-align: center;
        }

        .energy-row-text p {
          text-align: left;
        }
      }

      @media (max-width: 560px) {
        .intro-stats-benefits {
          grid-template-columns: 1fr;
        }
      }

      .btn-primary {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--color-primary);
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .btn-primary:hover {
        background: var(--color-primary-dark);
        box-shadow: 0 4px 15px rgba(40, 120, 192, 0.3);
      }

      /* Industries We Serve Section */
      .industries-section {
        padding: 5rem 4rem;
        background: var(--color-white);
        position: relative;
        z-index: 1;
      }

      .industries-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .industries-heading {
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        color: var(--color-midnight);
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
      }

      .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
      }

      .industry-card {
        background: #f5f5f7;
        border-radius: 14px;
        padding: 1.5rem 1.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: default;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      }

      a.industry-card {
        cursor: pointer;
      }

      .industry-card:hover {
        background: rgba(232, 119, 34, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232, 119, 34, 0.12);
      }

      .industry-card span {
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-midnight);
      }

      @media (max-width: 1024px) {
        .industries-section {
          padding: 4rem 2rem;
        }

        .industries-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 560px) {
        .industries-section {
          padding: 3rem 1.5rem;
        }

        .industries-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Markets We Serve Section */
      .markets-section {
        padding: 4rem;
        background: var(--color-white);
        position: relative;
        z-index: 1;
      }

      .markets-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
      }

      .markets-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--color-midnight);
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 400;
        letter-spacing: -0.5px;
      }

      .markets-visual {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
        margin-bottom: 2rem;
      }

      .markets-map-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .markets-map-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
      }

      .markets-map-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
      }

      .markets-labels-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .markets-labels-container:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
      }

      .markets-labels-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px;
      }

      .markets-cta {
        text-align: center;
        margin-top: 3rem;
      }

      .markets-cta p {
        color: var(--color-slate);
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      /* Footer */
      footer {
        background: var(--color-primary-darker);
        position: relative;
        z-index: 1;
      }

      .footer-main {
        max-width: 1300px;
        margin: 0 auto;
        padding: 4rem 4rem 0;
        display: grid;
        grid-template-columns: 1.1fr 0.6fr 0.6fr 1.4fr 0.6fr;
        gap: 3rem;
        align-items: start;
      }

      /* Column 1 — Logo + tagline + address */
      .footer-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .footer-logo {
        text-decoration: none;
        display: block;
      }

      .footer-tagline {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
        max-width: 220px;
      }

      .footer-address {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .footer-address-column {
        display: flex;
        flex-direction: column;
      }

      .footer-address-heading {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.3rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }

      .footer-address-heading svg {
        width: 12px;
        height: 12px;
        fill: none;
        stroke: rgba(255, 255, 255, 0.5);
        stroke-width: 2;
        flex-shrink: 0;
      }

      .footer-address-column span {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.85rem;
        line-height: 1.6;
      }

      /* Columns 2-5 — Nav */
      .footer-right {
        display: contents;
      }

      .footer-nav {
        display: contents;
      }

      .footer-nav-column h4 {
        font-size: 0.75rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.25rem;
      }

      .footer-nav-column ul {
        list-style: none;
      }

      .footer-nav-column li {
        margin-bottom: 0.6rem;
      }

      .footer-nav-column a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease;
      }

      .footer-nav-column a:hover {
        color: var(--color-white);
      }

      /* Industries column: 2 sub-columns */
      .footer-nav-column.industries ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1.5rem;
        row-gap: 0.6rem;
      }

      .footer-nav-column.industries li {
        margin-bottom: 0;
      }

      /* Bottom strip */
      .footer-bottom {
        max-width: 1300px;
        margin: 0 auto;
        padding: 2rem 4rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .footer-bottom-left {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .social-icons {
        display: flex;
        gap: 0.6rem;
      }

      .social-icon {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.25s ease;
      }

      .social-icon:hover {
        background: var(--color-accent);
        border-color: var(--color-accent);
      }

      .social-icon svg {
        width: 16px;
        height: 16px;
        fill: rgba(255, 255, 255, 0.7);
        stroke: none;
        transition: fill 0.25s ease;
      }

      .social-icon:hover svg {
        fill: var(--color-white);
      }

      .footer-legal {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        align-items: center;
      }

      .footer-legal a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        font-size: 0.82rem;
        transition: color 0.2s ease;
      }

      .footer-legal a:hover {
        color: var(--color-white);
      }

      .footer-copy {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.82rem;
      }

      /* New footer layout: 4 nav cols, logo+address in bottom strip */
      .footer-main {
        grid-template-columns: 1fr 1fr 2fr 1fr;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
      }

      .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .footer-address {
        display: flex;
        flex-direction: row;
        gap: 2.5rem;
        flex-wrap: wrap;
      }

      .footer-bottom-meta {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      @media (max-width: 1024px) {
        .footer-main {
          grid-template-columns: 1fr 1fr;
          gap: 2.5rem;
          padding: 3rem 2rem 0;
        }
        .footer-nav-column.industries ul {
          grid-template-columns: 1fr;
        }
        .footer-bottom {
          padding: 2rem;
        }
      }

      @media (max-width: 768px) {
        .footer-main {
          grid-template-columns: 1fr 1fr;
          padding: 2.5rem 1.5rem 0;
          gap: 2rem;
        }
        .footer-tagline { max-width: none; }
        .footer-nav-column.industries {
          grid-column: 1 / -1;
        }
        .footer-nav-column.industries ul {
          grid-template-columns: 1fr 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
          padding: 1.5rem;
          gap: 1.25rem;
        }
      }

      /* Pre-footer CTA */
      .final-cta {
        padding: 5rem 4rem;
        background: var(--color-accent);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .final-cta-inner {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .final-cta h2 {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        color: var(--color-white);
        margin-bottom: 1rem;
      }

      .final-cta p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 2rem;
      }

      .final-cta .cta-btn {
        display: inline-block;
        padding: 1rem 2.5rem;
        border: 2px solid var(--color-white);
        border-radius: 8px;
        color: var(--color-white);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.25s ease, color 0.25s ease;
      }

      .final-cta .cta-btn:hover {
        background: var(--color-white);
        color: var(--color-accent);
      }

      @media (max-width: 768px) {
        .final-cta { padding: 3.5rem 1.5rem; }
      }

      /* Mobile Navigation - Hidden by default */
      .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--color-white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        justify-content: space-between;
        align-items: center;
        height: 64px;
      }

      .mobile-menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 64px;
        min-height: 64px;
      }

      .hamburger-icon {
        width: 24px;
        height: 2px;
        position: relative;
        display: block;
      }

      .hamburger-icon::before,
      .hamburger-icon::after {
        content: '';
        width: 24px;
        height: 2px;
        position: absolute;
        background-color: var(--color-midnight);
        transition: all 0.3s ease-in-out;
        left: 0;
      }

      .hamburger-icon::before {
        top: 0;
      }

      .hamburger-icon::after {
        top: 10px;
      }

      /* Active state - X icon */
      .mobile-menu-btn.active .hamburger-icon::before {
        top: 5px;
        transform: rotate(45deg);
      }

      .mobile-menu-btn.active .hamburger-icon::after {
        top: 5px;
        transform: rotate(-45deg);
      }

      .mobile-logo {
        display: flex;
        align-items: center;
        padding: 1rem;
      }

      .mobile-logo img {
        height: 40px;
        width: auto;
      }

      /* Mobile Drawer */
      .mobile-drawer {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        height: 0;
        background: var(--color-white);
        z-index: 99;
        overflow: hidden;
        transition:
          height 0.3s ease-in-out,
          box-shadow 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
      }

      .mobile-drawer.active {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
      }

      /* Hide scrollbar but keep functionality */
      .mobile-drawer::-webkit-scrollbar {
        width: 0px;
        background: transparent;
      }

      .mobile-drawer {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
      }

      .mobile-drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 0;
      }

      .drawer-link {
        padding: 1rem;
        color: var(--color-midnight);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid var(--color-light);
        transition:
          background 0.2s ease,
          color 0.2s ease;
      }

      .drawer-link:hover {
        background: rgba(40, 120, 192, 0.05);
        color: var(--color-primary);
      }

      /* Drawer Accordion */
      .drawer-item-accordion {
        border-bottom: 1px solid var(--color-light);
      }

      .drawer-accordion-btn {
        width: 100%;
        padding: 1rem;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--color-midnight);
        text-align: left;
        transition:
          background 0.2s ease,
          color 0.2s ease;
      }

      .drawer-accordion-btn:hover {
        background: rgba(40, 120, 192, 0.05);
        color: var(--color-primary);
      }

      .accordion-icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
      }

      .drawer-item-accordion.active .accordion-icon {
        transform: rotate(180deg);
      }

      .drawer-accordion-content {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows 0.35s ease;
        background: var(--color-light);
      }

      .drawer-item-accordion.active .drawer-accordion-content {
        grid-template-rows: 1fr;
      }

      .drawer-accordion-content > div {
        min-height: 0;
      }

      .drawer-sublink {
        display: block;
        padding: 0.875rem 2rem 0.875rem 3rem;
        color: var(--color-slate);
        text-decoration: none;
        font-size: 1rem;
        transition:
          background 0.2s ease,
          color 0.2s ease,
          padding-left 0.2s ease;
      }

      .drawer-sublink:hover {
        background: rgba(40, 120, 192, 0.08);
        color: var(--color-primary);
        padding-left: 3.5rem;
      }

      .drawer-phone {
        display: block;
        margin: 2rem 2rem 0.75rem 2rem;
        padding: 1rem 2rem;
        background: transparent;
        border: 2px solid var(--color-primary);
        color: var(--color-primary);
        text-decoration: none;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .drawer-phone:hover {
        background: var(--color-primary);
        color: var(--color-white);
        box-shadow: 0 4px 15px rgba(40, 120, 192, 0.3);
      }

      .drawer-cta {
        margin: 0.75rem 2rem 1rem 2rem;
        padding: 1rem 2rem;
        background: var(--color-primary);
        color: var(--color-white);
        text-decoration: none;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .drawer-cta:hover {
        background: var(--color-primary-dark);
        box-shadow: 0 4px 15px rgba(40, 120, 192, 0.3);
      }

      /* Mobile Drawer Overlay */
      .mobile-drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.3s ease,
          visibility 0.3s ease;
      }

      .mobile-drawer-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* Prevent body scroll when drawer is open */
      body.drawer-open {
        overflow: hidden;
      }

      /* Responsive */
      @media (max-width: 1400px) {
        .desktop-nav {
          padding: 1.5rem 2.5rem;
        }

        .nav-links {
          gap: 1.75rem;
        }

        .nav-links a {
          font-size: 0.9rem;
        }

        .nav-cta {
          font-size: 0.9rem;
          padding: 0.65rem 1.25rem;
        }

        .nav-actions {
          gap: 1.25rem;
        }
      }

      @media (max-width: 1200px) {
        .mega-menu {
          top: 72px;
          padding: 2rem;
        }

        .desktop-nav {
          padding: 1rem 2rem;
        }

        .nav-links {
          gap: 1.25rem;
        }

        .nav-links a {
          font-size: 0.85rem;
        }

        .nav-cta {
          padding: 0.6rem 1rem;
          font-size: 0.85rem;
        }

        .nav-actions {
          gap: 1rem;
        }
      }

      @media (max-width: 1024px) {
        .desktop-nav {
          display: none !important;
        }

        .mobile-nav {
          display: flex !important;
        }

        .mobile-drawer {
          top: 62px;
        }

        .hero {
          padding: 6rem 2rem 3rem;
        }

        .hero-content {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .services {
          padding: 6rem 2rem;
        }

        .services-grid {
          grid-template-columns: 1fr;
        }

        .why-us {
          padding: 6rem 2rem;
        }

        .why-us-inner {
          grid-template-columns: 1fr;
          gap: 4rem;
        }

        .process {
          padding: 6rem 2rem;
        }

        .cta {
          padding: 6rem 2rem;
        }

        .cta-inner {
          padding: 3rem 2rem;
        }

        .cta-form {
          flex-direction: column;
        }

        .markets-visual {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .footer-main {
          grid-template-columns: 1fr;
        }

        .footer-left,
        .footer-right {
          padding: 3rem 2rem;
        }

        .footer-nav {
          gap: 2rem;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .hero {
          padding: 6rem 1.5rem 2rem;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-paragraph {
          font-size: 1rem;
        }

        .metric-cards {
          grid-template-columns: 1fr;
        }

        .metric-card.featured {
          grid-column: span 1;
        }

        .trusted-logos {
          gap: 2rem;
        }
        .footer-nav {
          flex-direction: column;
          gap: 2rem;
        }

        .footer-logo-section {
          flex-direction: column;
          align-items: flex-start;
        }

        .newsletter-form {
          max-width: 100%;
        }

        .footer-legal {
          gap: 1rem;
        }
      }
      /* FAQ Section */
      .faq-section {
        padding: 5rem 4rem;
        background: var(--color-white);
        position: relative;
        z-index: 1;
      }

      .faq-section-container {
        max-width: 900px;
        margin: 0 auto;
      }

      .faq-section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .faq-section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--color-midnight);
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: -0.5px;
      }

      .faq-section-subtitle {
        color: var(--color-slate);
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
      }

      .faq-item {
        background: var(--color-white);
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: box-shadow 0.3s ease;
      }

      .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      }

      .faq-question {
        width: 100%;
        padding: 1.5rem 2rem;
        background: none;
        border: none;
        text-align: left;
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--color-midnight);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color 0.3s ease;
      }

      .faq-question:hover {
        color: var(--color-primary);
      }

      .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
        stroke: var(--color-primary);
        stroke-width: 2;
        fill: none;
      }

      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }

      .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows 0.35s ease;
      }

      .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
      }

      .faq-answer-inner {
        min-height: 0;
        padding: 0 2rem;
        transition: padding 0.35s ease;
      }

      .faq-item.active .faq-answer-inner {
        padding: 0 2rem 1.5rem 2rem;
      }

      .faq-answer p {
        color: var(--color-slate);
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
      }

      @media (max-width: 1024px) {
        .faq-section {
          padding: 4rem 2rem;
        }
      }

      @media (max-width: 768px) {
        .faq-section {
          padding: 3rem 1.5rem;
        }

        .faq-question {
          padding: 1.25rem 1.5rem;
          font-size: 1rem;
        }

        .faq-answer-inner {
          padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer-inner {
          padding: 0 1.5rem 1.25rem 1.5rem;
        }
      }
