
    /* ============ CSS VARIABLES ============ */
    :root {
      /* Colors */
      --color-primary: #0D2137;
      --color-primary-dark: #0A1628;
      --color-primary-light: #1A3A5C;
      --color-secondary: #5B6B7A;
      --color-accent: #E8731A;
      --color-accent-hover: #D1631A;
      --color-white: #FFFFFF;
      --color-bg-light: #F4F6F8;
      --color-text: #1A1A2E;
      --color-text-muted: #5B6B7A;
      --color-border: #E8ECF0;
      --color-success: #2ECC71;

      /* Gradients */
      --gradient-hero: linear-gradient(135deg, #0D2137 0%, #1A3A5C 60%, #2D5F8A 100%);
      --gradient-dark: linear-gradient(135deg, #0D2137, #1A3A5C);

      /* Typography */
      --font-heading: 'Roboto Slab', 'PingFang SC', 'Microsoft YaHei', Georgia, serif;
      --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-mono: 'Roboto Mono', 'Courier New', monospace;

      /* Spacing */
      --section-padding: 80px 0;
      --container-max: 1200px;
      --container-padding: 0 24px;

      /* Effects */
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 2px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.3);

      --radius-sm: 6px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;

      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--color-text);
      background: var(--color-white);
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    ul {
      list-style: none;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      line-height: 1.25;
      font-weight: 700;
      color: var(--color-primary);
    }

    /* ============ UTILITIES ============ */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: var(--container-padding);
    }

    .section {
      padding: var(--section-padding);
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--color-text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ============ BUTTONS ============ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: var(--transition);
      white-space: nowrap;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--color-accent);
      color: var(--color-white);
      border-color: var(--color-accent);
    }
    .btn-primary:hover {
      background: var(--color-accent-hover);
      border-color: var(--color-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(232, 115, 26, 0.35);
    }

    .btn-secondary {
      background: var(--color-white);
      color: var(--color-primary);
      border-color: var(--color-primary);
    }
    .btn-secondary:hover {
      background: var(--color-primary);
      color: var(--color-white);
    }

    .btn-ghost {
      background: transparent;
      color: var(--color-white);
      border-color: rgba(255, 255, 255, 0.6);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--color-white);
    }

    .btn-outline {
      background: transparent;
      color: var(--color-primary);
      border-color: var(--color-primary);
    }
    .btn-outline:hover {
      background: var(--color-primary);
      color: var(--color-white);
    }

    .btn-large {
      padding: 16px 40px;
      font-size: 16px;
    }

    .btn-white {
      background: var(--color-white);
      color: var(--color-accent);
      border-color: var(--color-white);
    }
    .btn-white:hover {
      background: transparent;
      color: var(--color-white);
      border-color: var(--color-white);
    }

    /* ============ TOP BAR ============ */
    .top-bar {
      background: var(--color-primary);
      color: var(--color-white);
      height: 36px;
      font-size: 13px;
    }
    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      gap: 16px;
    }
    .top-bar-left, .top-bar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .top-bar a {
      color: rgba(255, 255, 255, 0.85);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .top-bar a:hover {
      color: var(--color-accent);
    }
    .lang-switch {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .lang-switch span {
      padding: 0 6px;
      cursor: pointer;
      opacity: 0.7;
      transition: var(--transition);
    }
    .lang-switch span:hover, .lang-switch span.active {
      opacity: 1;
      color: var(--color-accent);
    }
    .lang-switch .divider {
      padding: 0;
      cursor: default;
      opacity: 0.4;
    }
    .social-icons {
      display: flex;
      gap: 12px;
      margin-left: 8px;
    }
    .social-icons a {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .social-icons svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* ============ NAVBAR ============ */
    .navbar {
      background: var(--color-white);
      box-shadow: var(--shadow-md);
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 80px;
      transition: var(--transition);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      gap: 32px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 800;
      color: var(--color-primary);
      flex-shrink: 0;
    }
    .logo-mark {
      width: 40px;
      height: 40px;
      background: var(--color-primary);
      border-radius: 8px;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }
    .logo-mark::before,
    .logo-mark::after {
      content: '';
      position: absolute;
      background: var(--color-accent);
    }
    .logo-mark::before {
      width: 100%;
      height: 2px;
      top: 12px;
      box-shadow: 0 8px 0 var(--color-accent), 0 16px 0 var(--color-accent);
    }
    .logo-mark::after {
      width: 2px;
      height: 100%;
      left: 12px;
      box-shadow: 8px 0 0 rgba(255,255,255,0.4), 16px 0 0 rgba(255,255,255,0.4);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
      flex: 1;
      justify-content: center;
    }
    .nav-menu > li > a {
      color: var(--color-text);
      font-size: 15px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 8px 0;
      position: relative;
    }
    .nav-menu > li > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-accent);
      transition: var(--transition);
    }
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
      color: var(--color-accent);
    }
    .nav-menu > li > a:hover::after,
    .nav-menu > li > a.active::after {
      width: 100%;
    }
    .caret {
      width: 10px;
      height: 10px;
      opacity: 0.6;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .nav-cta .btn {
      padding: 10px 20px;
      font-size: 14px;
    }

    .burger {
      display: none;
      width: 40px;
      height: 40px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: transparent;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-primary);
      transition: var(--transition);
    }
    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.open span:nth-child(2) {
      opacity: 0;
    }
    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ============ HERO ============ */
    .hero {
      background: var(--gradient-hero);
      color: var(--color-white);
      min-height: 600px;
      height: 90vh;
      max-height: 800px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(232, 115, 26, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 95, 138, 0.3), transparent 50%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      mask-image: linear-gradient(to right, transparent, black 40%, black 60%, transparent);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
    }
    .hero-text h1 {
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.1;
      color: var(--color-white);
      margin-bottom: 20px;
      font-weight: 800;
    }
    .hero-text h1 .accent {
      color: var(--color-accent);
      display: block;
    }
    .hero-sub {
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 36px;
      max-width: 560px;
    }
    .hero-sub strong {
      color: var(--color-white);
      font-weight: 600;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px;
    }
    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
    }
    .trust-badges li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }
    .check-icon {
      width: 18px;
      height: 18px;
      background: var(--color-success);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .check-icon svg {
      width: 10px;
      height: 10px;
      fill: white;
    }

    .hero-img {
      position: relative;
    }
    .hero-img img {
      width: 100%;
      aspect-ratio: 5 / 4;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }
    .hero-img-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--color-white);
      color: var(--color-primary);
      padding: 16px 20px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
    }
    .hero-img-badge .pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--color-success);
      box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
      100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
    }

    /* ============ STATS ============ */
    .stats-section {
      margin-top: -60px;
      position: relative;
      z-index: 10;
      padding-bottom: 0;
    }
    .stats-card {
      background: var(--color-white);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      padding: 40px 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      text-align: center;
      padding: 12px 20px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: var(--color-border);
    }
    .stat-number {
      font-family: var(--font-mono);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-number .suffix {
      color: var(--color-accent);
    }
    .stat-label {
      font-size: 14px;
      color: var(--color-text-muted);
      font-weight: 500;
    }

    /* ============ PRODUCTS ============ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      border-color: var(--color-accent);
      box-shadow: 0 20px 40px rgba(13, 33, 55, 0.12);
      transform: translateY(-4px);
    }
    .product-card:hover .product-img img {
      transform: scale(1.08);
    }
    .product-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 2 / 1;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .product-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--color-accent);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .product-tag.new {
      background: var(--color-success);
    }
    .product-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-title {
      font-size: 18px;
      color: var(--color-primary);
      font-weight: 700;
      margin-bottom: 8px;
      font-family: var(--font-body);
    }
    .product-desc {
      font-size: 14px;
      color: var(--color-text-muted);
      margin-bottom: 16px;
      flex: 1;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .product-link {
      color: var(--color-accent);
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .product-link:hover {
      gap: 8px;
    }
    .products-footer {
      text-align: center;
      margin-top: 48px;
    }

    /* ============ WHY US ============ */
    .why-section {
      background: var(--color-bg-light);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-border);
    }
    .why-icon {
      width: 56px;
      height: 56px;
      background: var(--color-primary);
      color: var(--color-white);
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 20px;
      transition: var(--transition);
    }
    .why-card:hover .why-icon {
      background: var(--color-accent);
      transform: rotate(-6deg) scale(1.05);
    }
    .why-icon svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .why-title {
      font-size: 18px;
      color: var(--color-primary);
      font-weight: 700;
      margin-bottom: 10px;
      font-family: var(--font-body);
    }
    .why-desc {
      font-size: 14px;
      color: var(--color-text-muted);
      line-height: 1.6;
    }

    /* ============ APPLICATIONS ============ */
    .apps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .app-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 5 / 3;
      cursor: pointer;
    }
    .app-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .app-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 33, 55, 0.9) 0%, rgba(13, 33, 55, 0.3) 50%, rgba(13, 33, 55, 0.2) 100%);
      transition: var(--transition);
    }
    .app-card:hover img {
      transform: scale(1.1);
    }
    .app-card:hover::after {
      background: linear-gradient(to top, rgba(13, 33, 55, 0.95) 0%, rgba(232, 115, 26, 0.4) 100%);
    }
    .app-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      color: var(--color-white);
      z-index: 2;
    }
    .app-name {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
      font-family: var(--font-body);
    }
    .app-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials-section {
      background: var(--gradient-dark);
      color: var(--color-white);
      position: relative;
      overflow: hidden;
    }
    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(232, 115, 26, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(45, 95, 138, 0.3), transparent 40%);
    }
    .testimonials-section .section-title {
      color: var(--color-white);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }
    .testimonial-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: var(--transition);
    }
    .testimonial-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-4px);
    }
    .stars {
      color: #FFC93C;
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .testimonial-text {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 24px;
      min-height: 120px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .author-info .author-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 2px;
    }
    .author-info .author-meta {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* ============ FACTORY ============ */
    .factory-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .factory-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .factory-gallery .gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      position: relative;
    }
    .factory-gallery .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .factory-gallery .gallery-item:hover img {
      transform: scale(1.1);
    }
    .factory-gallery .gallery-item:nth-child(1) {
      grid-row: span 2;
      aspect-ratio: 4 / 6;
    }
    .factory-text .eyebrow {
      margin-bottom: 12px;
    }
    .factory-text h2 {
      font-size: clamp(26px, 3.5vw, 36px);
      margin-bottom: 20px;
    }
    .factory-text > p {
      font-size: 16px;
      color: var(--color-text-muted);
      margin-bottom: 28px;
      line-height: 1.7;
    }
    .factory-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 24px;
      margin-bottom: 32px;
    }
    .factory-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--color-text);
      font-weight: 500;
    }
    .factory-features .icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(232, 115, 26, 0.1);
      display: grid;
      place-items: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    /* ============ CTA ============ */
    .cta-section {
      background: linear-gradient(135deg, #E8731A 0%, #F08B3A 100%);
      color: var(--color-white);
      padding: 70px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.15), transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(255,255,255,0.1), transparent 40%);
    }
    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
    }
    .cta-section h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      color: var(--color-white);
      margin-bottom: 14px;
    }
    .cta-section p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 32px;
    }
    .cta-section .btn-white {
      padding: 16px 40px;
      font-size: 16px;
    }
    .cta-meta {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 28px;
      margin-top: 24px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }
    .cta-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ============ FOOTER ============ */
    .footer {
      background: var(--color-primary-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 64px 0 24px;
    }
    .footer a {
      color: rgba(255, 255, 255, 0.7);
    }
    .footer a:hover {
      color: var(--color-accent);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      color: var(--color-white);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 0.3px;
    }
    .footer-col .logo {
      color: var(--color-white);
      margin-bottom: 16px;
    }
    .footer-about {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .footer-social a:hover {
      background: var(--color-accent);
      color: var(--color-white);
      transform: translateY(-3px);
    }
    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }
    .footer-links li {
      margin-bottom: 10px;
      font-size: 14px;
    }
    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .footer-contact .icon {
      font-size: 16px;
      margin-top: 1px;
      flex-shrink: 0;
    }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }
    .footer-bottom ul {
      display: flex;
      gap: 24px;
    }

    /* ============ ANIMATIONS ============ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1199px) {
      .hero-inner { gap: 32px; }
      .nav-menu { gap: 22px; }
    }

    @media (max-width: 991px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .apps-grid { grid-template-columns: repeat(3, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .factory-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
      .hero { height: auto; padding: 80px 0 100px; }
      .hero-img { max-width: 500px; }

      /* mobile nav */
      .nav-menu, .nav-cta .btn-secondary { display: none; }
      .burger { display: flex; }
      .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--color-border);
      }
      .nav-menu.mobile-open li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
      }
      .nav-menu.mobile-open li:last-child {
        border-bottom: none;
      }
      .nav-menu.mobile-open > li > a {
        display: block;
        padding: 14px 0;
      }
    }

    @media (max-width: 767px) {
      :root {
        --section-padding: 60px 0;
      }
      .navbar { height: 64px; }
      .top-bar { font-size: 12px; }
      .top-bar-right .social-icons { display: none; }

      .stats-card { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 24px 16px; }
      .stat-item:nth-child(2)::after { display: none; }
      .stat-item:nth-child(1), .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
        margin-bottom: 12px;
      }
      .stat-item:not(:last-child)::after { display: none; }

      .products-grid, .why-grid { grid-template-columns: 1fr; }
      .apps-grid { grid-template-columns: repeat(2, 1fr); }
      .factory-features { grid-template-columns: 1fr; }
      .factory-gallery .gallery-item:nth-child(1) { grid-row: auto; aspect-ratio: 4/3; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .hero-cta { flex-direction: column; align-items: stretch; }
      .hero-cta .btn { width: 100%; }
      .hero-img-badge { left: 50%; transform: translateX(-50%); bottom: -24px; }

      .top-bar-left a:first-child span { display: none; }
    }

    @media (max-width: 575px) {
      .top-bar-inner { gap: 8px; }
      .top-bar-left { gap: 10px; }
      .top-bar-left a span.hide-xs { display: none; }
      .hero { padding: 60px 0 80px; }
      .logo { font-size: 20px; }
      .logo-mark { width: 34px; height: 34px; }
    }

    /* reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
    }
  

/* ===== scoped legacy content ===== */
/* scoped legacy content css */

