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

  :root {
    --red: #e82b2b;
    --red-dark: #c41e1e;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-text: #555;
    --gray-border: #e0e0e0;
    --font-main: 'Manrope', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-main); background: var(--white); color: var(--black); overflow-x: hidden; }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
    padding: 0 48px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.3s;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-name { color: #ffffff; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; font-family: 'Manrope', sans-serif; }
  .nav-logo-tag { color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-links a.active { color: var(--red); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
  .btn-icon:hover { background: var(--red-dark); transform: scale(1.05); }
  .btn-icon svg { width: 16px; height: 16px; stroke: #fff; }
  .btn-discuss { background: var(--red); color: #fff; border: none; padding: 12px 26px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.2s; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-discuss:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ===== HAMBURGER ===== */
  .hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; cursor: pointer; padding: 0; transition: border-color 0.2s; flex-shrink: 0; z-index: 1100; position: relative; }
  .hamburger:hover { border-color: var(--red); }
  .hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== MOBILE BACKDROP ===== */
  .mobile-menu-backdrop { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; transition: opacity 0.3s ease; }
  .mobile-menu-backdrop.open { display: block; opacity: 1; }

  /* ===== MOBILE DRAWER ===== */
  .mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 85%; max-width: 320px;
    background: #ffffff; z-index: 1100;
    display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 48px rgba(0,0,0,0.18);
    overflow-y: auto; overflow-x: hidden;
    height: 100%; min-height: 100vh;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0; background: #fff;
  }
  .mobile-drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .mobile-drawer-logo img { height: 32px; width: 32px; border-radius: 6px; object-fit: contain; }
  .mobile-drawer-logo-name { color: #111; font-size: 12px; font-weight: 800; }
  .mobile-drawer-close {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid #ddd; background: #f5f5f5;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; flex-shrink: 0;
  }
  .mobile-drawer-close svg { width: 12px; height: 12px; stroke: #555; }
  .mobile-nav-links { list-style: none; display: block; padding: 0; margin: 0; flex: 1; width: 100%; }
  .mobile-nav-links li { display: block; width: 100%; border-bottom: 1px solid #f2f2f2; }
  .mobile-nav-links li a {
    display: flex; align-items: center; justify-content: space-between;
    color: #1a1a1a; text-decoration: none;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    padding: 16px 16px; width: 100%;
    transition: color 0.2s, background 0.2s;
  }
  .mobile-nav-links li a:hover { color: #e82b2b; background: #fff5f5; }
  .mobile-nav-links li a.active { color: #e82b2b; background: #fff5f5; }
  .mn-plus {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1.5px solid #e0e0e0; display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; background: #f7f7f7;
    font-size: 18px; font-weight: 300; color: #555; line-height: 1;
    transition: all 0.2s;
  }
  .mobile-nav-links li a:hover .mn-plus,
  .mobile-nav-links li a.active .mn-plus {
    border-color: #e82b2b; background: #e82b2b; color: #fff;
  }
  .mobile-menu-footer { padding: 16px; border-top: 1px solid #f0f0f0; flex-shrink: 0; background: #fff; }
  .mobile-contact-btn {
    background: #e82b2b; color: #fff; text-decoration: none;
    padding: 14px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; text-align: center; display: block;
    transition: background 0.2s;
  }
  .mobile-contact-btn:hover { background: #c41e1e; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    min-height: 100vh; background: #0a0a0a;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 48px 80px;
  }
  .hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .infinity-svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -45%); width: 80%; max-width: 900px; opacity: 0.1; animation: infinityFloat 6s ease-in-out infinite; }
  @keyframes infinityFloat { 0%,100% { transform: translate(-50%, -45%) scale(1); opacity: 0.1; } 50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.15; } }
  .shape-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.06); }
  .ring1 { width: 500px; height: 250px; top: 40%; left: 20%; transform: rotate(-20deg); animation: floatRing1 8s ease-in-out infinite; }
  .ring2 { width: 400px; height: 200px; top: 45%; left: 40%; transform: rotate(10deg); animation: floatRing2 10s ease-in-out infinite; border-color: rgba(255,255,255,0.04); }
  @keyframes floatRing1 { 0%,100% { transform: rotate(-20deg) translateY(0); } 50% { transform: rotate(-20deg) translateY(-20px); } }
  @keyframes floatRing2 { 0%,100% { transform: rotate(10deg) translateY(0); } 50% { transform: rotate(10deg) translateY(15px); } }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,43,43,0.12); border: 1px solid rgba(232,43,43,0.3); border-radius: 50px; padding: 8px 18px; margin-bottom: 32px; animation: fadeUp 0.6s ease both; }
  .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #e82b2b; display: inline-block; animation: pulseDot 2s ease-in-out infinite; }
  .hero-badge-text { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
  @keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.5); } }
  .page-hero-title { font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 28px; }
  .title-line1 { display: block; color: #fff; font-size: clamp(32px, 4.5vw, 60px); animation: fadeUp 0.7s 0.1s ease both; opacity: 0; }
  .title-line2 { display: block; color: var(--red); font-size: clamp(32px, 4.5vw, 60px); animation: fadeUp 0.7s 0.25s ease both; opacity: 0; }
  .page-hero-desc { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.8; max-width: 680px; margin: 0 auto; animation: fadeUp 0.7s 0.4s ease both; opacity: 0; }
  .hero-meta { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 48px; flex-wrap: wrap; animation: fadeUp 0.7s 0.55s ease both; opacity: 0; }
  .meta-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
  .meta-item { color: rgba(255,255,255,0.6); font-size: 13px; }
  .meta-item strong { color: #fff; font-weight: 700; }
  .scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp 0.7s 0.8s ease both; opacity: 0; z-index: 2; }
  .scroll-hint span { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(232,43,43,0.6), transparent); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  /* ─── SECTION COMMON ─── */
  .section-label { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
  .section-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
  .section-desc { color: var(--gray-text); font-size: 16px; line-height: 1.7; }

  /* ─── STORY SECTION ─── */
  .story-section { background: #fff; padding: 96px 48px; }
  .story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .story-left { position: sticky; top: 100px; }
  .story-year-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff0f0; border: 1px solid rgba(232,43,43,0.2); border-radius: 8px; padding: 10px 18px; margin-bottom: 28px; }
  .story-year-badge span { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.5px; }
  .story-headline { font-size: clamp(28px, 3vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 28px; color: #0a0a0a; }
  .story-headline .red { color: var(--red); }
  .story-founder { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding: 20px; background: #f9f9f9; border-radius: 14px; border: 1px solid #eee; }
  .founder-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #e82b2b, #8b0000); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
  .founder-info h4 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 2px; }
  .founder-info p { font-size: 13px; color: #888; }
  .founder-info a { color: var(--red); text-decoration: none; font-weight: 600; font-size: 12px; }
  .story-right { display: flex; flex-direction: column; gap: 0; }
  .story-para { padding: 32px 0; border-top: 1px solid #eee; color: #444; font-size: 16px; line-height: 1.8; }
  .story-para:first-child { padding-top: 0; border-top: none; }
  .story-para strong { color: #111; font-weight: 700; }
  .story-para .highlight { background: linear-gradient(135deg, rgba(232,43,43,0.08), rgba(232,43,43,0.04)); border-left: 3px solid var(--red); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 16px 0; font-size: 15px; color: #333; }

  /* ─── STATS BAND ─── */
  .stats-band { background: #0a0a0a; padding: 56px 48px; }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-block { text-align: center; position: relative; padding: 8px 24px; }
  .stat-block + .stat-block::before { content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.1); }
  .stat-block-num { color: #fff; font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
  .stat-block-num .accent { color: var(--red); }
  .stat-block-label { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500; }

  /* ─── MISSION SECTION ─── */
  .mission-section { background: var(--gray-light); padding: 96px 48px; }
  .mission-layout { display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; }
  .mission-visual { position: relative; }
  .mission-card-stack { position: relative; height: 420px; }
  .m-card { position: absolute; border-radius: 20px; padding: 32px; transition: transform 0.3s; }
  .m-card:hover { transform: translateY(-6px) rotate(0deg) !important; }
  .m-card-1 { background: #0a0a0a; width: 320px; top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
  .m-card-2 { background: var(--red); width: 280px; top: 60px; left: 60px; transform: rotate(2deg); z-index: 2; }
  .m-card-3 { background: #fff; width: 300px; top: 140px; left: 20px; transform: rotate(-1deg); z-index: 3; border: 1.5px solid #eee; }
  .m-card-icon { font-size: 28px; margin-bottom: 14px; }
  .m-card-title { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
  .m-card-text { font-size: 14px; line-height: 1.65; }
  .m-card-1 .m-card-title { color: rgba(255,255,255,0.5); }
  .m-card-1 .m-card-text { color: rgba(255,255,255,0.85); }
  .m-card-2 .m-card-title { color: rgba(255,255,255,0.8); }
  .m-card-2 .m-card-text { color: #fff; }
  .m-card-3 .m-card-title { color: var(--red); }
  .m-card-3 .m-card-text { color: #333; }
  .mission-text .section-label { margin-bottom: 14px; }
  .mission-text .section-title { margin-bottom: 20px; }
  .mission-body { color: var(--gray-text); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
  .mission-body strong { color: #111; }
  .mission-quote { background: #fff; border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }
  .mission-quote p { font-size: 16px; font-style: italic; color: #333; line-height: 1.7; }
  .mission-quote cite { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--red); font-style: normal; }

  /* ─── VALUES SECTION ─── */
  .values-section { background: #fff; padding: 96px 48px; }
  .values-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .value-card { border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
  .value-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
  .value-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; opacity: 0; transition: opacity 0.3s; background: linear-gradient(135deg, rgba(232,43,43,0.08), transparent); }
  .value-card:hover::before { opacity: 1; }
  .vc-1 { background: #fff8f8; border: 1.5px solid rgba(232,43,43,0.15); }
  .vc-2 { background: #f8f9ff; border: 1.5px solid rgba(80,100,232,0.15); }
  .vc-3 { background: #f8fff9; border: 1.5px solid rgba(43,180,80,0.15); }
  .vc-4 { background: #fffbf0; border: 1.5px solid rgba(232,170,43,0.2); }
  .value-icon { font-size: 38px; margin-bottom: 20px; display: block; }
  .value-title { font-size: 20px; font-weight: 800; color: #0a0a0a; margin-bottom: 12px; letter-spacing: -0.3px; }
  .value-desc { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
  .value-tag { display: inline-block; margin-top: 20px; padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
  .vc-1 .value-tag { background: rgba(232,43,43,0.1); color: var(--red); }
  .vc-2 .value-tag { background: rgba(80,100,232,0.1); color: #5064e8; }
  .vc-3 .value-tag { background: rgba(43,180,80,0.1); color: #2bb450; }
  .vc-4 .value-tag { background: rgba(232,170,43,0.1); color: #e8aa2b; }

  /* ─── INDUSTRIES SECTION ─── */
  .industries-section { background: #0a0a0a; padding: 96px 48px; }
  .industries-section .section-label { color: rgba(232,43,43,0.9); }
  .industries-section .section-title { color: #fff; }
  .industries-section .section-desc { color: rgba(255,255,255,0.55); }
  .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; background: rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
  .industry-item { padding: 40px 32px; background: #0a0a0a; transition: background 0.3s; position: relative; overflow: hidden; cursor: pointer; }
  .industry-item::after { content: ''; position: absolute; bottom: 0; left: 32px; right: 32px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .industry-item:hover { background: #111; }
  .industry-item:hover::after { transform: scaleX(1); }
  .industry-num { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 2px; margin-bottom: 16px; }
  .industry-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
  .industry-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .industry-icon { font-size: 32px; margin-bottom: 16px; display: block; }

  /* ─── APPROACH SECTION ─── */
  .approach-section { background: var(--gray-light); padding: 96px 48px; }
  .approach-header { max-width: 600px; margin-bottom: 64px; }
  .approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .approach-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--red), rgba(232,43,43,0.2)); z-index: 0; }
  .approach-step { position: relative; z-index: 1; padding: 0 24px; }
  .step-circle { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--gray-border); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--red); margin-bottom: 24px; transition: all 0.3s; }
  .approach-step:hover .step-circle { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.1); }
  .step-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 10px; }
  .step-desc { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

  /* ─── CTA SECTION ─── */
  .cta-section { background: #fff; padding: 80px 48px; }
  .cta-inner { background: #0a0a0a; border-radius: 24px; padding: 72px 64px; display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; overflow: hidden; }
  .cta-inner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(232,43,43,0.08); pointer-events: none; }
  .cta-inner::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(232,43,43,0.05); pointer-events: none; }
  .cta-text { max-width: 540px; position: relative; z-index: 1; }
  .cta-text h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
  .cta-text p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }
  .cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }
  .cta-btn-primary { background: var(--red); color: #fff; border: none; padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
  .cta-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .cta-btn-ghost { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600; text-decoration: none; text-align: center; transition: color 0.2s; letter-spacing: 0.5px; }
  .cta-btn-ghost:hover { color: #fff; }

  /* ─── FOOTER ─── */
  .site-footer { background: #0a0a0a; color: rgba(255,255,255,0.7); padding: 70px 48px 0; }
  .footer-top-band { display: flex; align-items: flex-start; gap: 60px; margin-bottom: 60px; }
  .footer-brand-col { max-width: 360px; }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-text h3 { color: #fff; font-size: 20px; font-weight: 800; }
  .footer-logo-text span { color: #666; font-size: 12px; }
  .footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
  .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; flex: 1; }
  .footer-col-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 12px; }
  .footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
  .footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .footer-links li a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
  .footer-links li a:hover { color: #fff; }
  .footer-contact-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; padding: 3px 0; }
  .footer-contact-link:hover { color: #fff; }
  .footer-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
  .footer-addr { color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.6; margin-top: 4px; padding-left: 22px; }
  .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: center; }
  .footer-bottom-bar p { color: rgba(255,255,255,0.35); font-size: 13px; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.12s; }
  .reveal-delay-2 { transition-delay: 0.24s; }
  .reveal-delay-3 { transition-delay: 0.36s; }

  /* ─── SCROLL UP ─── */
  .scroll-up { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(232,43,43,0.5); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 999; transition: all 0.2s; opacity: 0; pointer-events: none; }
  .scroll-up.show { opacity: 1; pointer-events: auto; }
  .scroll-up:hover { background: var(--red); border-color: var(--red); }
  .scroll-up svg { width: 18px; height: 18px; stroke: var(--red); transition: stroke 0.2s; }
  .scroll-up:hover svg { stroke: #fff; }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 1200px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
    .approach-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .approach-steps::before { display: none; }
    .mission-layout { grid-template-columns: 1fr; }
    .mission-visual { display: none; }
  }
  @media(max-width: 1024px) {
    nav { padding: 0 24px; }
    .page-hero, .story-section, .mission-section, .values-section, .industries-section, .approach-section, .cta-section { padding-left: 24px; padding-right: 24px; }
    .story-layout { grid-template-columns: 1fr; gap: 40px; }
    .story-left { position: static; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-block + .stat-block::before { display: none; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; padding: 48px; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width: 768px) {
    nav { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .nav-logo img { height: 36px; width: 36px; }
    .nav-logo { gap: 8px; }
    .nav-logo-name { font-size: 12px; letter-spacing: 0; }
    .nav-logo-tag { display: none; }
    .btn-icon { display: none; }
    .btn-discuss { display: none; }
    .hamburger { display: flex; }

    .page-hero { padding: 90px 16px 80px; }
    .story-section, .mission-section, .values-section, .approach-section, .cta-section { padding: 64px 16px; }
    .industries-section { padding: 64px 16px; }
    .stats-band { padding: 40px 16px; }
    .site-footer { padding: 40px 16px 0; }

    .values-grid { grid-template-columns: 1fr; }
    .approach-steps { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .cta-inner { padding: 32px 24px; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom-bar p { font-size: 11px; text-align: center; }

    .hero-meta { gap: 12px; }
    .meta-divider { display: none; }
    .page-hero-desc { font-size: 15px; }
  }
  @media(max-width: 400px) {
    .stats-inner { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
  }
