:root {
    --yellow: #F5C400;
    --yellow-dark: #D9A800;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F0F0F0;
    --gray-mid: #AAAAAA;
    --gray-text: #555555;
    --section-alt: #F5F5F5;
  }

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

  body {
    font-family: 'Titillium Web', Arial, sans-serif;
    background: #fff;
    color: var(--black);
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(255,255,255,0);
    border-bottom: 1px solid rgba(255,255,255,0);
    box-shadow: none;
    transition: background .4s ease, padding .35s ease, box-shadow .4s ease, border-color .4s ease;
  }
  .nav.scrolled {
    padding: 12px 56px;
    background: rgba(255,255,255,1);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  }
  .nav.on-hero {
    background: rgba(255,255,255,0);
    border-bottom: 1px solid rgba(255,255,255,0);
    box-shadow: none;
  }
  .nav.on-hero.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    min-width: 160px;
    height: 44px;
  }
  .nav-logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s ease, opacity .35s ease;
  }
  .nav.scrolled .nav-logo img { height: 34px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.78;
    transition: opacity .2s, color .2s;
    position: relative;
    padding-bottom: 4px;
  }
  .nav-links a:hover { opacity: 1; color: var(--yellow-dark); }
  .nav-links a.active { color: var(--yellow-dark); opacity: 1; }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -5px;
    height: 2px;
    background: var(--yellow-dark);
    border-radius: 2px;
  }
  /* At top on hero — transparent bg, links WHITE (over dark photo) */
  .nav.on-hero:not(.scrolled) .nav-links a { color: #fff; opacity: 0.88; }
  .nav.on-hero:not(.scrolled) .nav-links a:hover { color: var(--yellow); opacity: 1; }
  .nav.on-hero:not(.scrolled) .nav-links a.active { color: var(--yellow); opacity: 1; }
  .nav.on-hero:not(.scrolled) .nav-links a.active::after { background: var(--yellow); }
  /* Scrolled on hero — white bg, links BLACK */
  .nav.on-hero.scrolled .nav-links a { color: var(--black); opacity: 0.78; }
  .nav.on-hero.scrolled .nav-links a:hover { color: var(--yellow-dark); opacity: 1; }
  .nav.on-hero.scrolled .nav-links a.active { color: var(--yellow-dark); opacity: 1; }
  .nav.on-hero.scrolled .nav-links a.active::after { background: var(--yellow-dark); }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: .25s;
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
  }
  .hero-slides { position: absolute; inset: 0; z-index: 0; }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
  }
  .hero-slide.active { opacity: 1; pointer-events: auto; }
  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
  }
  .slide-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,10,10,0.55), rgba(5,5,5,0.65));
  }
  .slide-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 100px 110px;
  }
  .hero-left { max-width: 680px; }
  .hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    opacity: 0.9;
  }
  .hero-left h1 {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 36px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }
  .cta-btn {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(245,196,0,0.35);
    transition: transform .2s, box-shadow .2s, background .2s;
  }
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,196,0,0.5);
    background: #ffd000;
  }
  .cta-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: none;
    margin-left: 14px;
  }
  .cta-btn.outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: none;
    background: transparent;
  }

  /* Hero Stats */
  .hero-stats {
    position: absolute;
    right: 200px;
    top: 0; bottom: 0;
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 2.4vh, 32px);
    z-index: 5;
  }
  .stat-row {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.6vw, 20px);
    flex-shrink: 0;
  }
  .stat-icon {
    width: clamp(32px, 4.2vh, 52px);
    height: clamp(32px, 4.2vh, 52px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat-icon svg { width: 88%; height: 88%; }
  .stat-value {
    font-size: clamp(22px, 3.4vh, 42px);
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .stat-label {
    font-size: clamp(11px, 1.2vh, 15px);
    opacity: 0.8;
    margin-top: 4px;
  }

  /* Arrows & Dots */
  .hero-arrow {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    z-index: 6;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
  }
  .hero-arrow:hover { background: rgba(0,0,0,0.4); }
  .hero-arrow.prev { left: 32px; }
  .hero-arrow.next { right: 68px; }
  .hero-dots {
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .hero-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.38);
    display: block; cursor: pointer;
    transition: background .2s;
  }
  .hero-dots span.active { background: var(--yellow); }

  /* Hero load animation */
  .hero-load-item {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: hero-fade-up .7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }
  @keyframes hero-fade-up { to { opacity: 1; transform: translateY(0) scale(1); } }

  /* ============ SECTION BASE ============ */
  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 12px;
  }

  /* ============ WHY ============ */
  .why {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: 110px 0;
  }
  .why-bg {
    position: absolute; inset: 0;
    background: url('https://sedayu.com/wp-content/uploads/2021/10/construction.jpg') center / cover no-repeat;
    z-index: 0;
  }
  .why-bg::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,10,10,0.52), rgba(5,5,5,0.62));
  }
  .why-inner {
    position: relative; z-index: 5;
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 72px;
  }
  .why-grid h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    margin-top: 10px;
  }
  .why-copy p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
  }
  .why-certs { display: flex; flex-direction: column; gap: 14px; }
  .why-cert {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5;
  }
  .why-cert svg {
    width: 20px; height: 20px;
    flex-shrink: 0; margin-top: 2px;
    stroke: var(--yellow);
  }
  .why-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .why-stat { text-align: left; }
  .why-stat-icon {
    width: 46px; height: 46px;
    margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .why-stat-icon svg { width: 40px; height: 40px; stroke: #fff; }
  .why-stat-value {
    font-size: 36px; font-weight: 400;
    line-height: 1; margin-bottom: 6px;
    display: flex; align-items: baseline; gap: 6px;
  }
  .live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 0 0 rgba(61,220,132,0.6);
    animation: live-pulse 1.8s ease-out infinite;
    flex-shrink: 0;
  }
  @keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(61,220,132,0.55); }
    70% { box-shadow: 0 0 0 8px rgba(61,220,132,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
  }
  .why-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }

  /* ============ TECHNOLOGY PARTNERS ============ */
  .partners {
    background: #fff;
    padding: 80px 0 70px;
  }
  .partners-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
  }
  .partners-heading {
    text-align: center; margin-bottom: 44px;
  }
  .partners-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--yellow-dark);
    margin-bottom: 10px;
  }
  .partners-heading h2 {
    font-size: 36px; font-weight: 700; color: var(--black); letter-spacing: -0.3px;
  }
  .partner-tabs {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 12px; margin-bottom: 44px;
  }
  .partner-tab {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 30px;
    border: 1.5px solid #e0e0e0; background: #fff;
    color: var(--gray-text); font-size: 14px; font-weight: 600;
    letter-spacing: 0.3px; cursor: pointer;
    font-family: 'Titillium Web', Arial, sans-serif;
    transition: all .2s ease;
  }
  .partner-tab svg {
    width: 18px; height: 18px; stroke: var(--gray-text);
    flex-shrink: 0; fill: none; transition: stroke .2s ease;
  }
  .partner-tab:hover { border-color: var(--yellow-dark); color: var(--black); }
  .partner-tab:hover svg { stroke: var(--yellow-dark); }
  .partner-tab.active {
    background: var(--black); border-color: var(--black); color: #fff;
  }
  .partner-tab.active svg { stroke: var(--yellow); }
  .partner-panel { display: none; }
  .partner-panel.active { display: block; }
  .marquee {
    position: relative; overflow: hidden; width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
  }
  .marquee-track {
    display: flex; align-items: center; gap: 40px;
    width: max-content;
    animation: marquee-scroll 26s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .partner-logo {
    flex-shrink: 0; width: 130px; height: 130px;
    background: var(--gray-light);
    border: 1px solid #e8e8e8; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    padding: 22px; transition: box-shadow .2s;
  }
  .partner-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  .partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

  @media (max-width: 768px) {
    .partners { padding: 56px 0 48px; }
    .partners-inner { padding: 0 20px; }
    .partners-heading h2 { font-size: 26px; }
    .partner-tabs { gap: 8px; margin-bottom: 28px; }
    .partner-tab { padding: 10px 16px; font-size: 13px; }
    .partner-logo { width: 96px; height: 96px; padding: 16px; }
    .marquee-track { gap: 24px; }
  }

  /* ============ PRODUCTS ============ */
  .products-section {
    background: var(--white);
    padding: 100px 0 80px;
  }
  .products-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
  }
  .section-heading {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-top: 8px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 40px 36px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1.5px solid transparent;
  }
  .product-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(245,196,0,0.25);
  }
  .product-card:hover::before { transform: scaleX(1); }
  .product-icon {
    width: 52px; height: 52px;
    background: var(--black);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }
  .product-icon svg {
    width: 26px; height: 26px;
    stroke: var(--yellow);
  }
  .product-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }
  .product-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-text);
  }

  /* ============ SOLUTIONS ============ */
  .solutions-section {
    background: var(--black);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .solutions-carousel {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 560px;
    max-height: 780px;
  }
  .sol-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
  }
  .sol-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .sol-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .sol-slide-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(5,5,5,0.82) 0%,
      rgba(5,5,5,0.55) 50%,
      rgba(5,5,5,0.2) 100%
    );
  }
  .sol-slide-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
    max-width: 720px;
  }
  .sol-slide-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
    opacity: 0.85;
  }
  .sol-slide-content h2 {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }
  .sol-slide-content p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .sol-slide-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 8px 24px rgba(245,196,0,0.35);
    transition: transform .2s, box-shadow .2s;
  }
  .sol-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,196,0,0.5);
  }

  /* ── Section heading overlay ── */
  .sol-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
    padding: 48px 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sol-heading-group {}
  .sol-heading-group .section-eyebrow { color: var(--yellow); }
  .sol-heading-group h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
  }

  /* ── Slide counter & nav ── */
  .sol-controls {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .sol-counter {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    min-width: 56px;
    text-align: center;
  }
  .sol-counter span { color: var(--yellow); font-size: 18px; }
  .sol-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #fff;
    transition: all .2s;
    flex-shrink: 0;
  }
  .sol-arrow:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
  }
  .sol-arrow svg { width: 18px; height: 18px; }

  /* ── Thumbnail strip at bottom ── */
  .sol-thumbs {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .sol-thumb {
    flex: 1;
    padding: 16px 20px;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background .2s;
    position: relative;
    overflow: hidden;
  }
  .sol-thumb:last-child { border-right: none; }
  .sol-thumb::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .sol-thumb.active::before { transform: scaleX(1); }
  .sol-thumb:hover { background: rgba(255,255,255,0.06); }
  .sol-thumb-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.45);
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sol-thumb.active .sol-thumb-label { color: var(--yellow); }

  /* Progress bar */
  .sol-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: var(--yellow);
    transition: none;
    z-index: 11;
  }

  @media (max-width: 1024px) {
    .sol-header { padding: 32px 40px 0; }
    .sol-slide-content { padding: 0 40px; max-width: 100%; }
    .sol-thumbs { display: none; }
    .solutions-carousel { height: auto; min-height: 580px; }
  }
  @media (max-width: 768px) {
    .sol-header { padding: 24px 20px 0; }
    .sol-slide-content { padding: 80px 20px 120px; }
    .sol-slide-content h2 { font-size: 28px; }
    .sol-slide-content p { font-size: 15px; }
    .solutions-carousel { min-height: 520px; max-height: none; height: 100svh; }
  }