.ggc-scope, .ggc-scope [data-theme="light"]{
      --text-xs:clamp(0.75rem,0.7rem + 0.25vw,0.875rem);
      --text-sm:clamp(0.875rem,0.8rem + 0.35vw,1rem);
      --text-base:clamp(1rem,0.95rem + 0.25vw,1.125rem);
      --text-lg:clamp(1.125rem,1rem + 0.75vw,1.5rem);
      --text-xl:clamp(1.5rem,1.2rem + 1.25vw,2.25rem);
      --text-2xl:clamp(2rem,1.2rem + 2.5vw,3.5rem);
      --space-1:0.25rem;--space-2:0.5rem;--space-3:0.75rem;
      --space-4:1rem;--space-5:1.25rem;--space-6:1.5rem;
      --space-8:2rem;--space-10:2.5rem;--space-12:3rem;
      --space-16:4rem;--space-20:5rem;--space-24:6rem;
      --radius-sm:0.25rem;--radius-md:0.375rem;--radius-lg:0.625rem;
      --radius-xl:1rem;--radius-full:9999px;
      --transition:200ms cubic-bezier(0.16,1,0.3,1);
      --color-bg:#f4f3ef;--color-surface:#f8f7f4;--color-surface-2:#fafaf8;
      --color-surface-offset:#eeece7;--color-surface-dynamic:#e5e3dc;
      --color-divider:#d8d5cf;--color-border:#cdc9c2;
      --color-text:#1a1714;--color-text-muted:#6b6760;--color-text-faint:#a8a49f;
      --color-text-inverse:#f8f7f3;
      --color-navy:#1b3a5c;--color-navy-dark:#0e2135;--color-navy-light:#e8edf3;
      --color-amber:#e07b2a;--color-amber-hover:#c96820;--color-amber-light:#faf0e6;
      --shadow-sm:0 1px 3px rgba(27,58,92,0.08);
      --shadow-md:0 4px 14px rgba(27,58,92,0.1);
      --shadow-lg:0 16px 40px rgba(27,58,92,0.15);
      --font-display:'Instrument Serif',Georgia,serif;
      --font-body:'DM Sans','Helvetica Neue',sans-serif;
      --content-wide:1240px;
    }
