  *, *::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-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 (index.html style) ===== */
  .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 (index.html style) ===== */
  .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,
  .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; }

  /* ─── HERO ─── */
  .page-hero {
    min-height: 70vh; background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 130px 48px 80px;
  }
  .hero-bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px; animation: gridPan 20s linear infinite;
  }
  @keyframes gridPan { from { background-position: 0 0; } to { background-position: 60px 60px; } }
  .hero-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(232,43,43,0.18) 0%, transparent 70%);
    pointer-events: none; animation: glowPulse 4s ease-in-out infinite;
  }
  @keyframes glowPulse { 0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
  .hero-floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .fshape { position: absolute; border: 1px solid rgba(255,255,255,0.06); }
  .fshape-1 { width: 180px; height: 180px; border-radius: 50%; top: 15%; left: 8%; animation: float1 7s ease-in-out infinite; }
  .fshape-2 { width: 100px; height: 100px; border-radius: 50%; bottom: 20%; right: 10%; animation: float2 9s ease-in-out infinite; border-color: rgba(232,43,43,0.15); }
  .fshape-3 { width: 60px; height: 60px; top: 30%; right: 15%; border-radius: 12px; transform: rotate(25deg); animation: float3 6s ease-in-out infinite; }
  @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(16px)} }
  @keyframes float3 { 0%,100%{transform:rotate(25deg) translateY(0)} 50%{transform:rotate(35deg) translateY(-12px)} }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,43,43,0.1); border: 1px solid rgba(232,43,43,0.3); border-radius: 50px; padding: 8px 18px; margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
  .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulseDot 2s ease-in-out infinite; }
  .hero-badge-text { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }
  @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title { font-size: clamp(38px, 5.5vw, 76px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: #fff; animation: fadeUp 0.7s 0.1s ease both; opacity: 0; }
  .hero-title span { color: var(--red); }
  .hero-subtitle { color: rgba(255,255,255,0.65); font-size: 18px; font-weight: 400; max-width: 680px; margin: 24px auto 0; line-height: 1.75; animation: fadeUp 0.7s 0.25s ease both; opacity: 0; }
  .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; animation: fadeUp 0.7s 0.4s ease both; opacity: 0; }
  .breadcrumb a { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: #fff; }
  .breadcrumb span { color: rgba(255,255,255,0.3); font-size: 13px; }
  .breadcrumb .current { color: var(--red); font-size: 13px; font-weight: 600; }
  .hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp 0.8s 0.6s ease both; opacity: 0; }
  .scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(232,43,43,0.6)); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine { 0%,100%{height:48px;opacity:1} 50%{height:28px;opacity:0.4} }
  .scroll-text { color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
  @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: 12px; }
  .section-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
  .section-desc { color: var(--gray-text); font-size: 16px; line-height: 1.7; max-width: 700px; }

  /* ─── SERVICES OVERVIEW ─── */
  .services-overview { background: #fff; padding: 100px 48px; }
  .overview-header { text-align: center; margin-bottom: 72px; }
  .overview-header .section-desc { margin: 0 auto; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media(max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media(max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

  .service-card { border: 1.5px solid var(--gray-border); border-radius: 20px; padding: 36px 32px; position: relative; overflow: hidden; cursor: pointer; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); background: #fff; }
  .service-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); opacity: 0; transition: opacity 0.35s ease; }
  .service-card:hover { border-color: #0a0a0a; transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .sc-number { color: rgba(255,255,255,0.15); }
  .service-card:hover .sc-icon { background: rgba(232,43,43,0.2); border-color: rgba(232,43,43,0.3); }
  .service-card:hover .sc-icon svg { stroke: var(--red); }
  .service-card:hover .sc-title { color: #fff; }
  .service-card:hover .sc-desc { color: rgba(255,255,255,0.65); }
  .service-card:hover .sc-tags .tag-pill { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
  .service-card:hover .sc-arrow { background: var(--red); border-color: var(--red); }
  .service-card:hover .sc-arrow svg { stroke: #fff; }
  .sc-number { position: absolute; top: 24px; right: 28px; font-size: 64px; font-weight: 800; color: #f0f0f0; letter-spacing: -2px; line-height: 1; transition: color 0.35s ease; z-index: 1; user-select: none; }
  .sc-icon { width: 60px; height: 60px; border-radius: 14px; border: 1.5px solid #e8e8e8; background: #fafafa; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; transition: all 0.35s ease; }
  .sc-icon svg { width: 26px; height: 26px; stroke: #333; transition: stroke 0.35s ease; }
  .sc-title { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 14px; line-height: 1.3; position: relative; z-index: 1; transition: color 0.35s ease; }
  .sc-desc { color: var(--gray-text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; transition: color 0.35s ease; }
  .sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; position: relative; z-index: 1; }
  .tag-pill { border: 1px solid #e0e0e0; border-radius: 50px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: #555; background: #fff; transition: all 0.35s ease; }
  .sc-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 0.35s ease; margin-left: auto; }
  .sc-arrow svg { width: 16px; height: 16px; stroke: #555; transition: stroke 0.35s ease; }

  /* ─── PROCESS SECTION ─── */
  .process-section { background: #0a0a0a; padding: 100px 48px; position: relative; overflow: hidden; }
  .process-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }
  .process-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
  .process-header .section-title { color: #fff; }
  .process-header .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto; }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; z-index: 2; }
  @media(max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; } }
  @media(max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }
  .process-connector { position: absolute; top: 52px; left: calc(10% + 28px); right: calc(10% + 28px); height: 1px; background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(232,43,43,0.4), rgba(255,255,255,0.1)); z-index: 1; }
  @media(max-width: 900px) { .process-connector { display: none; } }
  .process-step { text-align: center; padding: 0 16px; position: relative; }
  .step-circle { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.15); background: #0a0a0a; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.3); transition: all 0.3s ease; }
  .step-circle.active-step { border-color: var(--red); color: var(--red); background: rgba(232,43,43,0.08); box-shadow: 0 0 24px rgba(232,43,43,0.2); }
  .step-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
  .step-desc { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.6; }

  /* ─── DETAILED SERVICES ─── */
  .detailed-section { background: #fff; padding: 100px 48px; }
  .service-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; padding-bottom: 100px; border-bottom: 1px solid var(--gray-border); }
  .service-detail-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .service-detail-row.reverse { direction: rtl; }
  .service-detail-row.reverse > * { direction: ltr; }
  @media(max-width: 900px) { .service-detail-row { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; } }
  .detail-visual { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; }
  .detail-content .section-label { margin-bottom: 8px; }
  .detail-content h3 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 18px; }
  .detail-content p { color: var(--gray-text); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
  .detail-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .detail-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #333; line-height: 1.5; }
  .detail-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 6px; }
  .detail-cta { display: inline-flex; align-items: center; gap: 10px; background: #0a0a0a; color: #fff; padding: 14px 28px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
  .detail-cta:hover { background: var(--red); transform: translateY(-2px); }
  .detail-cta svg { width: 14px; height: 14px; stroke: #fff; }

  .vis-ai { background: linear-gradient(135deg, #12082a 0%, #2a1052 100%); }
  .vis-web { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
  .vis-mobile { background: linear-gradient(135deg, #0d1f1a 0%, #0f3d2e 100%); }
  .vis-cloud { background: linear-gradient(135deg, #071a12 0%, #0a2d1f 100%); }

  /* ─── STATS BAND ─── */
  .stats-band { background: #0a0a0a; padding: 64px 48px; }
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; }
  @media(max-width:768px){ .stats-row { grid-template-columns: 1fr 1fr; } }
  .stat-box { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
  .stat-box:last-child { border-right: none; }
  .stat-box-num { font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
  .stat-box-num span { color: var(--red); }
  .stat-box-label { color: rgba(255,255,255,0.5); font-size: 14px; }

  /* ─── WHY US ─── */
  .whyus-section { background: var(--gray-light); padding: 100px 48px; }
  .whyus-header { text-align: center; margin-bottom: 64px; }
  .whyus-header .section-desc { margin: 0 auto; }
  .whyus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media(max-width:900px){ .whyus-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:600px){ .whyus-grid { grid-template-columns: 1fr; } }
  .whyus-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1.5px solid var(--gray-border); transition: all 0.3s ease; }
  .whyus-card:hover { border-color: #0a0a0a; box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
  .whyus-icon { width: 48px; height: 48px; background: #0a0a0a; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .whyus-icon svg { width: 22px; height: 22px; stroke: #fff; }
  .whyus-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.2px; }
  .whyus-card p { color: var(--gray-text); font-size: 14px; line-height: 1.65; }

  /* ─── CTA STRIP ─── */
  .cta-strip { background: var(--red); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
  .cta-strip::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%); }
  .cta-strip h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; position: relative; z-index: 1; }
  .cta-strip p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; position: relative; z-index: 1; }
  .cta-strip-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
  .cta-white { background: #fff; color: #0a0a0a; border: none; padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.2s; }
  .cta-white:hover { background: #0a0a0a; color: #fff; transform: translateY(-2px); }
  .cta-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.2s; }
  .cta-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

  /* ─── 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-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; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  .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; }

  @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, .services-overview, .process-section, .detailed-section, .stats-band, .whyus-section, .cta-strip { padding-left: 24px; padding-right: 24px; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
  }
