  *, *::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; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-discuss:hover { background: var(--red-dark); }

  /* ===== 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; min-height: -webkit-fill-available;
  }
  .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:hover { border-color: var(--red); background: #fff0f0; }
  .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: var(--red); 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; transition: all 0.2s; font-size: 18px; font-weight: 300; color: #555; line-height: 1; }
  .mobile-nav-links li a:hover .mn-plus, .mobile-nav-links li a:active .mn-plus { border-color: var(--red); background: var(--red); color: #fff; }

  .mobile-menu-footer { padding: 16px; border-top: 1px solid #f0f0f0; flex-shrink: 0; background: #fff; }
  .mobile-contact-btn { background: var(--red); 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: var(--red-dark); }

  /* ─── HERO ─── */
  .port-hero {
    min-height: 60vh; background: #0a0a0a;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 140px 48px 100px; text-align: center;
  }
  .port-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,43,43,0.12), transparent 70%); }
  .port-hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px); background-size: 60px 60px; }
  .port-hero-content { position: relative; z-index: 2; }
  .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: 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; letter-spacing: 0.5px; }
  @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(1.5);} }
  .port-hero h1 { font-size: clamp(38px,5vw,72px); font-weight: 800; line-height: 1.08; letter-spacing: -2px; color: #fff; animation: fadeUp 0.7s 0.15s ease both; opacity: 0; }
  .port-hero h1 span { color: var(--red); }
  .port-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 620px; margin: 22px auto 0; line-height: 1.75; animation: fadeUp 0.7s 0.3s ease both; opacity: 0; }
  .port-stats-bar { display: flex; align-items: center; justify-content: center; gap: 56px; margin-top: 52px; animation: fadeUp 0.7s 0.45s ease both; opacity: 0; flex-wrap: wrap; }
  .ps-item { text-align: center; }
  .ps-num { font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
  .ps-num span { color: var(--red); }
  .ps-label { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 4px; }
  .ps-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
  @keyframes fadeUp { from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);} }

  /* ─── FILTER BAR ─── */
  .filter-bar { background: #fff; padding: 32px 48px; border-bottom: 1px solid var(--gray-border); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; position: sticky; top: 72px; z-index: 100; box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
  .filter-label { font-size: 12px; font-weight: 700; color: #999; letter-spacing: 1.5px; text-transform: uppercase; margin-right: 8px; }
  .filter-btn { padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--gray-border); font-size: 13px; font-weight: 600; color: #444; background: #fff; cursor: pointer; transition: all 0.2s; font-family: var(--font-main); letter-spacing: 0.3px; }
  .filter-btn:hover { border-color: var(--red); color: var(--red); }
  .filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

  /* ─── FEATURED PROJECT ─── */
  .featured-section { padding: 80px 48px 48px; background: #fff; }
  .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,44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
  .featured-card { margin-top: 44px; border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; background: #0a0a0a; min-height: 480px; box-shadow: 0 30px 80px rgba(0,0,0,0.15); opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .featured-card.visible { opacity: 1; transform: translateY(0); }
  .featured-img { position: relative; overflow: hidden; min-height: 400px; background: linear-gradient(135deg, #0d1f3c, #1a3a6e); }
  .featured-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.6s ease, opacity 0.6s ease; }
  .featured-card:hover .featured-img img { transform: scale(1.05); opacity: 0.85; }
  .featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(10,10,10,0.4)); }
  .feat-badge { position: absolute; top: 24px; left: 24px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; }
  .featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
  .featured-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .feat-tag { border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
  .featured-body h2 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
  .featured-body p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
  .feat-metrics { display: flex; gap: 32px; margin-bottom: 36px; }
  .feat-metric-num { font-size: 28px; font-weight: 800; color: #fff; }
  .feat-metric-num span { color: var(--red); }
  .feat-metric-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
  .feat-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; padding: 14px 28px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; align-self: flex-start; }
  .feat-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
  .feat-cta svg { width: 14px; height: 14px; stroke: #fff; }

  /* ─── PORTFOLIO GRID ─── */
  .portfolio-section { background: var(--gray-light); padding: 60px 48px 96px; }
  .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
  .port-card { background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s; }
  .port-card.visible { opacity: 1; transform: translateY(0); }
  .port-card:hover { transform: translateY(-8px) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important; }
  .port-card.hidden { display: none; }
  .card-img-wrap { position: relative; overflow: hidden; height: 240px; }
  .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .port-card:hover .card-img-wrap img { transform: scale(1.07); }
  .card-img-overlay { position: absolute; inset: 0; opacity: 0; background: rgba(232,43,43,0.85); display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; }
  .port-card:hover .card-img-overlay { opacity: 1; }
  .card-overlay-text { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
  .card-overlay-text svg { width: 16px; height: 16px; stroke: #fff; }
  .card-category-badge { position: absolute; top: 16px; left: 16px; background: rgba(10,10,10,0.75); backdrop-filter: blur(8px); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
  .card-body { padding: 26px 24px 28px; }
  .card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
  .card-tag { border: 1px solid #e0e0e0; border-radius: 50px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: #555; transition: all 0.2s; }
  .port-card:hover .card-tag { border-color: rgba(232,43,43,0.3); color: var(--red); }
  .card-title { font-size: 20px; font-weight: 800; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 12px; color: #111; }
  .card-desc { color: var(--gray-text); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 16px; }
  .card-metric-val { font-size: 18px; font-weight: 800; color: var(--red); line-height: 1; }
  .card-metric-label { font-size: 11px; color: #999; margin-top: 2px; }
  .card-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #e0e0e0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
  .port-card:hover .card-arrow { background: var(--red); border-color: var(--red); }
  .card-arrow svg { width: 14px; height: 14px; stroke: #aaa; transition: stroke 0.2s; }
  .port-card:hover .card-arrow svg { stroke: #fff; }

  /* ─── CASE STUDY BANNER ─── */
  .case-banner { background: #0a0a0a; margin: 0 48px; border-radius: 24px; padding: 60px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; position: relative; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .case-banner.visible { opacity: 1; transform: translateY(0); }
  .case-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(232,43,43,0.18), transparent 70%); }
  .case-banner-left h2 { font-size: clamp(24px,2.5vw,36px); font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
  .case-banner-left p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.65; max-width: 520px; }
  .case-banner-right { flex-shrink: 0; }
  .case-banner-cta { background: var(--red); color: #fff; padding: 16px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
  .case-banner-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
  .case-banner-cta svg { width: 14px; height: 14px; stroke: #fff; }

  /* ─── TECH BADGES ─── */
  .tech-badges-section { background: var(--gray-light); padding: 60px 48px; text-align: center; }
  .tech-badges-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
  .tech-badge { background: #fff; border: 1.5px solid #e8e8e8; border-radius: 50px; padding: 10px 22px; font-size: 13px; font-weight: 600; color: #333; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
  .tech-badge:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,43,43,0.1); }
  .tech-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

  /* ─── 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; }

  /* ─── MODAL ─── */
  .modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(4px); }
  .modal-backdrop.open { opacity: 1; pointer-events: auto; }
  .modal { background: #fff; border-radius: 24px; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; transform: translateY(40px) scale(0.96); transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1); }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
  .modal-img { width: 100%; height: 320px; object-fit: cover; border-radius: 20px 20px 0 0; }
  .modal-body { padding: 40px 44px 48px; }
  .modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
  .modal-tag { background: #f0f0f0; border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: #444; }
  .modal-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; }
  .modal-desc { color: var(--gray-text); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
  .modal-metrics { display: flex; gap: 40px; padding: 24px; background: var(--gray-light); border-radius: 14px; margin-bottom: 28px; }
  .modal-metric-val { font-size: 28px; font-weight: 800; color: var(--red); }
  .modal-metric-label { font-size: 12px; color: #999; margin-top: 3px; }
  .modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.5); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; line-height: 1; transition: background 0.2s; }
  .modal-close:hover { background: var(--red); }
  .modal-header { position: relative; }

  /* ─── 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; }

  /* ─── NO RESULTS ─── */
  .no-results { display: none; text-align: center; padding: 60px 24px; grid-column: 1/-1; }
  .no-results.show { display: block; }
  .no-results p { color: #999; font-size: 16px; }

  /* ─── RESPONSIVE ─── */
  @media(max-width:1100px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
  @media(max-width:900px) {
    nav { padding: 0 24px; height: 60px; }
    .nav-links { display: none; }
    .nav-logo-tag { display: none; }
    .nav-logo img { height: 36px; width: 36px; }
    .btn-icon { display: none; }
    .btn-discuss { display: none; }
    .hamburger { display: flex; }
    .port-hero, .featured-section, .portfolio-section, .tech-badges-section { padding-left: 24px; padding-right: 24px; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 260px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .case-banner { margin: 0 24px; padding: 40px 32px; flex-direction: column; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr; }
    .filter-bar { padding: 20px 24px; top: 60px; }
  }
  @media(max-width:768px) {
    .nav-logo-name { font-size: 12px; }
  }