.ggc-scope [data-theme="dark"]{
      --color-bg:#121110;--color-surface:#181715;--color-surface-2:#1e1d1b;
      --color-surface-offset:#222120;--color-surface-dynamic:#2c2b29;
      --color-divider:#2e2d2b;--color-border:#3a3937;
      --color-text:#e0dedd;--color-text-muted:#8a8885;--color-text-faint:#5c5a58;
      --color-text-inverse:#1a1714;
      --color-navy:#4f7faa;--color-navy-dark:#84aece;--color-navy-light:#1e2b38;
      --color-amber:#f0913e;--color-amber-hover:#faa055;--color-amber-light:#312110;
      --shadow-sm:0 1px 3px rgba(0,0,0,0.25);
      --shadow-md:0 4px 14px rgba(0,0,0,0.35);
      --shadow-lg:0 16px 40px rgba(0,0,0,0.5);
    }

    @media(prefers-color-scheme:dark){
.ggc-scope :root:not([data-theme]){
      --color-bg:#121110;--color-surface:#181715;--color-surface-2:#1e1d1b;
      --color-surface-offset:#222120;--color-surface-dynamic:#2c2b29;
      --color-divider:#2e2d2b;--color-border:#3a3937;
      --color-text:#e0dedd;--color-text-muted:#8a8885;--color-text-faint:#5c5a58;
      --color-text-inverse:#1a1714;
      --color-navy:#4f7faa;--color-amber:#f0913e;--color-amber-hover:#faa055;
      --color-navy-light:#1e2b38;--color-amber-light:#312110;
    }
}
.ggc-scope, .ggc-scope, .ggc-scope{box-sizing:border-box;margin:0;padding:0}
.ggc-scope{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;scroll-behavior:smooth;scroll-padding-top:5rem}
.ggc-scope{min-height:100dvh;font-family:var(--font-body);font-size:var(--text-base);color:var(--color-text);background:var(--color-bg);line-height:1.65}
.ggc-scope img, .ggc-scope video{display:block;max-width:100%;height:auto}
.ggc-scope ul[role="list"], .ggc-scope ol[role="list"]{list-style:none}
.ggc-scope button{cursor:pointer;background:none;border:none;font:inherit;color:inherit}
.ggc-scope input, .ggc-scope select, .ggc-scope textarea{font:inherit;color:inherit}
.ggc-scope h1, .ggc-scope h2, .ggc-scope h3, .ggc-scope h4, .ggc-scope h5, .ggc-scope h6{line-height:1.15;text-wrap:balance;font-family:var(--font-display)}
.ggc-scope p, .ggc-scope li{text-wrap:pretty;max-width:72ch}
.ggc-scope a{color:inherit;text-decoration:none}
.ggc-scope a, .ggc-scope button, .ggc-scope [role="button"], .ggc-scope input, .ggc-scope textarea, .ggc-scope select{transition:color var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition),opacity var(--transition),transform var(--transition)}
.ggc-scope ::selection{background:rgba(224,123,42,0.18)}
.ggc-scope :focus-visible{outline:2px solid var(--color-amber);outline-offset:3px;border-radius:var(--radius-sm)}
.ggc-scope .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}

    @media(prefers-reduced-motion:reduce){
.ggc-scope, .ggc-scope, .ggc-scope{animation-duration:0.01ms!important;transition-duration:0.01ms!important}
}
.ggc-scope /* Layout */
    .container{max-width:var(--content-wide);margin-inline:auto;padding-inline:clamp(var(--space-4),4vw,var(--space-12))}
