 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cyan:    #00BFFF;
      --yellow:  #F5C400;
      --magenta: #FF0090;
      --green:   #A8D400;
      --dark:    #0a0a0a;
      --dark2:   #111111;
      --dark3:   #181818;
      --white:   #ffffff;
      --grey:    #f6f6f6;
      --text:    #1a1a1a;
      --sub:     #666666;
      --r:       8px;
      --fd:      'Red Hat Display', sans-serif;
      --fb:      'Red Hat Display', sans-serif;
    }

    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayRegular.ttf') format('truetype');
      font-weight: 400; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayItalic.ttf') format('truetype');
      font-weight: 400; font-style: italic;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayLight.ttf') format('truetype');
      font-weight: 300; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayMedium.ttf') format('truetype');
      font-weight: 500; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplaySemiBold.ttf') format('truetype');
      font-weight: 600; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayBold.ttf') format('truetype');
      font-weight: 700; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayExtraBold.ttf') format('truetype');
      font-weight: 800; font-style: normal;
    }
    @font-face {
      font-family: 'Red Hat Display';
      src: url('fonts/red-hat-display/RedHatDisplayBlack.ttf') format('truetype');
      font-weight: 900; font-style: normal;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--fb); color: var(--text); background: var(--white); overflow-x: hidden; }
    a { text-decoration: none; }
    img { display: block; max-width: 100%; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

    /* NAV */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 4%; height: 66px;
      background: rgba(5,5,5,.5); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .3s, box-shadow .3s;
    }
    nav.scrolled { background: rgba(5,5,5,.97); box-shadow: 0 3px 25px rgba(0,0,0,.5); }
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo-mark img { height: 44px; width: auto; }
    .nav-links { display: flex; gap: 26px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 500;
      letter-spacing: .07em; text-transform: uppercase; transition: color .2s;
      position: relative; padding-bottom: 2px;
    }
    .nav-links a::after {
      content:''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 1.5px; background: var(--cyan); transform: scaleX(0); transition: transform .25s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--cyan); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      padding: 8px 20px; background: var(--yellow); color: var(--dark);
      font-weight: 700; font-size: .75rem; border-radius: 4px;
      letter-spacing: .07em; text-transform: uppercase; transition: transform .2s, box-shadow .2s;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,196,0,.4); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

    /* HERO */
    #hero {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
    .hero-video video { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(1.1); }
    .hero-bg {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(2,4,14,.55) 0%, rgba(2,4,14,.35) 50%, rgba(2,4,14,.75) 100%);
    }
    .hero-bg::before {
      content:''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 65% 35%, rgba(0,191,255,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,0,144,.13) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 75%, rgba(245,196,0,.07) 0%, transparent 50%);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: 2;
      background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
      background-size: 70px 70px;
    }
    #muteBtn {
      position: absolute; bottom: 30px; right: 30px; z-index: 10;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
      color: #fff; width: 40px; height: 40px; border-radius: 50%;
      cursor: pointer; font-size: .85rem; display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(6px); transition: background .2s;
    }
    #muteBtn:hover { background: rgba(0,191,255,.3); border-color: var(--cyan); }
    .hero-content { position: relative; z-index: 5; padding: 140px 5% 80px; max-width: 960px; }
    .headline { font-size: clamp(3rem, 10vw, 4.5rem); font-weight: 700; }
    .dot {
      display: inline-block; width: 14px; height: 14px;
      border-radius: 50%; margin: 0 10px; vertical-align: middle;
    }
    .dot1 { background-color: var(--cyan); }
    .dot2 { background-color: var(--yellow); }
    h1 {
      font-family: var(--fd); font-size: clamp(3rem, 10vw, 4.5rem);
      line-height: .88; color: var(--white); letter-spacing: .03em;
      animation: fuUp .85s .08s ease both;
    }
    h1 em { color: var(--white); font-style: normal; }
    .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fuUp .85s .26s ease both; }
    .btn-y {
      display: inline-block; padding: 14px 36px; background: var(--yellow);
      color: var(--dark); font-weight: 700; font-size: .86rem; letter-spacing: .08em;
      text-transform: uppercase; border-radius: var(--r); transition: transform .2s, box-shadow .2s;
    }
    .btn-y:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(245,196,0,.38); }
    .btn-o {
      display: inline-block; padding: 13px 34px; border: 2px solid rgba(255,255,255,.25);
      color: rgba(255,255,255,.8); font-size: .86rem; font-weight: 600; letter-spacing: .07em;
      text-transform: uppercase; border-radius: var(--r); transition: border-color .2s, color .2s;
    }
    .btn-o:hover { border-color: var(--cyan); color: var(--cyan); }
    .hero-scroll {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
      display: flex; flex-direction: column; align-items: center; gap: 7px;
      color: rgba(255,255,255,.3); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
      animation: fuUp 1s .7s ease both;
    }
    @keyframes fuUp { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform: none; } }

    /* LOGO TICKER */
    .hero-logos {
      position: absolute; bottom: 72px; left: 0; right: 0; z-index: 5;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .hero-logos-label {
      text-align: center; font-size: .62rem; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px;
    }
    .logo-track {
      display: flex; align-items: center; width: max-content;
      animation: logoScroll 32s linear infinite;
    }
    .logo-track:hover { animation-play-state: paused; }
    .logo-track img {
      height: 32px; width: auto; max-width: 120px; object-fit: contain;
      opacity: .55; filter: brightness(10); transition: opacity .3s;
      flex-shrink: 0; padding: 0 28px;
    }
    .logo-track img:hover { opacity: 1; }
    @keyframes logoScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* SECTION SHARED */
    section { padding: 46px 5%; }
    .sec-label { text-align: center; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
    .sec-title { text-align: center; font-family: var(--fd); font-size: clamp(1.8rem, 5vw, 3.8rem); letter-spacing: .04em; margin-bottom: 10px; }
    .sec-sub { text-align: center; color: var(--sub); font-size: .94rem; max-width: 600px; margin: 0 auto 54px; line-height: 1.75; }
    .bar { width: 44px; height: 4px; border-radius: 2px; margin: 0 auto 50px; }

    /* ABOUT */
    #about { background: var(--white); }
    .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
    .about-txt h3 { font-family: var(--fd); font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: .04em; margin-bottom: 18px; line-height: 1.05; }
    .about-txt p { color: var(--sub); line-height: 1.85; font-size: .97rem; margin-bottom: 14px; }
    .about-txt p em { color: var(--text); font-style: normal; font-weight: 600; }
    .about-tag {
      display: inline-block; margin-top: 6px; padding: 10px 22px;
      background: var(--cyan); color: var(--dark); font-weight: 700; font-size: .78rem;
      border-radius: 4px; letter-spacing: .08em; text-transform: uppercase;
    }
    .about-visual { position: relative; }
    .about-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--magenta); padding: 14px 16px; border-radius: 12px;
      text-align: center; border: 2px solid rgba(0,191,255,.2);
    }
    .about-badge .n { font-family: var(--fd); font-size: 1.6rem; color: var(--white); line-height: 1; }
    .about-badge .l { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; }

    /* STATS */
    #stats {
      background: linear-gradient(135deg, var(--cyan) 0%, #008fcc 100%);
      display: grid; grid-template-columns: repeat(3, 1fr); padding: 72px 5%;
    }
    .stat-i { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.2); }
    .stat-i:last-child { border-right: none; }
    .stat-i .n { font-family: var(--fd); font-size: clamp(2.5rem, 8vw, 6.5rem); color: #fff; display: block; line-height: 1; }
    .stat-i .l { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.65); margin-top: 8px; }

    /* CATEGORIES */
    #categories { background: var(--dark2); }
    #categories .sec-title { color: var(--white); }
    #categories .sec-label { color: var(--cyan); }
    #categories .sec-sub { color: rgba(255,255,255,.45); }
    .cat-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; max-width: 1140px; margin: 0 auto;
    }
    .cat-card {
      position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4;
      cursor: pointer; background: #1a1a1a;
    }
    .cat-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s ease, filter .55s ease; filter: brightness(.75);
    }
    .cat-card:hover img { transform: scale(1.08); filter: brightness(.35); }
    .cat-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 18px 16px 16px;
      background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
      font-family: var(--fd); font-size: clamp(1rem, 2vw, 1.4rem);
      letter-spacing: .06em; color: #fff; transition: opacity .3s; z-index: 2;
    }
    .cat-card:hover .cat-label { opacity: 0; }
    .cat-overlay {
      position: absolute; inset: 0; background: rgba(0,30,50,.82);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 14px; padding: 20px 16px; opacity: 0; transition: opacity .35s; z-index: 3;
    }
    .cat-card:hover .cat-overlay { opacity: 1; }
    .cat-overlay a {
      display: inline-flex; align-items: center; gap: 8px; justify-content: center;
      background: var(--cyan); color: var(--dark);
      padding: 9px 20px; border-radius: 4px;
      font-weight: 700; font-size: .76rem; letter-spacing: .08em;
      text-transform: uppercase; text-decoration: none; flex-shrink: 0;
    }
    .cat-overlay a:hover { background: var(--yellow); }
    .cat-overlay p { color: rgba(255,255,255,.88); font-size: .78rem; line-height: 1.65; text-align: center; margin: 0; }

    /* PORTFOLIO */
    #portfolio { background: var(--grey); }
    .portfolio-btn { text-align: center; margin-top: 28px; }
    .port-overlay-btn {
      display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
      background: var(--cyan); color: var(--dark);
      padding: 11px 26px; border-radius: var(--r);
      font-weight: 700; font-size: .82rem; letter-spacing: .08em;
      text-decoration: none; transition: background .2s;
    }
    .port-overlay-btn:hover { background: var(--yellow); }
    .port-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; max-width: 1280px; margin: 0 auto;
    }
    .port-item { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; background: #ddd; aspect-ratio: 3/4; }
    .port-carousel { display: flex; width: 100%; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); }
    .port-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
    .port-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
    .port-item:hover .port-slide img { transform: scale(1.05); }
    .port-hover {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: flex-end; padding: 20px;
      pointer-events: none; z-index: 2;
    }
    .port-item:hover .port-hover { opacity: 1; }
    .port-hover h5 { font-family: var(--fd); font-size: clamp(.95rem, 2vw, 1.2rem); color: #fff; letter-spacing: .04em; }
    .port-hover span { display: block; font-size: .74rem; color: rgba(255,255,255,.55); }
    .port-dots {
      position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 6px; z-index: 3; opacity: 0; transition: opacity .3s;
    }
    .port-item:hover .port-dots { opacity: 1; }
    .port-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.4); border: none; cursor: pointer;
      padding: 0; transition: background .2s, transform .2s;
    }
    .port-dot.active { background: #fff; transform: scale(1.3); }
    .port-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.2);
      color: #fff; width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 3; font-size: 1rem;
      opacity: 0; transition: opacity .25s, background .2s;
    }
    .port-item:hover .port-arrow { opacity: 1; }
    .port-arrow:hover { background: rgba(0,191,255,.7); border-color: var(--cyan); }
    .port-arrow.prev { left: 10px; }
    .port-arrow.next { right: 10px; }

    /* TESTIMONIALS */
    #testimonials { background: var(--dark); }
    #testimonials .sec-title { color: var(--white); }
    #testimonials .sec-label { color: var(--yellow); }
    .testi-wrap { max-width: 820px; margin: 0 auto; }
    .testi-track-wrap { overflow: hidden; }
    .testi-track { display: flex; transition: transform .5s ease; }
    .testi-slide { min-width: 100%; text-align: center; padding: 0 20px; }
    .tav { width: 88px; height: 88px; border-radius: 50%; object-fit: scale-down; margin: 0 auto 24px; border: 3px solid var(--white); display: block; background: #333; }
    .testi-q { font-size: clamp(.9rem, 2vw, 1.04rem); line-height: 1.85; color: rgba(255,255,255,.78); font-style: italic; }
    .testi-r { font-size: .74rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }
    .testi-ctrl { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 34px; }
    .t-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; transition: background .2s, transform .2s; }
    .t-dot.active { background: var(--yellow); transform: scale(1.35); }
    .t-arr { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: .95rem; transition: background .2s, border-color .2s; }
    .t-arr:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

    /* CONTACT */
    #contact { background: var(--white); }
    .contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; max-width: 1060px; margin: 0 auto; }
    .contact-info h3 { font-family: var(--fd); font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: .04em; margin-bottom: 6px; }
    .contact-info .tagline { font-size: 1.4rem; color: var(--cyan); font-family: var(--fd); letter-spacing: .04em; margin-bottom: 28px; }
    .cinfo-item a { color: var(--text); transition: color .2s; }
    .cinfo-item a:hover { color: var(--cyan); }
    .cinfo-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
    .cinfo-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .cinfo-item h5 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sub); margin-bottom: 4px; }
    .cinfo-item p { font-size: .9rem; color: var(--text); line-height: 1.6; }
    .contact-socials { display: flex; gap: 10px; margin-top: 24px; }
    .c-soc { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: .8rem; font-weight: 700; transition: background .2s, color .2s; }
    .c-soc:hover { background: var(--cyan); color: var(--dark); }
    .contact-form { display: flex; flex-direction: column; gap: 13px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
    .contact-form input,
    .contact-form textarea {
      width: 100%; padding: 13px 16px; border: 1.5px solid #e3e3e3;
      border-radius: var(--r); font-family: var(--fb); font-size: .9rem; color: var(--text);
      outline: none; transition: border-color .25s, box-shadow .25s;
    }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,191,255,.1); }
    .contact-form textarea { resize: vertical; min-height: 130px; }
    .btn-submit { align-self: flex-start; padding: 13px 32px; background: var(--cyan); color: var(--dark); font-weight: 700; font-size: .86rem; letter-spacing: .07em; text-transform: uppercase; border: none; border-radius: var(--r); cursor: pointer; transition: background .2s, transform .2s; }
    .btn-submit:hover { background: var(--yellow); transform: translateY(-2px); }

    /* FOOTER */
    footer { background: var(--dark); color: rgba(255,255,255,.45); }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 68px 5% 50px; }
    .footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.38); margin-top: 16px; max-width: 280px; }
    .footer-col h5 { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; font-weight: 700; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col a { color: rgba(255,255,255,.45); font-size: .87rem; transition: color .2s; }
    .footer-col a:hover { color: var(--cyan); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 20px 5%; border-top: 1px solid rgba(255,255,255,.07); font-size: .77rem; }
    .f-socials { display: flex; gap: 9px; }
    .f-socials a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .72rem; transition: border-color .2s, color .2s; }
    .f-socials a:hover { border-color: var(--cyan); color: var(--cyan); }

    /* RESPONSIVE */
    @media(max-width:1100px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
    @media(max-width:1000px){
      section { padding: 40px 5%; }
      .about-wrap { grid-template-columns: 1fr; gap: 50px; }
      .about-badge { bottom: -14px; right: 0; }
      .contact-wrap { grid-template-columns: 1fr; gap: 50px; }
      .port-grid { grid-template-columns: repeat(2, 1fr); }
      #stats { grid-template-columns: repeat(3,1fr); }
      .cat-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media(max-width:720px){
      section { padding: 32px 4%; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(5,5,5,.98); padding: 22px 5%; gap: 15px; }
      .nav-links.open { display: flex; }
      .nav-toggle { display: block; }
      .nav-cta { display: none; }
      .port-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      #stats { grid-template-columns: 1fr; }
      .stat-i { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
      .stat-i:last-child { border-bottom: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 5% 30px; }
      .form-row { grid-template-columns: 1fr; }
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
      .about-badge .n { font-size: 2.6rem; }
      h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    }
    @media(max-width:480px){
      section { padding: 28px 4%; }
      .port-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-content { padding: 120px 4% 70px; }
      .btn-submit { align-self: stretch; text-align: center; }
      .about-badge { right: 10px; }
      .contact-wrap { gap: 36px; }
    }