:root {
    --fe-black: #0D0D0D;
    --fe-charcoal: #1E1E1E;
    --fe-gold: #D4AF37;
    --fe-gold-dark: #B8860B;
    --fe-gold-light: #F2D675;
    --fe-white: #FFFFFF;
    --fe-gray-light: #F5F5F5;
    --fe-gray-medium: #A8A8A8;
    --fe-gray-dark: #3A3A3A;
    --fe-success: #3DA858;
    --fe-error: #C94B4B;
    --fe-info: #4A90B8;
    --fe-overlay: rgba(13, 13, 13, 0.75);

    --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --space-1: 4px;  --space-2: 8px;  --space-3: 16px;
    --space-4: 24px; --space-5: 32px; --space-6: 48px;
    --space-7: 64px; --space-8: 96px; --space-9: 128px;

    --radius-sm: 4px;  --radius-md: 8px;  --radius-lg: 16px;  --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 14px rgba(212, 175, 55, 0.3);
    --shadow-gold-hover: 0 8px 24px rgba(212, 175, 55, 0.45);

    --gradient-gold: linear-gradient(90deg, #B8860B 0%, #D4AF37 50%, #F2D675 100%);

    --container-max: 1200px;
  }

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

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--fe-white);
    background: var(--fe-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  img, video, iframe { max-width: 100%; height: auto; display: block; }

  a { overflow-wrap: break-word; word-break: break-word; }
  p, h1, h2, h3, h4, h5, h6, li, span { overflow-wrap: break-word; }

  a { color: var(--fe-gold); text-decoration: none; transition: color 0.2s ease; }
  a:hover { color: var(--fe-gold-light); }

  :focus-visible {
    outline: 3px solid var(--fe-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
  }

  .skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: var(--fe-gold);
    color: var(--fe-black);
    padding: 10px 16px;
    z-index: 1000;
    border-radius: var(--radius-sm);
    font-weight: 600;
  }
  .skip-link:focus { top: 8px; }

  h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

  .h1 { font-weight: 800; font-size: 36px; letter-spacing: -0.02em; }
  .h2 { font-weight: 700; font-size: 28px; letter-spacing: -0.01em; }
  .h3 { font-weight: 600; font-size: 22px; }
  .h4 { font-weight: 600; font-size: 18px; }

  .eyebrow {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fe-gold);
    display: inline-block;
    margin-bottom: var(--space-3);
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--fe-gold);
    margin-right: 10px;
    vertical-align: middle;
    transform: translateY(-1px);
  }

  .body-large { font-size: 16px; line-height: 1.6; }

  .gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: var(--space-3) 0 var(--space-4);
    border-radius: var(--radius-sm);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    line-height: 1.2;
  }

  .btn-primary {
    background: linear-gradient(90deg, #B8860B, #D4AF37);
    color: var(--fe-black);
    box-shadow: var(--shadow-gold);
  }
  .btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
    background: linear-gradient(90deg, #D4AF37, #F2D675);
    color: var(--fe-black);
  }

  .btn-secondary {
    background: transparent;
    color: var(--fe-white);
    border: 1.5px solid var(--fe-gold);
  }
  .btn-secondary:hover, .btn-secondary:focus-visible {
    background: var(--fe-gold);
    color: var(--fe-black);
  }

  .btn-link {
    color: var(--fe-gold);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 8px 0;
  }
  .btn-link .arrow { transition: transform 0.2s ease; }
  .btn-link:hover .arrow, .btn-link:focus-visible .arrow { transform: translateX(4px); }
  .btn-link:hover, .btn-link:focus-visible { color: var(--fe-gold-light); }

  /* ========== TOP CONTACT BAR ========== */
  .top-bar {
    background: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--fe-gray-medium);
    font-size: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-3);
    padding: 8px 0;
    flex-wrap: wrap;
  }
  .top-bar a { color: var(--fe-gray-medium); }
  .top-bar a:hover { color: var(--fe-gold); }
  .top-bar-left, .top-bar-right {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    flex-wrap: wrap;
  }
  .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .top-bar-item .icon { color: var(--fe-gold); }

  /* ========== HEADER / NAV ========== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--fe-black);
    border-bottom: 1px solid var(--fe-gray-dark);
  }

  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: var(--space-3);
  }

  .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
  }
  .logo:hover, .logo:focus-visible { opacity: 0.85; }
  .logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
  }

  .nav-list {
    list-style: none;
    display: none;
    gap: 18px;
    align-items: center;
  }
  .nav-list a {
    color: var(--fe-white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fe-gold);
    transition: width 0.25s ease;
  }
  .nav-list a:hover::after, .nav-list a:focus-visible::after { width: 100%; }
  .nav-list a:hover, .nav-list a:focus-visible { color: var(--fe-gold); }

  /* ===== Nav dropdown (Services) ===== */
  .nav-list .has-dropdown { position: relative; display: flex; align-items: center; }
  .nav-dropdown-toggle {
    background: none; border: 0; cursor: pointer;
    color: var(--fe-white); font-family: var(--font-display);
    font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
    padding: 10px 0; min-height: 44px;
    display: inline-flex; align-items: center; gap: 7px;
  }
  .nav-dropdown-toggle:hover,
  .has-dropdown:focus-within > .nav-dropdown-toggle { color: var(--fe-gold); }
  .nav-dropdown-toggle::after {
    content: ''; width: 6px; height: 6px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px); transition: transform 0.2s ease;
  }
  .has-dropdown:hover .nav-dropdown-toggle::after,
  .has-dropdown:focus-within .nav-dropdown-toggle::after,
  .has-dropdown.open .nav-dropdown-toggle::after { transform: rotate(-135deg) translateY(1px); }
  .has-dropdown::before {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
  }
  .nav-dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 214px; list-style: none; margin: 0; padding: 8px;
    background: var(--fe-charcoal); border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-md); box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; z-index: 200;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown,
  .has-dropdown.open .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown li { display: block; }
  .nav-dropdown a {
    display: flex; padding: 9px 12px; min-height: 0;
    border-radius: var(--radius-sm); font-size: 13px; white-space: nowrap;
  }
  .nav-dropdown a::after { display: none; }
  .nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: var(--fe-black); color: var(--fe-gold); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .lang-toggle {
    display: flex;
    gap: 2px;
    background: var(--fe-charcoal);
    border: 1px solid var(--fe-gray-dark);
    border-radius: var(--radius-sm);
    padding: 3px;
  }
  .lang-toggle button {
    background: transparent;
    border: none;
    color: var(--fe-gray-medium);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 8px;
    min-width: 36px;
    min-height: 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .lang-toggle button:hover { color: var(--fe-white); }
  .lang-toggle button.active {
    background: var(--fe-gold);
    color: var(--fe-black);
  }

  .nav-cta {
    display: none;
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    min-height: 40px;
  }

  .menu-toggle {
    background: transparent;
    border: 1.5px solid var(--fe-gold);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fe-gold);
    transition: all 0.25s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    background: var(--fe-charcoal);
    border-top: 1px solid var(--fe-gray-dark);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav ul { list-style: none; padding: var(--space-3) 0; }
  .mobile-nav li { border-bottom: 1px solid var(--fe-gray-dark); }
  .mobile-nav li:last-child { border-bottom: none; }
  .mobile-nav a {
    display: block;
    color: var(--fe-white);
    padding: 16px var(--space-4);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    min-height: 44px;
  }
  .mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--fe-black); color: var(--fe-gold); }
  .mobile-nav-cta { padding: var(--space-3) var(--space-4); }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    padding: var(--space-7) 0 var(--space-7);
    background: var(--fe-black);
    overflow: hidden;
    isolation: isolate;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.65) 0%, rgba(13, 13, 13, 0.85) 100%),
      radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12), transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.08), transparent 55%);
  }
  .hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  }
  .hero .container { position: relative; z-index: 1; }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--fe-gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
  }
  .hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fe-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  }

  .hero-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    background: linear-gradient(180deg, #FFFFFF 0%, #E5E5E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-headline .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--fe-gray-medium);
    max-width: 720px;
    margin-bottom: var(--space-5);
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    list-style: none;
    max-width: 700px;
  }
  .trust-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 500;
  }
  .trust-badges .badge-icon {
    color: var(--fe-gold);
    font-size: 16px;
    flex-shrink: 0;
  }

  /* ========== SOCIAL PROOF BAR ========== */
  .social-bar {
    background: var(--fe-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--space-3) 0;
    overflow: hidden;
  }
  .social-bar-inner {
    color: var(--fe-white);
    font-size: 13px;
    font-family: var(--font-display);
    font-weight: 500;
    text-align: center;
    line-height: 1.7;
  }
  .social-bar-inner .stars { color: var(--fe-gold); margin-right: 4px; }
  .social-bar-inner .sep { color: var(--fe-gold); margin: 0 10px; opacity: 0.6; }

  /* Moving carousel (marquee) */
  .social-marquee { width: 100%; overflow: hidden; }
  .social-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: social-scroll 40s linear infinite;
  }
  .social-bar .social-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 20px;
  }
  .social-marquee:hover .social-track,
  .social-marquee:focus-within .social-track { animation-play-state: paused; }
  @keyframes social-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .social-track { animation: none; transform: none; }
  }

  /* ========== SECTIONS ========== */
  section { padding: var(--space-7) 0; }
  .section-header { text-align: center; margin-bottom: var(--space-6); }
  .section-header .gold-line { margin-left: auto; margin-right: auto; }
  .section-header .body-large { color: var(--fe-gray-medium); max-width: 820px; margin: 0 auto; }

  .section-light { background: var(--fe-white); color: var(--fe-black); }
  .section-light .h2, .section-light .h3, .section-light .h4 { color: var(--fe-black); }
  .section-light .body-large,
  .section-light .step-sub { color: var(--fe-gray-dark); }

  .section-cream { background: var(--fe-gray-light); color: var(--fe-black); }
  .section-cream .h2, .section-cream .h3, .section-cream .h4 { color: var(--fe-black); }
  .section-cream .body-large { color: var(--fe-gray-dark); }

  .section-dark-alt { background: var(--fe-charcoal); }

  /* Light section overrides */
  .section-light .why-list li,
  .section-cream .why-list li {
    color: var(--fe-black);
    border-bottom: 1px solid #E5E5E5;
  }
  .section-light .why-content p,
  .section-cream .why-content p { color: var(--fe-gray-dark); }

  .section-light .callout-box,
  .section-cream .callout-box {
    background: #FFFBEC;
    color: var(--fe-black);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-left: 4px solid var(--fe-gold);
    box-shadow: var(--shadow-sm);
  }

  .section-light .step,
  .section-cream .step {
    background: var(--fe-white);
    border: 1px solid #E5E5E5;
    box-shadow: var(--shadow-sm);
  }
  .section-light .step:hover,
  .section-cream .step:hover {
    border-color: var(--fe-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  .section-light .step .h4,
  .section-cream .step .h4 { color: var(--fe-black); }
  .section-light .step p,
  .section-cream .step p { color: var(--fe-gray-dark); }

  .section-light .faq-item,
  .section-cream .faq-item {
    background: var(--fe-white);
    border: 1px solid #E5E5E5;
    box-shadow: var(--shadow-sm);
  }
  .section-light .faq-item[open],
  .section-cream .faq-item[open] { border-color: var(--fe-gold); }
  .section-light .faq-question,
  .section-cream .faq-question { color: var(--fe-black); }
  .section-light .faq-question:hover,
  .section-cream .faq-question:hover { background: #FFFBEC; }
  .section-light .faq-answer,
  .section-cream .faq-answer { color: var(--fe-gray-dark); }

  .section-light .area-tags li,
  .section-cream .area-tags li {
    background: var(--fe-white);
    color: var(--fe-black);
    border: 1px solid #E5E5E5;
  }
  .section-light .area-tags li:hover,
  .section-cream .area-tags li:hover {
    border-color: var(--fe-gold);
    color: var(--fe-gold-dark);
  }
  .section-light .area-content > p,
  .section-cream .area-content > p { color: var(--fe-gray-dark); }

  .section-light .about-content p,
  .section-cream .about-content p { color: var(--fe-gray-dark); }
  .section-light .value,
  .section-cream .value { color: var(--fe-black); }
  .section-light .value-icon,
  .section-cream .value-icon {
    background: var(--fe-white);
    box-shadow: var(--shadow-sm);
  }
  .section-light .value .h4,
  .section-cream .value .h4 { color: var(--fe-black); }
  .section-light .value p,
  .section-cream .value p { color: var(--fe-gray-dark); }

  .section-light .section-header .body-large,
  .section-cream .section-header .body-large { color: var(--fe-gray-dark); }

  /* ========== WHY NOW / OVERVIEW ========== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--space-5);
    align-items: start;
  }
  .why-content p { color: var(--fe-gray-medium); margin-bottom: var(--space-3); font-size: 16px; }
  .why-list {
    list-style: none;
    margin-top: var(--space-3);
  }
  .why-list li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--fe-gray-dark);
    color: var(--fe-white);
    font-size: 15px;
    line-height: 1.55;
  }
  .why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--fe-gold);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
  }
  .why-list li strong { color: var(--fe-white); font-weight: 700; }
  .section-light .why-list li strong,
  .section-cream .why-list li strong { color: var(--fe-black); }

  .callout-box {
    background: var(--fe-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--fe-gold);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-top: var(--space-5);
    color: var(--fe-white);
    font-size: 15px;
    line-height: 1.6;
    box-shadow: var(--shadow-md);
  }
  .callout-box strong { color: var(--fe-gold); }

  /* ========== INDUSTRIES GRID ========== */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: var(--space-3);
  }
  .industry-tile {
    background: var(--fe-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  .industry-tile:hover {
    border-color: var(--fe-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .industry-tile-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-black);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-sm);
  }
  .industry-tile-text {
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
  }
  .industry-tile-text .sub {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: var(--fe-gray-medium);
    margin-top: 3px;
  }

  /* ========== BENEFITS / SERVICES CARDS ========== */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-4);
  }
  .card {
    background: var(--fe-charcoal);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .card:hover, .card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-lg);
  }
  .card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--fe-black);
    border: 1.5px solid var(--fe-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto var(--space-3);
    transition: transform 0.3s ease;
  }
  .card:hover .card-icon { transform: scale(1.05); }
  .card .h3 { color: var(--fe-white); margin-bottom: 6px; text-align: center; }
  .card .card-subtitle {
    color: var(--fe-gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: var(--space-3);
    text-align: center;
  }
  .card-desc { color: var(--fe-gray-medium); margin-bottom: var(--space-3); font-size: 15px; text-align: center; }
  .card-list {
    list-style: none;
    margin-bottom: var(--space-4);
    flex-grow: 1;
  }
  .card-list li {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    color: var(--fe-white);
    font-size: 14px;
  }
  .card-list li::before {
    content: '✓';
    color: var(--fe-gold);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ========== LIFECYCLE LIST (Solar Farms) ========== */
  .lifecycle-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-3);
    margin: var(--space-5) 0;
  }
  .lifecycle-list li {
    background: var(--fe-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--fe-gold);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
  }
  /* Desktop: center the 7th (last) item when it sits alone on its row */
  @media (min-width: 768px) {
    .lifecycle-list li:nth-child(7):last-child {
      grid-column: 1 / -1;
      justify-self: center;
      width: 100%;
      max-width: 380px;
    }
  }
  .lifecycle-list li:hover {
    border-left-color: var(--fe-gold-light);
    transform: translateX(4px);
  }
  .lifecycle-list li .ll-icon {
    font-size: 20px;
    flex-shrink: 0;
  }

  /* ========== HOW IT WORKS / PROCESS ========== */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: var(--space-4);
    counter-reset: step;
  }
  /* Desktop: switch to flex so the last (incomplete) row centers automatically */
  @media (min-width: 1024px) {
    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .steps > .step {
      flex: 0 1 calc((100% - 3 * var(--space-4)) / 4);
      min-width: 220px;
    }
  }
  .step {
    background: var(--fe-charcoal);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    border: 1px solid var(--fe-gray-dark);
    position: relative;
    transition: all 0.3s ease;
  }
  .step:hover {
    border-color: var(--fe-gold);
    transform: translateY(-3px);
  }
  .step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }
  .step .h4, .step p { text-align: center; }
  .step-num {
    counter-increment: step;
    background: var(--gradient-gold);
    color: var(--fe-black);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
  }
  .step-num::before { content: counter(step); }
  .step-icon { font-size: 24px; }
  .step .h4 { color: var(--fe-white); margin-bottom: 6px; }
  .step p { color: var(--fe-gray-medium); font-size: 14px; }

  .steps-cta {
    text-align: center;
    margin-top: var(--space-5);
  }

  /* ========== TRACK RECORD STATS ========== */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: var(--space-4);
  }
  .stat-box {
    background: var(--fe-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-4);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .stat-box:hover {
    border-color: var(--fe-gold);
    transform: translateY(-4px);
  }
  .stat-box .stat-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
  }
  .stat-box .stat-label {
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .stat-box .stat-sub {
    color: var(--fe-gray-medium);
    font-size: 12px;
    margin-top: 4px;
  }

  /* ========== INCENTIVES TABLE (kept; reused for Financing) ========== */
  .incentives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }
  .incentive-card {
    background: var(--fe-white);
    border: 1px solid #E5E5E5;
    border-left: 4px solid var(--fe-gold);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  }
  .incentive-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--fe-gold-dark);
  }
  .incentive-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--fe-black);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .incentive-card p { color: var(--fe-gray-dark); font-size: 14px; }

  .stat-banner {
    background: var(--fe-black);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    text-align: center;
    color: var(--fe-white);
    margin-bottom: var(--space-5);
    border: 1px solid rgba(212, 175, 55, 0.3);
  }
  .stat-banner p { font-size: 16px; line-height: 1.6; }
  .stat-banner .gold-stat {
    color: var(--fe-gold);
    font-family: var(--font-display);
    font-weight: 800;
  }

  .center-cta { text-align: center; }

  /* ========== ABOUT ========== */
  .about-content { max-width: 820px; margin: 0 auto; text-align: center; }
  .about-content p { color: var(--fe-gray-medium); margin-bottom: var(--space-3); font-size: 16px; }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
  .value {
    text-align: center;
    padding: var(--space-4);
  }
  .value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--fe-charcoal);
    border: 1.5px solid var(--fe-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto var(--space-3);
  }
  .value .h4 { color: var(--fe-white); margin-bottom: 6px; }
  .value p { color: var(--fe-gray-medium); font-size: 14px; }

  /* ========== TESTIMONIALS ========== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: var(--space-4);
  }
  .testimonial {
    background: var(--fe-white);
    color: var(--fe-black);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .testimonial-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fe-gold-dark);
    margin-bottom: var(--space-3);
  }
  .testimonial-stars {
    color: var(--fe-gold);
    font-size: 16px;
    margin-bottom: var(--space-3);
    letter-spacing: 2px;
  }
  .testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fe-gray-dark);
    margin-bottom: var(--space-3);
    flex-grow: 1;
  }
  .testimonial-divider {
    width: 24px;
    height: 2px;
    background: var(--fe-gold);
    margin-bottom: var(--space-3);
  }
  .testimonial-author {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--fe-black);
  }
  .testimonial-meta {
    font-size: 13px;
    color: var(--fe-gray-medium);
    margin-top: 2px;
  }

  /* ========== FAQ ========== */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: var(--fe-charcoal);
    border: 1px solid var(--fe-gray-dark);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: border-color 0.25s ease;
  }
  .faq-item[open] { border-color: var(--fe-gold); }
  .faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    min-height: 44px;
    transition: background 0.25s ease;
  }
  .faq-question::-webkit-details-marker { display: none; }
  .faq-question:hover { background: rgba(212, 175, 55, 0.05); }
  .faq-icon {
    color: var(--fe-gold);
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
  }
  .faq-item[open] .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 var(--space-4) var(--space-4);
    color: var(--fe-gray-medium);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
  }

  /* ========== PROJECTS GALLERY ========== */
  .projects-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-5);
  }
  .filter-btn {
    background: transparent;
    border: 1.5px solid var(--fe-gray-dark);
    color: var(--fe-gray-medium);
    padding: 10px 18px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    white-space: nowrap;
  }
  .filter-btn:hover, .filter-btn:focus-visible {
    border-color: var(--fe-gold);
    color: var(--fe-white);
  }
  .filter-btn.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--fe-black);
    box-shadow: var(--shadow-gold);
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-4);
  }
  .project-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--fe-charcoal);
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
  }
  .project-card.hidden { display: none; }
  .project-card:hover, .project-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.5);
  }
  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .project-card:hover img,
  .project-card:focus-within img {
    transform: scale(1.06);
  }
  .project-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: var(--space-3);
    gap: var(--space-2);
  }
  .project-state {
    background: var(--gradient-gold);
    color: var(--fe-black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .project-meta {
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }

  /* ========== SERVICE AREA ========== */
  .area-content { text-align: center; max-width: 960px; margin: 0 auto; }
  .area-content > p { color: var(--fe-gray-medium); margin-bottom: var(--space-4); font-size: 16px; }
  .area-region {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    margin: var(--space-4) 0 var(--space-5);
  }
  .area-region-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fe-gold);
  }
  .area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
  }
  .area-tags li {
    background: var(--fe-charcoal);
    color: var(--fe-white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-display);
    font-weight: 500;
    border: 1px solid var(--fe-gray-dark);
    transition: all 0.2s ease;
  }
  .area-tags li:hover {
    border-color: var(--fe-gold);
    color: var(--fe-gold);
  }

  /* ========== CONTACT FORM ========== */
  .form-section {
    background:
      radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08), transparent 60%),
      var(--fe-black);
  }
  .form-wrapper {
    max-width: 760px;
    margin: 0 auto;
    background: var(--fe-charcoal);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: var(--space-5);
    box-shadow: var(--shadow-lg);
  }
  .progress-bar {
    height: 6px;
    background: var(--fe-gray-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-3);
  }
  .progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    width: 33%;
    transition: width 0.4s ease;
    border-radius: var(--radius-full);
  }
  .progress-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fe-gray-medium);
    margin-bottom: var(--space-4);
  }
  .progress-meta .step-label { color: var(--fe-gold); }
  .form-step { display: none; }
  .form-step.active { display: block; animation: fadeIn 0.4s ease; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .form-step .h3 { color: var(--fe-white); margin-bottom: 6px; }
  .form-step .step-sub { color: var(--fe-gray-medium); margin-bottom: var(--space-4); font-size: 15px; }
  .form-group { margin-bottom: var(--space-4); }
  .form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
  .form-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fe-gray-medium);
    margin-bottom: 8px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: var(--fe-white);
    border: 1px solid var(--fe-gray-medium);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fe-black);
    min-height: 52px;
    transition: all 0.2s ease;
  }
  .form-textarea { min-height: 96px; resize: vertical; font-family: var(--font-body); }
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border: 1.5px solid var(--fe-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  }
  .form-input.error { border-color: var(--fe-error); background: #FFF5F5; }
  .form-error-msg {
    color: var(--fe-error);
    font-size: 13px;
    margin-top: 4px;
    display: none;
  }
  .form-input.error + .form-error-msg { display: block; }
  .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
  }
  .choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: var(--space-3);
  }
  .choice-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 16px 18px;
    background: var(--fe-black);
    border: 1.5px solid var(--fe-gray-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 56px;
    transition: all 0.2s ease;
    color: var(--fe-white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
  }
  .choice-card input { position: absolute; opacity: 0; }
  .choice-card:hover { border-color: var(--fe-gold); }
  .choice-card .choice-emoji { font-size: 22px; flex-shrink: 0; }
  .choice-card > span[data-i18n] {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .choice-card.selected,
  .choice-card:has(input:checked) {
    border-color: var(--fe-gold);
    background: rgba(212, 175, 55, 0.08);
  }
  .choice-card.selected .choice-check,
  .choice-card:has(input:checked) .choice-check {
    background: var(--fe-gold);
    border-color: var(--fe-gold);
    color: var(--fe-black);
  }
  .choice-check {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--fe-gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-weight: 700;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .form-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    margin-top: var(--space-5);
  }
  .form-actions .btn { min-width: 120px; }
  .btn-back {
    background: transparent;
    color: var(--fe-white);
    border: 1px solid var(--fe-gray-dark);
  }
  .btn-back:hover { border-color: var(--fe-gold); color: var(--fe-gold); }
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: var(--space-3) 0;
    color: var(--fe-gray-medium);
    font-size: 14px;
    cursor: pointer;
  }
  .form-checkbox input {
    width: 22px;
    height: 22px;
    accent-color: var(--fe-gold);
    margin-top: 2px;
    flex-shrink: 0;
  }
  .form-trust-note {
    color: var(--fe-gray-medium);
    font-size: 13px;
    text-align: center;
    margin-top: var(--space-3);
    line-height: 1.6;
  }
  .form-success {
    display: none;
    text-align: center;
    padding: var(--space-5) var(--space-3);
  }
  .form-success.active { display: block; animation: fadeIn 0.5s ease; }
  .success-icon {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    color: var(--fe-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 48px;
    font-weight: 800;
    box-shadow: var(--shadow-gold-hover);
  }
  .form-success .h2 { color: var(--fe-white); margin-bottom: var(--space-3); }
  .form-success p { color: var(--fe-gray-medium); margin-bottom: var(--space-4); font-size: 16px; }
  .form-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
  }

  /* ========== FOOTER ========== */
  .site-footer {
    background: var(--fe-charcoal);
    color: var(--fe-white);
    padding: var(--space-6) 0 var(--space-3);
    border-top: 1px solid var(--fe-gray-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: var(--space-5) var(--space-4);
    margin-bottom: var(--space-4);
  }
  .footer-col h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fe-gold);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin: 0; }
  .footer-col ul a {
    color: var(--fe-gray-medium);
    font-size: 14px;
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 4px 0;
    line-height: 1.3;
    transition: color 0.2s ease, padding 0.2s ease;
  }
  .footer-col ul a:hover, .footer-col ul a:focus-visible {
    color: var(--fe-gold);
    padding-left: 6px;
  }
  .footer-info {
    color: var(--fe-gray-medium);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 200px;
    margin-bottom: 6px;
    object-fit: contain;
  }
  .footer-info .footer-tag {
    color: var(--fe-gold);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .footer-info a {
    color: var(--fe-white);
    transition: color 0.2s ease;
  }
  .footer-info a:hover, .footer-info a:focus-visible { color: var(--fe-gold); }
  .footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
  }
  .footer-contact-line .icon {
    color: var(--fe-gold);
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
  }
  .footer-states {
    color: var(--fe-gray-medium);
    font-size: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-top: 6px;
  }
  .footer-social-langs {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .footer-langs-list {
    color: var(--fe-gray-medium);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: var(--space-3);
  }
  .footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 36px;
    padding: 6px 12px;
    border: 1px solid var(--fe-gray-dark);
    border-radius: var(--radius-sm);
    color: var(--fe-white);
    font-size: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
  }
  .footer-social a:hover, .footer-social a:focus-visible {
    border-color: var(--fe-gold);
    color: var(--fe-gold);
    background: rgba(212, 175, 55, 0.06);
  }
  .footer-legal {
    border-top: 1px solid var(--fe-gray-dark);
    padding-top: var(--space-3);
    color: var(--fe-gray-medium);
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
  }
  .footer-legal a { color: var(--fe-gray-medium); white-space: nowrap; }
  .footer-legal a:hover, .footer-legal a:focus-visible { color: var(--fe-gold); }

  /* ========== REVEAL ========== */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ========== TABLET ========== */
  @media (min-width: 768px) {
    .container { padding: 0 var(--space-5); }
    .h1 { font-size: 48px; }
    .h2 { font-size: 36px; }
    .h3 { font-size: 26px; }
    .h4 { font-size: 20px; }
    section { padding: var(--space-8) 0; }
    .hero { padding: var(--space-8) 0; }
    .hero-headline { font-size: 52px; }
    .hero-sub { font-size: 18px; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-4); }
    .trust-badges li { font-size: 14px; }
    .why-grid { gap: var(--space-6); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .nav-cta { display: inline-flex; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-box .stat-value { font-size: 52px; }
  }

  /* ========== DESKTOP ========== */
  @media (min-width: 1024px) {
    .container { padding: 0 var(--space-6); }
    .h1 { font-size: 56px; }
    .h2 { font-size: 40px; }
    section { padding: var(--space-8) 0; }
    .hero { padding: var(--space-9) 0; }
    .hero-headline { font-size: 60px; }
    .stat-box .stat-value { font-size: 56px; }
    .incentives-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (min-width: 1180px) {
    .nav-list { display: flex; }
    .menu-toggle { display: none; }
  }
  @media (min-width: 1400px) {
    .nav-list { gap: 24px; }
    .nav-list a { font-size: 14px; }
    .nav-cta { padding: 12px 20px; font-size: 13px; min-height: 44px; }
  }

  @media (min-width: 768px) {
    .logo img { height: 52px; }
  }
  @media (min-width: 1180px) {
    .logo img { height: 56px; max-width: 280px; }
  }

  @media (max-width: 767px) {
    .hero-ctas .btn { width: 100%; }
    .form-actions .btn { flex: 1; }
    .top-bar { display: none; }

    /* ========== COMPACT MOBILE FOOTER ========== */
    .site-footer {
      padding: var(--space-5) 0 var(--space-3);
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: var(--space-4);
      margin-bottom: var(--space-3);
    }
    .footer-col h4 {
      font-size: 11px;
      margin-bottom: 10px;
      padding-bottom: 6px;
      letter-spacing: 0.16em;
    }

    /* Brand contact: tighter spacing */
    .footer-info { gap: 4px; line-height: 1.4; font-size: 13px; }
    .footer-info .footer-brand { font-size: 15px; margin-bottom: 2px; }
    .footer-info .footer-tag { font-size: 11px; margin-bottom: 4px; }
    .footer-contact-line { padding: 2px 0; }
    .footer-contact-line .icon { font-size: 12px; }
    .footer-states { font-size: 11px; margin-top: 4px; }

    /* Services + Quick Links: turn vertical lists into horizontal chip rows */
    .footer-col:not(:first-child) ul {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 12px;
    }
    .footer-col:not(:first-child) ul li {
      border: none;
    }
    .footer-col:not(:first-child) ul a {
      min-height: 0;
      padding: 2px 0;
      font-size: 13px;
      line-height: 1.4;
    }
    .footer-col:not(:first-child) ul a:hover,
    .footer-col:not(:first-child) ul a:focus-visible {
      padding-left: 0;
    }

    /* Languages line: compact */
    .footer-social-langs { gap: 10px; }
    .footer-langs-list { font-size: 11px; margin-bottom: 8px; }

    /* Social buttons: smaller pills */
    .footer-social { gap: 6px; }
    .footer-social a {
      padding: 5px 10px;
      font-size: 10px;
      min-height: 30px;
      min-width: 0;
      letter-spacing: 0.03em;
    }

    /* Legal footer: tighter */
    .footer-legal {
      font-size: 10px;
      line-height: 1.5;
      padding-top: var(--space-3);
    }
  }

  /* ============================================================
     CONTENT PAGES: layout components (about, faq, services)
     ============================================================ */
  .page-hero { padding-top: calc(var(--space-8) + 20px); }
  .page-hero .section-header { margin-bottom: var(--space-5); }
  .prose { max-width: 720px; margin-left: auto; margin-right: auto; }
  .prose > p { margin-bottom: var(--space-4); }
  .prose > p:last-child { margin-bottom: 0; }
  .page-hero .prose { text-align: center; }

  .btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
  .page-hero .btn-row { justify-content: center; }

  /* Feature cards grid */
  .feature-grid {
    display: grid; gap: var(--space-4);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1180px; margin: 0 auto;
  }
  /* Force 4 across on wide screens for four-item scope grids */
  @media (min-width: 1080px) {
    .feature-grid { grid-template-columns: repeat(4, 1fr); }
    .feature-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
    .feature-grid.grid-6 { grid-template-columns: repeat(3, 1fr); }
  }
  .feature-card {
    background: var(--fe-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, border-color .2s ease;
  }
  .feature-card:hover { transform: translateY(-3px); border-color: rgba(212, 175, 55, 0.45); }
  .section-light .feature-card, .section-cream .feature-card {
    background: var(--fe-white); border-color: #E8E8E8; color: var(--fe-black);
    box-shadow: var(--shadow-sm);
  }
  .feature-card h3 {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    color: var(--fe-gold); margin-bottom: 10px; line-height: 1.3;
  }
  .section-light .feature-card h3 { color: var(--fe-gold-dark); }
  .feature-card p { font-size: 15px; line-height: 1.7; color: var(--fe-gray-medium); }
  .section-light .feature-card p { color: var(--fe-gray-dark); }

  /* Image + text row */
  .media-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
    align-items: center; max-width: var(--container-max); margin: 0 auto;
  }
  .media-row .media-text { max-width: 560px; }
  .media-row .media-text .eyebrow { display: block; margin-bottom: 12px; }
  .media-row .media-text .gold-line { margin: 16px 0 22px; }
  .media-row .media-text p { margin-bottom: var(--space-4); }
  .media-row .media-text p:last-child { margin-bottom: 0; }
  .media-figure { margin: 0; }
  .media-figure img {
    width: 100%; height: 420px; object-fit: cover; display: block;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  }
  .media-row.reverse .media-figure { order: -1; }

  @media (max-width: 860px) {
    .media-row { grid-template-columns: 1fr; gap: var(--space-4); }
    .media-row .media-text { max-width: 100%; }
    .media-row.reverse .media-figure { order: 0; }
    .media-figure img { height: 260px; }
  }


  /* ============================================================
     DESIGN LAYER: solar engineering datasheet
     ============================================================ */
  /* Spec strip (trust carousel) in mono */
  .social-bar-inner { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.02em; font-size: 12px; }

  /* Photovoltaic blueprint grid extended to content-page heros (dark only) */
  .page-hero { position: relative; overflow: hidden; isolation: isolate; }
  .page-hero > .container { position: relative; z-index: 1; }
  .section-dark.page-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.10), transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.06), transparent 58%);
  }
  .section-dark.page-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(ellipse at 50% 42%, #000 8%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 42%, #000 8%, transparent 72%);
  }

  /* Datasheet caption utility (available for data/labels) */
  .spec { font-family: var(--font-mono); letter-spacing: 0.04em; }

  /* ===== Blog post cards ===== */
  .post-card { display: flex; flex-direction: column; }
  .post-cat {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--fe-gold-dark); margin-bottom: 12px;
  }
  .post-card h3 { color: var(--fe-black); font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
  .post-card h3 a { color: inherit; }
  .post-card h3 a:hover, .post-card h3 a:focus-visible { color: var(--fe-gold-dark); }
  .post-card p { color: var(--fe-gray-dark); flex: 1 0 auto; margin-bottom: 16px; }
  .post-more { margin-top: auto; }

  /* Secondary button on light sections (was invisible white-on-white) */
  .section-light .btn-secondary, .section-cream .btn-secondary { color: var(--fe-black); }
  .section-light .btn-secondary:hover, .section-cream .btn-secondary:hover { color: var(--fe-black); }