.ggc-scope /* Skip link */
    .skip-link{position:absolute;top:-100%;left:var(--space-4);background:var(--color-amber);color:#fff;padding:var(--space-2) var(--space-4);border-radius:var(--radius-md);font-size:var(--text-sm);font-weight:600;z-index:9999}
.ggc-scope .skip-link:focus{top:var(--space-2)}
.ggc-scope /* Header */
    .site-header{position:sticky;top:0;z-index:100;background:rgba(244,243,239,0.92);backdrop-filter:blur(14px);border-bottom:1px solid rgba(26,23,20,0.08);transition:background var(--transition),box-shadow var(--transition)}
.ggc-scope [data-theme="dark"] .site-header{background:rgba(18,17,16,0.92)}
.ggc-scope .site-header.scrolled{box-shadow:var(--shadow-md)}
.ggc-scope .nav-inner{display:flex;align-items:center;gap:var(--space-8);padding-block:var(--space-4)}
.ggc-scope .nav-logo{display:flex;align-items:center;gap:var(--space-3);flex-shrink:0}
.ggc-scope .nav-logo-text{font-family:var(--font-display);font-size:clamp(1.2rem,1rem + 0.8vw,1.5rem);font-weight:400;color:var(--color-navy);letter-spacing:-0.02em}
.ggc-scope .nav-logo-text span{color:var(--color-amber)}
.ggc-scope .nav-links{display:flex;align-items:center;gap:var(--space-1);list-style:none;margin:0;padding:0;margin-left:auto}
.ggc-scope .nav-links a{font-size:var(--text-sm);font-weight:500;color:var(--color-text-muted);padding:var(--space-2) var(--space-3);border-radius:var(--radius-md)}
.ggc-scope .nav-links a:hover{color:var(--color-text);background:var(--color-surface-offset)}
.ggc-scope .nav-actions{display:flex;align-items:center;gap:var(--space-3)}
.ggc-scope .btn-theme{width:40px;height:40px;border-radius:var(--radius-full);display:grid;place-items:center;color:var(--color-text-muted);border:1px solid rgba(26,23,20,0.1)}
.ggc-scope .btn-theme:hover{color:var(--color-text);background:var(--color-surface-offset)}
.ggc-scope .btn-cta-nav{background:var(--color-amber);color:#fff;font-size:var(--text-sm);font-weight:600;padding:var(--space-2) var(--space-5);border-radius:var(--radius-md);white-space:nowrap}
.ggc-scope .btn-cta-nav:hover{background:var(--color-amber-hover)}
.ggc-scope .nav-hamburger{display:none;width:44px;height:44px;place-items:center;border-radius:var(--radius-md);color:var(--color-text);margin-left:auto}
.ggc-scope .nav-hamburger:hover{background:var(--color-surface-offset)}
.ggc-scope .mobile-menu{display:none;flex-direction:column;background:var(--color-surface);border-top:1px solid var(--color-divider);padding:var(--space-4) var(--space-6) var(--space-6);gap:var(--space-1)}
.ggc-scope .mobile-menu.open{display:flex}
.ggc-scope .mobile-menu a{font-size:var(--text-base);font-weight:500;color:var(--color-text-muted);padding:var(--space-3) var(--space-4);border-radius:var(--radius-md)}
.ggc-scope .mobile-menu a:hover{color:var(--color-text);background:var(--color-surface-offset)}
.ggc-scope .mobile-menu .btn-cta-nav{margin-top:var(--space-3);text-align:center;padding:var(--space-3) var(--space-6)}

    @media(max-width:768px){
.ggc-scope .nav-links, .ggc-scope .nav-actions{display:none}
.ggc-scope .nav-hamburger{display:grid}
}
.ggc-scope /* Hero */
    .hero{background:#1b3a5c;overflow:hidden;position:relative;min-height:clamp(520px,80vh,820px);display:grid}
.ggc-scope .hero-grid{position:absolute;inset:0;pointer-events:none;background-image:repeating-linear-gradient(0deg,rgba(255,255,255,0.04) 0px,rgba(255,255,255,0.04) 1px,transparent 1px,transparent 40px),repeating-linear-gradient(90deg,rgba(255,255,255,0.04) 0px,rgba(255,255,255,0.04) 1px,transparent 1px,transparent 40px)}
.ggc-scope .hero-inner{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:var(--space-12);padding-block:clamp(var(--space-16),8vw,var(--space-24));position:relative;z-index:1}
.ggc-scope .hero-content{display:flex;flex-direction:column;gap:var(--space-6)}
.ggc-scope .hero-eyebrow{display:inline-flex;align-items:center;gap:var(--space-2);font-size:var(--text-xs);font-family:var(--font-body);font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--color-amber)}
.ggc-scope .hero-eyebrow::before{content:'';display:block;width:24px;height:2px;background:var(--color-amber)}
.ggc-scope .hero-h1{font-family:var(--font-display);font-size:clamp(2.4rem,1.2rem + 4vw,4.8rem);font-weight:400;line-height:1.08;color:#f8f7f3;letter-spacing:-0.03em}
.ggc-scope .hero-h1 em{font-style:italic;color:var(--color-amber)}
.ggc-scope .hero-desc{font-size:var(--text-base);line-height:1.7;color:rgba(248,247,243,0.72);max-width:48ch}
.ggc-scope .hero-actions{display:flex;align-items:center;gap:var(--space-4);flex-wrap:wrap}
.ggc-scope .btn-primary{background:var(--color-amber);color:#fff;font-size:var(--text-sm);font-weight:600;padding:var(--space-4) var(--space-8);border-radius:var(--radius-md);display:inline-flex;align-items:center;gap:var(--space-2);min-height:44px}
.ggc-scope .btn-primary:hover{background:var(--color-amber-hover);transform:translateY(-1px);box-shadow:0 6px 20px rgba(224,123,42,0.35)}
.ggc-scope .btn-outline{background:transparent;color:#f8f7f3;font-size:var(--text-sm);font-weight:500;padding:var(--space-4) var(--space-8);border-radius:var(--radius-md);border:1px solid rgba(255,255,255,0.25);display:inline-flex;align-items:center;gap:var(--space-2);min-height:44px}
.ggc-scope .btn-outline:hover{border-color:rgba(255,255,255,0.5);background:rgba(255,255,255,0.05)}
.ggc-scope .hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,0.1);border-top:1px solid rgba(255,255,255,0.1);position:relative;z-index:1}
.ggc-scope .hero-stat{background:rgba(27,58,92,0.9);padding:var(--space-5) var(--space-6);display:flex;flex-direction:column;gap:var(--space-1)}
.ggc-scope .hero-stat-n{font-family:var(--font-display);font-size:clamp(1.6rem,1rem + 2vw,2.4rem);font-weight:400;color:#f8f7f3;line-height:1}
.ggc-scope .hero-stat-l{font-size:var(--text-xs);font-weight:500;color:rgba(248,247,243,0.55);text-transform:uppercase;letter-spacing:0.06em}
.ggc-scope .hero-visual{position:relative}
.ggc-scope .hero-img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/3;position:relative}
.ggc-scope .hero-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform 6s ease}
.ggc-scope .hero-img-wrap:hover img{transform:scale(1.03)}
.ggc-scope .hero-badge{position:absolute;bottom:var(--space-5);left:var(--space-5);background:rgba(248,247,244,0.95);backdrop-filter:blur(12px);border:1px solid rgba(26,23,20,0.1);border-radius:var(--radius-lg);padding:var(--space-3) var(--space-4);display:flex;align-items:center;gap:var(--space-3);box-shadow:var(--shadow-md)}
.ggc-scope .hero-badge-icon{width:36px;height:36px;border-radius:var(--radius-md);background:var(--color-amber-light);display:grid;place-items:center;color:var(--color-amber);flex-shrink:0}
.ggc-scope .hero-badge-title{font-size:var(--text-sm);font-weight:600;color:var(--color-text)}
.ggc-scope .hero-badge-sub{font-size:var(--text-xs);color:var(--color-text-muted);margin-top:1px}

    @media(max-width:900px){
.ggc-scope .hero-inner{grid-template-columns:1fr;gap:var(--space-10)}
.ggc-scope .hero-visual{display:none}
.ggc-scope .hero-stats{grid-template-columns:repeat(2,1fr)}
}
.ggc-scope /* Trust Bar */
    .trust-bar{background:var(--color-surface);border-bottom:1px solid var(--color-divider);padding-block:var(--space-5)}
.ggc-scope .trust-inner{display:flex;align-items:center;gap:var(--space-8);flex-wrap:wrap}
.ggc-scope .trust-label{font-size:var(--text-xs);font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--color-text-faint);white-space:nowrap}
.ggc-scope .trust-div{width:1px;height:24px;background:var(--color-divider);flex-shrink:0}
.ggc-scope .trust-badges{display:flex;align-items:center;gap:var(--space-6);flex-wrap:wrap}
.ggc-scope .trust-badge{display:flex;align-items:center;gap:var(--space-2);font-size:var(--text-xs);font-weight:600;color:var(--color-text-muted);opacity:0.7;transition:opacity var(--transition)}
.ggc-scope .trust-badge:hover{opacity:1}
.ggc-scope .trust-badge svg{color:var(--color-text-faint)}
.ggc-scope /* Section utilities */
    .section-eyebrow{display:inline-flex;align-items:center;gap:var(--space-2);font-size:var(--text-xs);font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--color-amber);margin-bottom:var(--space-4)}
