  *, *::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; display: flex; align-items: center; gap: 4px; }
  .nav-links a:hover { color: #fff; }
  .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; }
  .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 {
    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; }

  /* HERO */
  .hero { min-height: 100vh; background: #0a0a0a; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 48px 160px; }
  .hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .shape-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); }
  .ring1 { width: 600px; height: 300px; top: 40%; left: 20%; transform: rotate(-20deg); border-radius: 50%; animation: floatRing1 8s ease-in-out infinite; }
  .ring2 { width: 500px; height: 250px; top: 45%; left: 35%; transform: rotate(10deg); border-radius: 50%; animation: floatRing2 10s ease-in-out infinite; border-color: rgba(255,255,255,0.05); }
  .ring3 { width: 700px; height: 350px; top: 35%; left: 10%; transform: rotate(-5deg); border-radius: 50%; animation: floatRing3 12s 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(-30px); } }
  @keyframes floatRing2 { 0%,100% { transform: rotate(10deg) translateY(0); } 50% { transform: rotate(10deg) translateY(20px); } }
  @keyframes floatRing3 { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-20px); } }
  .infinity-svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -45%); width: 80%; max-width: 900px; opacity: 0.12; animation: infinityFloat 6s ease-in-out infinite; }
  @keyframes infinityFloat { 0%,100% { transform: translate(-50%, -45%) scale(1); opacity: 0.12; } 50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.16; } }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; width: 100%; }
  .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); } }
  .hero-title { font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 0; }
  .hero-title-line1 { display: block; color: #ffffff; font-size: clamp(28px, 5vw, 68px); animation: fadeUp 0.7s 0.1s ease both; opacity: 0; }
  .hero-title-line2 { display: block; color: var(--red); font-size: clamp(28px, 5vw, 68px); animation: fadeUp 0.7s 0.25s ease both; opacity: 0; }
  .hero-title-accent { color: #fff; font-style: normal; position: relative; display: inline-block; }
  .underline-anim { display: block; height: 3px; background: var(--red); border-radius: 2px; margin-top: 2px; width: 0; animation: underlineGrow 0.8s 1.1s ease forwards; }
  @keyframes underlineGrow { to { width: 100%; } }
  .hero-desc { color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 400; max-width: 700px; margin: 32px auto 0; line-height: 1.75; animation: fadeUp 0.7s 0.4s ease both; opacity: 0; }
  .hero-cta { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 44px; animation: fadeUp 0.7s 0.55s ease both; opacity: 0; flex-wrap: wrap; row-gap: 16px; }
  .cta-icon-btn { width: 54px; height: 54px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-right: -6px; z-index: 1; transition: background 0.2s; }
  .cta-icon-btn svg { width: 18px; height: 18px; stroke: #fff; }
  .cta-main-btn { background: var(--red); color: #fff; border: none; padding: 16px 36px 16px 46px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; }
  .cta-main-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
  .cta-ghost { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; text-decoration: none; margin-left: 28px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; }
  .cta-ghost:hover { color: #fff; }
  .cta-ghost svg { width: 14px; height: 14px; }
  .hero-trust { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 52px; flex-wrap: wrap; animation: fadeUp 0.7s 0.7s ease both; opacity: 0; }
  .trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
  .trust-item { color: rgba(255,255,255,0.6); font-size: 13px; }
  .trust-item strong { color: #fff; font-weight: 700; }
  .hero-stats { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 48px; display: flex; align-items: center; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); animation: fadeUp 0.8s 0.8s ease both; opacity: 0; }
  .stat-award { display: flex; align-items: center; gap: 14px; padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.15); }
  .award-icon { width: 52px; height: 60px; }
  .award-text { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.4; }
  .stat-item { flex: 1; text-align: center; position: relative; }
  .stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.15); }
  .stat-num { color: #fff; font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
  .stat-label { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 400; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  /* SECTION COMMON */
  section { padding: 96px 48px; }
  .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(24px, 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; max-width: 720px; }

  /* CLIENTELE */
  .clientele { background: #fff; padding: 80px 48px; }
  .clientele-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 60px; }
  .clientele-header .left { max-width: 640px; }
  .logos-track-wrapper { overflow: hidden; position: relative; }
  .logos-track-wrapper::before, .logos-track-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
  .logos-track-wrapper::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
  .logos-track-wrapper::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
  .logos-track { display: flex; align-items: center; gap: 80px; animation: scrollLogos 20s linear infinite; width: max-content; }
  .logos-track:hover { animation-play-state: paused; }
  .logo-item { display: flex; align-items: center; justify-content: center; opacity: 0.7; transition: opacity 0.2s; flex-shrink: 0; }
  .logo-item:hover { opacity: 1; }
  .logo-item span { font-size: 22px; font-weight: 800; letter-spacing: 1px; color: #333; }
  @keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* OFFERINGS */
  .offerings { background: #fff; padding: 80px 48px; }
  .offerings-grid { margin-top: 56px; }
  .offering-row { display: grid; grid-template-columns: 280px 1fr auto; align-items: center; gap: 40px; padding: 36px 0; border-top: 1px solid var(--gray-border); transition: background 0.2s; cursor: pointer; }
  .offering-row:last-child { border-bottom: 1px solid var(--gray-border); }
  .offering-row:hover { padding-left: 8px; }
  .offering-left { display: flex; align-items: center; gap: 20px; }
  .offering-icon { width: 52px; height: 52px; flex-shrink: 0; }
  .offering-name { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.3; }
  .offering-desc { color: var(--gray-text); font-size: 15px; line-height: 1.65; }
  .tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
  .tag { border: 1px solid #d5d5d5; border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 500; color: #333; background: #fff; transition: all 0.2s; }
  .tag:hover, .tag.active { background: var(--red); color: #fff; border-color: var(--red); }
  .arrow-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid #e0e0e0; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
  .arrow-btn:hover { background: var(--red); border-color: var(--red); }
  .arrow-btn:hover svg { stroke: #fff; }
  .arrow-btn svg { width: 18px; height: 18px; stroke: var(--red); transition: stroke 0.2s; }

  /* WORK */
  .work-section { background: var(--gray-light); padding: 80px 48px; }
  .work-header { margin-bottom: 52px; }
  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .work-card { background: #fff; border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
  .work-img { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .work-body { padding: 24px; }
  .work-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .work-tag { border: 1px solid #d0d0d0; border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: #444; }
  .work-title { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 14px; letter-spacing: -0.3px; }
  .work-desc { color: var(--gray-text); font-size: 14px; line-height: 1.65; }

  /* BUSINESS TYPES */
  .business-section { background: #fff; padding: 80px 48px; }
  .business-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
  .biz-card { border: 1.5px solid var(--gray-border); border-radius: 16px; padding: 0 0 28px 0; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
  .biz-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
  .biz-card-header { padding: 28px 24px 20px; border-radius: 12px 12px 0 0; margin: 16px 16px 0; min-height: 100px; display: flex; align-items: flex-end; }
  .biz-header-1 { background: #ede8fa; }
  .biz-header-2 { background: #fdf5d6; }
  .biz-header-3 { background: #e8f0fa; }
  .biz-header-4 { background: #dcf5e8; }
  .biz-card-title { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
  .biz-card-body { padding: 20px 24px 0; }
  .biz-card-desc { color: var(--gray-text); font-size: 14px; line-height: 1.65; }

  /* TECH STACK */
  .tech-section { background: #fff; padding: 80px 48px; }
  .tech-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; margin-top: 52px; }
  .tech-tabs { display: flex; flex-direction: column; gap: 0; }
  .tech-tab { padding: 14px 20px; font-size: 14px; font-weight: 600; color: #555; cursor: pointer; border-left: 3px solid transparent; transition: all 0.2s; letter-spacing: 0.3px; position: relative; }
  .tech-tab::before { content: '·'; margin-right: 8px; color: #bbb; font-size: 18px; line-height: 0; vertical-align: middle; }
  .tech-tab.active { background: var(--red); color: #fff; border-left-color: var(--red-dark); border-radius: 0 6px 6px 0; }
  .tech-tab.active::before { color: rgba(255,255,255,0.7); }
  .tech-tab:hover:not(.active) { color: var(--red); border-left-color: var(--red); }
  .tech-panel { display: none; }
  .tech-panel.active { display: block; }
  .tech-icons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .tech-icon-card { border: 1.5px solid var(--gray-border); border-radius: 14px; padding: 22px 14px 16px; text-align: center; cursor: pointer; transition: all 0.25s; position: relative; }
  .tech-icon-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(232,43,43,0.1); }
  .tech-icon-card.highlighted { background: #fafafa; border-color: #ccc; }
  .tech-icon-img { width: 52px; height: 52px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
  .tech-icon-name { font-size: 13px; font-weight: 600; color: #222; }
  .tech-icon-name a { color: var(--red); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
  .tech-icon-name a:hover { text-decoration-color: var(--red); }
  .tech-tooltip { position: absolute; right: -10px; top: 50%; transform: translateY(-50%) translateX(calc(100% + 10px)); background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 16px 18px; width: 240px; font-size: 13px; color: #444; line-height: 1.6; box-shadow: 0 8px 30px rgba(0,0,0,0.1); z-index: 10; display: none; text-align: left; }
  .tech-icon-card:hover .tech-tooltip { display: block; }

  /* CONTACT SECTION */
  .contact-section { background: #f9f9f9; padding: 80px 48px; }
  .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .contact-left h2 { font-size: clamp(24px, 3vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 36px; }
  .contact-steps-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
  .contact-step { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
  .step-num { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #333; flex-shrink: 0; }
  .step-text { font-size: 15px; color: #555; line-height: 1.6; padding-top: 8px; }
  .contact-cards-title { font-size: 18px; font-weight: 700; margin: 32px 0 16px; color: #111; }
  .offices-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .contact-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .info-card-new { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 16px; cursor: pointer; position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; animation: cardSlideUp 0.5s ease both; }
  .info-card-new:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: #d0d0d0; }
  .info-card-new::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; border-radius: 4px 0 0 4px; }
  .card-type-addr::before { background: #e82b2b; }
  .card-type-phone::before { background: #185FA5; }
  .card-type-email::before { background: #3B6D11; }
  @keyframes cardSlideUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  .ic-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .ic-icon-box { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
  .ic-icon-addr { background: #fde8e8; }
  .ic-icon-phone { background: #e8eefa; }
  .ic-icon-email { background: #e8fae8; }
  .ic-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
  .ic-label-addr { color: #A32D2D; }
  .ic-label-phone { color: #185FA5; }
  .ic-label-email { color: #3B6D11; }
  .ic-body { font-size: 13px; color: #555; line-height: 1.7; padding-left: 40px; }
  .ic-body a { color: #555; text-decoration: none; transition: color 0.2s; }
  .ic-body a:hover { color: var(--red); }
  .ic-hint { font-size: 11px; color: #999; margin-top: 2px; }
  .contact-team-title { font-size: 20px; font-weight: 700; margin: 28px 0 18px; }
  .contact-team-avatars { display: flex; }
  .team-avatar { width: 52px; height: 52px; border-radius: 50%; border: 3px solid #f9f9f9; overflow: hidden; margin-right: -8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: transform 0.2s; cursor: pointer; }
  .team-avatar:hover { transform: translateY(-4px); z-index: 1; }
  .contact-channels { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
  .contact-channel { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #333; font-weight: 500; text-decoration: none; border: 1px solid #e8e8e8; padding: 8px 14px; border-radius: 50px; background: #fff; transition: all 0.2s; }
  .contact-channel:hover { color: var(--red); border-color: var(--red); background: #fff5f5; }
  .ch-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .ch-dot-email { background: #e82b2b; }
  .ch-dot-phone { background: #185FA5; }
  .ch-dot-wa { background: #25d366; }

  /* CONTACT FORM */
  .contact-right { background: #fff; border-radius: 20px; padding: 44px 40px; box-shadow: 0 4px 40px rgba(0,0,0,0.07); }
  .contact-right h3 { font-size: 24px; font-weight: 800; margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 0; }
  .form-group label { font-size: 13px; color: #888; margin-bottom: 6px; }
  .form-input { background: transparent; border: none; border-bottom: 1.5px solid #ccc; padding: 10px 0; font-size: 15px; font-family: var(--font-main); color: #222; outline: none; transition: border-color 0.2s; width: 100%; }
  .form-input:focus { border-bottom-color: var(--red); }
  .phone-row { display: flex; align-items: center; gap: 10px; }
  .phone-flag { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #555; border-bottom: 1.5px solid #ccc; padding: 10px 0; cursor: pointer; white-space: nowrap; }
  .form-textarea { background: transparent; border: none; border-bottom: 1.5px solid #ccc; padding: 10px 0; font-size: 15px; font-family: var(--font-main); color: #222; outline: none; resize: none; width: 100%; min-height: 100px; transition: border-color 0.2s; margin-top: 8px; }
  .form-textarea:focus { border-bottom-color: var(--red); }
  .form-submit-row { display: flex; align-items: center; justify-content: flex-end; gap: 0; margin-top: 32px; }
  .submit-icon-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-right: -6px; z-index: 1; }
  .submit-icon-btn svg { width: 18px; height: 18px; stroke: #fff; }
  .submit-btn { background: var(--red); color: #fff; border: none; padding: 16px 36px 16px 44px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
  .submit-btn:hover { background: var(--red-dark); }
  .submit-btn:disabled { background: #aaa; cursor: not-allowed; }
  .form-msg { margin-top: 16px; font-size: 14px; font-weight: 600; text-align: right; display: none; }
  .form-msg.success { color: #16a34a; display: block; }
  .form-msg.error { color: var(--red); display: block; }

  /* ===== 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.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .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; }

  /* ===== TABLET ===== */
  @media(max-width: 1024px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 12px; }
    section, .hero { padding-left: 24px; padding-right: 24px; }
    .clientele, .offerings, .work-section, .business-section, .tech-section, .contact-section, .site-footer { padding-left: 24px; padding-right: 24px; }
    .work-grid { grid-template-columns: 1fr 1fr; }
    .business-cards { grid-template-columns: 1fr 1fr; }
    .offering-row { grid-template-columns: 220px 1fr auto; gap: 24px; }
    .tech-icons-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
  }

  /* ===== MOBILE ===== */
  @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; }

    .hero { padding: 90px 16px 180px; min-height: 100svh; }
    .hero-badge { padding: 7px 14px; margin-bottom: 20px; }
    .hero-badge-text { font-size: 11px; }
    .hero-title-line1, .hero-title-line2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
    .hero-title { letter-spacing: -0.5px; }
    .hero-desc { font-size: 14px; margin-top: 20px; line-height: 1.65; }
    .hero-cta { margin-top: 28px; flex-direction: column; align-items: center; gap: 14px; }
    .cta-icon-btn { display: none; }
    .cta-main-btn { padding: 14px 32px; font-size: 13px; border-radius: 50px; width: 100%; max-width: 280px; text-align: center; }
    .cta-ghost { margin-left: 0; font-size: 12px; }
    .hero-trust { gap: 12px; margin-top: 28px; }
    .trust-divider { display: none; }
    .trust-item { font-size: 12px; }
    .hero-stats { position: relative; padding: 20px 16px; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
    .stat-award { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 16px 0; margin-bottom: 16px; padding-right: 0; justify-content: center; }
    .stat-item { padding: 12px 0; }
    .stat-item + .stat-item::before { display: none; }
    .stat-item + .stat-item { border-top: 1px solid rgba(255,255,255,0.08); }
    .stat-num { font-size: 32px; }
    .stat-label { font-size: 13px; }

    section { padding: 56px 16px; }
    .clientele { padding: 56px 16px; }
    .offerings { padding: 56px 16px; }
    .work-section { padding: 56px 16px; }
    .business-section { padding: 56px 16px; }
    .tech-section { padding: 56px 16px; }
    .contact-section { padding: 56px 16px; }
    .site-footer { padding: 40px 16px 0; }

    .section-title { font-size: clamp(22px, 6vw, 32px); }
    .section-desc { font-size: 14px; }

    .clientele-header { flex-direction: column; gap: 16px; }
    .logos-track { gap: 40px; }
    .logo-item span { font-size: 15px; }

    .offerings-grid { margin-top: 32px; }
    .offering-row { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
    .offering-row:hover { padding-left: 0; }
    .offering-left { gap: 14px; }
    .offering-name { font-size: 18px; }
    .offering-icon { width: 40px; height: 40px; }
    .offering-desc { font-size: 14px; }
    .arrow-btn { display: none; }

    .work-header { margin-bottom: 32px; }
    .work-grid { grid-template-columns: 1fr; gap: 20px; }
    .work-img { height: 180px; }
    .work-title { font-size: 18px; }
    .work-body { padding: 18px; }

    .business-cards { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
    .biz-card-header { min-height: 80px; padding: 20px 16px 14px; margin: 12px 12px 0; }
    .biz-card-title { font-size: 18px; }
    .biz-card-body { padding: 14px 16px 0; }
    .biz-card-desc { font-size: 13px; }

    .tech-layout { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
    .tech-tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; border-left: none; }
    .tech-tab { border-left: none; border-radius: 50px; padding: 8px 14px; font-size: 12px; border: 1.5px solid #e0e0e0; }
    .tech-tab::before { display: none; }
    .tech-tab.active { border-radius: 50px; border-color: var(--red); }
    .tech-icons-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .tech-icon-card { padding: 16px 10px 12px; border-radius: 12px; }
    .tech-icon-img { width: 40px; height: 40px; font-size: 28px; margin-bottom: 8px; }
    .tech-icon-name { font-size: 11px; }
    .tech-tooltip { display: none !important; }

    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-left h2 { font-size: clamp(22px, 6vw, 32px); margin-bottom: 24px; }
    .contact-steps-title { font-size: 18px; }
    .step-text { font-size: 14px; }
    .contact-cards-title { font-size: 16px; margin: 24px 0 12px; }
    .offices-cards-row { grid-template-columns: 1fr; }
    .contact-detail-row { grid-template-columns: 1fr; }
    .ic-body { font-size: 12px; padding-left: 36px; }
    .contact-team-title { font-size: 17px; margin: 20px 0 14px; }
    .contact-channels { gap: 10px; }
    .contact-channel { font-size: 12px; padding: 7px 12px; }

    .contact-right { padding: 28px 20px; border-radius: 16px; }
    .contact-right h3 { font-size: 20px; margin-bottom: 24px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
    .form-input { font-size: 14px; padding: 8px 0; }
    .form-textarea { font-size: 14px; min-height: 80px; }
    .form-submit-row { justify-content: center; margin-top: 24px; }
    .submit-icon-btn { display: none; }
    .submit-btn { width: 100%; text-align: center; padding: 16px 32px; border-radius: 50px; }
    .form-msg { text-align: center; }

    /* ===== FOOTER MOBILE ===== */
    .site-footer { padding: 40px 16px 0; }
    .footer-top-band { flex-direction: column; gap: 24px; margin-bottom: 24px; }
    .footer-brand-col { max-width: 100%; }
    .footer-logo { gap: 10px; margin-bottom: 14px; }
    .footer-logo img { height: 36px; }
    .footer-logo-text h3 { font-size: 13px; }
    .footer-logo-text span { font-size: 10px; }
    .footer-brand-desc { font-size: 13px; line-height: 1.6; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-col-title { font-size: 12px; margin-bottom: 10px; padding-bottom: 8px; }
    .footer-links { grid-template-columns: 1fr; gap: 8px; }
    .footer-links li a { font-size: 12px; }
    .footer-contact-link { font-size: 12px; }
    .footer-addr { font-size: 11px; padding-left: 0; margin-top: 4px; }
    .footer-bottom-bar { padding: 16px 0; }
    .footer-bottom-bar p { font-size: 11px; text-align: center; }

    .scroll-up { width: 40px; height: 40px; bottom: 20px; right: 16px; }
    .scroll-up svg { width: 16px; height: 16px; }
  }

  @media(max-width: 400px) {
    .hero-title-line1, .hero-title-line2 { font-size: 22px; }
    .business-cards { grid-template-columns: 1fr; }
    .tech-icons-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-logo-name { font-size: 11px; }
    .footer-cols { grid-template-columns: 1fr; }
  }
