    /* ─── FCIconic Font ─── */
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-Light.ttf') format('truetype');
      font-weight: 300; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-Regular.ttf') format('truetype');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-Medium.ttf') format('truetype');
      font-weight: 500; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-SemiBold.ttf') format('truetype');
      font-weight: 600; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-Bold.ttf') format('truetype');
      font-weight: 700; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-ExtraBold.ttf') format('truetype');
      font-weight: 800; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'FCIconic';
      src: url('/solar-pro-2/fonts/FCIconic-Black.ttf') format('truetype');
      font-weight: 900; font-style: normal; font-display: swap;
    }
    /* ─── Reset & Base ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'FCIconic', sans-serif;
      color: #1e293b;
      background: #fff;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    section { overflow: hidden; }

    /* ─── CSS Variables ─── */
    :root {
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --blue-light: #eff6ff;
      --orange: #F9B208;
      --orange-dark: #D99B00;
      --orange-light: #fffbeb;
      --brand-navy: #1B2E6B;
      --navy: #0f172a;
      --navy2: #1e293b;
      --gray: #64748b;
      --gray-light: #f1f5f9;
      --white: #ffffff;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 20px 40px -12px rgba(15,23,42,0.18);
      --shadow-sm: 0 4px 16px -4px rgba(15,23,42,0.12);
      --solar-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='24'%3E%3Crect width='32' height='22' x='1' y='1' fill='%230a1c35'/%3E%3Crect width='32' height='5' x='1' y='1' fill='white' opacity='0.045'/%3E%3Crect width='5' height='22' x='1' y='1' fill='white' opacity='0.02'/%3E%3Crect width='32' height='4' x='1' y='19' fill='black' opacity='0.18'/%3E%3Crect width='34' height='24' fill='none' stroke='%23152e58' stroke-width='1'/%3E%3C/svg%3E");
    }

    /* ─── Navbar ─── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      padding: 0 5%;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      background: transparent;
      transition: background 0.35s, box-shadow 0.35s;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      box-shadow: 0 2px 24px rgba(15,23,42,0.1);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; flex-shrink: 0;
    }
    .logo-img { height: 65px; width: auto; display: block; transition: opacity 0.3s; }
    .logo-img-color { display: none; }
    #navbar.scrolled .logo-img-white { display: none; }
    #navbar.scrolled .logo-img-color { display: block; }
    .nav-logo-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.4); transition: background 0.3s; }
    #navbar.scrolled .nav-logo-divider { background: rgba(15,23,42,0.2); }
    .nav-logo-eqp { height: 55px; width: auto; display: block; }
    .nav-links {
      display: flex; align-items: center; gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88);
      transition: color 0.2s;
    }
    #navbar.scrolled .nav-links a { color: var(--navy2); }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 9px 22px; border-radius: 50px;
      font-weight: 600; font-size: 16px;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px; transition: background 0.3s;
    }
    #navbar.scrolled .hamburger span { background: var(--navy); }

    /* ─── Hero ─── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #070e1f 0%, #1B2E6B 55%, #2563eb 100%);
      display: flex;
      align-items: center;
      position: relative;
      padding: 110px 6% 80px;
      overflow: hidden;
    }
    /* Solar panel texture */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: var(--solar-pattern);
      background-size: 34px 24px;
      opacity: 0.22;
      pointer-events: none; z-index: 0;
    }
    #hero::after { display: none; }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 560px;
    }
    /* House image — absolute, flush right, full height */
    .hero-visual {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 75%;
      z-index: 1;
    }
    .hero-visual::before { display: none; }
    .house-frame {
      width: 100%; height: 100%;
      border-radius: 0; overflow: hidden;
      box-shadow: none; animation: none;
      /* Fade image left edge into solar pattern */
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 12%, black 28%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 40%, black 58%);
    }
    .house-img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: 0% center;
      display: block;
    }
    /* Subtle top/bottom vignette on photo */
    .house-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7,14,31,0.35) 0%,
        transparent 25%,
        transparent 70%,
        rgba(7,14,31,0.45) 100%
      );
      pointer-events: none;
    }
    /* Floating glass badges */
    .float-badge {
      position: absolute;
      background: rgba(7, 18, 42, 0.72);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px; padding: 12px 18px;
      display: flex; align-items: center; gap: 12px;
      color: white;
      box-shadow: 0 8px 32px rgba(0,0,0,0.55);
    }
    .float-badge i { font-size: 22px; color: var(--orange); flex-shrink: 0; }
    .float-badge .b-num { font-size: 20px; font-weight: 800; line-height: 1; color: #fff; }
    .float-badge .b-label { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 3px; }
    .badge-roi {
      top: 100px; right: 32px;
      animation: fbounce1 4s ease-in-out infinite;
    }
    .badge-saving {
      top: 190px; right: 32px;
      animation: fbounce2 5s ease-in-out infinite 0.6s;
    }
    @keyframes fbounce1 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
    @keyframes fbounce2 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,0,0,0.15); 
      color: var(--orange); padding: 6px 16px; border-radius: 50px;
      font-size: 16px; font-weight: 500; margin-bottom: 28px;
    }
    .hero-badge i { font-size: 16px; }
    .hero-content h1 {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 800; color: var(--white); line-height: 1.25;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .hero-content h1 span { color: var(--orange); }
    .hero-content p {
      font-size: 18px; color: rgba(255,255,255,0.72);
      line-height: 1.7; margin-bottom: 40px; font-weight: 300;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
    .btn-primary {
      background: var(--orange); color: var(--white);
      padding: 16px 36px; border-radius: 50px;
      font-size: 16px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(245,158,11,0.35);
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,158,11,0.45); }
    .btn-secondary {
      background: rgba(255,255,255,0.1); color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.3);
      padding: 16px 36px; border-radius: 50px;
      font-size: 16px; font-weight: 500;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background 0.2s, border-color 0.2s;
      backdrop-filter: blur(8px);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }
    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 0;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      border-radius: 16px; padding: 20px 8px;
    }
    .h-stat {
      flex: 1; min-width: 90px;
      border-left: 1px solid rgba(255,255,255,0.15); padding: 0 20px;
    }
    .h-stat:first-child { border-left: none; }
    .h-stat .num {
      font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: 1px;
    }
    .h-stat .num span { color: var(--orange); }
    .h-stat p { font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 10px; margin-bottom: 0; }

    /* ─── Section Base ─── */
    .section { padding: 45px 5%; }
    .section-alt { background: var(--gray-light); }
    /* ─── Solar Panel Pattern (defined in :root as --solar-pattern) ─── */
    .section-dark {
      background-color: #070f1e;
      background-image: var(--solar-pattern);
      background-size: 34px 24px;
      position: relative;
    }
    .section-dark::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(15,25,55,0.82) 0%, rgba(7,15,30,0.72) 100%);
      pointer-events: none; z-index: 0;
    }
    .section-dark > * { position: relative; z-index: 1; }

    /* ─── Resilience Section ─── */
    .resilience-section {
      position: relative;
      padding: 110px 5%;
      overflow: hidden;
      background: #060d1c;
    }
    .resilience-bg {
      position: absolute; inset: 0;
      background-image: url('/solar-pro-2/images/house-solar2.png');
      background-size: cover;
      background-position: center 40%;
      opacity: 0.28;
      z-index: 0;
    }
    .resilience-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(4,10,28,0.55) 0%, rgba(6,13,28,0.80) 100%);
      z-index: 1;
    }
    .resilience-inner {
      position: relative; z-index: 2;
      max-width: 1100px; margin: 0 auto;
      text-align: center;
    }
    .resilience-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,0,0,0.15);
      color: var(--orange);
      font-size: 16px; font-weight: 600;
      padding: 6px 16px; border-radius: 20px;
      letter-spacing: 0.3px;
      margin-bottom: 24px;
    }
    .resilience-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .resilience-title span { color: var(--orange); }
    .resilience-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.55);
      max-width: 616px; margin: 0 auto 64px;
      line-height: 1.7;
    }
    .resilience-feats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .resilience-feat {
      background: rgba(255,255,255,0.055);
      border-radius: 20px;
      padding: 40px 28px 36px;
      text-align: center;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
      backdrop-filter: blur(10px);
    }
    .resilience-feat:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(245,158,11,0.4);
      transform: translateY(-6px);
    }
    .resilience-feat-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-size: 28px;
    }
    .resilience-feat-icon.amber {
      background: rgba(245,158,11,0.15);
      color: var(--orange);
    }
    .resilience-feat-icon.blue {
      background: rgba(37,99,235,0.2);
      color: #60a5fa;
    }
    .resilience-feat-icon.teal {
      background: rgba(20,184,166,0.15);
      color: #2dd4bf;
    }
    .resilience-feat h3 {
      font-size: 18px; font-weight: 700;
      color: #fff;
      margin-bottom: 12px; line-height: 1.4;
    }
    .resilience-feat p {
      font-size: 16px; color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }
    .resilience-cta {
      margin-top: 56px;
    }
    .resilience-cta p {
      font-size: 16px; color: rgba(255,255,255,0.4);
      margin-top: 14px;
    }
    @media (max-width: 960px) {
      .resilience-feats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .resilience-feats { grid-template-columns: 1fr; }
    }

    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, #eff6ff, #dbeafe);
      color: var(--blue);
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
      text-transform: uppercase;
    }
    .tag-orange {
      background: linear-gradient(135deg, #fffbeb, #fef3c7);
      color: var(--orange-dark);
      border-color: rgba(217,155,0,0.2);
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700; color: var(--navy);
      line-height: 1.25; margin-bottom: 16px;
    }
    .section-title span { color: var(--blue); }
    .section-title.light { color: var(--white); }
    .section-subtitle {
      font-size: 16px; color: var(--gray);
      line-height: 1.7; max-width: 560px; font-weight: 300;
    }
    .section-subtitle.light { color: rgba(255,255,255,0.6); }
    .section-header { margin-bottom: 56px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-subtitle { margin: 0 auto; }

    /* ─── Why Solar ─── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    /* Premium dark case-study card */
    .why-visual {
      position: relative;
      background: linear-gradient(145deg, #0b1830 0%, #0f2454 60%, #1a3870 100%);
      border-radius: 28px;
      padding: 36px 36px 32px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 32px 72px rgba(0,0,0,0.28), 0 0 0 1px rgba(37,99,235,0.15);
      overflow: hidden;
    }
    .why-visual::after {
      content: '';
      position: absolute; inset: 0;
      background-image: var(--solar-pattern);
      background-size: 34px 24px;
      opacity: 0.1; pointer-events: none; z-index: 0;
    }
    .why-visual > * { position: relative; z-index: 1; }
    /* Case study badge */
    .case-study-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(245,158,11,0.15);
      border: 1px solid rgba(245,158,11,0.32);
      color: var(--orange);
      font-size: 11px; font-weight: 700;
      padding: 5px 13px; border-radius: 50px;
      letter-spacing: 0.6px; text-transform: uppercase;
      margin-bottom: 6px;
    }
    .case-scenario-info {
      font-size: 16px; color: rgba(255,255,255,0.38);
      margin-bottom: 26px; font-weight: 300;
    }
    /* Before / After */
    .bill-compare {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 12px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px; padding: 22px 18px;
      margin-bottom: 16px;
    }
    .bc-col { text-align: center; }
    .bc-label {
      font-size: 16px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.8px; color: rgba(255,255,255,0.32);
      margin-bottom: 8px;
    }
    .bc-amount { font-size: 26px; font-weight: 800; line-height: 1; }
    .bc-unit { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }
    .bc-before .bc-amount { color: #f87171; }
    .bc-after .bc-amount { color: #4ade80; }
    .bc-arrow {
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      color: rgba(255,255,255,0.2);
    }
    .bc-arrow i { font-size: 18px; }
    .bc-pct {
      font-size: 16px; font-weight: 700; color: #4ade80;
      background: rgba(74,222,128,0.13);
      padding: 2px 7px; border-radius: 50px; white-space: nowrap;
    }
    /* Annual saving */
    .annual-saving {
      background: linear-gradient(135deg, #059669 0%, #10b981 100%);
      border-radius: 14px; padding: 16px 20px;
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .annual-saving i { font-size: 24px; color: rgba(255,255,255,0.65); }
    .annual-saving .as-label { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
    .annual-saving .as-num { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
    /* ROI row */
    .roi-row {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
    }
    .roi-cell {
      text-align: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px; padding: 13px 8px;
    }
    .roi-cell .rc-num { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; }
    .roi-cell .rc-num span { color: var(--orange); }
    .roi-cell .rc-label { font-size: 16px; color: rgba(255,255,255,0.38); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.4px; }
    /* Right side why-points */
    .why-points { display: flex; flex-direction: column; gap: 24px; }
    .why-point {
      display: flex; gap: 18px; align-items: flex-start;
      opacity: 0; transform: translateX(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .why-point.visible { opacity: 1; transform: translateX(0); }
    .why-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }
    .why-icon.orange { background: var(--orange-light); color: var(--orange); }
    .why-icon.green { background: #dcfce7; color: #16a34a; }
    .why-point h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
    .why-point h3 em { font-style: normal; color: var(--blue); font-weight: 800; }
    .why-point p { font-size: 16px; color: var(--gray); line-height: 1.65; }

    /* ─── Services ─── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .service-card {
      background: var(--white); border-radius: 20px;
      padding: 36px 32px; border: 1.5px solid #e2e8f0;
      position: relative; overflow: hidden;
      cursor: default;
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-color 0.3s;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), #60a5fa);
      opacity: 0; transition: opacity 0.3s;
    }
    .service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), #fcd34d); }
    .service-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }
    .service-card.visible { opacity: 1; transform: translateY(0); }
    .service-card:hover {
      box-shadow: var(--shadow); transform: translateY(-6px);
      border-color: transparent;
    }
    .service-card:hover::before { opacity: 1; }
    .svc-icon {
      width: 64px; height: 64px; border-radius: 18px;
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin-bottom: 24px;
    }
    .svc-icon.orange { background: var(--orange-light); color: var(--orange); }
    .svc-icon.green { background: #dcfce7; color: #16a34a; }
    .service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
    .service-card p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
    .svc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .svc-features li {
      font-size: 16px; color: var(--gray); display: flex; align-items: center; gap: 8px;
    }
    .svc-features li::before {
      content: ''; width: 6px; height: 6px; background: var(--blue);
      border-radius: 50%; flex-shrink: 0;
    }

    /* ─── Stats Bar ─── */
    #stats-bar {
      background-color: #060e1c;
      background-image: var(--solar-pattern);
      background-size: 34px 24px;
      padding: 56px 5%;
      position: relative;
    }
    #stats-bar::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(29,78,216,0.55) 0%, rgba(6,14,28,0.65) 100%);
      pointer-events: none; z-index: 0;
    }
    #stats-bar > * { position: relative; z-index: 1; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px; text-align: center;
    }
    .stat-item {}
    .stat-item .stat-num {
      font-size: 42px; font-weight: 800; color: var(--white);
      line-height: 1; margin-bottom: 8px;
    }
    .stat-item .stat-num span { color: var(--orange); }
    .stat-item p { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 300; }

    /* ─── Process ─── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0; position: relative;
    }
    .process-steps::before {
      content: ''; position: absolute;
      top: 44px; left: 18%; right: 18%; height: 2px;
      background: var(--blue);
      z-index: 0;
    }
    .process-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 32px; position: relative; z-index: 1;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .process-step.visible { opacity: 1; transform: translateY(0); }
    .step-num {
      width: 88px; height: 88px; border-radius: 50%;
      background: var(--white); border: 3px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
      box-shadow: 0 0 0 8px var(--gray-light);
    }
    .step-num i { font-size: 32px; color: var(--blue); }
    .process-step:nth-child(2) .step-num { border-color: var(--blue); }
    .process-step:nth-child(3) .step-num { border-color: var(--orange); }
    .process-step:nth-child(3) .step-num i { color: var(--orange); }
    .process-step h4 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
    .step-details { display: flex; flex-direction: column; gap: 8px; }
    .step-detail {
      display: flex; align-items: flex-start; gap: 10px; text-align: left;
      font-size: 16px; color: var(--gray); line-height: 1.55;
    }
    .step-detail i { color: var(--blue); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
    .process-step:nth-child(3) .step-detail i { color: var(--orange); }

    /* ─── Packages ─── */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px; align-items: start;
    }
    .pkg-card {
      background: var(--white); border-radius: 24px;
      padding: 36px 32px; border: 2px solid #e2e8f0;
      transition: box-shadow 0.3s, transform 0.3s;
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
    }
    .pkg-card.visible { opacity: 1; transform: translateY(0); }
    .pkg-card.popular {
      background: var(--white);
      border-color: var(--blue);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px -12px rgba(37,99,235,0.25);
      position: relative;
    }
    .pkg-card.popular.visible { transform: translateY(-8px); }
    .pkg-card.popular .btn-pkg.fill {
      background: var(--blue); color: var(--white);
      box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    }
    .pkg-card.popular .btn-pkg.fill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,99,235,0.45); }
    .popular-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--blue); color: var(--white);
      font-size: 16px; font-weight: 600; padding: 5px 18px; border-radius: 50px;
      white-space: nowrap;
    }
    .pkg-icon { margin-bottom: 16px; }
    .pkg-icon img { height: 68px; width: auto; }
    .pkg-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
    .pkg-card .pkg-desc { font-size: 16px; color: var(--gray); margin-bottom: 20px; }
    .pkg-price { margin-bottom: 24px; }
    .pkg-price .price {
      font-size: 36px; font-weight: 800; color: #002564; line-height: 1;
    }
    .pkg-price .unit { font-size: 16px; color: var(--gray); margin-top: 4px; }
    .pkg-price .price span { font-size: 18px; font-weight: 400; }
    .pkg-features {
      list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
    }
    .pkg-features li {
      font-size: 16px; color: var(--navy2); display: flex; align-items: center; gap: 10px;
    }
    .pkg-features li i { color: #10b981; font-size: 16px; flex-shrink: 0; }
    .pkg-features li.muted { color: #94a3b8; }
    .pkg-features li.muted i { color: #cbd5e1; }
    .btn-pkg {
      width: 100%; padding: 14px; border-radius: 12px;
      font-size: 15px; font-weight: 600; border: none; cursor: pointer;
      font-family: 'FCIconic', sans-serif;
      transition: transform 0.15s, box-shadow 0.2s;
    }
    .btn-pkg.outline {
      background: transparent; color: var(--blue);
      border: 2px solid var(--blue);
    }
    .btn-pkg.outline:hover { background: var(--blue-light); }
    .btn-pkg.fill {
      background: var(--blue); color: var(--white);
      box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    }
    .btn-pkg.fill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,99,235,0.45); }

    /* ─── Why Us ─── */
    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .whyus-card {
      background: rgba(255,255,255,0.06); border-radius: 20px;
      padding: 32px;
      transition: background 0.3s, transform 0.3s;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
    }
    .whyus-card.visible { opacity: 1; transform: translateY(0); }
    .whyus-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
    .wu-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: rgba(37,99,235,0.25); color: #93c5fd;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 20px;
    }
    .wu-icon.orange { background: rgba(245,158,11,0.2); color: #fcd34d; }
    .whyus-card h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
    .whyus-card p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ─── Testimonials ─── */
    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .review-card {
      background: var(--white); border-radius: 20px;
      padding: 28px; border: 1.5px solid #e2e8f0;
      transition: box-shadow 0.3s;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
    }
    .review-card.visible { opacity: 1; transform: translateY(0); }
    .review-card:hover { box-shadow: var(--shadow-sm); }
    .stars { color: var(--orange); font-size: 15px; margin-bottom: 14px; }
    .review-card blockquote {
      font-size: 16px; color: var(--navy2); line-height: 1.75;
      font-style: italic; margin-bottom: 20px; border: none; padding: 0;
    }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .rev-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--blue-light);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); font-size: 18px; font-weight: 700; flex-shrink: 0;
    }
    .reviewer h4 { font-size: 16px; font-weight: 600; }
    .reviewer p { font-size: 16px; color: var(--gray); }
    .review-saving {
      display: inline-block; margin-top: 16px;
      background: #dcfce7; color: #15803d;
      font-size: 16px; font-weight: 600; padding: 4px 12px; border-radius: 50px;
    }

    /* ─── FAQ ─── */
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border-radius: var(--radius);
      border: 1.5px solid #e2e8f0; overflow: hidden;
    }
    .faq-q {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
      font-family: 'FCIconic', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy);
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--gray-light); }
    .faq-q i { transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; color: var(--blue); }
    .faq-item.open .faq-q { background: var(--blue-light); color: var(--blue); }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 24px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 4px 24px 20px; }
    .faq-a p { font-size: 16px; color: var(--gray); line-height: 1.75; }

    /* ─── CTA ─── */
    #cta {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, #fbbf24 100%);
      padding: 96px 5%; text-align: center; position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }
    #cta::after {
      content: '';
      position: absolute; bottom: -60px; left: -60px;
      width: 240px; height: 240px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }
    #cta h2 {
      font-size: clamp(28px, 4vw, 48px); font-weight: 800;
      color: var(--white); margin-bottom: 16px; position: relative; z-index: 1;
    }
    #cta p {
      font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px;
      position: relative; z-index: 1; font-weight: 300;
    }
    .cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; }
    .btn-cta-white {
      background: var(--white); color: var(--navy);
      padding: 16px 40px; border-radius: 50px;
      font-size: 16px; font-weight: 700;
      display: inline-flex; align-items: center; gap: 10px;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
    .btn-cta-outline {
      background: #002564; color: var(--white);
      border: 2px solid #002564;
      padding: 16px 36px; border-radius: 50px;
      font-size: 16px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-cta-outline:hover { background: #001a4a; border-color: #001a4a; }

    /* ─── Footer ─── */
    footer {
      background: var(--navy); padding: 48px 5% 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
    }
    .footer-brand .logo { margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
    .footer-brand .logo img { height: 40px; width: auto; }
    .footer-brand .logo .footer-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
    .footer-brand .logo .footer-logo-eqp { height: 36px; }
    .footer-brand p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; }
    .footer-socials { display: flex; gap: 12px; margin-top: 20px; }
    .footer-socials a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; transition: background 0.2s, color 0.2s;
    }
    .footer-socials a:hover { background: var(--orange); color: var(--white); }
    .footer-col h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 16px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 16px; color: rgba(255,255,255,0.3); }

    /* ─── Floating Line Button ─── */
    .float-line {
      position: fixed; bottom: 32px; right: 28px; z-index: 998;
      background: #06C755; color: var(--white);
      width: 58px; height: 58px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      box-shadow: 0 8px 24px rgba(6,199,85,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: float-bounce 3s ease-in-out infinite;
    }
    .float-line:hover { transform: scale(1.1); box-shadow: 0 12px 28px rgba(6,199,85,0.55); }
    @keyframes float-bounce {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* ─── NP Partner (Navbar) ─── */
    .nav-np {
      display: flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px;
      padding: 5px 14px 5px 8px;
      font-size: 11px; font-weight: 600;
      color: rgba(255,255,255,0.75);
      white-space: nowrap; margin-right: 4px;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .nav-np img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; transition: opacity 0.3s; }
    #navbar.scrolled .nav-np {
      background: rgba(37,99,235,0.08);
      border-color: rgba(37,99,235,0.2);
      color: var(--blue);
    }
    #navbar.scrolled .nav-np img { filter: none; opacity: 1; }
    @media (max-width: 768px) { .nav-np { display: none; } }

    /* ─── Hero NP trust line ─── */
    .hero-np-trust {
      display: flex; align-items: center; gap: 10px;
      margin-top: 18px; margin-bottom: 18px; flex-wrap: wrap;
      font-size: 16px; color: rgba(255,255,255,0.4);
      line-height: 1.5;
    }
    .hero-np-trust img { height: 48px; filter: brightness(0) invert(1); opacity: 0.5; flex-shrink: 0; }
    .hero-np-trust .np-pipe { color: rgba(255,255,255,0.2);}

    /* ─── ProChang x NP Section ─── */
    .np-section {
      padding: 100px 5%;
      background: linear-gradient(160deg, #060f22 0%, #0d1f45 60%, #071529 100%);
      position: relative; overflow: hidden;
    }
    .np-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: var(--solar-pattern);
      background-size: 34px 24px;
      opacity: 0.1; pointer-events: none; z-index: 0;
    }
    .np-inner { position: relative; z-index: 1; }
    .np-logos {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-bottom: 44px;
    }
    .np-logos .nl-logo { height: 48px; width: auto; }
    .np-logos .nl-logo-white { filter: brightness(0) invert(1); }
    .np-logos .nl-eqp { height: 48px; }
    .np-x {
      font-size: 22px; font-weight: 300;
      color: rgba(255,255,255,0.2);
      padding: 0 4px;
    }
    .np-header { text-align: center; margin-bottom: 52px; }
    .np-tag {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(0,0,0,0.15);
      color: var(--orange);
      font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
      padding: 6px 16px; border-radius: 50px;
      text-transform: uppercase; margin-bottom: 22px;
    }
    .np-header h2 {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 800; color: #fff;
      line-height: 1.3; margin-bottom: 18px;
    }
    .np-header h2 span { color: var(--orange); }
    .np-header p {
      font-size: 16px; color: rgba(255,255,255,0.5);
      max-width: 680px; margin: 0 auto; line-height: 1.8;
    }
    .np-checklist {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    .np-check {
      background: rgba(255,255,255,0.045);
      border-radius: 22px; padding: 34px 28px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, border-color 0.3s;
    }
    .np-check.visible { opacity: 1; transform: translateY(0); }
    .np-check:hover { background: rgba(255,255,255,0.085); border-color: rgba(245,158,11,0.3); transform: translateY(-5px); }
    .np-check-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(245,158,11,0.13);
      color: var(--orange); font-size: 22px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .np-check h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.4; }
    .np-check p { font-size: 16px; color: rgba(255,255,255,0.48); line-height: 1.75; }
    @media (max-width: 960px) {
      .np-checklist { grid-template-columns: 1fr 1fr; }
      .np-section { padding: 76px 5%; }
    }
    @media (max-width: 640px) {
      .np-checklist { grid-template-columns: 1fr; }
      .np-logos .nl-logo, .np-logos .nl-eqp { height: 36px; }
    }

    /* ─── CTA NP Stamp ─── */
    .np-stamp {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      border: none;
      padding: 8px 0;
      margin-top: 28px;
      font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7);
    }
    .np-stamp img { height: 24px; filter: brightness(0) invert(1); }
    .np-stamp i { color: rgba(255,255,255,0.7); font-size: 18px; }

    /* ─── Energy use pills (CTA) ─── */
    .energy-uses {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 10px; margin: 20px 0 32px;
    }
    .eu-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px; padding: 8px 18px;
      font-size: 16px; color: #002564; font-weight: 500;
    }
    .eu-pill i {
      color: var(--orange);
      background: var(--white);
      width: 28px; height: 28px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    /* ─── Embedded Calculator (inside why-visual card) ─── */
    .emb-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(249,178,8,0.13);
      border: 1px solid rgba(249,178,8,0.28);
      color: var(--orange);
      font-size: 16px; font-weight: 700; letter-spacing: 0.7px;
      padding: 5px 13px; border-radius: 50px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .emb-sub {
      font-size: 16px; color: rgba(255,255,255,0.3);
      margin-bottom: 18px; font-weight: 300;
    }
    .emb-field { margin-bottom: 14px; }
    .emb-label {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: 16px; font-weight: 700; letter-spacing: 0.5px;
      color: rgba(255,255,255,0.45); text-transform: uppercase;
      margin-bottom: 7px;
    }
    .emb-pct-val {
      font-size: 16px; font-weight: 800; color: #fff;
      text-transform: none; letter-spacing: 0;
    }
    .emb-pct-val em { font-style: normal; font-size: 11px; color: var(--orange); }
    .emb-input-wrap { position: relative; }
    .emb-input-wrap input[type="number"] {
      width: 100%;
      background: rgba(255,255,255,0.07);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 13px 44px 13px 16px;
      font-family: inherit;
      font-size: 26px; font-weight: 800; color: #fff;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      -moz-appearance: textfield; appearance: textfield;
      letter-spacing: -0.5px;
    }
    .emb-input-wrap input[type="number"]::-webkit-inner-spin-button,
    .emb-input-wrap input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
    .emb-input-wrap input[type="number"]::placeholder { color: rgba(255,255,255,0.2); font-size: 18px; font-weight: 400; }
    .emb-input-wrap input[type="number"]:focus {
      border-color: var(--orange); background: rgba(255,255,255,0.1);
    }
    .emb-input-wrap .emb-unit {
      position: absolute; right: 13px; top: 50%;
      transform: translateY(-50%);
      font-size: 16px; font-weight: 700; color: var(--orange);
    }
    /* shared slider styles */
    input[type="range"].emb-range {
      -webkit-appearance: none; appearance: none;
      width: 100%; height: 5px; border-radius: 3px;
      background: rgba(255,255,255,0.13);
      outline: none; cursor: pointer;
    }
    input[type="range"].emb-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--orange); border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(249,178,8,0.5); cursor: pointer;
    }
    input[type="range"].emb-range::-moz-range-thumb {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--orange); border: 3px solid #fff; cursor: pointer;
    }
    .emb-day-night {
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 12px;
      padding: 10px 14px;
      margin-bottom: 10px;
    }
    .emb-dn-side {
      display: flex; align-items: center; gap: 7px;
    }
    .emb-dn-day i { color: #fbbf24; font-size: 16px; }
    .emb-dn-night i { color: #93c5fd; font-size: 16px; }
    .dn-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; }
    .dn-pct { font-size: 16px; font-weight: 800; color: #fff; min-width: 38px; }
    .emb-dn-day .dn-pct { color: #fbbf24; }
    .emb-dn-night .dn-pct { color: #93c5fd; text-align: right; }
    .emb-calc-btn {
      width: 100%; background: var(--orange); color: #fff;
      border: none; cursor: pointer;
      padding: 14px; border-radius: 12px;
      font-family: inherit; font-size: 15px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 18px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(249,178,8,0.3);
    }
    .emb-calc-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(249,178,8,0.42); }
    .emb-results {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px; margin-top: 14px;
    }
    .emb-res .er-val { color: rgba(255,255,255,0.22); transition: color 0.35s; }
    .emb-res.has-value .er-val { color: #fff; }
    .emb-res .er-icon { opacity: 0.35; transition: opacity 0.35s; }
    .emb-res.has-value .er-icon { opacity: 1; }
    .emb-res .er-label { transition: color 0.35s; }
    .emb-res.has-value .er-label { color: rgba(255,255,255,0.55); }
    .emb-res {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 13px 10px; text-align: center;
      transition: background 0.25s, border-color 0.25s;
    }
    .emb-res:hover { background: rgba(255,255,255,0.1); border-color: rgba(249,178,8,0.3); }
    .emb-res .er-icon { font-size: 15px; margin-bottom: 6px; }
    .emb-res .er-val {
      font-size: 20px; font-weight: 800; color: #fff;
      line-height: 1; margin-bottom: 3px;
    }
    .emb-res .er-val em { font-style: normal; font-size: 16px; font-weight: 500; color: var(--orange); margin-left: 1px; }
    .emb-res .er-label { font-size: 16px; color: rgba(255,255,255,0.38); line-height: 1.35; }
    .emb-note {
      font-size: 16px; color: rgba(255,255,255,0.22);
      margin-top: 10px; line-height: 1.5; display: none;
    }
    .emb-cta {
      margin-top: 12px;
      opacity: 0; transition: opacity 0.4s 0.2s;
      pointer-events: none;
    }
    .emb-cta.show { opacity: 1; pointer-events: auto; }
    .emb-cta a {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.8);
      border-radius: 10px; padding: 11px 16px;
      font-size: 16px; font-weight: 600;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .emb-cta a:hover {
      background: rgba(249,178,8,0.12);
      border-color: rgba(249,178,8,0.45); color: var(--orange);
    }

    /* ─── Scroll Reveal ─── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

     @media (max-width: 1360px) {
      .logo-img { height: 48px; }
      .nav-logo-eqp { height: 40px; }
      .nav-logo-divider { height: 28px; }
     }

    /* ─── Tablet ─── */
    @media (max-width: 960px) {
      .logo-img { height: 48px; }
      .nav-logo-eqp { height: 40px; }
      .nav-logo-divider { height: 28px; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px 5%; border-bottom: 1px solid #e2e8f0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
      .nav-links.open { display: flex; }
      .nav-links a { color: var(--navy) !important; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
      .hamburger { display: flex; }
      .section { padding: 36px 5%; }
      .resilience-section { padding: 80px 5%; }
      #hero { padding: 90px 6% 60px; }
      .hero-content { max-width: 100%; }
      /* Full-width bg image, heavier left fade so text stays readable */
      .hero-visual { width: 100%; }
      .house-frame {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 30%, black 60%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 30%, black 60%);
      }
      .house-overlay {
        background: linear-gradient(
          to bottom,
          rgba(7,14,31,0.55) 0%,
          rgba(7,14,31,0.25) 40%,
          rgba(7,14,31,0.25) 70%,
          rgba(7,14,31,0.6) 100%
        );
      }
      .float-badge { display: none; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .packages-grid, .whyus-grid { grid-template-columns: 1fr 1fr; }
      .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .process-steps { grid-template-columns: 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    /* ─── Mobile ─── */
    @media (max-width: 640px) {
      .logo-img { height: 36px; }
      .nav-logo-eqp { height: 30px; }
      .nav-logo-divider { height: 22px; }
      .nav-logo { gap: 8px; }
      .section { padding: 28px 5%; }
      .resilience-section { padding: 64px 5%; }
      #hero { padding: 80px 5% 52px; text-align: center; }
      .hero-btns { justify-content: center; }
      .hero-stats { flex-wrap: wrap; }
      .h-stat { min-width: 40%; padding: 0 12px; }
      /* Keep full-width bg, fade from top-left so text is legible */
      .house-frame {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 40%, black 75%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 40%, black 75%);
      }
      .house-overlay {
        background: linear-gradient(
          to bottom,
          rgba(7,14,31,0.7) 0%,
          rgba(7,14,31,0.35) 45%,
          rgba(7,14,31,0.35) 65%,
          rgba(7,14,31,0.7) 100%
        );
      }
      .house-img { object-position: 70% center; }
      .why-grid, .packages-grid, .whyus-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .process-steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 20px; }
      .pkg-card.popular { transform: none; }
      .pkg-card.popular.visible { transform: none; }
      .resilience-title { font-size: 1.9rem; }
      .resilience-sub { font-size: 15px; margin-bottom: 48px; }
      .resilience-feat { padding: 32px 24px 28px; }
      .saving-badge { flex-direction: column; text-align: center; gap: 8px; }
      .why-visual { padding: 36px 28px; }
      #cta { padding: 72px 5%; }
      .section-title { font-size: clamp(22px, 7vw, 36px); }
    }
