@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:    #c8102e;
      --red-dk: #9b0c22;
      --navy:   #0a1628;
      --navy2:  #0f2040;
      --steel:  #1c3254;
      --silver: #d0d6df;
      --light:  #f4f6f9;
      --white:  #ffffff;
      --text:   #1e2a3a;
      --muted:  #6b7a90;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Roboto', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy);
      color: #aab4c4;
      font-size: .78rem;
      letter-spacing: .04em;
      padding: .45rem 0;
    }
    .topbar .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .4rem;
    }
    .topbar a { color: #aab4c4; text-decoration: none; }
    .topbar a:hover { color: var(--red); }
    .lang-sw { display: flex; gap: .8rem; }
    .lang-sw a { font-weight: 600; text-transform: uppercase; font-size: .72rem; }
    .lang-sw a.active { color: var(--red); }

    /* ── NAV ── */
    header {
      position: sticky;
      top: 0;
      z-index: 900;
      background: var(--white);
      box-shadow: 0 2px 18px rgba(10,22,40,.12);
    }
    nav {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      height: 68px;
      gap: 1.5rem;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-box {
      width: 42px; height: 42px;
      background: var(--red);
      clip-path: polygon(0 0,100% 0,100% 75%,75% 100%,0 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .logo-box span {
      color: #fff;
      font-family: 'Roboto', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: -.02em;
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text strong {
      font-family: 'Roboto', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: .04em;
    }
    .logo-text small { font-size: .6rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 0;
      margin-left: auto;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      display: block;
      padding: 0 1rem;
      height: 68px;
      line-height: 68px;
      font-size: .82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text);
      text-decoration: none;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }
    .nav-links > li > a:hover,
    .nav-links > li:hover > a { color: var(--red); background: #fafbfc; }

    /* dropdown */
    .dropdown {
      display: none;
      position: absolute;
      top: 68px; left: 0;
      background: var(--white);
      box-shadow: 0 8px 32px rgba(10,22,40,.15);
      min-width: 230px;
      border-top: 3px solid var(--red);
      list-style: none;
      z-index: 999;
    }
    .nav-links > li:hover .dropdown { display: block; }
    .dropdown li a {
      display: block;
      padding: .65rem 1.2rem;
      font-size: .8rem;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid #f0f2f5;
      transition: background .15s, color .15s;
    }
    .dropdown li a:hover { background: var(--light); color: var(--red); padding-left: 1.5rem; }

    .nav-recruit {
      background: var(--red);
      color: #fff !important;
      padding: .45rem 1.1rem !important;
      border-radius: 3px;
      margin-left: .5rem;
      height: auto !important;
      line-height: normal !important;
    }
    .nav-recruit:hover { background: var(--red-dk) !important; color: #fff !important; }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: .4rem;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 769px;
      max-height: 820px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-slides { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      background-size: cover;
      background-position: center;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide::after {
      content: '';
      position: absolute; inset: 0;
    }
    /* Placeholder gradient backgrounds instead of images */
/*    .slide1 { background: linear-gradient(135deg, #0a1628 0%, #1c3254 40%, #2a4a7a 100%); }
    .slide2 { background: linear-gradient(135deg, #0f2040 0%, #9b0c22 60%, #c8102e 100%); }
    .slide3 { background: linear-gradient(135deg, #0a1628 0%, #1c3254 50%, #0f2040 100%); }*/

    /* decorative grid overlay */
    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(200,16,46,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,16,46,.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      width: 100%;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--red);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      margin-bottom: 1.2rem;
      animation: fadeUp .6s .2s both;
    }
    .hero-tag::before {
      content: '';
      width: 16px; height: 2px;
      background: rgba(255,255,255,.6);
    }
    .hero h1 {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      max-width: 700px;
      letter-spacing: -.01em;
      animation: fadeUp .6s .35s both;
    }
    .hero h1 em { color: var(--red); font-style: normal; }
    .hero p {
      color: rgba(255,255,255,.75);
      font-size: 1.05rem;
      max-width: 520px;
      margin: 1.2rem 0 2rem;
      line-height: 1.65;
      animation: fadeUp .6s .5s both;
    }
    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp .6s .65s both;
    }
    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: .75rem 1.8rem;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--red);
      transition: background .2s, color .2s;
    }
    .btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); }
    .btn-outline {
      background: transparent;
      color: #fff;
      padding: .75rem 1.8rem;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,.5);
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

    /* slide indicators */
    .slide-dots {
      position: absolute;
      bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 3;
      display: flex; gap: .5rem;
    }
    .dot {
      width: 28px; height: 3px;
      background: rgba(255,255,255,.35);
      border: none; cursor: pointer;
      transition: background .3s, width .3s;
    }
    .dot.active { background: var(--red); width: 44px; }

    /* decorative line */
    .hero-line {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 6px;
      background: linear-gradient(to bottom, var(--red), transparent);
      z-index: 3;
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--navy);
      padding: 1.8rem 0;
    }
    .stats-strip .inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .stat-item {
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.1);
      padding: .5rem 0;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Roboto', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
    }
    .stat-label {
      font-size: .78rem;
      color: rgba(255,255,255,.6);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: .3rem;
    }

    /* ── SECTION UTILS ── */
    section { padding: 5rem 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    .section-head { margin-bottom: 3rem; }
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .7rem;
    }
    .section-kicker::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--red);
    }
    .section-head h2 {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
      letter-spacing: -.01em;
    }
    .section-head p {
      color: var(--muted);
      margin-top: .8rem;
      max-width: 560px;
      line-height: 1.65;
    }

    /* ── PRODUCTS ── */
    .products { background: var(--light); }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
    }
    .prod-card {
      background: var(--white);
      padding: 2rem 1.8rem;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: block;
      transition: transform .25s;
    }
    .prod-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .25s;
    }
    .prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,.1); }
    .prod-card:hover::before { transform: scaleY(1); }
    .prod-icon {
      width: 52px; height: 52px;
      background: var(--light);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      transition: background .2s;
    }
    .prod-card:hover .prod-icon { background: #fde8ec; }
    .prod-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .5rem;
    }
    .prod-card p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .prod-link {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      margin-top: 1rem;
      font-size: .78rem;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .prod-link::after { content: '→'; transition: transform .2s; }
    .prod-card:hover .prod-link::after { transform: translateX(4px); }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .svc-card {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      background: var(--navy2);
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.8rem;
      text-decoration: none;
    }
    .svc-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .4s;
    }
    .svc-card:hover .svc-bg { transform: scale(1.06); }
    .svc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.9) 0%, rgba(10,22,40,.3) 60%, transparent 100%);
    }
    .svc-content { position: relative; z-index: 1; }
    .svc-num {
      font-family: 'Roboto', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: .1em;
      margin-bottom: .4rem;
    }
    .svc-card h3 {
      font-family: 'Roboto', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .svc-card p {
      color: rgba(255,255,255,.7);
      font-size: .8rem;
      margin-top: .4rem;
      line-height: 1.5;
    }
    .svc1 { background: linear-gradient(135deg,#0a1628,#1c3254); }
    .svc2 { background: linear-gradient(135deg,#1c1030,#2a1040); }
    .svc3 { background: linear-gradient(135deg,#0f2040,#1a3a60); }

    /* ── NEWS ── */
    .news { background: var(--light); }
    .news-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 1.5rem;
    }
    .news-card {
      background: var(--white);
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform .2s, box-shadow .2s;
    }
    .news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(10,22,40,.1); }
    .news-img {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--light);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
    }
    .news-card.featured .news-img { aspect-ratio: 16/10; }
    .news-body { padding: 1.2rem; }
    .news-cat {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--red);
      margin-bottom: .5rem;
    }
    .news-card h3 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
    }
    .news-card.featured h3 { font-size: 1.2rem; }
    .news-date {
      font-size: .75rem;
      color: var(--muted);
      margin-top: .6rem;
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-main-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }
    .about-main-img::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 50%; height: 4px;
      background: var(--red);
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      background: var(--red);
      color: #fff;
      padding: 1.2rem 1.5rem;
      text-align: center;
    }
    .about-badge strong {
      display: block;
      font-family: 'Roboto', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
    }
    .about-badge span {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      opacity: .85;
    }
    .about-text h2 {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .about-text p {
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .8rem;
      margin: 1.5rem 0 2rem;
    }
    .feat-item {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      font-size: .85rem;
      color: var(--text);
      font-weight: 500;
    }
    .feat-icon { color: var(--red); margin-top: .1rem; font-size: 1rem; }

    /* ── PARTNERS ── */
    .partners { background: var(--navy); padding: 3.5rem 0; }
    .partners .section-head h2 { color: #fff; }
    .partners .section-kicker { color: var(--silver); }
    .partners .section-kicker::before { background: var(--silver); }
    .partner-row {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    .partner-box {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      padding: 1rem 1.8rem;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      transition: background .2s, color .2s;
      min-width: 120px;
      text-align: center;
    }
    .partner-box:hover { background: rgba(200,16,46,.15); color: rgba(255,255,255,.85); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
    }
    .contact-info h2 {
      font-family: 'Roboto', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }
    .contact-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      align-items: flex-start;
    }
    .ci-icon {
      width: 40px; height: 40px;
      background: #fde8ec;
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--red);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .ci-text strong { display: block; font-size: .85rem; color: var(--navy); font-weight: 700; }
    .ci-text span { font-size: .82rem; color: var(--muted); line-height: 1.6; }

    .contact-form {
      background: var(--light);
      padding: 2.5rem;
      border-radius: 4px;
    }
    .contact-form h3 {
      font-family: 'Roboto', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .4rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: .65rem .9rem;
      border: 1.5px solid #dde2eb;
      border-radius: 3px;
      font-family: 'Roboto', sans-serif;
      font-size: .88rem;
      color: var(--text);
      background: #fff;
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group textarea { height: 120px; resize: vertical; }
    .form-submit {
      background: var(--red);
      color: #fff;
      border: none;
      padding: .8rem 2rem;
      font-family: 'Roboto', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      width: 100%;
      transition: background .2s;
      border-radius: 3px;
    }
    .form-submit:hover { background: var(--red-dk); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.65);
      padding: 4rem 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-brand .logo { margin-bottom: 1rem; }
    .footer-brand p { font-size: .83rem; line-height: 1.7; }
    .footer-social {
      display: flex;
      gap: .6rem;
      margin-top: 1.2rem;
    }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      font-size: .85rem;
      color: rgba(255,255,255,.6);
      transition: background .2s, color .2s;
    }
    .social-btn:hover { background: var(--red); color: #fff; }

    .footer-col h4 {
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #fff;
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .5rem; }
    .footer-col ul li a {
      font-size: .82rem;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      transition: color .15s;
    }
    .footer-col ul li a:hover { color: var(--red); }

    .footer-bottom {
      padding: 1.2rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .78rem;
      flex-wrap: wrap;
      gap: .5rem;
    }

    /* ── FLOATING CTA ── */
    .float-cta {
      position: fixed;
      right: 1.5rem; bottom: 2rem;
      z-index: 800;
      display: flex;
      flex-direction: column;
      gap: .6rem;
      align-items: flex-end;
    }
    .float-btn {
      display: flex;
      align-items: center;
      gap: .5rem;
      background: var(--red);
      color: #fff;
      padding: .6rem 1.2rem;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(200,16,46,.4);
      animation: pulse 2s infinite;
    }
    .float-btn svg { width: 16px; height: 16px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 4px 16px rgba(200,16,46,.4); }
      50%      { box-shadow: 0 6px 24px rgba(200,16,46,.6); }
    }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: 1fr 1fr; }
      .news-card.featured { grid-column: span 2; }
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-badge { right: 0; bottom: -1rem; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .stats-strip .inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(10,22,40,.15);
        padding: 1rem 0 2rem;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        z-index: 999;
      }
      .nav-links > li > a { height: auto; line-height: normal; padding: .8rem 1.5rem; }
      .dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--red);
        margin-left: 1.5rem;
      }
      .nav-links > li.open .dropdown { display: block; }
      .hamburger { display: flex; }
      .product-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .news-card.featured { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .stats-strip .inner { grid-template-columns: repeat(2, 1fr); }
      section { padding: 3rem 0; }
    }
    @media (max-width: 480px) {
      .stats-strip .inner { grid-template-columns: 1fr 1fr; }
      .hero h1 { font-size: 2rem; }
    }