.ggc-scope .section-eyebrow::before{content:'';display:block;width:18px;height:2px;background:var(--color-amber)}
.ggc-scope .section-title{font-family:var(--font-display);font-size:var(--text-2xl);font-weight:400;color:var(--color-text);letter-spacing:-0.02em;line-height:1.15}
.ggc-scope .section-desc{margin-top:var(--space-4);font-size:var(--text-base);color:var(--color-text-muted);max-width:56ch}
.ggc-scope .section-header{margin-bottom:var(--space-12)}
.ggc-scope /* Products Bento */
    .section-products{padding-block:clamp(var(--space-12),7vw,var(--space-24))}
.ggc-scope .products-bento{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:auto auto;gap:var(--space-4)}
.ggc-scope .product-card{border-radius:var(--radius-lg);overflow:hidden;position:relative;background:var(--color-surface);border:1px solid rgba(26,23,20,0.07);transition:box-shadow var(--transition),transform var(--transition);cursor:pointer}
.ggc-scope .product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.ggc-scope .product-card--featured{grid-column:1/2;grid-row:1/3}
.ggc-scope .product-card-img{width:100%;aspect-ratio:4/3;overflow:hidden}
.ggc-scope .product-card--featured .product-card-img{aspect-ratio:auto;height:100%}
.ggc-scope .product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.ggc-scope .product-card:hover .product-card-img img{transform:scale(1.05)}
.ggc-scope .product-card-body{padding:var(--space-5) var(--space-6)}
.ggc-scope .product-card-tag{display:inline-block;font-size:var(--text-xs);font-weight:600;letter-spacing:0.07em;text-transform:uppercase;color:var(--color-amber);margin-bottom:var(--space-2)}
.ggc-scope .product-card-name{font-family:var(--font-display);font-size:var(--text-lg);color:var(--color-text);font-weight:400;margin-bottom:var(--space-2)}
.ggc-scope .product-card-desc{font-size:var(--text-sm);color:var(--color-text-muted);line-height:1.6}
.ggc-scope .product-card-arrow{position:absolute;top:var(--space-5);right:var(--space-5);width:32px;height:32px;border-radius:var(--radius-full);background:var(--color-surface-offset);display:grid;place-items:center;color:var(--color-text-muted)}
.ggc-scope .product-card:hover .product-card-arrow{background:var(--color-amber);color:#fff;transform:translate(2px,-2px)}

    @media(max-width:900px){
.ggc-scope .products-bento{grid-template-columns:1fr 1fr}
.ggc-scope .product-card--featured{grid-column:1/3;grid-row:auto}
}

    @media(max-width:600px){
.ggc-scope .products-bento{grid-template-columns:1fr}
.ggc-scope .product-card--featured{grid-column:auto}
}
.ggc-scope /* Why */
    .section-why{padding-block:clamp(var(--space-12),7vw,var(--space-24));background:var(--color-surface);border-top:1px solid var(--color-divider);border-bottom:1px solid var(--color-divider)}
.ggc-scope .why-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(var(--space-10),6vw,var(--space-20));align-items:start}
.ggc-scope .why-left{display:flex;flex-direction:column;gap:var(--space-8)}
.ggc-scope .why-feature{display:grid;grid-template-columns:48px 1fr;gap:var(--space-5);align-items:start}
.ggc-scope .why-icon{width:48px;height:48px;flex-shrink:0;display:grid;place-items:center;border:1px solid rgba(26,23,20,0.1);border-radius:var(--radius-md);color:var(--color-navy);background:var(--color-surface-2)}
.ggc-scope .why-feature-title{font-family:var(--font-body);font-size:var(--text-base);font-weight:600;color:var(--color-text);margin-bottom:var(--space-2)}
.ggc-scope .why-feature-desc{font-size:var(--text-sm);color:var(--color-text-muted);line-height:1.65}
.ggc-scope .why-right{display:flex;flex-direction:column;gap:var(--space-5)}
.ggc-scope .why-card{background:var(--color-surface-2);border:1px solid rgba(26,23,20,0.08);border-radius:var(--radius-lg);padding:var(--space-6) var(--space-7);display:flex;flex-direction:column;gap:var(--space-3);transition:box-shadow var(--transition)}
.ggc-scope .why-card:hover{box-shadow:var(--shadow-md)}
.ggc-scope .why-card-n{font-family:var(--font-display);font-size:clamp(2.5rem,1.5rem + 3vw,4rem);color:var(--color-amber);line-height:1}
.ggc-scope .why-card-t{font-weight:600;font-size:var(--text-base);color:var(--color-text)}
.ggc-scope .why-card-d{font-size:var(--text-sm);color:var(--color-text-muted)}

    @media(max-width:768px){
.ggc-scope .why-grid{grid-template-columns:1fr}
}
.ggc-scope /* Specs */
    .section-specs{padding-block:clamp(var(--space-12),7vw,var(--space-24));background:#1b3a5c}
.ggc-scope .specs-eyebrow{color:rgba(224,123,42,0.9)}
.ggc-scope .specs-title{color:#f8f7f3}
.ggc-scope .specs-desc{color:rgba(248,247,243,0.6)}
.ggc-scope .specs-wrap{overflow-x:auto;border-radius:var(--radius-lg);border:1px solid rgba(255,255,255,0.12);margin-top:var(--space-10)}
.ggc-scope .specs-table{width:100%;border-collapse:collapse;font-size:var(--text-sm);font-variant-numeric:tabular-nums}
.ggc-scope .specs-table th{background:rgba(0,0,0,0.2);color:rgba(248,247,243,0.75);font-weight:600;font-size:var(--text-xs);text-transform:uppercase;letter-spacing:0.07em;padding:var(--space-4) var(--space-6);text-align:left;white-space:nowrap}
.ggc-scope .specs-table td{padding:var(--space-4) var(--space-6);color:rgba(248,247,243,0.82);border-bottom:1px solid rgba(255,255,255,0.07)}
.ggc-scope .specs-table tbody tr:last-child td{border-bottom:none}
.ggc-scope .specs-table tbody tr:hover td{background:rgba(255,255,255,0.04)}
.ggc-scope .specs-badge{display:inline-block;font-size:var(--text-xs);font-weight:600;padding:2px 8px;border-radius:var(--radius-full);background:rgba(224,123,42,0.2);color:var(--color-amber)}
.ggc-scope /* Industries */
    .section-industries{padding-block:clamp(var(--space-12),7vw,var(--space-24))}
.ggc-scope .industries-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--space-4);margin-top:var(--space-10)}
.ggc-scope .industry-card{border-radius:var(--radius-lg);overflow:hidden;position:relative;aspect-ratio:3/4;cursor:pointer;border:1px solid rgba(26,23,20,0.07)}
.ggc-scope .industry-card-img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.ggc-scope .industry-card:hover .industry-card-img{transform:scale(1.07)}
.ggc-scope .industry-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(14,33,53,0.88) 0%,transparent 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:var(--space-5)}
.ggc-scope .industry-name{font-family:var(--font-display);font-size:var(--text-lg);font-weight:400;color:#fff;line-height:1.2;margin-bottom:var(--space-1)}
.ggc-scope .industry-sub{font-size:var(--text-xs);color:rgba(255,255,255,0.6);font-weight:500}

    @media(max-width:1024px){
.ggc-scope .industries-grid{grid-template-columns:repeat(3,1fr)}
}

    @media(max-width:600px){
.ggc-scope .industries-grid{grid-template-columns:repeat(2,1fr)}
}
.ggc-scope /* Testimonials */
    .section-testimonials{padding-block:clamp(var(--space-12),7vw,var(--space-24));background:var(--color-surface);border-top:1px solid var(--color-divider);border-bottom:1px solid var(--color-divider)}
.ggc-scope .testimonials-grid{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-6);margin-top:var(--space-10)}
.ggc-scope .testi-card{background:var(--color-surface-2);border:1px solid rgba(26,23,20,0.08);border-radius:var(--radius-xl);padding:var(--space-8);display:flex;flex-direction:column;gap:var(--space-6);transition:box-shadow var(--transition)}
.ggc-scope .testi-card:hover{box-shadow:var(--shadow-md)}
.ggc-scope .testi-stars{display:flex;gap:var(--space-1);color:var(--color-amber)}
.ggc-scope .testi-quote{font-family:var(--font-display);font-size:var(--text-lg);font-style:italic;font-weight:400;line-height:1.5;color:var(--color-text)}
.ggc-scope .testi-author{display:flex;align-items:center;gap:var(--space-4)}
.ggc-scope .testi-avatar{width:44px;height:44px;border-radius:var(--radius-full);background:var(--color-navy-light);display:grid;place-items:center;font-family:var(--font-display);font-size:var(--text-lg);color:var(--color-navy);font-weight:400;flex-shrink:0}
.ggc-scope .testi-name{font-weight:600;font-size:var(--text-sm);color:var(--color-text)}
.ggc-scope .testi-role{font-size:var(--text-xs);color:var(--color-text-muted);margin-top:2px}

    @media(max-width:700px){
.ggc-scope .testimonials-grid{grid-template-columns:1fr}
}
.ggc-scope /* Factory */
    .section-factory{position:relative;overflow:hidden;min-height:clamp(320px,50vh,560px);display:flex;align-items:center}
