    :root {
      --xerox-red: #e31837;
      --xerox-dark: #0a0a0a;
      --xerox-charcoal: #1a1a1a;
      --xerox-mid: #2d2d2d;
      --xerox-grey: #6b6b6b;
      --xerox-light: #f5f0eb;
      --xerox-cream: #faf7f4;
      --xerox-white: #ffffff;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--xerox-cream);
      color: var(--xerox-dark);
      overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 247, 244, 0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: all 0.4s ease;
    }
    nav.scrolled {
      padding: 0.8rem 4rem;
      background: rgba(250,247,244,0.97);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 38px; height: 38px;
      background: var(--xerox-red);
      display: flex; align-items: center; justify-content: center;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .nav-logo-mark span {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
      letter-spacing: -0.02em;
    }
    .nav-logo-text {
      display: flex; flex-direction: column; line-height: 1;
    }
    .nav-logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--xerox-dark);
      letter-spacing: 0.04em;
    }
    .nav-logo-text small {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      color: var(--xerox-red);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--xerox-charcoal);
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1.5px;
      background: var(--xerox-red);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--xerox-red); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--xerox-red);
      color: white !important;
      padding: 0.55rem 1.4rem;
      border-radius: 2px;
      font-size: 0.8rem !important;
      letter-spacing: 0.08em !important;
      transition: background 0.3s !important;
    }
    .nav-cta:hover { background: #b5112a !important; color: white !important; }
    .nav-cta::after { display: none !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--xerox-dark); transition: all 0.3s; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 80px;
      overflow: hidden;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 3rem 6rem 5rem;
      position: relative;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 2rem;
      background: rgba(227,24,55,0.07);
      border: 1px solid rgba(227,24,55,0.2);
      padding: 0.4rem 1rem;
      border-radius: 2px;
      width: fit-content;
      animation: fadeUp 0.8s ease 0.2s both;
    }
    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--xerox-red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .hero-badge span {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--xerox-red);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--xerox-dark);
      margin-bottom: 0.3rem;
      animation: fadeUp 0.8s ease 0.4s both;
    }
    .hero-title em {
      font-style: italic;
      color: var(--xerox-red);
    }
    .hero-title strong {
      font-weight: 700;
      display: block;
    }
    .hero-sub {
      font-size: 1rem;
      font-weight: 300;
      color: var(--xerox-grey);
      line-height: 1.7;
      max-width: 440px;
      margin: 1.5rem 0 2.5rem;
      animation: fadeUp 0.8s ease 0.6s both;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      animation: fadeUp 0.8s ease 0.8s both;
    }
    .btn-primary {
      background: var(--xerox-red);
      color: white;
      padding: 0.9rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(227,24,55,0.3); }
    .btn-outline {
      color: var(--xerox-dark);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s;
    }
    .btn-outline:hover { gap: 0.9rem; color: var(--xerox-red); }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(0,0,0,0.08);
      animation: fadeUp 0.8s ease 1s both;
    }
    .stat-item {}
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--xerox-dark);
      line-height: 1;
    }
    .stat-num sup { font-size: 1rem; color: var(--xerox-red); }
    .stat-label {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--xerox-grey);
      margin-top: 0.3rem;
    }

    .hero-right {
      position: relative;
      background: var(--xerox-dark);
      overflow: hidden;
    }
    .hero-right-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background: 
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 30px,
          rgba(201,168,76,0.04) 30px,
          rgba(201,168,76,0.04) 31px
        );
    }
    .hero-visual {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: fadeIn 1.2s ease 0.5s both;
    }
    .hero-device {
      width: 340px;
      height: 380px;
      background: linear-gradient(145deg, #2a2a2a, #111);
      border-radius: 8px;
      position: relative;
      box-shadow: 
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-device::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--xerox-red), var(--gold));
    }
    .device-screen {
      width: 85%;
      height: 75%;
      background: linear-gradient(160deg, #1e1e1e, #0d0d0d);
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .device-xerox-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: white;
      letter-spacing: 0.1em;
    }
    .device-xerox-logo span { color: var(--xerox-red); }
    .device-dots {
      display: flex; gap: 6px;
    }
    .device-dots span {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
    }
    .device-dots span:first-child { background: var(--xerox-red); animation: blink 2s infinite; }
    .device-dots span:nth-child(2) { background: var(--gold); animation: blink 2s infinite 0.5s; }
    .device-lines {
      display: flex; flex-direction: column; gap: 6px; width: 60%;
    }
    .device-lines span {
      height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px;
    }
    .device-lines span:first-child { width: 100%; }
    .device-lines span:nth-child(2) { width: 75%; }
    .device-lines span:last-child { width: 55%; }

    .hero-float-card {
      position: absolute;
      background: white;
      border-radius: 8px;
      padding: 1rem 1.2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      font-size: 0.8rem;
    }
    .hfc-1 {
      top: 80px; right: 100px;
      animation: float 4s ease-in-out infinite;
    }
    .hfc-2 {
      top: 80px; right: -100px;
      animation: float 4s ease-in-out infinite 1.5s;
    }
    .hfc-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--xerox-grey);
      margin-bottom: 0.25rem;
    }
    .hfc-value {
      font-weight: 600;
      color: var(--xerox-dark);
    }
    .hfc-icon {
      width: 28px; height: 28px;
      background: rgba(227,24,55,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.4rem;
    }

    /* ─── PARTNER BANNER ─── */
    .partner-banner {
      background: var(--xerox-dark);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      border-top: 1px solid rgba(201,168,76,0.3);
      border-bottom: 1px solid rgba(201,168,76,0.3);
    }
    .partner-banner .line {
      height: 1px; width: 80px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }
    .partner-banner .line.right { background: linear-gradient(90deg, var(--gold), transparent); }
    .pb-text {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .pb-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: white;
      letter-spacing: 0.1em;
    }
    .pb-logo span { color: var(--xerox-red); }

    /* ─── SECTION COMMONS ─── */
    .section { padding: 7rem 5rem; }
    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--xerox-red);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--xerox-dark);
    }
    .section-title strong { font-weight: 700; }
    .section-title em { font-style: italic; color: var(--xerox-red); }

    /* ─── PRODUCTS ─── */
    .products-section {
      background: var(--xerox-cream);
    }
    .products-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 4rem;
    }
    .products-header-left {}
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(0,0,0,0.08);
    }
    .product-card {
      background: var(--xerox-cream);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: background 0.4s;
      group: '';
    }
    .product-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--xerox-red);
      transition: width 0.4s ease;
    }
    .product-card:hover { background: white; }
    .product-card:hover::before { width: 100%; }
    .product-card:hover .pc-arrow { transform: translate(4px, -4px); }
    .pc-number {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: rgba(0,0,0,0.2);
      margin-bottom: 1.5rem;
    }
    .pc-icon {
      width: 52px; height: 52px;
      margin-bottom: 1.5rem;
      display: flex; align-items: center; justify-content: center;
    }
    .pc-icon svg { width: 100%; height: 100%; }
    .pc-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--xerox-dark);
      margin-bottom: 0.6rem;
    }
    .pc-desc {
      font-size: 0.85rem;
      color: var(--xerox-grey);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .pc-arrow {
      width: 32px; height: 32px;
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.3s, border-color 0.3s;
      color: var(--xerox-dark);
    }
    .product-card:hover .pc-arrow { border-color: var(--xerox-red); color: var(--xerox-red); }

    /* ─── WHY US ─── */
    .why-section {
      background: var(--xerox-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 0;
      overflow: hidden;
    }
    .why-left {
      padding: 7rem 4rem 7rem 5rem;
      position: relative;
    }
    .why-left .section-label { color: var(--gold); }
    .why-left .section-title { color: white; }
    .why-right {
      position: relative;
      background: var(--xerox-charcoal);
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .why-right::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 1px; height: 100%;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }
    .why-feature {
      display: flex;
      gap: 1.5rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: padding-left 0.3s;
    }
    .why-feature:first-child { padding-top: 0; }
    .why-feature:last-child { border-bottom: none; padding-bottom: 0; }
    .why-feature:hover { padding-left: 0.5rem; }
    .wf-num {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      color: var(--xerox-red);
      margin-top: 0.2rem;
      flex-shrink: 0;
    }
    .wf-content {}
    .wf-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.4rem;
    }
    .wf-text {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.65;
    }
    .why-decorative {
      position: absolute;
      bottom: 0; right: 0;
      width: 200px; height: 200px;
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 50%;
      transform: translate(50%, 50%);
    }
    .why-decorative::before {
      content: '';
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(201,168,76,0.08);
      border-radius: 50%;
    }

    /* ─── PRODUCTS SHOWCASE ─── */
    .showcase-section {
      background: var(--xerox-cream);
      padding: 7rem 5rem;
    }
    .showcase-header { text-align: center; margin-bottom: 4rem; }
    .showcase-header .section-label { justify-content: center; display: flex; }
    .showcase-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 3rem;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .tab-btn {
      padding: 0.8rem 2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--xerox-grey);
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      transition: color 0.3s;
    }
    .tab-btn::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 2px;
      background: var(--xerox-red);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .tab-btn.active { color: var(--xerox-dark); }
    .tab-btn.active::after { transform: scaleX(1); }
    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .showcase-card {
      background: white;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .showcase-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .sc-image {
      height: 180px;
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .sc-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(227,24,55,0.05), transparent);
    }
    .sc-icon {
      font-size: 3rem;
      opacity: 0.6;
    }
    .sc-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: var(--xerox-red);
      color: white;
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.6rem;
      text-transform: uppercase;
    }
    .sc-body { padding: 1.2rem; }
    .sc-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--xerox-dark);
      margin-bottom: 0.3rem;
    }
    .sc-spec {
      font-size: 0.75rem;
      color: var(--xerox-grey);
      line-height: 1.5;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      background: var(--xerox-light);
      padding: 7rem 5rem;
      overflow: hidden;
    }
    .testimonials-header { margin-bottom: 4rem; }
    .testimonials-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .testi-card {
      background: white;
      padding: 2.5rem;
      position: relative;
      border-radius: 2px;
    }
    .testi-card::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: rgba(227,24,55,0.12);
      position: absolute;
      top: 0.5rem; left: 1.5rem;
      line-height: 1;
    }
    .testi-stars {
      display: flex; gap: 3px;
      margin-bottom: 1rem;
    }
    .testi-stars span {
      color: var(--gold);
      font-size: 0.85rem;
    }
    .testi-text {
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--xerox-charcoal);
      margin-bottom: 1.5rem;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .ta-avatar {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--xerox-red), #b5112a);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }
    .ta-name {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--xerox-dark);
    }
    .ta-company {
      font-size: 0.75rem;
      color: var(--xerox-grey);
    }

    /* ─── CONTACT ─── */
    .contact-section {
      background: var(--xerox-cream);
      padding: 7rem 5rem;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .contact-left {}
    .contact-info {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .ci-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .ci-icon {
      width: 40px; height: 40px;
      background: rgba(227,24,55,0.07);
      border: 1px solid rgba(227,24,55,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--xerox-red);
    }
    .ci-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--xerox-grey);
    }
    .ci-value {
      font-size: 0.9rem;
      color: var(--xerox-dark);
      font-weight: 500;
      margin-top: 0.2rem;
    }
    .contact-form {
      background: white;
      padding: 3rem;
      border-radius: 2px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--xerox-dark);
      margin-bottom: 0.5rem;
    }
    .form-sub {
      font-size: 0.83rem;
      color: var(--xerox-grey);
      margin-bottom: 2rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--xerox-grey);
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      color: var(--xerox-dark);
      background: var(--xerox-cream);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 2px;
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--xerox-red);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%;
      padding: 1rem;
      background: var(--xerox-red);
      color: white;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      transition: background 0.3s, transform 0.2s;
    }
    .form-submit:hover { background: #b5112a; transform: translateY(-1px); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--xerox-dark);
      padding: 5rem 5rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    .footer-brand {}
    .footer-logo {
      display: flex; align-items: center; gap: 0.75rem;
      text-decoration: none;
      margin-bottom: 1.2rem;
    }
    .footer-logo-mark {
      width: 36px; height: 36px;
      background: var(--xerox-red);
      display: flex; align-items: center; justify-content: center;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .footer-logo-mark span {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1rem;
      color: white;
    }
    .footer-logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      display: block;
    }
    .footer-logo-text small {
      font-family: 'Space Mono', monospace;
      font-size: 0.5rem;
      color: var(--gold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .footer-desc {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-partner-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.2rem;
      padding: 0.4rem 0.8rem;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px;
    }
    .fpb-text {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      color: var(--gold);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .fpb-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: white;
    }
    .fpb-logo span { color: var(--xerox-red); }
    .footer-col-title {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.7rem; }
    .footer-links a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: white; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }
    .footer-social {
      display: flex; gap: 1rem;
    }
    .social-btn {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-size: 0.75rem;
      transition: all 0.3s;
    }
    .social-btn:hover {
      border-color: var(--xerox-red);
      color: var(--xerox-red);
      background: rgba(227,24,55,0.08);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── MOBILE NAV ─── */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: white;
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--xerox-dark);
      text-decoration: none;
    }
    .mobile-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { grid-template-columns: 1fr; }
      .hero-right { height: 50vh; }
      .hero-left { padding: 4rem 2rem; }
      .section { padding: 5rem 2rem; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .why-section { grid-template-columns: 1fr; }
      .why-left { padding: 5rem 2rem; }
      .why-right { padding: 4rem 2rem; }
      .showcase-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-track { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .partner-banner { padding: 1rem 2rem; gap: 1rem; }
      .partner-banner .line { width: 40px; }
    }

    @media (max-width: 640px) {
      .hero-left { padding: 3rem 1.5rem; }
      .hero-stats { gap: 1.5rem; }
      .products-grid { grid-template-columns: 1fr; }
      .showcase-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .showcase-section, .testimonials-section, .contact-section { padding: 5rem 1.5rem; }
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--xerox-cream); }
    ::-webkit-scrollbar-thumb { background: var(--xerox-red); border-radius: 2px; }