/* ==========================================================================
   UTECH THEME
   Consolidated production stylesheet
   ========================================================================== */


/* ==========================================================================
   Fonts
   ========================================================================== */

   @font-face {
    font-family: Shabnam;
    src: url('../fonts/Shabnam-Light-FD.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Shabnam;
    src: url('../fonts/Shabnam-FD.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Shabnam;
    src: url('../fonts/Shabnam-Medium-FD.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: Shabnam;
    src: url('../fonts/Shabnam-Bold-FD.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  
  /* ==========================================================================
     Design tokens
     ========================================================================== */
  
  :root {
    --bg: #f6f7f8;
    --surface: #fff;
    --surface-2: #eef1f3;
    --text: #181b1f;
    --muted: #6f767e;
    --line: #dfe3e7;
  
    --header: #11151a;
    --footer: #15191e;
  
    --blue: #2f9dc3;
    --blue-dark: #157a9d;
  
    --shadow: 0 18px 50px rgba(19, 27, 34, 0.08);
  
    --radius: 18px;
    --container: 1240px;
    --header-h: 78px;
  }
  
  html[data-theme="dark"] {
    --bg: #14171b;
    --surface: #1b1f24;
    --surface-2: #22272d;
    --text: #f0f2f3;
    --muted: #adb4ba;
    --line: #30363d;
  
    --header: #0d1014;
    --footer: #0d1014;
  
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  }
  
  
  /* ==========================================================================
     Base
     ========================================================================== */
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Shabnam, Tahoma, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    transition:
      background-color 0.35s,
      color 0.35s;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  .container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
  }
  
  .section {
    padding: 92px 0;
  }
  
  .skip-link {
    position: fixed;
    top: -100px;
    right: 20px;
    z-index: 9999;
  
    padding: 10px 16px;
  
    border-radius: 8px;
    background: #fff;
    color: #111;
  }
  
  .skip-link:focus {
    top: 16px;
  }
  
  
  /* ==========================================================================
     Header
     ========================================================================== */
  
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
  
    height: var(--header-h);
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  
    background: rgba(10, 13, 17, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    color: #fff;
  
    transition: 0.25s;
  }
  
  .site-header.is-sticky {
    position: fixed;
  
    background: rgba(12, 15, 19, 0.97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
  
    height: 100%;
  }
  
  .brand img {
    width: 106px;
    height: auto;
  }
  
  .logo-dark {
    display: none;
  }
  
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
  
    height: 100%;
  
    white-space: nowrap;
  }
  
  .nav-item {
    position: static;
  
    display: flex;
    align-items: center;
  
    height: 100%;
  }
  
  .has-dropdown {
    position: relative;
  }
  
  .nav-link {
    position: relative;
  
    display: flex;
    align-items: center;
    gap: 10px;
  
    height: 100%;
    padding: 0 2px;
  
    border: 0;
    background: none;
  
    color: #eef1f3;
  
    font-size: 14px;
    font-weight: 400;
  }
  
  .nav-link::after {
    content: "";
  
    position: absolute;
    right: 0;
    left: 0;
    bottom: 17px;
  
    height: 2px;
  
    background: var(--blue);
  
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  
  .nav-link:hover::after,
  .nav-link.is-active::after,
  .nav-item.is-open > .nav-link::after {
    transform: scaleX(1);
  }
  
  .nav-button::before {
    display: none;
  }
  
  .nav-chevron {
    display: inline-block;
    flex: 0 0 auto;
  
    width: 7px;
    height: 7px;
  
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  
    transform: rotate(-45deg) translateY(-1px);
    transition: transform 0.2s;
  }
  
  .nav-item.is-open > .nav-button .nav-chevron,
  .nav-item:hover > .nav-button .nav-chevron {
    transform: rotate(135deg) translateY(1px);
  }
  
  
  /* Header actions */
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  
    direction: ltr;
  }
  
  .search-button {
    display: grid;
    place-items: center;
  
    width: 40px;
    height: 40px;
  
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
  
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }
  
  .search-button svg,
  .phone-icon svg {
    width: 18px;
    height: 18px;
  
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }
  
  .phone-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  
    min-width: 174px;
    height: 48px;
    padding: 0 17px;
  
    border-radius: 12px;
  
    background: var(--blue);
    box-shadow: 0 9px 24px rgba(47, 157, 195, 0.24);
  
    color: #fff;
  
    direction: ltr;
  }
  
  .phone-icon {
    display: grid;
    place-items: center;
    order: initial;
  
    width: 30px;
    height: 30px;
  
    border-radius: 8px;
  
    background: rgba(255, 255, 255, 0.15);
  }
  
  .phone-number {
    display: inline;
    order: initial;
  
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.25px;
  }
  
  .mobile-menu-toggle {
    display: none;
  
    width: 42px;
    height: 42px;
    padding: 9px;
  
    border: 0;
  
    background: transparent;
  }
  
  .mobile-menu-toggle span {
    display: block;
  
    height: 1.5px;
    margin: 5px 0;
  
    background: #fff;
  }
  
  
  /* ==========================================================================
     Mega menu
     ========================================================================== */
  
  .mega-menu {
    position: absolute;
    top: 100%;
    right: 50%;
  
    width: min(1180px, calc(100vw - 48px));
  
    overflow: hidden;
  
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
  
    background: var(--surface);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  
    color: var(--text);
  
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  
    transform: translateX(50%) translateY(8px);
    transition: 0.2s;
  }
  
  .nav-item:hover > .mega-menu,
  .nav-item.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  
    transform: translateX(50%) translateY(0);
  }
  
  .mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.05fr 1.05fr;
    align-items: stretch;
    gap: 26px;
  
    padding: 28px;
  }
  
  .mega-menu__inner--services {
    grid-template-columns: 1fr 1fr 1.4fr;
  }
  
  .mega-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  
    padding: 4px 2px;
  }
  
  .mega-column h3 {
    margin: 0 0 8px;
  
    font-size: 15px;
    font-weight: 700;
  }
  
  .mega-column a {
    padding: 4px 0;
  
    color: var(--muted);
  
    font-size: 13.5px;
  
    transition: 0.18s;
  }
  
  .mega-column a:hover {
    color: var(--blue);
    transform: translateX(-3px);
  }
  
  .mega-image-card,
  .mega-wide-card {
    position: relative;
  
    overflow: hidden;
  
    border-radius: 14px;
  
    background: #111;
  }
  
  .mega-image-card {
    min-height: 190px;
  }
  
  .mega-wide-card {
    min-height: 180px;
  }
  
  .mega-image-card img,
  .mega-wide-card img {
    position: absolute;
    inset: 0;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  }
  
  .mega-image-card::after,
  .mega-wide-card::after {
    content: "";
  
    position: absolute;
    inset: 0;
  
    background: linear-gradient(
      0deg,
      rgba(7, 10, 13, 0.78),
      rgba(7, 10, 13, 0.08) 70%
    );
  }
  
  .mega-image-card span {
    position: absolute;
    right: 17px;
    left: 17px;
    bottom: 16px;
    z-index: 2;
  
    color: #fff;
  
    font-size: 13px;
    font-weight: 700;
  }
  
  .mega-wide-card span {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 18px;
    z-index: 2;
  
    color: #fff;
  
    font-size: 12.5px;
  }
  
  .mega-wide-card strong {
    display: block;
  
    margin-bottom: 2px;
  
    font-size: 16px;
  }
  
  .mega-small {
    right: auto;
    left: auto;
  
    display: flex;
    flex-direction: column;
  
    width: 215px;
    padding: 9px;
  
    border-radius: 0 0 12px 12px;
  
    transform: translateY(8px);
  }
  
  .nav-item:hover > .mega-small,
  .nav-item.is-open > .mega-small {
    transform: translateY(0);
  }
  
  .mega-small a {
    padding: 10px 12px;
  
    border-radius: 8px;
  
    color: var(--muted);
  
    font-size: 13px;
  }
  
  .mega-small a:hover {
    background: var(--surface-2);
    color: var(--text);
  }
  
  
  /* ==========================================================================
     Home Hero
     ========================================================================== */
  
  .hero {
    display: grid;
    grid-template-columns: minmax(300px, 31%) 1fr;
  
    min-height: 720px;
    padding-top: var(--header-h);
  
    overflow: hidden;
  
    background: #0c0f13;
  }
  
  
  /* Main hero slider */
  
  .hero-slider {
    position: relative;
  
    min-width: 0;
    min-height: calc(720px - var(--header-h));
  
    overflow: hidden;
  
    background: #0a0d10;
  }
  
  .hero-slide {
    position: absolute;
    inset: 0;
  
    display: flex;
    align-items: center;
  
    padding: 70px clamp(45px, 7vw, 110px) 68px;
  
    background: none;
  
    opacity: 0;
    visibility: hidden;
  
    isolation: isolate;
  
    transition: opacity 0.65s;
  }
  
  .hero-slide.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .hero-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
    object-position: center;
  
    transform: scale(1.008);
    transition: transform 7s ease;
  
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  .hero-slide.is-active .hero-slide__media {
    transform: scale(1.045);
  }
  
  .hero-slide__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
  
    background: linear-gradient(
      90deg,
      rgba(7, 10, 13, 0.22),
      rgba(7, 10, 13, 0.56) 52%,
      rgba(7, 10, 13, 0.84) 100%
    );
  }
  
  .hero-slide__copy {
    position: relative;
    z-index: 2;
  
    max-width: 580px;
  
    color: #fff;
  }
  
  .hero-slide h1,
  .hero-slide h2 {
    margin: 0 0 12px;
  
    font-size: clamp(28px, 2.55vw, 40px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.25px;
  }
  
  .hero-slide p {
    max-width: 500px;
    margin: 0 0 20px;
  
    color: rgba(255, 255, 255, 0.8);
  
    font-size: 14px;
    line-height: 2;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  
  /* Hero controls */
  
  .hero-controls {
    position: absolute;
    right: 7vw;
    left: 7vw;
    bottom: 24px;
    z-index: 4;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-dots {
    display: flex;
    gap: 7px;
  
    direction: ltr;
  }
  
  .hero-dots button {
    width: 24px;
    height: 3px;
    padding: 0;
  
    border: 0;
  
    background: rgba(255, 255, 255, 0.28);
  
    transition: 0.2s;
  }
  
  .hero-dots button.is-active {
    width: 42px;
  
    background: #fff;
  }
  
  .hero-arrows {
    display: flex;
    gap: 8px;
  
    direction: ltr;
  }
  
  .hero-arrows button {
    display: grid;
    place-items: center;
  
    width: 38px;
    height: 38px;
  
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;
  
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
  
    font-size: 20px;
    line-height: 1;
  }
  
  
  /* ==========================================================================
     Home service carousel
     ========================================================================== */
  
  .service-carousel {
    position: relative;
    order: initial;
  
    min-width: 0;
    height: calc(720px - var(--header-h));
    padding: 5px;
  
    overflow: hidden;
  
    background: #0c0f13;
  
    contain: layout paint;
  }
  
  .service-carousel__viewport {
    position: relative;
  
    width: 100%;
    height: 100%;
  
    overflow: hidden;
  
    background: #0c0f13;
  }
  
  .service-carousel__track {
    display: flex;
    flex-direction: column;
    gap: 5px;
  
    width: 100%;
    height: 100%;
  
    will-change: transform;
  
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  
    transition: transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .service-tile {
    position: relative;
  
    flex: 0 0 calc((100% - 10px) / 3);
    min-height: 0;
  
    overflow: hidden;
  
    border-radius: 2px;
  
    background: #15191d;
  
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  
    outline: 1px solid rgba(12, 15, 19, 0.55);
    outline-offset: -1px;
  }
  
  .service-tile::before {
    display: none;
  }
  
  .service-tile > img {
    position: absolute;
    inset: -1px;
  
    width: calc(100% + 2px);
    height: calc(100% + 2px);
  
    object-fit: cover;
    object-position: center;
  
    transform: translateZ(0) scale(1.002);
  
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  
    transition: transform 0.6s ease;
  }
  
  .service-tile:hover > img {
    transform: translateZ(0) scale(1.045);
  }
  
  .service-tile__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
  
    background: linear-gradient(
      90deg,
      rgba(7, 9, 12, 0.18),
      rgba(7, 9, 12, 0.74)
    );
  }
  
  .service-tile__content {
    position: absolute;
    right: 24px;
    left: 24px;
    bottom: 22px;
    z-index: 2;
  
    overflow: hidden;
  
    color: #fff;
  }
  
  .service-tile strong {
    display: -webkit-box;
  
    margin-bottom: 3px;
  
    overflow: hidden;
  
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
  
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  
  .service-tile__content > span {
    display: none;
  }
  
  .service-carousel__controls {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 5;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
  
    padding: 6px;
  
    border-radius: 24px;
  
    background: rgba(8, 11, 14, 0.36);
  
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  
    transform: translateY(-50%);
  
    direction: ltr;
  }
  
  .service-carousel__controls button {
    display: grid;
    place-items: center;
  
    width: 29px;
    height: 29px;
  
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
  
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
  
    font-size: 14px;
    line-height: 1;
  }
  
  .service-carousel__dots {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .service-carousel__dots button {
    width: 5px;
    height: 5px;
    padding: 0;
  
    border: 0;
    border-radius: 50%;
  
    background: rgba(255, 255, 255, 0.35);
  }
  
  .service-carousel__dots button.is-active {
    height: 14px;
  
    border-radius: 5px;
  
    background: #fff;
  }
  
  .mobile-arrow {
    display: none;
  }
  
  
  /* ==========================================================================
     Buttons
     ========================================================================== */
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    min-height: 44px;
    padding: 0 20px;
  
    border: 1px solid transparent;
    border-radius: 9px;
  
    font-size: 13px;
    font-weight: 700;
  
    transition: 0.2s;
  }
  
  .button.primary {
    background: var(--blue);
    color: #fff;
  }
  
  .button.primary:hover {
    background: var(--blue-dark);
  }
  
  .button.ghost {
    border-color: rgba(255, 255, 255, 0.45);
  
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }
  
  .button.ghost:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  
  .button.outline {
    border-color: var(--line);
  
    background: transparent;
    color: var(--text);
  }
  
  .button.outline:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  
  .button.light {
    background: #fff;
    color: #171a1e;
  }
  
  .button.glass {
    border-color: rgba(255, 255, 255, 0.38);
  
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  
  
  /* ==========================================================================
     Section headings
     ========================================================================== */
  
  .section-head {
    margin-bottom: 36px;
  }
  
  .section-head.centered {
    text-align: center;
  }
  
  .section-head.compact {
    margin-bottom: 24px;
  }
  
  .section-head h2,
  .section-head h3 {
    margin: 0 0 8px;
  
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.55;
  }
  
  .section-head h3 {
    font-size: 25px;
  }
  
  .section-head p {
    margin: 0;
  
    color: var(--muted);
  
    font-size: 14px;
  }
  
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  
    color: var(--blue);
  
    font-size: 13px;
    font-weight: 700;
  }
  
  .text-link::after {
    content: "←";
  
    transition: 0.18s;
  }
  
  .text-link:hover::after {
    transform: translateX(-3px);
  }
  
  
  /* ==========================================================================
     Intro / switch
     ========================================================================== */
  
  .intro-switch {
    border-bottom: 1px solid var(--line);
  
    background: var(--surface);
  }
  
  .intro-switch__grid {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    align-items: center;
    gap: 70px;
  }
  
  .intro-copy h2 {
    max-width: 760px;
    margin: 0 0 18px;
  
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.55;
  }
  
  .intro-copy p {
    max-width: 800px;
    margin: 0 0 17px;
  
    color: var(--muted);
  
    font-size: 14.5px;
    line-height: 2.2;
  }
  
  .visual-switch {
    position: relative;
  
    display: grid;
    place-items: center;
    justify-self: center;
  
    width: 270px;
    height: 270px;
    padding: 30px;
  
    overflow: visible;
  
    border: 0;
    border-radius: 50%;
  
    background: transparent;
  }
  
  .visual-switch img {
    position: relative;
    z-index: 4;
  
    width: 168px;
  
    border-radius: 6px;
  
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  
    transition:
      transform 0.28s,
      filter 0.28s;
  }
  
  .visual-switch:hover img {
    transform: translateY(-4px) scale(1.02);
  }
  
  .switch-glow {
    display: none;
  }
  
  .switch-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
  
    display: grid;
    place-items: center;
  
    pointer-events: none;
  }
  
  .switch-rings span {
    position: absolute;
  
    border: 1px solid rgba(47, 157, 195, 0.38);
    border-radius: 50%;
  
    box-shadow:
      0 0 0 1px rgba(47, 157, 195, 0.035) inset;
  
    animation: utechRipple 3.9s ease-in-out infinite;
  }
  
  .switch-rings span:nth-child(1) {
    width: 156px;
    height: 156px;
  
    border-color: rgba(47, 157, 195, 0.55);
  
    animation-delay: 0s;
  }
  
  .switch-rings span:nth-child(2) {
    width: 190px;
    height: 190px;
  
    animation-delay: 0.25s;
  }
  
  .switch-rings span:nth-child(3) {
    width: 224px;
    height: 224px;
  
    border-color: rgba(47, 157, 195, 0.26);
  
    animation-delay: 0.5s;
  }
  
  .switch-rings span:nth-child(4) {
    width: 258px;
    height: 258px;
  
    border-color: rgba(47, 157, 195, 0.17);
  
    animation-delay: 0.75s;
  }
  
  .visual-switch:hover .switch-rings span {
    animation-duration: 2.1s;
  }
  
  .visual-switch::after {
    content: "";
  
    position: absolute;
    bottom: 29px;
  
    width: 8px;
    height: 8px;
  
    border-radius: 50%;
  
    background: var(--blue);
    box-shadow:
      0 0 0 7px rgba(47, 157, 195, 0.12);
  }
  
  html[data-theme="dark"] .visual-switch img {
    filter: brightness(0.92);
  }
  
  html[data-theme="dark"] .switch-rings span {
    border-color: rgba(84, 187, 224, 0.35);
  
    box-shadow:
      0 0 32px rgba(47, 157, 195, 0.07);
  }
  
  @keyframes utechRipple {
    0%,
    100% {
      opacity: 0.38;
      transform: scale(0.96);
    }
  
    50% {
      opacity: 1;
      transform: scale(1.035);
    }
  }
  
  
  /* ==========================================================================
     Showcase
     ========================================================================== */
  
  .showcase {
    background: var(--bg);
  }
  
  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  .showcase-card {
    overflow: hidden;
  
    border: 1px solid var(--line);
    border-radius: var(--radius);
  
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  
  .showcase-card__copy {
    min-height: 180px;
    padding: 30px 32px 24px;
  }
  
  .showcase-card__copy h2 {
    margin: 0 0 9px;
  
    font-size: 28px;
    font-weight: 700;
    line-height: 1.55;
  }
  
  .showcase-card__copy p {
    margin: 0 0 12px;
  
    color: var(--muted);
  
    font-size: 13.5px;
    line-height: 2;
  }
  
  .showcase-card__image {
    display: block;
  
    height: 420px;
  
    overflow: hidden;
  
    background: var(--surface-2);
  }
  
  .showcase-card__image img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    transition: transform 0.55s;
  }
  
  .showcase-card:first-child .showcase-card__image img {
    object-position: center 64%;
  }
  
  .showcase-card:last-child .showcase-card__image img {
    object-position: center 43%;
  }
  
  .showcase-card:hover .showcase-card__image img {
    transform: scale(1.018);
  }
  
  
  /* ==========================================================================
     Products
     ========================================================================== */
  
  .products {
    background: var(--surface);
  }
  
  .category-shell {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
  
    margin-bottom: 30px;
  }
  
  .category-nav {
    display: flex;
    justify-content: center;
    gap: 9px;
  
    overflow-x: auto;
  
    padding: 3px;
  
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  
  .category-nav::-webkit-scrollbar {
    display: none;
  }
  
  .category-pill {
    flex: 0 0 auto;
  
    padding: 9px 18px;
  
    border: 1px solid var(--line);
    border-radius: 999px;
  
    background: var(--surface);
    color: var(--muted);
  
    font-size: 12.5px;
  
    white-space: nowrap;
  }
  
  .category-pill:hover,
  .category-pill.is-active {
    border-color: var(--blue);
  
    background: rgba(47, 157, 195, 0.08);
    color: var(--blue);
  }
  
  .category-arrow {
    display: grid;
    place-items: center;
  
    width: 38px;
    height: 38px;
  
    border: 1px solid var(--line);
    border-radius: 50%;
  
    background: var(--surface);
    color: var(--text);
  
    opacity: 0;
    pointer-events: none;
  
    transition: 0.2s;
  }
  
  .category-shell.is-overflowing .category-arrow {
    opacity: 1;
    pointer-events: auto;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .product-card {
    overflow: hidden;
  
    border: 1px solid var(--line);
    border-radius: 14px;
  
    background: var(--surface);
  
    animation: fadeUp 0.35s both;
  
    transition: 0.24s;
  }
  
  .product-card:hover {
    box-shadow: var(--shadow);
  
    transform: translateY(-4px);
  }
  
  .product-card__image {
    display: block;
  
    aspect-ratio: 1 / 1;
  
    overflow: hidden;
  
    background: #eff1f2;
  }
  
  .product-card__image img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    transition: transform 0.5s;
  }
  
  .product-card:hover .product-card__image img {
    transform: scale(1.035);
  }
  
  .product-card__body {
    padding: 17px 17px 19px;
  }
  
  .product-card__category {
    display: block;
  
    margin-bottom: 5px;
  
    color: var(--blue);
  
    font-size: 11.5px;
  }
  
  .product-card h3 {
    margin: 0 0 5px;
  
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.8;
  }
  
  .product-card p {
    margin: 0;
  
    color: var(--muted);
  
    font-size: 12px;
    line-height: 1.8;
  }
  
  .section-action {
    margin-top: 30px;
  
    text-align: center;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  
  /* ==========================================================================
     Why UTECH
     ========================================================================== */
  
  .why {
    background: var(--bg);
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
  }
  
  .why-visual {
    height: 540px;
  
    overflow: hidden;
  
    border-radius: var(--radius);
  
    box-shadow: var(--shadow);
  }
  
  .why-visual img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  }
  
  .why-copy h2 {
    margin: 0 0 17px;
  
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.6;
  }
  
  .why-copy > p {
    margin: 0 0 26px;
  
    color: var(--muted);
  
    font-size: 14px;
    line-height: 2.25;
  }
  
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  
    padding: 17px;
  
    border: 1px solid var(--line);
    border-radius: 12px;
  
    background: var(--surface);
  }
  
  .benefit-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  
    width: 38px;
    height: 38px;
  
    border-radius: 9px;
  
    background: rgba(47, 157, 195, 0.1);
    color: var(--blue);
  }
  
  .benefit-icon svg {
    width: 20px;
    height: 20px;
  
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
  }
  
  .benefit strong {
    display: block;
  
    margin-bottom: 2px;
  
    font-size: 13.5px;
  }
  
  .benefit span:last-child {
    display: block;
  
    color: var(--muted);
  
    font-size: 11.5px;
    line-height: 1.75;
  }
  
  
  /* ==========================================================================
     Brand rail
     ========================================================================== */
  
  .brands-wrap {
    margin-top: 76px;
  }
  
  .brand-strip {
    display: none;
  }
  
  .brand-section-heading {
    display: flex;
    align-items: center;
    gap: 22px;
  
    margin-bottom: 28px;
  }
  
  .brand-section-heading h3 {
    margin: 0;
  
    color: var(--text);
  
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
  
    white-space: nowrap;
  }
  
  .brand-section-heading span {
    display: block;
    flex: 1;
  
    height: 1px;
  
    background: var(--line);
  }
  
  .brand-carousel {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 16px;
  
    direction: ltr;
  }
  
  .brand-viewport {
    min-width: 0;
  
    overflow-x: auto;
    overflow-y: hidden;
  
    border: 0;
    border-radius: 0;
  
    background: transparent;
  
    direction: ltr;
  
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  
  .brand-viewport::-webkit-scrollbar {
    display: none;
  }
  
  .brand-track {
    display: flex;
    align-items: center;
    gap: 50px;
  
    width: max-content;
    padding: 18px 8px 20px;
  
    direction: ltr;
  }
  
  .brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 150px;
  
    min-height: 82px;
    padding: 0;
  
    overflow: visible;
  
    border: 0;
  
    background: transparent;
  
    scroll-snap-align: start;
  }
  
  .brand-logo-card img {
    display: block;
  
    width: auto;
    max-width: 145px;
    height: auto;
    max-height: 66px;
  
    object-fit: contain;
  
    filter: grayscale(1);
    opacity: 0.42;
  
    transform: none;
  
    transition:
      filter 0.25s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  
  .brand-logo-card:hover img,
  .brand-logo-card:focus-visible img {
    filter: grayscale(0);
    opacity: 1;
  
    transform: scale(1.06);
  }
  
  html[data-theme="dark"] .brand-logo-card img {
    filter:
      grayscale(1)
      brightness(0)
      invert(1);
  
    opacity: 0.48;
  }
  
  html[data-theme="dark"] .brand-logo-card:hover img {
    filter: grayscale(0);
  
    opacity: 1;
  }
  
  .brand-arrow {
    display: grid;
    place-items: center;
  
    width: 38px;
    height: 38px;
  
    border: 1px solid var(--line);
    border-radius: 50%;
  
    background: var(--surface);
    box-shadow: 0 5px 18px rgba(20, 28, 35, 0.05);
  
    color: var(--muted);
  
    font-size: 17px;
  
    transition:
      border-color 0.2s,
      color 0.2s,
      background 0.2s;
  }
  
  .brand-arrow:hover:not(:disabled) {
    border-color: var(--blue);
  
    background: var(--surface);
    color: var(--blue);
  }
  
  .brand-arrow:disabled {
    opacity: 0.22;
    cursor: default;
  }
  
  
  /* ==========================================================================
     Articles
     ========================================================================== */
  
  .articles {
    background: var(--surface);
  }
  
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .article-card {
    overflow: hidden;
  
    border: 1px solid var(--line);
    border-radius: 14px;
  
    background: var(--surface);
  
    transition: 0.24s;
  }
  
  .article-card:hover {
    box-shadow: var(--shadow);
  
    transform: translateY(-4px);
  }
  
  .article-image {
    display: block;
  
    aspect-ratio: 16 / 10;
  
    overflow: hidden;
  
    background: #eee;
  }
  
  .article-image img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    transition: transform 0.5s;
  }
  
  .article-card:hover .article-image img {
    transform: scale(1.035);
  }
  
  .article-body {
    padding: 20px;
  }
  
  .article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
  
    margin-bottom: 9px;
  
    color: var(--muted);
  
    font-size: 11.5px;
  }
  
  .article-meta a {
    padding-left: 10px;
  
    border-left: 1px solid var(--line);
  
    color: var(--blue);
  }
  
  .article-card h3 {
    margin: 0 0 7px;
  
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.9;
  }
  
  .article-card p {
    margin: 0 0 12px;
  
    color: var(--muted);
  
    font-size: 12.3px;
    line-height: 1.9;
  }
  
  .article-more {
    color: var(--blue);
  
    font-size: 12px;
    font-weight: 700;
  }
  
  
  /* ==========================================================================
     Final CTA
     ========================================================================== */
  
  .final-cta {
    position: relative;
  
    display: flex;
    align-items: center;
  
    min-height: 360px;
  
    overflow: hidden;
  }
  
  .final-cta > img {
    position: absolute;
    inset: 0;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  }
  
  .final-cta__overlay {
    position: absolute;
    inset: 0;
  
    background: linear-gradient(
      90deg,
      rgba(9, 12, 15, 0.84),
      rgba(9, 12, 15, 0.7)
    );
  }
  
  .final-cta__content {
    position: relative;
    z-index: 2;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  
    color: #fff;
  }
  
  .final-cta h2 {
    margin: 0 0 10px;
  
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.55;
  }
  
  .final-cta p {
    max-width: 700px;
    margin: 0;
  
    color: rgba(255, 255, 255, 0.75);
  
    font-size: 14px;
    line-height: 2;
  }
  
  .final-cta__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
  }
  
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  
  .site-footer {
    padding-top: 65px;
  
    background: var(--footer);
    color: #d6d9dc;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.72fr 0.78fr 1.65fr;
    gap: 42px;
  
    padding-bottom: 52px;
  }
  
  @media (min-width: 1161px) {
    .footer-contact .contact-row:first-child {
      white-space: nowrap;
    }
  }
  
  /* Footer brand */
  
  .footer-brand img {
    width: 125px;
    margin-bottom: 18px;
  }
  
  .footer-brand p {
    max-width: 370px;
    margin: 0 0 19px;
  
    color: #8e969e;
  
    font-size: 12.5px;
    line-height: 2;
  }
  
  .socials {
    display: flex;
    gap: 8px;
  
    direction: ltr;
  }
  
  .socials a {
    display: grid;
    place-items: center;
  
    width: 35px;
    height: 35px;
  
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  
    color: #c9ced3;
  
    transition: 0.2s;
  }
  
  .socials a:hover {
    border-color: var(--blue);
  
    background: var(--blue);
    color: #fff;
  }
  
  .socials svg {
    width: 17px;
    height: 17px;
  
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
  }
  
  
  /* Footer columns */
  
  .footer-col,
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-accordion {
    margin: 0;
    padding: 0;
  
    border: 0;
  }
  
  .footer-accordion > h3 {
    margin: 0 0 15px;
    padding: 0;
  
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
  
    color: #fff;
  }
  
  .footer-accordion__toggle {
    display: block;
  
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
  
    border: 0;
    border-radius: 0;
  
    background: transparent;
    box-shadow: none;
  
    color: #fff;
  
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    text-align: inherit;
  
    cursor: default;
  
    appearance: none;
    -webkit-appearance: none;
  }
  
  .footer-accordion__toggle:hover,
  .footer-accordion__toggle:focus,
  .footer-accordion__toggle:active {
    background: transparent;
    color: #fff;
    box-shadow: none;
    outline: 0;
  }
  
  .footer-accordion__icon {
    display: none;
  }
  
  .footer-accordion__panel,
