﻿    :root {
      /* IP Brand Colors - Systech Primary */
      --ip-primary: #233d4d;
      --ip-primary-dark: #1a2f3a;
      --ip-primary-light: #2d4f61;
      --ip-accent: #0f766e;
      --ip-orange: #233d4d;
      --ip-orange-dark: #1a2f3a;
      --ip-orange-light: #2d4f61;
      /* Supporting Colors */
      --ip-blue: #1e293b;
      --ip-white: #ffffff;
      --ip-gray-50: #f8fafc;
      --ip-gray-100: #f1f5f9;
      --ip-gray-200: #e2e8f0;
      --ip-gray-300: #cbd5e1;
      --ip-gray-400: #94a3b8;
      --ip-gray-500: #64748b;
      --ip-gray-600: #475569;
      --ip-gray-700: #334155;
      --ip-gray-800: #1e293b;
      --ip-gray-900: #0f172a;
      --ip-text: #1e293b;
      --ip-text-muted: #64748b;
      --ip-border-soft: rgba(15, 23, 42, 0.08);
      --ip-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
      --ip-shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.12);
      --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      color: var(--ip-text);
      line-height: 1.7;
      letter-spacing: -0.01em;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    ::selection {
      background: rgba(35, 61, 77, 0.14);
      color: var(--ip-gray-900);
    }

    img {
      display: block;
    }

    a {
      color: inherit;
    }

    h1, h2, h3, h4, h5, h6 {
      text-wrap: balance;
      letter-spacing: -0.03em;
    }

    p {
      text-wrap: pretty;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid rgba(15, 118, 110, 0.28);
      outline-offset: 3px;
    }



    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }



    /* Hero Section - Light Theme */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    }

    #hero-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-text {
      color: var(--ip-gray-900);
    }

    /* Hero Brand Logos */
    .hero-brand {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 24px;
    }

    .hero-brand-divider {
      width: 1px;
      height: 40px;
      background: var(--ip-gray-300);
    }

    .hero-logo {
      height: 60px;
      width: auto;
      filter: drop-shadow(0 4px 20px rgba(235, 109, 7, 0.2));
      transition: all 0.4s ease;
    }

    .hero-logo.systech-logo {
      height: 45px;
    }

    .hero-logo:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 8px 30px rgba(235, 109, 7, 0.3));
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: white;
      border: 1px solid var(--ip-gray-200);
      border-radius: 100px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ip-gray-700);
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .hero-title {
      font-size: clamp(28px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.04;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
      color: var(--ip-gray-900);
    }

    .hero-title .accent {
      background: linear-gradient(135deg, #ed6b07 0%, #f08a3c 45%, #c65100 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 17px;
      line-height: 1.8;
      color: var(--ip-gray-600);
      margin-bottom: 40px;
      max-width: 560px;
    }

    /* Redesigned Hero Layout - Image on top, info below */
    .hero-content-redesigned {
      padding: 80px 60px 60px !important;
      gap: 40px !important;
    }

    .hero-visual-column {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hero-image-compact {
      margin-top: -20px;
    }

    .hero-image-compact .hero-image {
      max-height: 320px;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    }

    .hero-info-below {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* Compliance Badges Grid */
    .compliance-badges-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 12px;
    }

    .compliance-badge-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: white;
      border-radius: 16px;
      border: 1px solid var(--ip-gray-200);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .compliance-badge-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--ip-primary);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .compliance-badge-card:hover {
      border-color: var(--ip-primary-light);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      transform: translateY(-4px);
    }
    
    .compliance-badge-card:hover::before {
      opacity: 1;
    }

    .compliance-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: var(--ip-gray-50);
      border-radius: 12px;
      flex-shrink: 0;
      color: var(--ip-primary);
      transition: all 0.3s ease;
    }
    
    .compliance-badge-card:hover .compliance-icon {
      background: var(--ip-primary);
      color: white;
    }
    
    .compliance-badge-card:hover .compliance-icon svg {
      stroke: white;
    }

    .compliance-content {
      flex: 1;
    }

    .compliance-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }

    .compliance-standards {
      font-size: 13px;
      font-weight: 500;
      color: var(--ip-gray-500);
      line-height: 1.55;
    }

    /* CTA Buttons */
    .hero-cta-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 12px;
      font-size: 14.5px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid transparent;
      flex: 1;
    }

    .cta-primary {
      background: var(--ip-primary);
      color: white;
      box-shadow: 0 4px 12px rgba(35, 61, 77, 0.35), 0 2px 5px rgba(35, 61, 77, 0.2);
    }

    .cta-primary:hover {
      background: var(--ip-primary-dark);
      box-shadow: 0 10px 24px rgba(35, 61, 77, 0.45), 0 4px 8px rgba(35, 61, 77, 0.25);
      transform: translateY(-2px);
    }

    .cta-secondary {
      background: white;
      color: var(--ip-gray-700);
      border-color: var(--ip-gray-200);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .cta-secondary:hover {
      border-color: var(--ip-primary);
      color: var(--ip-primary);
      background: var(--ip-gray-50);
      transform: translateY(-2px);
    }

    /* Stats Grid */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: white;
      border-radius: 16px;
      border: 1px solid var(--ip-gray-200);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .hero-stat-item {
      text-align: center;
      padding: 20px 10px;
      position: relative;
      transition: background 0.3s ease;
    }
    
    .hero-stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: var(--ip-gray-200);
    }

    .hero-stat-item:hover {
      background: var(--ip-gray-50);
    }

    .stat-number {
      font-size: 28px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--ip-primary-dark), var(--ip-primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--ip-gray-500);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .compliance-badges-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .hero-cta-buttons {
        flex-direction: column;
      }
      
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .hero-stat-item:nth-child(2)::after {
        display: none;
      }
      
      .hero-stat-item {
        border-bottom: 1px solid var(--ip-gray-200);
      }
      
      .hero-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .hero-content {
        padding: 80px 24px 50px;
      }
      
      .hero-title {
        font-size: 28px;
      }
      
      .hero-subtitle {
        font-size: 15px;
      }

      .hero-stats {
        gap: 20px;
        padding: 18px 20px;
        flex-wrap: wrap;
      }

      .hero-stat {
        flex: 1 1 40%;
        text-align: center;
      }

      .hero-stat-value {
        font-size: 18px;
      }

      .hero-stat-label {
        font-size: 10px;
      }

      .hero-logo {
        height: 50px;
      }

      .btn {
        padding: 14px 24px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .hero-content {
        padding: 70px 16px 40px;
      }
      
      .hero-title {
        font-size: 26px;
      }
      
      .hero-subtitle {
        font-size: 15px;
      }

      .hero-brand {
        flex-wrap: wrap;
        gap: 12px;
      }

      .hero-brand-divider {
        display: none;
      }

      .hero-stats {
        gap: 16px;
        padding: 16px;
        border-radius: 12px;
      }

      .stat-number {
        font-size: 18px;
      }

      .hero-stat-value {
        font-size: 16px;
      }

      .hero-logo {
        height: 40px;
        max-width: 44vw;
      }

      .hero-logo.systech-logo {
        height: 32px;
      }
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Hero Stats Bar */
    .hero-stats {
      display: flex;
      gap: 48px;
      justify-content: flex-start;
      flex-wrap: wrap;
      padding: 24px 40px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      border: 1px solid var(--ip-gray-200);
      max-width: 700px;
      margin-top: 40px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-value {
      font-size: 24px;
      font-weight: 800;
      color: var(--ip-primary);
      line-height: 1;
      margin-bottom: 4px;
    }

    .hero-stat-label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--ip-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.9px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s var(--transition-smooth);
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--ip-primary) !important;
      color: white !important;
      box-shadow: 0 4px 20px rgba(235, 109, 7, 0.4);
    }

    .btn-primary:hover {
      background: var(--ip-primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(235, 109, 7, 0.5);
    }

    .btn-secondary {
      background: white;
      color: var(--ip-primary);
      border: 1px solid var(--ip-gray-200);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .btn-secondary:hover {
      background: var(--ip-gray-50);
      border-color: var(--ip-primary);
    }

    .hero-visual {
      position: relative;
    }

    .hero-image-wrapper {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 60px 40px;
      transition: all 0.5s var(--transition-smooth);
    }

    .hero-image-wrapper:hover {
      background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.12));
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-5px);
    }

    .hero-image {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
      transition: transform 0.5s var(--transition-smooth);
    }

    .hero-image-wrapper:hover .hero-image {
      transform: scale(1.03);
    }

    /* Stats Section - Compact Tabbed Card */
    .stats-card-section {
      padding: 60px 60px;
      background: linear-gradient(180deg, var(--ip-gray-50) 0%, white 100%);
    }

    .stats-card-section .section-header {
      margin-bottom: 40px;
    }

    .stats-card-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .stats-card {
      position: relative;
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--ip-shadow-lg);
      border: 1px solid var(--ip-border-soft);
    }

    .stats-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--ip-primary-dark), var(--ip-accent), var(--ip-primary-light));
    }

    .stats-tabs {
      display: flex;
      background: linear-gradient(180deg, var(--ip-gray-100) 0%, var(--ip-gray-50) 100%);
      border-bottom: 1px solid var(--ip-gray-200);
      overflow-x: auto;
      scrollbar-width: none;
      padding: 8px 8px 0;
      gap: 4px;
    }

    .stats-tabs::-webkit-scrollbar {
      display: none;
    }

    .stats-tab {
      flex: 1;
      padding: 18px 28px;
      background: transparent;
      border: none;
      border-radius: 12px 12px 0 0;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--ip-text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      white-space: nowrap;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .stats-tab:hover {
      color: var(--ip-primary);
      background: rgba(255, 255, 255, 0.7);
    }

    .stats-tab.active {
      color: var(--ip-primary);
      background: white;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    }

    .stats-tab.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ip-primary), var(--ip-primary-light));
      border-radius: 3px 3px 0 0;
    }

    .stats-tab svg {
      width: 18px;
      height: 18px;
    }

    .stats-panels {
      position: relative;
      background: white;
    }

    .stats-panel {
      display: none;
      padding: 40px;
      animation: fadeIn 0.4s ease;
    }

    .stats-panel.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .stats-panel-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stats-panel-item {
      text-align: center;
      padding: 24px 16px;
      background: linear-gradient(135deg, var(--ip-gray-50) 0%, white 100%);
      border-radius: 16px;
      border: 1px solid var(--ip-gray-200);
      transition: all 0.3s ease;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .stats-panel-item:hover {
      background: white;
      border-color: var(--ip-primary);
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(235, 109, 7, 0.12);
    }

    .stats-panel-value {
      font-size: 26px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--ip-primary) 0%, var(--ip-primary-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .stats-panel-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--ip-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .stats-panel-description {
      margin-top: 28px;
      padding: 24px;
      background: linear-gradient(135deg, rgba(35, 61, 77, 0.05) 0%, rgba(15, 118, 110, 0.04) 100%);
      border-radius: 16px;
      border: 1px solid rgba(35, 61, 77, 0.1);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .stats-panel-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--ip-primary) 0%, var(--ip-primary-dark) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 8px 24px rgba(235, 109, 7, 0.25);
    }

    .stats-panel-icon svg {
      width: 28px;
      height: 28px;
      color: white !important;
      stroke: white !important;
    }

    .stats-panel-text h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--ip-text);
      margin-bottom: 8px;
    }

    .stats-panel-text p {
      font-size: 14.5px;
      color: var(--ip-text-muted);
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 768px) {
      .stats-card-section {
        padding: 40px 24px;
      }
      .stats-panel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .stats-panel {
        padding: 24px;
      }
      .stats-panel-value {
        font-size: 20px;
      }
      .stats-panel-item {
        padding: 16px 12px;
      }
      .stats-tabs {
        justify-content: flex-start;
        padding: 6px 6px 0;
      }
      .stats-tab {
        padding: 12px 14px;
        font-size: 12px;
        gap: 6px;
      }
      .stats-tab svg {
        width: 16px;
        height: 16px;
      }
      .stats-panel-description {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }
      .stats-panel-icon {
        width: 48px;
        height: 48px;
      }
      .stats-panel-icon svg {
        width: 24px;
        height: 24px;
      }
    }

    /* Premium Video Section */
    .video-carousel-section {
      background: linear-gradient(175deg, #f0f4f8 0%, #ffffff 60%, #f8fafc 100%);
      padding: 100px 60px;
      overflow: hidden;
      position: relative;
    }
    .video-carousel-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--ip-primary), transparent);
      opacity: 0.3;
    }
    /* Decorative background circles */
    .video-carousel-section::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(35,61,77,0.06);
      top: -200px;
      right: -150px;
      pointer-events: none;
    }
    .video-carousel-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .video-carousel-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .video-section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      color: var(--ip-primary);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 18px;
      padding: 8px 20px;
      background: rgba(35,61,77,0.06);
      border-radius: 100px;
      border: 1px solid rgba(35,61,77,0.10);
    }
    .video-section-label svg {
      width: 14px; height: 14px;
      flex-shrink: 0;
    }
    .video-section-title {
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--ip-gray-900);
      margin-bottom: 14px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .video-section-subtitle {
      font-size: 16px;
      color: var(--ip-text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    /* Video Grid */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      max-width: 1000px;
      margin: 0 auto 40px;
    }
    /* Video Card */
    .video-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--ip-gray-100);
    }
    .video-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(35, 61, 77, 0.14), 0 8px 16px rgba(35,61,77,0.08);
      border-color: rgba(35,61,77,0.15);
    }
    .video-card.is-playing {
      box-shadow: 0 20px 50px rgba(35,61,77,0.2);
      border-color: var(--ip-primary);
      border-width: 2px;
    }
    .video-card-thumbnail {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--ip-gray-100);
    }
    .video-card-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .video-card:hover .video-card-thumbnail img { transform: scale(1.06); }
    /* Full overlay on hover */
    .video-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .video-card:hover .video-card-overlay { opacity: 1; }
    /* Always-visible small play badge, bottom-left */
    .video-play-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(0,0,0,0.72);
      color: #fff;
      padding: 6px 12px 6px 9px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      backdrop-filter: blur(4px);
      transition: background 0.25s ease;
      pointer-events: none;
    }
    .video-play-badge svg { width: 12px; height: 12px; fill: #fff; flex-shrink: 0; }
    .video-card:hover .video-play-badge { background: var(--ip-primary); }
    .play-button-wrapper { position: relative; }
    .play-button-pulse {
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      animation: pulse-ring 1.6s ease-out infinite;
    }
    @keyframes pulse-ring {
      0% { transform: scale(0.85); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    .play-button {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(8px);
    }
    .play-button:hover { transform: scale(1.1); background: #fff; border-color: white; }
    .play-button svg { width: 26px; height: 26px; fill: var(--ip-primary); margin-left: 3px; }
    .video-duration {
      position: absolute;
      bottom: 14px;
      right: 14px;
      background: rgba(0,0,0,0.75);
      color: #fff;
      padding: 4px 9px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.3px;
      backdrop-filter: blur(4px);
    }
    /* Close button - shown only while video plays */
    .video-close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 20;
      background: rgba(0,0,0,0.75);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      transition: background 0.2s ease;
      backdrop-filter: blur(4px);
    }
    .video-close-btn:hover { background: rgba(200,30,30,0.85); }
    .video-close-btn svg { width: 16px; height: 16px; pointer-events: none; }
    .video-card-content { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
    .video-category-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 13px;
      background: rgba(35, 61, 77, 0.07);
      color: var(--ip-primary);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 11px;
      width: fit-content;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }
    .video-card-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 7px;
      line-height: 1.3;
    }
    .video-card-desc {
      font-size: 14px;
      color: var(--ip-text-muted);
      line-height: 1.72;
      flex: 1;
    }
    /* YouTube CTA row below video grid */
    .video-section-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 8px;
    }
    .video-yt-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 22px;
      background: #ff0000;
      color: #fff;
      border-radius: 10px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(255,0,0,0.3);
    }
    .video-yt-btn:hover { background: #cc0000; box-shadow: 0 6px 20px rgba(255,0,0,0.4); transform: translateY(-2px); }
    .video-yt-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
    /* Responsive */
    @media (max-width: 1024px) {
      .video-carousel-section { padding: 80px 40px; }
      .video-grid { gap: 22px; }
    }
    @media (max-width: 768px) {
      .video-carousel-section { padding: 60px 20px; }
      .video-section-title { font-size: 22px; }
      .video-section-subtitle { font-size: 14px; }
      .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .video-card-title { font-size: 15px; }
      .video-card-desc { font-size: 13px; }
    }

    /* Products Section */
    .products {
      padding: 70px 60px;
      background: var(--ip-gray-50);
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--ip-primary);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 16px;
      padding: 7px 16px;
      background: rgba(35,61,77,0.06);
      border-radius: 100px;
      border: 1px solid rgba(35,61,77,0.10);
    }

    .section-label::before,
    .section-label::after {
      content: none;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      color: var(--ip-gray-900);
      line-height: 1.08;
      margin-bottom: 18px;
      letter-spacing: -0.03em;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--ip-gray-500);
      line-height: 1.8;
      max-width: 62ch;
      margin-inline: auto;
    }

    .products-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 32px;
    }

    /* Each card spans 2 of 6 columns = 1/3 width */
    .products-grid .product-card {
      grid-column: span 2;
    }

    /* Center last 2 items in the 5-item 6-col grid */
    .products-grid .product-card:nth-child(4) { grid-column: 2 / 4; }
    .products-grid .product-card:nth-child(5) { grid-column: 4 / 6; }

    .product-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s var(--transition-smooth);
      border: 1px solid var(--ip-border-soft);
      position: relative;
      box-shadow: var(--ip-shadow-soft);
      text-decoration: none;
      display: block;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--ip-primary-dark), var(--ip-primary), var(--ip-primary-light));
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .product-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--ip-shadow-lg);
      border-color: rgba(35, 61, 77, 0.18);
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-image {
      padding: 40px;
      background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      position: relative;
      border-bottom: 1px solid var(--ip-gray-100);
    }

    .product-3d-canvas {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 80px;
      height: 80px;
      pointer-events: none;
    }

    .product-image img {
      max-width: 100%;
      max-height: 200px;
      object-fit: contain;
      transition: transform 0.5s var(--transition-smooth);
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-content {
      padding: 32px;
      background: linear-gradient(180deg, #fbfdff 0%, var(--ip-gray-50) 100%);
    }

    .product-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      background: var(--ip-blue) !important;
      color: white !important;
      font-size: 10.5px;
      font-weight: 700;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      margin-bottom: 16px;
    }

    .product-name {
      font-size: 20px !important;
      font-weight: 700 !important;
      color: var(--ip-gray-900) !important;
      margin-bottom: 12px;
      line-height: 1.3;
      text-decoration: none !important;
    }

    .product-desc {
      font-size: 14px !important;
      font-weight: 400 !important;
      color: var(--ip-gray-600) !important;
      line-height: 1.78 !important;
      margin-bottom: 24px;
      text-decoration: none !important;
    }

    .product-specs {
      display: flex;
      gap: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--ip-gray-100);
    }

    .product-spec {
      flex: 1;
    }

    .product-spec-value {
      font-size: 16px !important;
      font-weight: 700 !important;
      color: var(--ip-gray-900) !important;
    }

    .product-spec-label {
      font-size: 12px !important;
      color: var(--ip-gray-400) !important;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Product Specs Tabbed Card */
    .product-specs-tabs {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--ip-gray-200);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      margin-top: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .product-specs-tabs-header {
      display: flex;
      background: var(--ip-gray-50);
      border-bottom: 1px solid var(--ip-gray-200);
    }

    .product-specs-tab {
      flex: 1;
      padding: 20px 24px;
      background: none;
      border: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--ip-text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .product-specs-tab svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .product-specs-tab::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--ip-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .product-specs-tab:hover {
      color: var(--ip-primary);
      background: rgba(235, 109, 7, 0.05);
    }

    .product-specs-tab.active {
      color: var(--ip-primary);
      background: white;
    }

    .product-specs-tab.active::after {
      transform: scaleX(1);
    }

    .product-specs-tab .tab-model {
      font-size: 11px;
      font-weight: 500;
      color: var(--ip-gray-400);
    }

    .product-specs-panels {
      position: relative;
    }

    .product-specs-panel {
      display: none;
      padding: 40px;
      animation: fadeIn 0.4s ease;
    }

    .product-specs-panel.active {
      display: block;
    }

    .spec-detail-header {
      text-align: center;
      margin: 0 auto 32px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--ip-gray-200);
      max-width: 600px;
    }

    .spec-detail-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--ip-text);
      margin-bottom: 10px;
    }

    .spec-detail-subtitle {
      font-size: 16px;
      color: var(--ip-text-muted);
      line-height: 1.5;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 32px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .spec-grid-item {
      background: var(--ip-gray-50);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      border: 1px solid var(--ip-gray-200);
      transition: all 0.3s ease;
    }

    .spec-grid-item:hover {
      background: white;
      border-color: var(--ip-primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(235, 109, 7, 0.1);
    }

    .spec-grid-value {
      font-size: 15px;
      font-weight: 700;
      color: var(--ip-primary);
      margin-bottom: 4px;
    }

    .spec-grid-label {
      font-size: 11px;
      color: var(--ip-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .spec-description {
      background: var(--ip-gray-50);
      border-radius: 12px;
      padding: 24px;
    }

    .spec-description h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--ip-text);
      margin-bottom: 16px;
    }

    .spec-description ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      list-style: none;
    }

    .spec-description li {
      padding: 0;
    }

    .spec-description li strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--ip-text);
      margin-bottom: 4px;
    }

    .spec-description li span {
      font-size: 13px;
      color: var(--ip-text-muted);
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .product-specs-tabs-header {
        flex-wrap: wrap;
      }
      .product-specs-tab {
        flex: 1 1 33.33%;
        padding: 14px 12px;
        font-size: 12px;
      }
      .spec-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .spec-description ul {
        grid-template-columns: 1fr;
      }
      .product-specs-panel {
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      .product-specs-tab {
        flex: 1 1 100%;
      }
      .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .spec-grid-value {
        font-size: 13px;
      }
    }

    .spec-detail-subtitle {
      font-size: 18px;
      color: var(--ip-gray-500);
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 50px;
    }

    .spec-grid-item {
      background: var(--ip-gray-50);
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid var(--ip-gray-100);
    }

    .spec-grid-item:hover {
      background: white;
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border-color: var(--ip-blue);
    }

    .spec-grid-value {
      font-size: 20px;
      font-weight: 700;
      color: var(--ip-blue);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .spec-grid-label {
      font-size: 13px;
      color: var(--ip-gray-600);
      font-weight: 600;
    }

    .spec-description {
      background: linear-gradient(135deg, var(--ip-gray-50), white);
      padding: 40px;
      border-radius: 16px;
      border: 1px solid var(--ip-gray-100);
    }

    .spec-description h4 {
      font-size: 22px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 24px;
    }

    .spec-description ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .spec-description li {
      margin-bottom: 20px;
      padding-left: 30px;
      position: relative;
    }

    .spec-description li::before {
      content: '●';
      position: absolute;
      left: 0;
      color: var(--ip-orange);
      font-size: 20px;
      line-height: 1;
    }

    .spec-description strong {
      display: block;
      font-weight: 700;
      color: var(--ip-blue);
      margin-bottom: 6px;
      font-size: 16px;
    }

    .spec-description li > span {
      display: block;
      color: var(--ip-gray-600);
      line-height: 1.7;
      font-size: 15px;
    }

    /* Feature Cards for Spec Section */
    .spec-features-cards {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card-item {
      background: white;
      border: 1px solid var(--ip-gray-200);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature-card-item:hover {
      border-color: var(--ip-primary);
      box-shadow: 0 8px 24px rgba(235, 109, 7, 0.1);
      transform: translateY(-4px);
    }

    .feature-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--ip-primary);
      margin-bottom: 8px;
    }

    .feature-card-desc {
      font-size: 13px;
      color: var(--ip-gray-600);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .spec-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .spec-detail-card {
        padding: 40px 30px;
      }
    }

    @media (max-width: 600px) {
      .spec-grid {
        grid-template-columns: 1fr;
      }

      .spec-detail-card {
        padding: 30px 20px;
      }

      .spec-detail-title {
        font-size: 24px;
      }
    }

    /* Features Section - Compact 3-Card Grid */
    .features {
      padding: 70px 60px;
      background: var(--ip-white);
      position: relative;
    }

    .features-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .feature-card {
      position: relative;
      background: linear-gradient(180deg, #fbfdff 0%, var(--ip-gray-50) 100%);
      border: 1px solid var(--ip-border-soft);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.4s var(--transition-smooth);
      overflow: hidden;
      box-shadow: var(--ip-shadow-soft);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ip-primary), var(--ip-accent));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-card:hover {
      background: white;
      border-color: var(--ip-primary);
      transform: translateY(-6px);
      box-shadow: var(--ip-shadow-lg);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--ip-primary) 0%, var(--ip-primary-dark) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-card-icon svg {
      width: 28px;
      height: 28px;
      color: white !important;
    }

    .feature-card-number {
      font-size: 12px;
      font-weight: 700;
      color: var(--ip-primary);
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .feature-card-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .feature-card-desc {
      font-size: 14.5px;
      color: var(--ip-text-muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .feature-card-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .feature-card-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--ip-text);
    }

    .feature-card-list li svg {
      width: 16px;
      height: 16px;
      color: var(--ip-primary);
      flex-shrink: 0;
    }

    @media (max-width: 1100px) {
      .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .feature-badge-text {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--ip-gray-900);
    }

    .feature-content {
      padding: 20px 0;
    }

    .feature-number {
      font-size: 80px;
      font-weight: 900;
      color: var(--ip-gray-100);
      line-height: 1;
      margin-bottom: -20px;
    }

    .feature-title {
      font-size: clamp(30px, 3.4vw, 38px);
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 18px;
      line-height: 1.16;
    }

    .feature-description {
      font-size: 16px;
      color: var(--ip-gray-500);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .feature-list {
      list-style: none;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--ip-gray-600);
    }

    .feature-list li svg {
      width: 20px;
      height: 20px;
      color: var(--ip-blue);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Clients Section - Apple Watch Style Grid */
    .clients {
      padding: 60px 60px;
      background: linear-gradient(180deg, var(--ip-gray-50) 0%, white 100%);
      overflow: hidden;
    }

    .clients .section-header {
      margin-bottom: 50px;
    }

    .clients .section-title {
      color: var(--ip-gray-900);
    }

    .clients .section-subtitle {
      color: var(--ip-gray-500);
    }

    .logos-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .logos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .logo-bubble {
      width: 140px;
      height: 140px;
      background: white;
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
    }

    .logo-bubble::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
      border-radius: 28px;
      pointer-events: none;
    }

    .logo-bubble:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 
        0 20px 50px rgba(235, 109, 7, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      border-color: rgba(235, 109, 7, 0.2);
    }

    .logo-bubble img {
      max-width: 100%;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(0);
      opacity: 0.85;
      transition: all 0.4s ease;
    }

    .logo-bubble:hover img {
      opacity: 1;
      transform: scale(1.08);
    }

    /* Staggered floating animation */
    .logo-bubble:nth-child(1) { animation: float 6s ease-in-out infinite; animation-delay: 0s; }
    .logo-bubble:nth-child(2) { animation: float 6s ease-in-out infinite; animation-delay: 0.5s; }
    .logo-bubble:nth-child(3) { animation: float 6s ease-in-out infinite; animation-delay: 1s; }
    .logo-bubble:nth-child(4) { animation: float 6s ease-in-out infinite; animation-delay: 1.5s; }
    .logo-bubble:nth-child(5) { animation: float 6s ease-in-out infinite; animation-delay: 2s; }
    .logo-bubble:nth-child(6) { animation: float 6s ease-in-out infinite; animation-delay: 2.5s; }
    .logo-bubble:nth-child(7) { animation: float 6s ease-in-out infinite; animation-delay: 0.3s; }
    .logo-bubble:nth-child(8) { animation: float 6s ease-in-out infinite; animation-delay: 0.8s; }
    .logo-bubble:nth-child(9) { animation: float 6s ease-in-out infinite; animation-delay: 1.3s; }
    .logo-bubble:nth-child(10) { animation: float 6s ease-in-out infinite; animation-delay: 1.8s; }
    .logo-bubble:nth-child(11) { animation: float 6s ease-in-out infinite; animation-delay: 2.3s; }
    .logo-bubble:nth-child(12) { animation: float 6s ease-in-out infinite; animation-delay: 2.8s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    .logo-bubble:hover {
      animation-play-state: paused;
    }

    /* Size variations for visual interest */
    .logo-bubble.large {
      width: 160px;
      height: 160px;
      border-radius: 36px;
    }

    .logo-bubble.medium {
      width: 130px;
      height: 130px;
      border-radius: 26px;
    }

    @media (max-width: 900px) {
      .clients {
        padding: 50px 24px;
      }
      .logos-grid {
        gap: 12px;
        max-width: 400px;
      }
      .logo-bubble {
        width: 100px;
        height: 100px;
        padding: 16px;
        border-radius: 20px;
      }
      .logo-bubble.large,
      .logo-bubble.medium {
        width: 100px;
        height: 100px;
        border-radius: 20px;
      }
      .logo-bubble img {
        max-height: 45px;
      }
    }

    @media (max-width: 480px) {
      .clients {
        padding: 40px 16px !important;
      }
      .logos-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        justify-items: center !important;
        gap: 10px !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 0 !important;
      }
      .logo-bubble,
      .logo-bubble.large,
      .logo-bubble.medium {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        padding: 12px !important;
        border-radius: 16px !important;
        animation: none !important;
      }
      .logo-bubble img {
        max-height: 36px !important;
      }
      .clients .section-subtitle {
        font-size: 14px !important;
      }
    }

    /* CTA Section */
    /* CTA Section - Light Theme */
    .cta {
      padding: 60px 60px;
      background: var(--ip-gray-50);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(235, 109, 7, 0.03) 0%, transparent 50%, rgba(30, 41, 59, 0.02) 100%);
      pointer-events: none;
    }

    .cta-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .cta-content-left {
      color: var(--ip-text);
    }

    .cta-title {
      font-size: clamp(24px, 4.5vw, 44px);
      font-weight: 800;
      color: var(--ip-gray-900);
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -0.03em;
    }

    .cta-subtitle {
      font-size: 16px;
      color: var(--ip-text-muted);
      margin-bottom: 40px;
      line-height: 1.8;
      max-width: 58ch;
    }

    .cta-benefits {
      margin-bottom: 36px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .cta-benefit {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .benefit-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: var(--ip-primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-icon svg {
      width: 22px;
      height: 22px;
      color: white !important;
    }

    .cta-benefit strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 2px;
      line-height: 1.4;
    }

    .cta-benefit span {
      font-size: 13px;
      color: var(--ip-text-muted);
      line-height: 1.5;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-cta-primary, .btn-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 32px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s var(--transition-smooth);
      cursor: pointer;
      border: none;
    }

    .btn-cta-primary {
      background: var(--ip-orange) !important;
      color: white !important;
      box-shadow: 0 8px 24px rgba(232, 100, 17, 0.4);
    }

    .btn-cta-primary:hover {
      background: #ff7a2a;
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(232, 100, 17, 0.5);
    }

    .btn-cta-secondary {
      background: white;
      color: var(--ip-gray-800);
      border: 2px solid var(--ip-gray-300);
    }

    .btn-cta-secondary:hover {
      background: var(--ip-gray-100);
      border-color: var(--ip-gray-400);
      transform: translateY(-3px);
    }

    .cta-content-right {
      position: sticky;
      top: 100px;
    }

    .cta-stats-card {
      background: white;
      border: 1px solid var(--ip-gray-200);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .stats-card-header h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--ip-gray-900);
      margin-bottom: 24px;
    }

    .stats-card-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--ip-gray-200);
    }

    .stat-row {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .stat-icon {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      background: rgba(235, 109, 7, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-icon svg {
      width: 20px;
      height: 20px;
      color: var(--ip-orange);
    }

    .stat-value {
      font-size: 18px;
      font-weight: 700;
      color: var(--ip-gray-900);
      line-height: 1.2;
    }

    .stat-label {
      font-size: 12px;
      color: var(--ip-text-muted);
      line-height: 1.4;
    }

    .urgency-message {
      background: linear-gradient(135deg, rgba(235, 109, 7, 0.12), rgba(235, 109, 7, 0.06));
      border: 1px solid rgba(235, 109, 7, 0.3);
      border-radius: 10px;
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--ip-primary-dark);
      animation: urgencyPulse 3s ease-in-out infinite;
    }

    .urgency-message svg {
      flex-shrink: 0;
      color: var(--ip-primary);
    }

    @keyframes urgencyPulse {
      0%, 100% { border-color: rgba(235, 109, 7, 0.2); }
      50% { border-color: rgba(235, 109, 7, 0.4); }
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 100px 40px;
      }

      .hero-content-redesigned {
        gap: 30px !important;
        padding: 60px 40px 40px !important;
      }

      .hero-visual-column {
        max-width: 100%;
      }

      .hero-image-compact .hero-image {
        max-height: 280px;
      }

      .hero-visual {
        max-width: 500px;
        margin: 0 auto;
      }

      .products-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .products-grid .product-card { grid-column: span 2; }
      .products-grid .product-card:nth-child(4) { grid-column: 2 / 4; }
      .products-grid .product-card:nth-child(5) { grid-column: 2 / 4; }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .feature-row.reverse {
        direction: ltr;
      }
    }

    @media (max-width: 768px) {
      .hero-content {
        padding: 80px 24px;
      }

      .hero-content-redesigned {
        padding: 50px 20px 30px !important;
        gap: 24px !important;
      }

      .hero-image-compact .hero-image {
        max-height: 220px;
      }

      .hero-stats-compact {
        gap: 16px;
        padding: 12px 16px;
      }

      .hero-stat-compact .hero-stat-value {
        font-size: 16px;
      }

      .compact-badge span {
        font-size: 11px;
      }

      .hero-logo {
        height: 55px;
      }

      .hero-stats {
        gap: 20px;
        padding: 18px 24px;
        flex-wrap: wrap;
        max-width: 100%;
      }

      .hero-stat {
        flex: 1 1 40%;
        text-align: center;
      }

      .hero-stat-value {
        font-size: 20px;
      }

      .hero-stat-label {
        font-size: 10px;
      }

      .stats, .products, .features, .cta {
        padding-left: 24px;
        padding-right: 24px;
      }
      
      .cta-title {
        font-size: 24px;
      }
      
      .cta-subtitle {
        font-size: 14px;
      }
      
      .cta-benefit strong {
        font-size: 14px;
      }
      
      .cta-benefit span {
        font-size: 12px;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }
      .products-grid .product-card { grid-column: span 1; }
      .products-grid .product-card:nth-child(4),
      .products-grid .product-card:nth-child(5) { grid-column: span 1; }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .stat-number {
        font-size: 40px;
      }

      .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cta-benefits {
        grid-template-columns: 1fr;
      }

      .cta-content-right {
        position: static;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 22px;
      }
      
      .section-subtitle {
        font-size: 14.5px;
      }
      
      .cta-title {
        font-size: 24px;
      }
      
      .application-card h3 {
        font-size: 18px;
      }
      
      .quote-text {
        font-size: 16px;
      }
      
      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .trust-badges {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* Technical Applications Section */
    .tech-applications {
      padding: 70px 60px;
      background: var(--ip-gray-50);
    }

    .applications-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .application-card {
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid var(--ip-border-soft);
      box-shadow: var(--ip-shadow-soft);
      transition: all 0.4s ease;
    }

    .application-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--ip-shadow-lg);
      border-color: var(--ip-primary);
    }

    .application-card h3 {
      font-size: 21px;
      font-weight: 700;
      color: var(--ip-text);
      margin-bottom: 14px;
      line-height: 1.28;
    }

    .application-card .app-tag {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(235, 109, 7, 0.1);
      color: var(--ip-primary);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .application-card p {
      font-size: 14.5px;
      line-height: 1.8;
      color: var(--ip-text-muted);
      margin-bottom: 20px;
    }

    .application-card .app-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--ip-gray-200);
    }

    .app-metric {
      text-align: center;
    }

    .app-metric-value {
      font-size: 20px;
      font-weight: 700;
      color: var(--ip-primary);
      display: block;
    }

    .app-metric-label {
      font-size: 11px;
      color: var(--ip-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Industry Quote Section */
    .industry-quote {
      padding: 60px 60px;
      background: linear-gradient(135deg, var(--ip-primary-dark) 0%, var(--ip-primary) 100%) !important;
      color: white !important;
      position: relative;
      overflow: hidden;
    }

    .industry-quote::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 40px;
      font-size: 300px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.05);
      line-height: 1;
    }

    .quote-container {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .quote-text {
      font-size: 20px;
      line-height: 1.85;
      font-weight: 500;
      max-width: 54ch;
      margin-bottom: 32px;
    }

    .quote-author {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .author-details h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .author-details p {
      font-size: 13.5px;
      opacity: 0.9;
    }

    /* Did You Know Section */
    .did-you-know {
      padding: 70px 60px;
      background: white;
    }

    .dyk-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 32px;
    }

    .dyk-card {
      background: var(--ip-gray-50);
      border: 1px solid var(--ip-gray-200);
      border-radius: 20px;
      padding: 36px;
      transition: all 0.4s var(--transition-smooth);
    }

    .dyk-card:hover {
      background: white;
      border-color: var(--ip-primary);
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(235, 109, 7, 0.15);
    }

    .dyk-quote {
      font-size: 15px;
      line-height: 1.7;
      color: var(--ip-text);
      margin-bottom: 24px;
      font-style: italic;
    }

    .dyk-fact {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .dyk-fact h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--ip-primary);
      margin-bottom: 4px;
    }

    .dyk-fact p {
      font-size: 13px;
      color: var(--ip-text-muted);
    }

    @media (max-width: 900px) {
      .tech-applications {
        padding: 50px 24px;
      }
      .application-card h3 {
        font-size: 17px;
      }
      .application-card p {
        font-size: 13px;
      }
      .industry-quote {
        padding: 40px 24px;
      }
      .quote-text {
        font-size: 16px;
        line-height: 1.7;
      }
      .did-you-know {
        padding: 50px 24px;
      }
      .dyk-quote {
        font-size: 14px;
      }
      .dyk-fact h4 {
        font-size: 13px;
      }
      .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .dyk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 22px;
      }
      .section-desc {
        font-size: 14px;
      }
      .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
      }
      .section-header {
        margin-bottom: 30px;
      }
      .features {
        padding: 50px 24px;
      }
      .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .feature-card {
        padding: 24px;
      }
      .quote-author {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .product-specs-tabs {
        border-radius: 12px;
      }
      .product-specs-tab {
        padding: 12px 8px;
        font-size: 11px;
        gap: 6px;
      }
      .product-specs-tab svg {
        width: 14px;
        height: 14px;
      }
      .product-specs-panel {
        padding: 20px 16px;
      }
      .spec-detail-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
      }
      .spec-detail-title {
        font-size: 20px;
      }
      .spec-detail-subtitle {
        font-size: 13px;
      }
      .spec-grid {
        gap: 8px;
      }
      .spec-grid-item {
        padding: 12px 8px;
        border-radius: 8px;
      }
      .spec-grid-value {
        font-size: 12px;
      }
      .spec-grid-label {
        font-size: 9px;
      }
      .spec-features-cards {
        margin-top: 20px;
      }
      .feature-cards-grid {
        gap: 12px;
      }
      .feature-card-item {
        padding: 16px;
      }
      .feature-card-title {
        font-size: 13px;
      }
      .feature-card-desc {
        font-size: 11px;
      }
      .application-card {
        padding: 20px;
      }
      .app-metrics {
        flex-direction: column;
        gap: 12px;
      }
      /* Single column on small phones for large content cards */
      .applications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .dyk-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      /* Smaller stat font on very small screens */
      .stat-number {
        font-size: 20px;
      }
      .stat-label {
        font-size: 10px;
        letter-spacing: 0.3px;
      }
    }

    /* Animation Classes */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
    }

    .fade-in {
      opacity: 0;
    }

    .scale-in {
      opacity: 0;
      transform: scale(0.9);
    }
