  


  /* ─── FEATURES STRIP ─── */
  .features-strip {
    background: var(--off-white);
    border-top: 1px solid rgba(10, 22, 40, 0.05);
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    padding: 3.5rem 3rem;
  }
  .features-strip-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem;
  }
  .feature-pill {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: var(--warm-white);
    border: 1px solid rgba(10, 22, 40, 0.04);
    transition: all 0.4s;
  }
  .feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.06);
    border-color: rgba(232, 169, 23, 0.15);
  }
  .feature-pill .fp-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background:var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
  }
  .feature-pill .fp-icon svg {
    width: 20px; height: 20px;
    stroke: #FFFFFF; fill: none; stroke-width: 1.8;
  }
  .feature-pill h4 {
    font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
    line-height: 1.35;
  }

  /* ─── PRODUCT DETAIL ─── */
  .product-detail {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pd-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .pd-text {}
  .pd-text .overline {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--solar-gold); margin-bottom: 1rem;
  }
  .pd-text h2 {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 1.5rem; color: var(--text-primary);
  }
  .pd-text p {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 1.5rem;
  }
  .pd-text .benefit-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .pd-text .benefit-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; line-height: 1.6;
    color: var(--text-secondary);
  }
  .benefit-list .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0, 92, 141, 0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .benefit-list .check svg {
    width: 12px; height: 12px;
    stroke:#1a1a1a; fill: none; stroke-width: 2.5;
  }

  /* Spec sheets image area */
  .pd-specs {
    position: sticky;
    top: 100px;
  }
  .spec-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(10, 22, 40, 0.06);
    margin-bottom: 1.5rem;
    transition: all 0.4s;
  }
  .spec-card:hover {
    box-shadow: 0 12px 30px rgba(10, 22, 40, 0.08);
    transform: translateY(-2px);
  }
  .spec-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }
  .spec-card .label {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .spec-card .label svg {
    width: 14px; height: 14px;
    stroke: var(--solar-gold); fill: none; stroke-width: 2;
  }

  /* ─── SPECS TABLE ─── */
  .specs-section {
    background:var(--blue);
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .specs-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(168, 196, 224, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(168, 196, 224, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .specs-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 2;
  }
  .specs-inner .section-header {
    text-align: center; margin-bottom: 4rem;
  }
  .specs-inner .section-header .overline {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--solar-gold); margin-bottom: 0.75rem;
  }
  .specs-inner .section-header h2 {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--off-white); letter-spacing: -0.02em;
  }

  .spec-table-wrap {
    background: rgba(168, 196, 224, 0.05);
    border: 1px solid rgba(168, 196, 224, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  .spec-table {
    width: 100%;
    border-collapse: collapse;
  }
  .spec-table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--solar-gold);
    background: rgba(10, 22, 40, 0.3);
    border-bottom: 1px solid rgba(168, 196, 224, 0.1);
  }
  .spec-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.92rem;
    color: var(--light-blue);
    border-bottom: 1px solid rgba(168, 196, 224, 0.06);
  }
  .spec-table tbody tr:last-child td { border-bottom: none; }
  .spec-table tbody tr:hover td {
    background: rgba(232, 169, 23, 0.05);
  }
  .spec-table .param { color: var(--off-white); font-weight: 600; }

  /* ─── OTHER PRODUCTS ─── */
  .other-products {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .other-products .section-header {
    text-align: center; margin-bottom: 3.5rem;
  }
  .other-products .section-header .overline {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--solar-gold); margin-bottom: 0.75rem;
  }
  .other-products .section-header h2 {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.02em; color: var(--text-primary);
  }
  .product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .product-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(10, 22, 40, 0.05);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--solar-gold), transparent); opacity: 0; transition: opacity 0.4s;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
  }
  .product-card:hover::before { opacity: 1; }
  .product-card .pc-badge {
    display: inline-block;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 100px;
    margin-bottom: 1rem;
    background: rgba(27, 58, 92, 0.08);
    color: var(--slate);
    width: fit-content;
  }
  .product-card h3 {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: 1.3rem; color: var(--text-primary);
    margin-bottom: 0.5rem;
  }
  .product-card p {
    font-size: 0.88rem; line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
  }
  .product-card .pc-power {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: 1.4rem;
    color:var(--blue);
  }
  .product-card .pc-power span {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  .product-card .arrow {
    position: absolute;
    top: 2rem; right: 2rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--warm-white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .product-card:hover .arrow {
    background: var(--solar-gold);
  }
  .product-card .arrow svg {
    width: 14px; height: 14px;
    stroke: var(--text-secondary); fill: none; stroke-width: 2;
    transition: stroke 0.3s;
  }
  .product-card:hover .arrow svg { stroke: var(--deep-navy); }

  /* ─── CTA ─── */
  .cta-band {
    background: var(--deep-navy);
    padding: 5rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(232, 169, 23, 0.08), transparent);
  }
  .cta-inner {
    position: relative; z-index: 2;
    max-width: 700px; margin: 0 auto;
  }
  .cta-inner h2 {
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--off-white); margin-bottom: 1rem; letter-spacing: -0.02em;
  }
  .cta-inner p {
    color: var(--light-blue);
    font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2rem; }
    .hero-product { order: -1; }
    .hero-product img { max-height: 300px; }
    .hero-cells { display: none; }
    .features-strip { padding: 2.5rem 1.5rem; }
    .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .product-detail { padding: 5rem 1.5rem; }
    .pd-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pd-specs { position: static; }
    .specs-section { padding: 5rem 1.5rem; }
    .spec-table-wrap { overflow-x: auto; }
    .other-products { padding: 5rem 1.5rem; }
    .product-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cta-band { padding: 3.5rem 1.5rem; }
  }
  @media (max-width: 600px) {
    .features-strip-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-actions { flex-direction: column; }
  }