    :root {
      --green: #2ab34b;
      --green-dark: #1a8a35;
      --green-light: #d6f5df;
      --black: #0e0e0e;
      --off-white: #f7faf7;
      --gray: #5a5a5a;
      --light-gray: #e8ede8;
      --white: #ffffff;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--black); overflow-x: hidden; }
    h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

    /* HEADER */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-products: 900;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--green);
      padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
      box-shadow: 0 2px 20px rgba(42,179,75,0.1);
    }
    .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-circle {
      width: 46px; height: 46px; border-radius: 50%;
      border: 3px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      background: var(--white);
      font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
      color: var(--green); flex-shrink: 0;
    }
    .logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--black); line-height: 1.1; }
    .logo-text span { color: var(--green); display: block; font-size: 0.6rem; letter-spacing: 4px; font-weight: 600; }

    /* DESKTOP NAV */
    .desktop-nav { display: flex; gap: 1.8rem; align-items: center; }
    .desktop-nav a {
      font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.8rem;
      color: var(--black); text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
      position: relative; transition: color 0.2s;
    }
    .desktop-nav a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--green);
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .desktop-nav a:hover { color: var(--green); }
    .desktop-nav a:hover::after { transform: scaleX(1); }
    .desktop-nav .nav-cta {
      background: var(--green); color: var(--white) !important;
      padding: 8px 18px; border-radius: 4px;
      transition: background 0.2s, transform 0.2s;
    }
    .desktop-nav .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
    .desktop-nav .nav-cta::after { display: none; }

    /* HAMBURGER BUTTON */
    .hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center; gap: 5px;
      width: 44px; height: 44px;
      background: transparent; border: 2px solid var(--light-gray);
      border-radius: 8px; cursor: pointer; padding: 6px;
      transition: border-color 0.2s, background 0.2s;
      z-products: 1200;
    }
    .hamburger:hover { border-color: var(--green); background: var(--green-light); }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--black); border-radius: 3px;
      transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
      transform-origin: center;
    }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* OVERLAY */
    .mob-overlay {
      position: fixed; inset: 0; z-products: 1000;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mob-overlay.active { opacity: 1; pointer-events: all; }

    /* DRAWER */
    .mob-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 50vw; min-width: 270px; max-width: 340px;
      background: var(--white);
      z-products: 1100;
      transform: translateX(110%);
      transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
      display: flex; flex-direction: column;
      box-shadow: -10px 0 50px rgba(0,0,0,0.2);
      overflow: hidden;
    }
    .mob-drawer.active { transform: translateX(0); }

    .drawer-head {
      background: var(--black);
      border-bottom: 3px solid var(--green);
      padding: 18px 20px;
      display: flex; align-items: center; justify-content: space-between;
      flex-shrink: 0;
    }
    .drawer-head-logo { display: flex; align-items: center; gap: 10px; }
    .drawer-logo-dot {
      width: 34px; height: 34px; border-radius: 50%;
      border: 2px solid var(--green); background: transparent;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 800; color: var(--green);
    }
    .drawer-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--white); line-height: 1.2; }
    .drawer-brand small { display: block; font-size: 0.52rem; letter-spacing: 3px; color: var(--green); font-weight: 600; }
    .drawer-x {
      width: 32px; height: 32px; border-radius: 6px;
      background: rgba(255,255,255,0.1); border: none; color: var(--white);
      font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .drawer-x:hover { background: var(--green); }

    .drawer-links {
      flex: 1; overflow-y: auto;
      padding: 16px 0;
      display: flex; flex-direction: column;
    }
    .drawer-links a {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 24px;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase;
      color: var(--black); text-decoration: none;
      border-left: 3px solid transparent;
      transition: all 0.2s;
    }
    .drawer-links a:hover { background: var(--green-light); color: var(--green); border-left-color: var(--green); }
    .drawer-links .dv { height: 1px; background: var(--light-gray); margin: 6px 24px; }
    .drawer-links a .di { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }

    .drawer-foot {
      padding: 18px 20px;
      border-top: 1px solid var(--light-gray);
      background: var(--off-white);
      flex-shrink: 0;
    }
    .drawer-foot-btn {
      display: block; width: 100%; padding: 13px;
      background: var(--green); color: var(--white);
      text-align: center; text-decoration: none;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem;
      border-radius: 6px; letter-spacing: 1px; text-transform: uppercase;
      transition: background 0.2s, transform 0.2s;
      margin-bottom: 10px;
    }
    .drawer-foot-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
    .drawer-foot-tel {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.82rem; color: var(--gray); text-decoration: none;
      transition: color 0.2s;
    }
    .drawer-foot-tel:hover { color: var(--green); }

    /* HERO */
    .hero {
      margin-top: 70px;
      min-height: 88vh;
      background: var(--black);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
    }
    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(42,179,75,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(42,179,75,0.08) 1px,transparent 1px);
      background-size: 60px 60px;
      animation: gridDrift 20s linear infinite;
    }
    @keyframes gridDrift { 0%{transform:translate(0,0)} 100%{transform:translate(60px,60px)} }
    .hero-glow {
      position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle,rgba(42,179,75,0.22) 0%,transparent 70%);
      top: -200px; right: -100px;
      animation: glowPulse 4s ease-in-out infinite;
    }
    @keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.1);opacity:1} }
    .hero-content {
      position: relative; z-products: 2;
      padding: 6% 5%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
      max-width: 1300px; margin: 0 auto; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(42,179,75,0.15); border: 1px solid rgba(42,179,75,0.4);
      color: var(--green); padding: 6px 16px; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 22px;
      animation: fadeUp 0.8s ease both;
    }
    .hero-badge::before { content:'●'; font-size:0.5rem; animation:blink 1.5s infinite; }
    @keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
    .hero h1 {
      font-size: clamp(2.2rem,5vw,4.2rem); color: var(--white); line-height: 1.06;
      margin-bottom: 22px; animation: fadeUp 0.9s 0.1s ease both;
    }
    .hero h1 .highlight { color: var(--green); }
    .hero p {
      color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.8;
      margin-bottom: 32px; animation: fadeUp 1s 0.2s ease both;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 1s 0.3s ease both; }
    .btn-primary {
      background: var(--green); color: var(--white);
      padding: 13px 28px; border-radius: 4px;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.87rem;
      text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
      transition: all 0.3s; border: 2px solid var(--green);
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(42,179,75,0.4); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 13px 28px; border-radius: 4px;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.87rem;
      text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
      transition: all 0.3s; border: 2px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover { border-color: var(--green); color: var(--green); }
    .hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; animation: fadeUp 1s 0.4s ease both; }
    .stat-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(42,179,75,0.2);
      border-radius: 12px; padding: 26px 22px; transition: all 0.3s;
    }
    .stat-card:hover { background: rgba(42,179,75,0.1); border-color: var(--green); transform: translateY(-4px); }
    .stat-num { font-family:'Syne',sans-serif; font-size:2.6rem; font-weight:800; color:var(--green); line-height:1; margin-bottom:6px; }
    .stat-label { color: rgba(255,255,255,0.6); font-size:0.82rem; line-height:1.4; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

    /* SECTION BASE */
    section { padding: 90px 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-block; color: var(--green);
      font-family:'Syne',sans-serif; font-weight:700; font-size:0.73rem; letter-spacing:4px; text-transform:uppercase;
      margin-bottom:14px; position:relative; padding-left:18px;
    }
    .section-label::before { content:''; position:absolute; left:0; top:50%; width:10px; height:2px; background:var(--green); transform:translateY(-50%); }
    .section-title { font-size:clamp(1.7rem,3.5vw,2.7rem); font-weight:800; line-height:1.15; margin-bottom:18px; }
    .section-subtitle { color:var(--gray); font-size:1rem; line-height:1.8; max-width:600px; }

    /* WHO WE ARE */
    .who-we-are { background: var(--white); }
    .who-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; margin-top:54px; }
    .who-text-items { margin-top:28px; display:flex; flex-direction:column; gap:18px; }
    .who-item {
      display:flex; gap:14px; align-items:flex-start;
      padding:18px; border-radius:10px; border:1px solid var(--light-gray); transition:all 0.3s;
    }
    .who-item:hover { border-color:var(--green); background:var(--green-light); transform:translateX(6px); }
    .who-item-icon {
      width:42px; height:42px; border-radius:10px; background:var(--green); color:var(--white);
      display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0;
    }
    .who-item h4 { font-size:0.93rem; font-weight:700; margin-bottom:4px; }
    .who-item p { font-size:0.83rem; color:var(--gray); line-height:1.6; }
    .who-visual { position:relative; }
   .who-visual-main {
  border-radius:16px;
  height:380px;
  overflow:hidden;
  position:relative;
}