.ggc-scope .factory-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ggc-scope .factory-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(14,33,53,0.93) 0%,rgba(14,33,53,0.6) 60%,transparent 100%)}
.ggc-scope .factory-content{position:relative;z-index:1;padding-block:clamp(var(--space-16),8vw,var(--space-24));max-width:600px}
.ggc-scope .factory-eyebrow{color:var(--color-amber);margin-bottom:var(--space-5)}
.ggc-scope .factory-title{font-family:var(--font-display);font-size:clamp(2rem,1rem + 3.5vw,4rem);color:#f8f7f3;font-weight:400;letter-spacing:-0.025em;line-height:1.1;margin-bottom:var(--space-8)}
.ggc-scope .factory-metrics{display:flex;gap:var(--space-8);flex-wrap:wrap}
.ggc-scope .factory-metric-n{font-family:var(--font-display);font-size:clamp(2rem,1rem + 2.5vw,3rem);color:#f8f7f3;line-height:1}
.ggc-scope .factory-metric-l{font-size:var(--text-xs);font-weight:500;color:rgba(248,247,243,0.55);text-transform:uppercase;letter-spacing:0.07em;margin-top:var(--space-1)}
.ggc-scope /* Inquiry */
    .section-inquiry{padding-block:clamp(var(--space-12),7vw,var(--space-20));background:#162f4a}
.ggc-scope .inquiry-inner{display:grid;grid-template-columns:1fr 1.3fr;gap:clamp(var(--space-10),6vw,var(--space-20));align-items:center}
.ggc-scope .inquiry-eyebrow{color:var(--color-amber);margin-bottom:var(--space-5)}
.ggc-scope .inquiry-title{font-family:var(--font-display);font-size:clamp(1.8rem,1rem + 2.5vw,3.2rem);color:#f8f7f3;font-weight:400;letter-spacing:-0.02em;line-height:1.15;margin-bottom:var(--space-4)}
.ggc-scope .inquiry-sub{font-size:var(--text-sm);color:rgba(248,247,243,0.62);line-height:1.65;max-width:42ch}
.ggc-scope .inquiry-promise{display:flex;align-items:center;gap:var(--space-3);margin-top:var(--space-5);font-size:var(--text-sm);color:rgba(248,247,243,0.65)}
.ggc-scope .inquiry-promise svg{color:var(--color-amber);flex-shrink:0}
.ggc-scope .inquiry-form{background:rgba(248,247,244,0.97);border:1px solid rgba(26,23,20,0.1);border-radius:var(--radius-xl);padding:clamp(var(--space-6),4vw,var(--space-10));display:flex;flex-direction:column;gap:var(--space-5)}
.ggc-scope .form-row{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-4)}
.ggc-scope .form-group{display:flex;flex-direction:column;gap:var(--space-2)}
.ggc-scope .form-label{font-size:var(--text-xs);font-weight:600;letter-spacing:0.06em;text-transform:uppercase;color:#6b6760}
.ggc-scope .form-input, .ggc-scope .form-select, .ggc-scope .form-textarea{background:#f4f3ef;border:1px solid rgba(26,23,20,0.15);border-radius:var(--radius-md);padding:var(--space-3) var(--space-4);font-size:var(--text-sm);color:#1a1714;min-height:44px;width:100%}
.ggc-scope .form-input:focus, .ggc-scope .form-select:focus, .ggc-scope .form-textarea:focus{outline:none;border-color:var(--color-amber);box-shadow:0 0 0 3px rgba(224,123,42,0.15)}
.ggc-scope .form-textarea{min-height:90px;resize:vertical}
.ggc-scope .form-submit{background:var(--color-amber);color:#fff;font-size:var(--text-sm);font-weight:600;padding:var(--space-4);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;gap:var(--space-2);min-height:48px;width:100%}
.ggc-scope .form-submit:hover{background:var(--color-amber-hover);transform:translateY(-1px);box-shadow:0 6px 20px rgba(224,123,42,0.3)}

    @media(max-width:800px){
.ggc-scope .inquiry-inner{grid-template-columns:1fr}
.ggc-scope .form-row{grid-template-columns:1fr}
}
.ggc-scope /* Footer */
    .site-footer{background:#0e2135;border-top:1px solid rgba(255,255,255,0.08);padding-top:clamp(var(--space-12),6vw,var(--space-20))}
.ggc-scope .footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:var(--space-10)}
.ggc-scope .footer-brand{display:flex;flex-direction:column;gap:var(--space-5)}
.ggc-scope .footer-logo{display:flex;align-items:center;gap:var(--space-3)}
.ggc-scope .footer-logo-text{font-family:var(--font-display);font-size:var(--text-xl);color:#f8f7f3}
.ggc-scope .footer-logo-text span{color:var(--color-amber)}
.ggc-scope .footer-tagline{font-size:var(--text-sm);line-height:1.65;color:rgba(248,247,243,0.5);max-width:30ch}
.ggc-scope .footer-contact-item{display:flex;align-items:flex-start;gap:var(--space-3);font-size:var(--text-sm);color:rgba(248,247,243,0.55);margin-bottom:var(--space-3)}
.ggc-scope .footer-contact-item svg{color:var(--color-amber);flex-shrink:0;margin-top:3px}
.ggc-scope .footer-col-t{font-size:var(--text-xs);font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:rgba(248,247,243,0.45);margin-bottom:var(--space-5)}
.ggc-scope .footer-links{display:flex;flex-direction:column;gap:var(--space-3);list-style:none}
.ggc-scope .footer-links a{font-size:var(--text-sm);color:rgba(248,247,243,0.55)}
.ggc-scope .footer-links a:hover{color:#f8f7f3}
.ggc-scope .footer-bottom{margin-top:var(--space-12);padding-block:var(--space-5);border-top:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:var(--space-4)}
.ggc-scope .footer-copy{font-size:var(--text-xs);color:rgba(248,247,243,0.35)}
.ggc-scope .footer-stds{display:flex;gap:var(--space-4);flex-wrap:wrap}
.ggc-scope .footer-std{font-size:var(--text-xs);font-weight:600;color:rgba(248,247,243,0.38);padding:3px 10px;border-radius:var(--radius-full);border:1px solid rgba(255,255,255,0.1)}

    @media(max-width:900px){
.ggc-scope .footer-grid{grid-template-columns:1fr 1fr;gap:var(--space-8)}
.ggc-scope .footer-brand{grid-column:1/-1}
}

    @media(max-width:500px){
.ggc-scope .footer-grid{grid-template-columns:1fr}
.ggc-scope .footer-brand{grid-column:auto}
}
.ggc-scope /* Reveal animations */
    .reveal{opacity:0;transform:translateY(22px);transition:opacity 0.65s cubic-bezier(0.16,1,0.3,1),transform 0.65s cubic-bezier(0.16,1,0.3,1)}
.ggc-scope .reveal.visible{opacity:1;transform:none}
.ggc-scope .d1{transition-delay:0.1s}
.ggc-scope .d2{transition-delay:0.2s}
.ggc-scope .d3{transition-delay:0.3s}
.ggc-scope .d4{transition-delay:0.4s}

.ggc-scope, .ggc-scope p, .ggc-scope li, .ggc-scope td, .ggc-scope th, .ggc-scope span, .ggc-scope a, .ggc-scope div { font-family:'Inter','PingFang SC',sans-serif; }
.ggc-scope h1,.ggc-scope h2,.ggc-scope h3,.ggc-scope h4,.ggc-scope h5 { font-family:'Roboto Slab',Georgia,serif; }
.ggc-scope{ display:block; }