/* ============ PROJECTS ============ */
  .projects-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
  }
  .projects-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
  .client-marquee {
    position: relative; overflow: hidden; width: 100%;
    margin-bottom: 80px; padding: 15px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
  }
  .client-track {
    display: flex; align-items: center; gap: 80px;
    width: max-content;
    animation: marquee-scroll 38s linear infinite;
  }
  .client-marquee:hover .client-track { animation-play-state: paused; }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .client-logo-item {
    flex-shrink: 0; width: 160px; height: 80px;
    display: flex; align-items: center; justify-content: center;
  }
  .client-logo-item img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    opacity: 0.65; transition: opacity .3s, transform .3s;
    filter: grayscale(30%);
  }
  .client-logo-item img:hover { opacity: 1; transform: scale(1.05); filter: none; }

  .project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
  }
  .project-item {
    position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3;
    background: #111;
  }
  .project-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .project-item:hover img { transform: scale(1.07); }
  .more-btn-wrap { text-align: center; }
  .more-btn {
    display: inline-block; padding: 15px 40px;
    border: 2px solid var(--black); border-radius: 4px;
    color: var(--black); font-weight: 700; font-size: 13px;
    letter-spacing: 1.4px; text-transform: uppercase;
    text-decoration: none; transition: all .25s;
  }
  .more-btn:hover { background: var(--black); color: #fff; transform: translateY(-2px); }

  /* ============ CTA BAND ============ */
  .cta-band {
    background: var(--yellow);
    padding: 80px 56px;
    text-align: center;
  }
  .cta-band h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
  }
  .cta-band p {
    font-size: 17px;
    color: rgba(26,26,26,0.72);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    line-height: 1.65;
  }
  .cta-band .cta-btn {
    background: var(--black);
    color: var(--yellow);
    box-shadow: none;
  }
  .cta-band .cta-btn:hover {
    background: #111;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  /* ============ FOOTER ============ */
  .site-footer {
    background: #262626;
    color: #fff;
    padding: 72px 56px 0;
    border-top: none;
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; padding-bottom: 56px;
  }
  .footer-logo { margin-bottom: 18px; }
  .footer-logo img { height: 36px; width: auto; }
  .footer-tagline {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 360px; margin-bottom: 28px;
  }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; transition: all .2s;
  }
  .footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-col-title {
    font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
  }
  .footer-office p {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.75); margin-bottom: 20px;
  }
  .footer-office p strong { color: #fff; }
  .footer-contact-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: rgba(255,255,255,0.75);
    text-decoration: none; margin-bottom: 14px;
    transition: color .2s;
  }
  .footer-contact-item:hover { color: var(--yellow); }
  .footer-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--yellow); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0; text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.4);
    max-width: 1280px; margin: 0 auto;
  }
  .footer-bottom strong { color: rgba(255,255,255,0.75); }

  /* ============ SCROLL TOP ============ */
  .scroll-top-btn {
    position: fixed; right: 24px; bottom: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--yellow); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 50;
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
    box-shadow: 0 4px 16px rgba(245,196,0,0.4);
  }
  .scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
  .scroll-top-btn:hover { transform: translateY(-2px); }
  .scroll-top-btn svg { width: 20px; height: 20px; stroke: var(--black); }

  /* ============ SECTION NAV ============ */
  .section-nav {
    position: fixed; right: 24px; top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 14px;
  }
  .section-nav-item {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
  }
  .section-nav-label {
    font-family: 'Titillium Web', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: #fff; background: rgba(26,26,26,0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 11px; border-radius: 20px;
    white-space: nowrap; opacity: 0;
    transform: translateX(8px);
    transition: opacity .22s, transform .22s;
    pointer-events: none;
  }
  .section-nav-item:hover .section-nav-label { opacity: 1; transform: translateX(0); }
  .section-nav-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
    transition: background .25s, transform .25s, border-color .25s;
    position: relative;
  }
  .section-nav-dot::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 1.5px solid var(--yellow);
    opacity: 0; transform: scale(0.6);
    transition: opacity .3s, transform .3s;
  }
  .section-nav-item.active .section-nav-dot {
    background: var(--yellow); border-color: var(--yellow);
    transform: scale(1.35);
  }
  .section-nav-item.active .section-nav-dot::after { opacity: 0.4; transform: scale(1); }
  .section-nav-item:hover .section-nav-dot { background: rgba(255,255,255,0.75); transform: scale(1.2); }
  .section-nav.on-light .section-nav-dot {
    background: rgba(26,26,26,0.2);
    border-color: rgba(26,26,26,0.4);
  }
  .section-nav.on-light .section-nav-item:hover .section-nav-dot {
    background: rgba(26,26,26,0.55);
    border-color: rgba(26,26,26,0.8);
  }
  .section-nav.on-light .section-nav-item.active .section-nav-dot {
    background: var(--yellow-dark); border-color: var(--yellow-dark);
  }
  @media (max-width: 1024px) { .section-nav { display: none; } }

  /* ============ SCROLL REVEAL ============ */
  .reveal {
    opacity: 1; transform: none;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(24px);
    transition: opacity .7s cubic-bezier(0.22,.61,.36,1), transform .7s cubic-bezier(0.22,.61,.36,1);
  }
  .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
  .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .47s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero-load-item { opacity: 1 !important; transform: none !important; animation: none !important; }
    .section-nav { display: none !important; }
  }

  /* ============ FOOTPRINT MAP ============ */
  .map-section {
    background: var(--black);
    padding: 100px 0 80px;
  }
  .map-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
  }
  .map-section .section-heading {
    margin-bottom: 52px;
  }
  .map-section .section-heading h2 {
    color: #fff;
  }
  .map-section .section-heading p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.7;
  }
  .map-section .section-eyebrow {
    color: var(--yellow);
  }
  .map-wrap {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px 24px;
    overflow: visible;
  }
  #indonesiaMap {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Island paths */
  .map-island {
    fill: rgba(255,255,255,0.09);
    stroke: rgba(255,255,255,0.18);
    stroke-width: 0.6;
    stroke-linejoin: round;
    transition: fill .25s ease;
    cursor: default;
  }
  .map-island:hover {
    fill: rgba(255,255,255,0.16);
  }

  /* Pin groups */
  .pin-group { cursor: pointer; }
  .pin-dot {
    fill: var(--yellow);
    stroke: var(--black);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(245,196,0,0.5));
    transition: r .2s ease, filter .2s ease;
  }
  .pin-pulse {
    fill: var(--yellow);
    fill-opacity: 0;
    stroke: var(--yellow);
    stroke-width: 1;
    animation: pin-ping 2.2s ease-out infinite;
    transform-origin: center;
  }
  @keyframes pin-ping {
    0%   { stroke-opacity: 0.8; r: 5;  }
    70%  { stroke-opacity: 0;   r: 14; }
    100% { stroke-opacity: 0;   r: 14; }
  }
  .pin-group:hover .pin-dot {
    r: 7;
    filter: drop-shadow(0 3px 8px rgba(245,196,0,0.8));
  }

  /* Tooltip */
  .map-tooltip {
    position: absolute;
    background: var(--black);
    color: #fff;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }
  .map-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--yellow);
  }

  /* Legend */
  .map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
  }
  .map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .map-legend-dot {
    width: 12px; height: 12px;
    border-radius: 3px;
    display: inline-block;
  }
  .map-legend-dot.installed {
    background: var(--yellow);
  }
  .map-legend-dot.pin {
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245,196,0,0.25);
  }

  @media (max-width: 768px) {
    .map-inner { padding: 0 20px; }
    .map-wrap { padding: 20px 10px; border-radius: 10px; }
    .map-section { padding: 64px 0 56px; }
  }

  /* ============ CALCULATOR ============ */
  .calc-section {
    background: var(--white);
    padding: 100px 0 90px;
    border-top: 1px solid #e8e8e8;
  }
  .calc-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
  }
  .calc-heading {
    text-align: center;
    margin-bottom: 60px;
  }
  .calc-heading h2 {
    font-size: 38px; font-weight: 700;
    color: var(--black); margin: 8px 0 16px;
  }
  .calc-heading p {
    font-size: 16px; color: var(--gray-text);
    max-width: 500px; margin: 0 auto; line-height: 1.65;
  }
  .calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  /* Input panel */
  .calc-input-panel {
    background: var(--gray-light);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 32px;
  }
  .calc-field { margin-bottom: 28px; }
  .calc-field:last-child { margin-bottom: 0; }
  .calc-label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--black);
    margin-bottom: 10px; letter-spacing: 0.3px;
  }
  .calc-label-sub {
    color: var(--yellow); font-weight: 700;
    font-size: 13px; margin-left: 6px;
  }
  .calc-input-wrap { position: relative; }
  .calc-prefix {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 14px; font-weight: 700;
    color: var(--yellow); pointer-events: none;
  }
  .calc-input {
    width: 100%;
    background: var(--white);
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    padding: 14px 16px 14px 44px;
    font-family: 'Titillium Web', Arial, sans-serif;
    font-size: 16px; font-weight: 600;
    color: var(--black); outline: none;
    transition: border-color .2s, box-shadow .2s;
    -moz-appearance: textfield;
  }
  .calc-input::-webkit-inner-spin-button { display: none; }
  .calc-input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,196,0,0.15);
  }
  .calc-select {
    width: 100%;
    background: var(--white);
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    padding: 14px 40px 14px 16px;
    font-family: 'Titillium Web', Arial, sans-serif;
    font-size: 14px; color: var(--black); outline: none;
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D9A800' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--white);
    transition: border-color .2s;
  }
  .calc-select:focus { border-color: var(--yellow-dark); outline: none; }
  .calc-select option, .calc-select optgroup { background: #fff; color: var(--black); }
  .calc-range {
    width: 100%; margin-top: 8px;
    -webkit-appearance: none;
    height: 4px; border-radius: 2px;
    background: #d0d0d0; outline: none; cursor: pointer;
  }
  .calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--yellow);
    border: 3px solid var(--black);
    box-shadow: 0 0 0 2px var(--yellow);
    cursor: pointer; transition: transform .15s;
  }
  .calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
  .calc-range-labels {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--gray-mid);
    margin-top: 6px; letter-spacing: 0.5px;
  }
  .calc-assumptions {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px; padding: 12px 16px;
    margin-top: 4px;
  }
  .calc-assumptions summary {
    font-size: 12px; color: var(--gray-mid);
    cursor: pointer; list-style: none;
    display: flex; align-items: center; gap: 6px;
    font-weight: 600; letter-spacing: 0.3px;
  }
  .calc-assumptions summary::before { content: '⚙'; font-size: 12px; }
  .calc-assumptions[open] summary { color: var(--yellow-dark); margin-bottom: 12px; }
  .calc-assump-row {
    display: flex; justify-content: space-between;
    padding: 5px 0; font-size: 12px;
    border-bottom: 1px solid #e8e8e8;
    color: var(--gray-text);
  }
  .calc-assump-row:last-child { border-bottom: none; }
  .calc-assump-row span:last-child { color: var(--yellow-dark); font-weight: 600; }

  /* Result panel */
  .calc-result-panel {
    background: var(--gray-light);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 32px;
    position: sticky;
    top: 80px;
  }
  .calc-main-metric {
    text-align: center;
    background: var(--black);
    border: 1.5px solid var(--black);
    border-radius: 10px;
    padding: 28px 20px 22px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .calc-main-metric::after {
    content: '☀';
    position: absolute; right: 14px; top: 10px;
    font-size: 36px; opacity: 0.08;
  }
  .calc-metric-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 8px;
  }
  .calc-metric-value {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; color: var(--yellow);
    line-height: 1; letter-spacing: -0.5px;
    transition: all .4s ease;
  }
  .calc-metric-sub {
    font-size: 13px; color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }
  .calc-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 24px;
  }
  .calc-stat-box {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-left: 3px solid var(--yellow-dark);
    border-radius: 8px; padding: 12px 14px;
    transition: border-color .2s, box-shadow .2s;
  }
  .calc-stat-box:hover { border-color: var(--yellow-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  .calc-stat-label {
    font-size: 11px; color: var(--gray-mid);
    margin-bottom: 4px; letter-spacing: 0.3px;
  }
  .calc-stat-val {
    font-size: 15px; font-weight: 700;
    color: var(--yellow-dark);
    transition: color .3s;
  }
  .calc-timeline { margin-bottom: 24px; }
  .calc-timeline-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--gray-mid); margin-bottom: 14px;
  }
  .calc-tl-row {
    display: flex; align-items: center; gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .calc-tl-row:last-child { border-bottom: none; }
  .calc-tl-year {
    font-size: 11px; color: var(--gray-mid);
    min-width: 44px; font-weight: 600;
  }
  .calc-tl-bar-wrap {
    flex: 1; height: 5px;
    background: #e0e0e0; border-radius: 3px; overflow: hidden;
  }
  .calc-tl-bar { height: 100%; border-radius: 3px; transition: width .6s cubic-bezier(.4,0,.2,1); }
  .calc-tl-amount {
    font-size: 12px; font-weight: 700;
    color: var(--yellow); min-width: 70px; text-align: right;
  }
  .calc-cta-btn {
    display: block; width: 100%;
    padding: 16px; border-radius: 8px;
    background: var(--yellow); color: var(--black);
    font-weight: 700; font-size: 15px;
    letter-spacing: 0.3px; text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 24px rgba(245,196,0,0.3);
    transition: all .2s;
  }
  .calc-cta-btn:hover {
    background: #ffd000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,196,0,0.45);
  }
  .calc-cta-note {
    text-align: center; font-size: 12px;
    color: var(--gray-mid); margin-top: 10px;
    letter-spacing: 0.2px;
  }

  @media (max-width: 1024px) {
    .calc-layout { grid-template-columns: 1fr; }
    .calc-result-panel { position: static; }
  }
  @media (max-width: 768px) {
    .calc-inner { padding: 0 20px; }
    .calc-input-panel, .calc-result-panel { padding: 24px 20px; }
    .calc-heading h2 { font-size: 28px; }
  }

  /* ============ TYPEWRITER ============ */
  .typewriter-wrap {
    display: inline-block;
    position: relative;
    white-space: nowrap;
  }
  .typewriter-word {
    color: var(--yellow);
    font-weight: 900;
  }
  .typewriter-cursor {
    display: inline-block;
    color: var(--yellow);
    font-weight: 300;
    margin-left: 2px;
    animation: blink-cursor .75s step-end infinite;
  }
  @keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* ============ COOKIE ============ */
  .cookie-banner {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999; width: calc(100% - 48px); max-width: 620px;
    background: #fff; color: var(--black); border-radius: 10px;
    padding: 22px 26px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
    display: flex; align-items: center; gap: 18px;
    opacity: 0;
    transition: transform .45s cubic-bezier(0.22,.61,.36,1), opacity .45s ease;
    pointer-events: none;
  }
  .cookie-banner.visible {
    transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto;
  }
  .cookie-icon { flex-shrink: 0; font-size: 24px; }
  .cookie-text { flex: 1; min-width: 0; }
  .cookie-text p { font-size: 13px; line-height: 1.6; color: #555; margin: 0; }
  .cookie-text a { color: var(--yellow-dark); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-btn {
    padding: 9px 18px; border-radius: 6px; font-size: 13px;
    font-weight: 700; cursor: pointer; border: none;
    font-family: inherit; transition: all .2s; white-space: nowrap;
  }
  .cookie-btn.accept { background: var(--yellow); color: var(--black); }
  .cookie-btn.accept:hover { background: var(--yellow-dark); transform: translateY(-1px); }
  .cookie-btn.decline { background: var(--gray-light); color: #555; }
  .cookie-btn.decline:hover { background: #e0e0e0; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .hero { height: auto; min-height: auto; }
    .hero-slides { position: relative; }
    .hero-slide { position: relative; display: none; }
    .hero-slide.active { display: flex; }
    .slide-bg { position: absolute; inset: 0; min-height: 100%; }
    .nav { position: absolute; top: 0; left: 0; right: 0; padding: 20px 24px; }
    .nav.scrolled { position: fixed; padding: 12px 24px; }
    .slide-content {
      position: relative; height: auto; min-height: 480px;
      align-items: flex-end; padding: 120px 24px 40px;
    }
    .hero-left h1 { font-size: 32px; }
    .hero-arrow.prev { left: 12px; }
    .hero-arrow.next { right: 12px; }
    .hero-stats {
      position: relative; left: auto; right: auto; top: auto; bottom: auto;
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 20px; padding: 36px 24px;
      background: #111; width: 100%;
    }
    .hero-stats .stat-row { flex-direction: row; align-items: center; gap: 12px; }
    .products-grid, .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid .solution-card:nth-child(7) { grid-column: auto; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
    .why-stats { grid-template-columns: repeat(2, 1fr); padding-top: 32px; }
    .why-stat:nth-child(5) { grid-column: 1 / -1; }
  }
  @media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav-links {
      position: fixed; top: 0; right: 0; height: 100vh;
      width: 78%; max-width: 300px;
      background: #fff; flex-direction: column;
      align-items: flex-start; padding: 88px 28px; gap: 24px;
      transform: translateX(100%); transition: transform .3s; z-index: 15;
      box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    }
    .nav-links a { color: var(--black) !important; opacity: 1; }
    .nav-links a:hover { color: var(--yellow-dark) !important; }
    .nav-links a.active { color: var(--yellow-dark) !important; }
    .nav-links a.active::after { background: var(--yellow-dark); }
    .nav-links.open { transform: translateX(0); }
    .nav-toggle { display: block; }
    .hero-left h1 { font-size: 28px; }
    .hero-arrow { display: none; }
    .products-inner, .solutions-inner, .projects-inner, .articles-inner { padding: 0 20px; }
    .why-inner { padding: 0 20px; }
    .site-footer { padding: 56px 20px 0; background: #262626; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
    .cta-band { padding: 60px 24px; }
    .cta-band h2 { font-size: 30px; }
    .solutions-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  }
  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 14px; width: calc(100% - 28px); padding: 18px; gap: 12px; }
    .cookie-icon { display: none; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
  }

  /* ============ DUAL LOGO SWITCH ============ */
  .nav-logo .logo-white,
  .nav-logo .logo-dark {
    height: 44px;
    width: auto;
    transition: opacity .35s ease, height .3s ease;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
  }
  .nav-logo .logo-white { opacity: 0; pointer-events: none; }
  .nav-logo .logo-dark  { opacity: 1; }
  .nav.on-hero:not(.scrolled) .nav-logo .logo-white { opacity: 1; pointer-events: auto; }
  .nav.on-hero:not(.scrolled) .nav-logo .logo-dark  { opacity: 0; pointer-events: none; }
  .nav.on-hero.scrolled .nav-logo .logo-white { opacity: 0; pointer-events: none; }
  .nav.on-hero.scrolled .nav-logo .logo-dark  { opacity: 1; pointer-events: auto; }
  .nav.scrolled .nav-logo .logo-white,
  .nav.scrolled .nav-logo .logo-dark { height: 34px; }

  /* ============ FINANCING SCHEMES ============ */
  .financing-section {
    background: var(--black);
    padding: 100px 0 90px;
  }
  .financing-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .financing-section .section-heading { margin-bottom: 56px; }
  .financing-section .section-heading h2 { color: #fff; }
  .financing-section .section-eyebrow { color: var(--yellow); }
  .financing-subhead {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 14px auto 0;
    line-height: 1.65;
  }
  .financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .fin-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .3s, background .3s, transform .3s;
  }
  .fin-card:hover {
    border-color: rgba(245,196,0,0.35);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
  }
  .fin-card--featured {
    background: rgba(245,196,0,0.08);
    border-color: var(--yellow);
    border-width: 1.5px;
  }
  .fin-card--featured:hover {
    background: rgba(245,196,0,0.13);
    border-color: var(--yellow);
  }
  .fin-popular-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 20px;
    white-space: nowrap;
  }
  .fin-card-top { margin-bottom: 28px; }
  .fin-icon {
    width: 52px; height: 52px;
    background: rgba(245,196,0,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .fin-icon svg { width: 26px; height: 26px; stroke: var(--yellow); }
  .fin-card--featured .fin-icon { background: rgba(245,196,0,0.2); }
  .fin-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 8px;
  }
  .fin-card--featured .fin-label { color: var(--yellow); opacity: 0.8; }
  .fin-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
  .fin-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); }
  .fin-benefits {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px; flex: 1;
  }
  .fin-benefits li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5;
  }
  .fin-benefits li svg { width: 16px; height: 16px; stroke: var(--yellow); flex-shrink: 0; margin-top: 2px; }
  .fin-badge {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px; padding: 6px 12px; margin-bottom: 20px;
  }
  .fin-card--featured .fin-badge {
    color: rgba(245,196,0,0.8);
    background: rgba(245,196,0,0.08);
    border-color: rgba(245,196,0,0.2);
  }
  .fin-cta {
    display: block; text-align: center;
    padding: 14px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff; transition: all .25s;
  }
  .fin-cta:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,196,0,0.06); }
  .fin-card--featured .fin-cta { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
  .fin-card--featured .fin-cta:hover {
    background: #ffd000; border-color: #ffd000; color: var(--black);
    transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,196,0,0.3);
  }
  @media (max-width: 1024px) {
    .financing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .financing-inner { padding: 0 40px; }
    .financing-section { padding: 72px 0 64px; }
  }
  @media (max-width: 768px) {
    .financing-inner { padding: 0 20px; }
    .fin-card { padding: 28px 24px 24px; }
    .financing-section .section-heading h2 { font-size: 28px; }
  }