.footer-accordion__panel[hidden] {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	width: 100%;

	height: auto;
	max-height: none;
	margin: 0;
	padding: 0;

	overflow: visible;

	opacity: 1;
}
  
  .footer-accordion__panel ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  
    margin: 0;
    padding: 0;
  
    list-style: none;
  }
  
  .footer-accordion__panel li {
    display: block;
  
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .footer-accordion__panel a:not(.contact-row) {
    display: block;
  
    padding: 4px 0;
  
    color: #9ca3aa;
  
    font-size: 12.5px;
    line-height: 1.75;
    text-decoration: none;
  }
  
  .footer-accordion__panel a:not(.contact-row):hover {
    color: #fff;
  }
  
  
  /* Footer contact */
  
  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  
    width: 100%;
    padding: 9px 0;
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  
    color: #a8afb6;
  
    font-size: 12.5px;
    line-height: 1.8;
  }
  
  .contact-icon {
    display: grid;
    place-items: center;
    order: -1;
    flex: 0 0 auto;
  
    width: 31px;
    height: 31px;
  
    border-radius: 8px;
  
    background: rgba(47, 157, 195, 0.12);
    color: #55b0d0;
  }
  
  .contact-icon svg {
    width: 17px;
    height: 17px;
  
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
  }
  
  
  /* Footer bottom */
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  
    background: #101317;
  }
  
  .footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  
    min-height: 72px;
  }
  
  .footer-bottom p {
    margin: 0;
  
    color: #7e858c;
  
    font-size: 11.5px;
  }
  
  .footer-legal {
    display: flex;
    gap: 18px;
  }
  
  .footer-legal ul {
    display: flex;
    gap: 18px;
  
    margin: 0;
    padding: 0;
  
    list-style: none;
  }
  
  .footer-legal a {
    color: #7e858c;
  
    font-size: 11.5px;
  }
  
  
  /* Serentco */
  
  .serent-credit {
    display: flex;
    align-items: center;
    gap: 10px;
  
    color: #7e858c;
  
    text-decoration: none;
  }
  
  .serent-credit__label {
    font-size: 11.5px;
  
    white-space: nowrap;
  }
  
  .serent-credit img {
    display: block;
  
    width: 124px;
    height: auto;
    max-height: 34px;
    padding: 0;
  
    border-radius: 0;
  
    background: transparent;
  
    object-fit: contain;
  
    opacity: 0.72;
  
    transition: opacity 0.2s ease;
  }
  
  .serent-credit:hover img {
    opacity: 1;
  }
  
  .serent-wordmark,
  .serent-fallback {
    display: none;
  }
  
  
  /* ==========================================================================
     Search overlay
     ========================================================================== */
  
  .search-panel {
    position: fixed;
    inset: 0;
    z-index: 500;
  
    display: grid;
    place-items: center;
  
    background:
      radial-gradient(
        circle at 50% 42%,
        rgba(47, 157, 195, 0.07),
        transparent 34%
      ),
      rgba(8, 11, 14, 0.965);
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    opacity: 0;
    visibility: hidden;
  
    transition: 0.25s;
  }
  
  .search-panel.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .search-panel__close {
    position: absolute;
    top: 25px;
    left: 30px;
  
    display: grid;
    place-items: center;
  
    width: 48px;
    height: 48px;
    padding: 0;
  
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
  
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
  
    font-size: 30px;
    line-height: 1;
  
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }
  
  .search-panel__close:hover {
    border-color: rgba(255, 255, 255, 0.34);
  
    background: rgba(255, 255, 255, 0.09);
  
    transform: rotate(4deg);
  }
  
  .search-panel__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
  
  .search-form {
    width: min(760px, calc(100% - 48px));
  
    color: #fff;
  
    text-align: right;
  }
  
  .search-form label {
    display: block;
  
    margin: 0 0 22px;
  
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }
  
  .search-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
  
    min-height: 62px;
  
    overflow: hidden;
  
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
  
    background: rgba(255, 255, 255, 0.045);
  
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.035);
  
    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }
  
  .search-form > div:focus-within {
    border-color: var(--blue);
  
    background: rgba(255, 255, 255, 0.06);
  
    box-shadow:
      0 0 0 3px rgba(47, 157, 195, 0.13),
      0 20px 55px rgba(0, 0, 0, 0.28);
  }
  
  .search-form input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 62px;
    padding: 0 22px;
  
    border: 0;
    outline: 0;
  
    background: transparent;
    color: #fff;
  
    font-family: inherit;
    font-size: 15px;
    line-height: 1;
    text-align: right;
  
    direction: rtl;
  
    appearance: none;
    -webkit-appearance: none;
  }
  
  .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.48);
  
    opacity: 1;
  }
  
  .search-form input[type="search"]::-webkit-search-decoration,
  .search-form input[type="search"]::-webkit-search-cancel-button,
  .search-form input[type="search"]::-webkit-search-results-button,
  .search-form input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  
  .search-form button[type="submit"] {
    min-width: 112px;
    height: 62px;
    padding: 0 25px;
  
    border: 0;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  
    background: var(--blue);
    color: #fff;
  
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
  
    transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  }
  
  .search-form button[type="submit"]:hover {
    background: var(--blue-dark);
  }
  
  .search-form button[type="submit"]:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
  
  
  /* ==========================================================================
     Mobile drawer / bottom navigation
     ========================================================================== */
  
  .mobile-drawer,
  .drawer-backdrop,
  .mobile-bottom-nav {
    display: none;
  }
  
  
  /* ==========================================================================
     Responsive ≤ 1280
     ========================================================================== */
  
  @media (min-width: 961px) and (max-width: 1280px) {
  
    .desktop-nav {
      gap: 25px;
    }
  
    .nav-link {
      font-size: 13px;
    }
  
    .phone-pill {
      min-width: 158px;
      padding-inline: 13px;
    }
  
    .phone-number {
      font-size: 12.5px;
    }
  
  }
  
  
  /* ==========================================================================
     Responsive ≤ 1160
     ========================================================================== */
  
  @media (max-width: 1160px) {
  
    .desktop-nav {
      gap: 20px;
    }
  
    .nav-link {
      font-size: 13px;
    }
  
    .mega-menu__inner {
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    .mega-image-card:last-child {
      display: none;
    }
  
    .hero {
      grid-template-columns: 31% 69%;
    }
  
    .hero-slide {
      padding-right: 6vw;
    }
  
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: 1.25fr 0.8fr 1fr;
    }
  
    .footer-contact {
      grid-column: span 1;
    }
  
  }
  
  
  /* ==========================================================================
     Responsive ≤ 960
     ========================================================================== */
  
  @media (max-width: 960px) {
  
    :root {
      --header-h: 68px;
    }
  
    .site-header {
      position: absolute;
    }
  
    .header-inner {
      grid-template-columns: auto 1fr auto;
      gap: 18px;
    }
  
    .desktop-nav {
      display: none;
    }
  
    .header-actions {
      justify-self: end;
    }
  
    .phone-number {
      display: inline;
    }
  
    .phone-pill {
      width: auto;
      min-width: 0;
      height: 42px;
      padding: 0 9px 0 13px;
    }
  
    .phone-icon {
      width: 26px;
      height: 26px;
    }
  
    .mobile-menu-toggle {
      display: block;
    }
  
    .hero {
      grid-template-columns: 1fr;
  
      padding-top: var(--header-h);
    }
  
    .hero-slider {
      order: 1;
  
      min-height: 560px;
    }
  
    .service-carousel {
      order: 2;
    }
  
    .intro-switch__grid {
      grid-template-columns: 1fr auto;
      gap: 35px;
    }
  
    .showcase-card__image {
      height: 310px;
    }
  
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .why-grid {
      grid-template-columns: 1fr;
    }
  
    .why-visual {
      height: 430px;
    }
  
    .article-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .article-card:last-child {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: 1fr 1.1fr;
    }
  
    .article-card:last-child .article-image {
      height: 100%;
  
      aspect-ratio: auto;
    }
  
    .final-cta__content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-grid {
      grid-template-columns: 1.2fr 1fr 1fr;
    }
  
    .footer-contact {
      grid-column: 1 / -1;
    }
  
  
    /* Drawer */
  
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 450;
  
      display: block;
  
      width: min(390px, 88vw);
  
      overflow-y: auto;
  
      background: #15191e;
      color: #fff;
  
      transform: translateX(110%);
  
      transition: 0.3s;
    }
  
    .mobile-drawer.is-open {
      transform: none;
    }
  
    .mobile-drawer__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
  
      height: 75px;
      padding: 0 22px;
  
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .mobile-drawer__head img {
      width: 110px;
    }
  
    .mobile-drawer__head button {
      width: 38px;
      height: 38px;
  
      border: 0;
  
      background: transparent;
      color: #fff;
  
      font-size: 28px;
    }
  
    .mobile-drawer__nav {
      padding: 15px 20px 40px;
    }
  
    .mobile-drawer__nav > a,
    .mobile-drawer summary {
      display: block;
  
      padding: 12px 2px;
  
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  
      font-size: 14px;
    }
  
    .mobile-drawer details > summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
  
      list-style: none;
  
      cursor: pointer;
    }
  
    .mobile-drawer details > summary::-webkit-details-marker {
      display: none;
    }
  
    .mobile-drawer details > summary::after {
      content: "";
  
      flex: 0 0 auto;
  
      width: 8px;
      height: 8px;
      margin-left: 4px;
  
      border-left: 1.5px solid #aeb5bb;
      border-bottom: 1.5px solid #aeb5bb;
  
      transform: rotate(-45deg);
  
      transition: transform 0.2s;
    }
  
    .mobile-drawer details[open] > summary::after {
      transform: rotate(135deg);
    }
  
    .mobile-drawer details > a {
      display: block;
  
      padding: 9px 18px;
  
      color: #aeb5bb;
  
      font-size: 12.5px;
    }
  
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      z-index: 440;
  
      display: block;
  
      background: rgba(0, 0, 0, 0.55);
  
      opacity: 0;
      visibility: hidden;
  
      transition: 0.25s;
    }
  
    .drawer-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }
  
  }
  
  
  /* ==========================================================================
     Responsive ≤ 767
     ========================================================================== */
  
  @media (max-width: 767px) {
  
    body {
      padding-bottom: 0;
    }
  
    .container {
      width: min(calc(100% - 30px), var(--container));
    }
  
    .section {
      padding: 70px 0;
    }
  
  
    /* Header */
  
    .brand img {
      width: 96px;
    }
  
    .phone-number {
      display: none;
    }
  
    .phone-pill {
      width: 40px;
      height: 40px;
      padding: 0;
    }
  
  
    /* Hero */
  
    .hero {
      display: flex;
      flex-direction: column;
  
      min-height: 0;
      padding-top: var(--header-h);
    }
  
    .hero-slider {
      order: 1;
  
      width: 100%;
      min-height: 510px;
    }
  
    .hero-slide {
      padding: 50px 25px 72px;
    }
  
    .hero-slide__shade {
      background: linear-gradient(
        90deg,
        rgba(7, 10, 13, 0.25),
        rgba(7, 10, 13, 0.76)
      );
    }
  
    .hero-slide h1,
    .hero-slide h2 {
      font-size: 27px;
      line-height: 1.7;
    }
  
    .hero-slide p {
      display: -webkit-box;
  
      max-width: 100%;
      margin-bottom: 18px;
  
      overflow: hidden;
  
      font-size: 13.5px;
      line-height: 1.9;
  
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }
  
    .hero-controls {
      right: 25px;
      left: 25px;
    }
  
  
  
    /* Service carousel — mobile/tablet */

.service-carousel {
	order: 2;
	position: relative;

	width: 100%;
	height: 190px;
	padding: 0;

	overflow: hidden;

	background: transparent;
}

.service-carousel__viewport {
	width: 100%;
	height: 190px;

	overflow: hidden;

	border-radius: 0;
	background: transparent;
}

.service-carousel__track {
	display: flex;
	flex-direction: row;
	gap: 0;

	width: 100%;
	height: 190px;

	direction: ltr;
}

.service-tile {
	flex: 0 0 100%;

	width: 100%;
	height: 190px;
	min-height: 190px;

	border-radius: 0;

	direction: rtl;
}

.service-tile > img {
	inset: 0;

	width: 100%;
	height: 100%;
}

.service-tile__content {
	right: 22px;
	left: 22px;
	bottom: 48px;

	z-index: 3;
}

.service-tile strong {
	font-size: 15px;
	line-height: 1.65;

	-webkit-line-clamp: 2;
}

.service-tile__content > span {
	display: none;
}

/* Controls float on top of the image instead of
   taking a separate black strip below it */

.service-carousel__controls {
	top: auto;
	bottom: 10px;
	left: 50%;

	flex-direction: row;

	padding: 4px 7px;

	border-radius: 20px;

	background: rgba(8, 11, 14, 0.36);

	transform: translateX(-50%);
}

.service-carousel__dots {
	flex-direction: row;
	gap: 5px;
}

.service-carousel__dots button {
	width: 6px;
	height: 6px;
}

.service-carousel__dots button.is-active {
	width: 16px;
	height: 6px;
}

.desktop-arrow {
	display: none;
}

.mobile-arrow {
	display: inline;
}
  
    /* Switch */
  
    .intro-switch__grid {
      grid-template-columns: 1fr;
  
      text-align: right;
    }
  
    .visual-switch {
      justify-self: center;
  
      width: 240px;
      height: 240px;
    }
  
    .visual-switch img {
      width: 145px;
    }
  
    .switch-rings span:nth-child(1) {
      width: 142px;
      height: 142px;
    }
  
    .switch-rings span:nth-child(2) {
      width: 172px;
      height: 172px;
    }
  
    .switch-rings span:nth-child(3) {
      width: 202px;
      height: 202px;
    }
  
    .switch-rings span:nth-child(4) {
      width: 230px;
      height: 230px;
    }
  
  
    /* Showcase */
  
    .showcase-grid {
      grid-template-columns: 1fr;
    }
  
    .showcase-card__copy {
      min-height: auto;
      padding: 25px;
    }
  
    .showcase-card__image {
      height: 315px;
    }
  
  
    /* Products */
  
    .category-shell {
      grid-template-columns: 35px minmax(0, 1fr) 35px;
    }
  
    .category-nav {
      justify-content: flex-start;
    }
  
    .category-arrow {
      width: 34px;
      height: 34px;
    }
  
    .product-grid {
      gap: 11px;
    }
  
    .product-card__body {
      padding: 14px;
    }
  
    .product-card h3 {
      font-size: 13px;
    }
  
    .product-card p {
      display: none;
    }
  
  
    /* Why */
  
    .why-visual {
      height: 340px;
    }
  
    .why-copy h2 {
      font-size: 27px;
    }
  
    .benefit-grid {
      grid-template-columns: 1fr;
    }
  
  
    /* Brand */
  
    .brands-wrap {
      margin-top: 58px;
    }
  
    .brand-section-heading {
      gap: 14px;
  
      margin-bottom: 20px;
    }
  
    .brand-section-heading h3 {
      font-size: 14px;
    }
  
    .brand-carousel {
      grid-template-columns: 34px minmax(0, 1fr) 34px;
      gap: 6px;
    }
  
    .brand-track {
      gap: 30px;
  
      padding: 16px 6px 18px;
    }
  
    .brand-logo-card {
      flex-basis: 126px;
  
      min-height: 72px;
    }
  
    .brand-logo-card img {
      max-width: 120px;
      max-height: 54px;
    }
  
    .brand-arrow {
      width: 32px;
      height: 32px;
  
      font-size: 15px;
    }
  
  
    /* Articles */
  
    .article-grid {
      grid-template-columns: 1fr;
    }
  
    .article-card:last-child {
      display: block;
      grid-column: auto;
    }
  
    .article-card:last-child .article-image {
      height: auto;
  
      aspect-ratio: 16 / 10;
    }
  
  
    /* CTA */
  
    .final-cta {
      min-height: 430px;
    }
  
    .final-cta h2 {
      font-size: 29px;
    }
  
    .final-cta__actions {
      flex-direction: column;
  
      width: 100%;
    }
  
    .final-cta__actions .button {
      width: 100%;
    }
  
  
    /* Search */
  
    .search-panel__close {
      top: 18px;
      left: 18px;
  
      width: 42px;
      height: 42px;
  
      font-size: 26px;
    }
  
    .search-form {
      width: min(100% - 30px, 560px);
    }
  
    .search-form label {
      margin-bottom: 17px;
  
      font-size: 24px;
    }
  
    .search-form > div {
      grid-template-columns: 1fr;
      gap: 10px;
  
      min-height: 0;
  
      overflow: visible;
  
      border: 0;
      border-radius: 13px;
  
      background: transparent;
      box-shadow: none;
    }
  
    .search-form > div:focus-within {
      border: 0;
  
      background: transparent;
      box-shadow: none;
    }
  
    .search-form input[type="search"] {
      height: 56px;
      padding-inline: 17px;
  
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
  
      background: rgba(255, 255, 255, 0.045);
    }
  
    .search-form input[type="search"]:focus {
      border-color: var(--blue);
  
      box-shadow:
        0 0 0 3px rgba(47, 157, 195, 0.13);
    }
  
    .search-form button[type="submit"] {
      width: 100%;
      height: 54px;
  
      border: 0;
      border-radius: 12px;
    }
  
  
    /* Footer mobile accordion */
  
    .site-footer {
      padding-top: 34px;
      padding-bottom: calc(
        82px + env(safe-area-inset-bottom, 0px)
      );
    }
  
    .site-footer .footer-grid {
      display: block;
  
      padding-top: 0;
      padding-bottom: 22px;
    }
  
    .site-footer .footer-brand {
      margin-bottom: 28px;
      padding-bottom: 24px;
  
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  
      text-align: center;
    }
  
    .site-footer .footer-brand img {
      display: block;
  
      width: auto;
      max-width: 110px;
      height: auto;
      margin-inline: auto;
      margin-bottom: 14px;
    }
  
    .site-footer .footer-brand p {
      max-width: 320px;
      margin: 0 auto;
  
      line-height: 1.9;
      text-align: center;
    }
  
    .site-footer .footer-brand .socials {
      justify-content: center;
  
      margin-top: 16px;
    }
  
    .site-footer .footer-accordion {
      margin: 0;
      padding: 0;
  
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
  
    .site-footer .footer-accordion > h3 {
      margin: 0;
      padding: 0;
  
      font-size: inherit;
      line-height: inherit;
    }
  
    .site-footer .footer-accordion__toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
  
      width: 100%;
      min-height: 58px;
      margin: 0;
      padding: 0;
  
      border: 0;
      border-radius: 0;
  
      background: transparent;
      box-shadow: none;
  
      color: #fff;
  
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.5;
      text-align: right;
  
      cursor: pointer;
  
      appearance: none;
      -webkit-appearance: none;
    }
  
    .site-footer .footer-accordion__toggle:hover,
    .site-footer .footer-accordion__toggle:focus {
      background: transparent;
      color: #fff;
    }
  
    .site-footer .footer-accordion__toggle:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 4px;
    }
  
    .site-footer .footer-accordion__icon {
      position: relative;
  
      display: block;
      flex: 0 0 28px;
  
      width: 28px;
      height: 28px;
  
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
    }
  
    .site-footer .footer-accordion__icon::before,
    .site-footer .footer-accordion__icon::after {
      content: "";
  
      position: absolute;
      top: 50%;
      left: 50%;
  
      width: 10px;
      height: 1.5px;
  
      border-radius: 10px;
  
      background: rgba(255, 255, 255, 0.78);
  
      transform: translate(-50%, -50%);
  
      transition: transform 0.22s ease;
    }
  
    .site-footer .footer-accordion__icon::after {
      transform:
        translate(-50%, -50%)
        rotate(90deg);
    }
  
    .site-footer
    .footer-accordion__toggle[aria-expanded="true"]
    .footer-accordion__icon::after {
      transform:
        translate(-50%, -50%)
        rotate(0deg);
    }
  
    .site-footer .footer-accordion__panel {
      padding: 0 0 20px;
  
      overflow: hidden;
    }
  
    .site-footer .footer-accordion__panel[hidden] {
      display: none;
    }
  
    .site-footer .footer-accordion__panel ul {
      display: block;
  
      margin: 0;
      padding: 0;
  
      list-style: none;
    }
  
    .site-footer .footer-accordion__panel li {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  
    .site-footer
    .footer-accordion__panel
    a:not(.contact-row) {
      display: block;
  
      padding: 7px 0;
  
      color: rgba(255, 255, 255, 0.68);
  
      font-size: 12.5px;
      line-height: 1.7;
    }
  
    .site-footer
    .footer-accordion__panel
    a:not(.contact-row):hover {
      color: #fff;
    }
  
    .site-footer .footer-contact .contact-row {
      margin: 0;
      padding: 11px 0;
  
      border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
    }
  
    .site-footer
    .footer-contact
    .contact-row:last-child {
      border-bottom: 0;
    }
  
    .site-footer .footer-bottom {
      padding-bottom: 18px;
    }
  
    .site-footer .footer-bottom__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
  
      padding: 18px 0;
  
      text-align: center;
    }
  
    .site-footer .footer-legal ul {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 18px;
    }
  
    .site-footer .serent-credit {
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .site-footer .serent-credit__label {
      font-size: 11px;
    }
  
    .site-footer .serent-credit img {
      width: 116px;
      max-height: 32px;
    }
  
  
    /* Bottom nav */
  
    .mobile-bottom-nav {
      position: fixed;
      right: 8px;
      left: 8px;
      bottom: 8px;
      z-index: 300;
  
      display: grid;
      grid-template-columns: repeat(5, 1fr);
  
      height: 59px;
  
      overflow: hidden;
  
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
  
      background: rgba(20, 24, 29, 0.96);
  
      box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
  
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
  
    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
  
      border: 0;
  
      background: transparent;
      color: #aeb5bb;
  
      font-family: inherit;
    }
  
    .mobile-bottom-nav .is-active {
      color: #fff;
    }
  
    .mobile-bottom-nav svg {
      width: 19px;
      height: 19px;
  
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
    }
  
    .mobile-bottom-nav span {
      font-size: 9px;
    }
  
  }
  
  
  /* ==========================================================================
     Responsive ≤ 470
     ========================================================================== */
  
  @media (max-width: 470px) {
  
    .hero-actions {
      width: 100%;
    }
  
    .hero-actions .button {
      flex: 1;
    }
  
    .showcase-card__image {
      height: 270px;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .article-body {
      padding: 17px;
    }
  
  }
  
  
  /* ==========================================================================
     Reduced motion
     ========================================================================== */
  
  @media (prefers-reduced-motion: reduce) {
  
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation: none !important;
      transition-duration: 0.01ms !important;
    }
  
  }