
    /* ==========================================================================
       CSS Design System & Variables
       Theme Base Color: #f1f4ff (Requested)
       Aesthetic: Clean Modernist, Editorial Layout, Young Professional Appeal
       ========================================================================== */
    :root {
      --bg-canvas: #f1f4ff;
      --bg-surface: #ffffff;
      --bg-surface-subtle: #f8faff;
      --text-headline: #111e33;
      --text-body: #3b4858;
      --text-secondary: #64748b;
      --text-caption: #8d99ae;
      --border-subtle: #dbe4f4;
      --border-focus: #cbd5e1;
      --accent-gold: #c5a059;
      --accent-gold-soft: #fcf8ee;
      --accent-navy: #19273c;
      --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --shadow-soft: 0 4px 20px rgba(25, 39, 60, 0.04);
      --shadow-hover: 0 10px 30px rgba(25, 39, 60, 0.08);
      --radius-large: 18px;
      --radius-small: 10px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      background-color: var(--bg-canvas);
      color: var(--text-body);
      font-family: var(--font-family);
      line-height: 1.65;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
      padding: 0;
      margin: 0;
    }

    .page-wrapper {
      max-width: 1160px;
      margin: 0 auto;
      padding: 50px 24px 80px;
    }

    /* ==========================================================================
       Header & Hero Section
       ========================================================================== */
    .hero-banner {
      text-align: center;
      margin-bottom: 56px;
      padding: 24px 16px 0;
    }

    .hero-pill {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-gold);
      background: var(--accent-gold-soft);
      border: 1px solid rgba(197, 160, 89, 0.25);
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 18px;
    }

    .hero-heading {
      font-size: 40px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.8px;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .hero-subheading {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 780px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ==========================================================================
       Editorial Feature Highlights Ribbon
       ========================================================================== */
    .highlight-ribbon {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 50px;
    }

    .ribbon-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-small);
      padding: 16px 20px;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .ribbon-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-headline);
      margin-bottom: 4px;
    }

    .ribbon-desc {
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* ==========================================================================
       Product Gallery Grid (16 Images - 2 Columns Desktop / 1 Column Mobile)
       ========================================================================== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-bottom: 64px;
    }

    .gallery-card {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .gallery-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .gallery-image-box {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--bg-canvas);
      overflow: hidden;
      position: relative;
    }

    .gallery-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-card:hover .gallery-image-box img {
      transform: scale(1.025);
    }

    .gallery-content {
      padding: 28px 26px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .gallery-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 8px;
    }

    .gallery-title {
      font-size: 21px;
      font-weight: 700;
      color: var(--text-headline);
      line-height: 1.35;
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }

    .gallery-description {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 18px;
      flex: 1;
    }

    .gallery-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px dashed var(--border-subtle);
    }

    .pill-item {
      font-size: 12px;
      background: var(--bg-canvas);
      color: var(--text-headline);
      padding: 4px 12px;
      border-radius: 6px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    /* ==========================================================================
       Specifications Matrix Section
       ========================================================================== */
    .specs-section {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-subtle);
      padding: 44px 38px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 64px;
    }

    .specs-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .specs-header h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.4px;
      margin-bottom: 8px;
    }

    .specs-header p {
      font-size: 15px;
      color: var(--text-secondary);
    }

    .specs-table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }

    .specs-table th {
      background: var(--bg-surface-subtle);
      padding: 16px 20px;
      font-weight: 700;
      color: var(--text-headline);
      border-bottom: 2px solid var(--border-subtle);
      white-space: nowrap;
    }

    .specs-table td {
      padding: 15px 20px;
      border-bottom: 1px solid var(--border-subtle);
      color: var(--text-body);
      vertical-align: top;
      line-height: 1.6;
    }

    .specs-table tr:last-child td {
      border-bottom: none;
    }

    /* ==========================================================================
       Static FAQ Cards Section (Flat Informational Grid)
       ========================================================================== */
    .faq-section {
      background: var(--bg-surface);
      border-radius: var(--radius-large);
      border: 1px solid var(--border-subtle);
      padding: 52px 44px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 50px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .faq-header h2 {
      font-size: 30px;
      font-weight: 800;
      color: var(--text-headline);
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }

    .faq-header p {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .faq-card {
      background: var(--bg-surface-subtle);
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-small);
      padding: 28px 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-question {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-headline);
      line-height: 1.45;
    }

    .faq-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: var(--accent-gold);
      background: #fdf8ed;
      border: 1px solid rgba(197, 160, 89, 0.3);
      padding: 3px 8px;
      border-radius: 6px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .faq-answer {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.75;
      padding-left: 42px;
    }

    /* ==========================================================================
       Informational Footer
       ========================================================================== */
    .site-footer {
      text-align: center;
      padding: 30px 16px 10px;
      font-size: 13px;
      color: var(--text-caption);
      border-top: 1px solid var(--border-subtle);
    }

    /* ==========================================================================
       Responsive Rules (Mobile Adaptation)
       ========================================================================== */
    @media (max-width: 860px) {
      .highlight-ribbon {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .page-wrapper {
        padding: 28px 14px 60px;
      }

      .hero-heading {
        font-size: 28px;
      }

      .hero-subheading {
        font-size: 14px;
      }

      .highlight-ribbon {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 36px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 46px;
      }

      .gallery-content {
        padding: 22px 18px 20px;
      }

      .gallery-title {
        font-size: 19px;
      }

      .specs-section {
        padding: 26px 16px;
        margin-bottom: 46px;
      }

      .faq-section {
        padding: 30px 18px;
        margin-bottom: 40px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .faq-card {
        padding: 22px 18px;
      }

      .faq-answer {
        padding-left: 0;
      }
    }
  