.who-visual-main img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
    .who-visual-badge {
      position:absolute; bottom:-18px; right:-18px;
      background:var(--black); color:var(--white);
      border-radius:12px; padding:18px 24px;
      font-family:'Syne',sans-serif;
    }
    .who-visual-badge .big { font-size:2.2rem; font-weight:800; color:var(--green); }
    .who-visual-badge .small { font-size:0.74rem; color:rgba(255,255,255,0.6); letter-spacing:1px; }

    /* BRANDS */
    .brands-section { background:var(--white); padding:50px 5%; }
    .brands-inner { max-width:1100px; margin:0 auto; }
    .brands-title { text-align:center; font-size:0.75rem; letter-spacing:3px; text-transform:uppercase; color:var(--gray); margin-bottom:34px; font-family:'Syne',sans-serif; font-weight:600; }
    .brands-row { display:flex; gap:40px; align-items:center; justify-content:center; flex-wrap:wrap; }
    .brand-item { font-family:'Syne',sans-serif; font-weight:800; font-size:1.1rem; color:#bbb; transition:color 0.3s; cursor:default; }
    .brand-item:hover { color:var(--green); }

    /* SERVICES */
    .services-section { background:var(--black); }
    .services-section .section-title { color:var(--white); }
    .services-section .section-subtitle { color:rgba(255,255,255,0.55); }
    .services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:22px; margin-top:54px; }
    .service-card {
      background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
      border-radius:14px; padding:28px 24px; transition:all 0.35s; position:relative; overflow:hidden;
    }
    .service-card::before {
      content:''; position:absolute; top:0; left:0; right:0; height:3px;
      background:var(--green); transform:scaleX(0); transform-origin:left; transition:transform 0.35s;
    }
    .service-card:hover { background:rgba(42,179,75,0.08); border-color:rgba(42,179,75,0.3); transform:translateY(-6px); }
    .service-card:hover::before { transform:scaleX(1); }
    .service-icon { font-size:2rem; margin-bottom:14px; display:block; }
    .service-card h3 { color:var(--white); font-size:1rem; font-weight:700; margin-bottom:9px; }
    .service-card p { color:rgba(255,255,255,0.5); font-size:0.83rem; line-height:1.7; }
    .service-tag {
      display:inline-block; margin-top:12px;
      background:rgba(42,179,75,0.15); color:var(--green); font-size:0.7rem;
      padding:3px 10px; border-radius:50px; font-weight:600; letter-spacing:1px;
    }

    /* WEB DESIGN */
    .web-section { background:var(--off-white); }
    .web-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:70px; align-items:center; margin-top:54px; }
    .web-features { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
    .web-feature { display:flex; gap:12px; align-items:flex-start; }
    .web-feature-dot { width:8px; height:8px; border-radius:50%; background:var(--green); flex-shrink:0; margin-top:6px; }
    .web-feature p { font-size:0.88rem; line-height:1.6; color:var(--gray); }
    .web-feature p strong { color:var(--black); }
    .web-mockup { background:var(--black); border-radius:16px; padding:18px; box-shadow:0 40px 80px rgba(0,0,0,0.2); }
    .mockup-bar { display:flex; gap:6px; margin-bottom:12px; }
    .mockup-dot { width:10px; height:10px; border-radius:50%; }
    .mockup-dot:nth-child(1){background:#ff5f57} .mockup-dot:nth-child(2){background:#febc2e} .mockup-dot:nth-child(3){background:#28c840}
    .mockup-screen { background:#1a1a1a; border-radius:8px; overflow:hidden; height:320px; }
    .mock-nav { background:#2a2a2a; height:40px; display:flex; align-items:center; padding:0 14px; gap:16px; }
    .mock-nav-dot { width:55px; height:7px; border-radius:4px; background:var(--green); }
    .mock-nav-link { width:36px; height:7px; border-radius:4px; background:rgba(255,255,255,0.12); }
    .mock-hero-area {
      background:linear-gradient(135deg,#0e2415 0%,#1a3d20 100%);
      height:145px; display:flex; flex-direction:column; justify-content:center; padding:18px; position:relative; overflow:hidden;
    }
    .mock-hero-area::after { content:''; position:absolute; right:-15px; top:-15px; width:100px; height:100px; border-radius:50%; background:rgba(42,179,75,0.15); }
    .mock-h1 { width:55%; height:12px; background:rgba(255,255,255,0.8); border-radius:3px; margin-bottom:9px; }
    .mock-h2 { width:35%; height:12px; background:var(--green); border-radius:3px; margin-bottom:12px; }
    .mock-btn-mock { width:72px; height:26px; border-radius:4px; background:var(--green); }
    .mock-cards { display:flex; gap:8px; padding:14px; }
    .mock-card { flex:1; background:#2a2a2a; border-radius:7px; height:74px; padding:9px; }
    .mock-card-line { height:5px; border-radius:3px; background:rgba(255,255,255,0.15); margin-bottom:7px; }
    .mock-card-line.accent { background:var(--green); width:40%; }
    .floating-badge {
      position:absolute; bottom:-10px; left:-10px;
      background:var(--green); color:var(--white);
      border-radius:10px; padding:11px 18px;
      font-family:'Syne',sans-serif; font-weight:700; font-size:0.8rem; letter-spacing:1px;
      box-shadow:0 8px 30px rgba(42,179,75,0.4);
      animation:floatBadge 3s ease-in-out infinite;
    }
    @keyframes floatBadge{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}

    /* WHY */
    .why-section { background:var(--green); }
    .why-section .section-title { color:var(--white); }
    .why-section .section-label { color:rgba(255,255,255,0.7); }
    .why-section .section-label::before { background:rgba(255,255,255,0.7); }
    .why-section .section-subtitle { color:rgba(255,255,255,0.75); }
    .why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:54px; }
    .why-card {
      background:rgba(255,255,255,0.1); border-radius:14px; padding:32px 26px;
      border:1px solid rgba(255,255,255,0.15); transition:all 0.3s;
    }
    .why-card:hover { background:rgba(255,255,255,0.18); transform:translateY(-4px); }
    .why-num { font-family:'Syne',sans-serif; font-size:3rem; font-weight:800; color:rgba(255,255,255,0.15); line-height:1; margin-bottom:10px; }
    .why-card h3 { color:var(--white); font-size:1rem; font-weight:700; margin-bottom:8px; }
    .why-card p { color:rgba(255,255,255,0.75); font-size:0.85rem; line-height:1.7; }

    /* TEAM */
    .team-section { background:var(--off-white); }
    .team-card {
      max-width:420px; background:var(--white); border-radius:16px; overflow:hidden;
      box-shadow:0 20px 60px rgba(0,0,0,0.08); margin:54px auto 0;
      transition:transform 0.3s,box-shadow 0.3s;
    }
    .team-card:hover { transform:translateY(-6px); box-shadow:0 30px 80px rgba(0,0,0,0.14); }
    .team-card-top {
      background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);
      height:150px; display:flex; align-items:flex-end; padding:0 28px 22px;
    }
    .team-avatar {
      width:84px; height:84px; border-radius:50%; background:var(--white); border:4px solid var(--white);
      display:flex; align-items:center; justify-content:center;
      font-family:'Syne',sans-serif; font-size:1.7rem; font-weight:800; color:var(--green);
      box-shadow:0 8px 24px rgba(0,0,0,0.2);
    }
    .team-card-body { padding:26px 28px; }
    .team-name { font-size:1.3rem; font-weight:800; margin-bottom:4px; }
    .team-role { color:var(--green); font-size:0.82rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; }
    .team-bio { color:var(--gray); font-size:0.86rem; line-height:1.75; margin-bottom:18px; }
    .team-contact { display:flex; flex-direction:column; gap:8px; }
    .team-contact-item { display:flex; align-items:center; gap:10px; font-size:0.84rem; color:var(--black); }
    .contact-icon { color:var(--green); font-size:1rem; }

    /* CTA */
    .cta-section { background:var(--black); text-align:center; padding:110px 5%; position:relative; overflow:hidden; }
    .cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(42,179,75,0.14) 0%,transparent 70%); }
    .cta-inner { position:relative; z-products:1; max-width:680px; margin:0 auto; }
    .cta-section h2 { color:var(--white); font-size:clamp(1.9rem,4vw,2.9rem); margin-bottom:18px; }
    .cta-section p { color:rgba(255,255,255,0.6); margin-bottom:36px; font-size:0.97rem; line-height:1.8; }
    .cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

    /* FOOTER */
    footer { background:#080808; color:rgba(255,255,255,0.55); padding:70px 5% 36px; }
    .footer-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:50px; margin-bottom:50px; }
    .footer-brand p { font-size:0.83rem; line-height:1.8; margin-top:14px; color:rgba(255,255,255,0.42); }
    footer h4 { font-family:'Syne',sans-serif; font-size:0.75rem; color:rgba(255,255,255,0.3); letter-spacing:3px; text-transform:uppercase; margin-bottom:18px; }
    footer ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
    footer ul li a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
    footer ul li a:hover { color:var(--green); }
    .footer-contact-item { display:flex; gap:10px; margin-bottom:11px; font-size:0.85rem; }
    .footer-contact-item .icon { color:var(--green); flex-shrink:0; }
    .footer-bottom {
      max-width:1200px; margin:0 auto; padding-top:34px;
      border-top:1px solid rgba(255,255,255,0.06);
      display:flex; justify-content:space-between; align-items:center; font-size:0.78rem;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color:var(--green); text-decoration:none; }

    /* SCROLL REVEAL */
    .reveal { opacity:0; transform:translateY(36px); transition:opacity 0.7s ease,transform 0.7s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .reveal-left { opacity:0; transform:translateX(-36px); transition:opacity 0.7s ease,transform 0.7s ease; }
    .reveal-left.visible { opacity:1; transform:translateX(0); }
    .reveal-right { opacity:0; transform:translateX(36px); transition:opacity 0.7s ease,transform 0.7s ease; }
    .reveal-right.visible { opacity:1; transform:translateX(0); }

    /* ======== RESPONSIVE ======== */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .why-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 860px) {
      .desktop-nav { display: none; }
      .hamburger { display: flex; }
      .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 8% 5%; }
      .hero { min-height: auto; padding: 20px 0; }
      .who-grid { grid-template-columns: 1fr; gap: 40px; }
      .who-visual-badge { right: -10px; bottom: -10px; }
      .web-grid { grid-template-columns: 1fr; gap: 40px; }
      .web-mockup { max-width: 460px; margin: 0 auto; }
    }

    @media (max-width: 600px) {
      section { padding: 64px 5%; }
      .hero h1 { font-size: 2rem; }
      .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
      .stat-num { font-size: 2rem; }
      .why-grid { grid-template-columns: 1fr; gap: 16px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-outline { text-align: center; }
      .cta-btns { flex-direction: column; align-items: center; }
      .section-title { font-size: 1.6rem; }
    }

    @media (max-width: 400px) {
      header { padding: 0 4%; }
      .logo-text { font-size: 1rem; }
      .hero-stats { grid-template-columns: 1fr 1fr; }
      .mob-drawer { width: 80vw; }
    }
  