/*!
Theme Name: pinpung
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pinpung
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

pinpung is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
  ========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
  :root {
    --orange: #fb9b00;
    --orange-2: #ffb32d;
    --orange-3: #ffe0a8;
    --white: #ffffff;
    --silver: #f4f6f8;
    --silver-2: #e5e9ee;
    --silver-3: #b7c0cb;
    --dark: #14161a;
    --muted: #69717d;
    --line: rgba(20, 22, 26, .08);
    --glass: rgba(255, 255, 255, .72);
    --shadow: 0 28px 80px rgba(20, 22, 26, .13);
    --shadow-soft: 0 18px 42px rgba(20, 22, 26, .08);
    --max: 1180px;
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: "Inter", "Noto Sans Thai", sans-serif;
    color: var(--dark);
    
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img, video, iframe {
    display: block;
    max-width: 100%;
  }

  /* .page {
    overflow: hidden;
  } */

  .nav-wrap {
    position: sticky;
    top: 14px;
    z-index: 50;
    width: min(var(--max), calc(100% - 32px));
    margin: 18px auto 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-soft);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 130px;
  }

  .brand img {
    width: 112px;
    height: auto;
    object-fit: contain;
  }

  .brand-fallback {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 14px 34px rgba(251,155,0,.25);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(244,246,248,.84);
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #56606c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    transition: .24s ease;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: var(--dark);
    background: #fff;
    box-shadow: 0 10px 24px rgba(20,22,26,.08);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 16px 36px rgba(251,155,0,.28);
    transition: .24s ease;
    white-space: nowrap;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(251,155,0,.34);
  }

  .hero {
    position: relative;
    width: min(var(--max), calc(100% - 36px));
    min-height: calc(100vh - 96px);
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: -90px -120px auto auto;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,155,0,.22), transparent 66%);
    filter: blur(2px);
    z-index: -2;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: -70px;
    z-index: -3;
    background-image:
      linear-gradient(rgba(20,22,26,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(20,22,26,.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  }

  .pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #404750;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(20,22,26,.08);
    box-shadow: var(--shadow-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
  }

  .pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fb9b00;
    box-shadow: 0 0 0 8px rgba(251,155,0,.13);
  }

  h1 {
    margin: 22px 0 0;
    max-width: 780px;
    font-size: clamp(48px, 8vw, 106px);
    line-height: .9;
    letter-spacing: -.08em;
    font-weight: 900;
  }

  .gradient-text {
    padding-bottom: 15px;
    display: inline-block;
    background: linear-gradient( #f08d30 0%,#f29f35 42%, #ffd04e 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero p {
    margin: 24px 0 0;
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.75;
    font-weight: 500;
  }

  .hero p strong {
    color: var(--dark);
    font-weight: 900;
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
  }

  .btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: .26s ease;
  }

  .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 20px 44px rgba(251,155,0,.32);
  }

  .btn-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 28px 62px rgba(251,155,0,.4);
  }

  .btn-ghost {
    color: var(--dark);
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(20,22,26,.08);
    box-shadow: 0 14px 36px rgba(20,22,26,.07);
  }

  .btn-ghost:hover {
    transform: translateY(-3px);
    background: #fff;
  }

  .social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
  }

  .social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    color: #4f5965;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(20,22,26,.08);
    backdrop-filter: blur(14px);
    transition: .24s ease;
  }

  .social-chip:hover {
    transform: translateY(-3px);
    color: var(--dark);
    border-color: rgba(251,155,0,.35);
    box-shadow: 0 16px 34px rgba(251,155,0,.13);
  }

  .social-chip span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #777f8c, #fb9b00);
    font-size: 12px;
    font-weight: 900;
  }

  .hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
  }

  .silver-orbit {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(circle at center, rgba(255,255,255,.97) 0 31%, transparent 32%),
      conic-gradient(from 130deg, #fb9b00, #fff, var(--silver-3), #fff, #fb9b00);
    box-shadow: var(--shadow);
    animation: float 7s ease-in-out infinite;
  }

  .silver-orbit::before,
  .silver-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 40px;
    border: 1px solid rgba(20,22,26,.08);
  }

  .silver-orbit::after {
    inset: 96px;
    border-style: dashed;
    border-color: rgba(251,155,0,.36);
    animation: spin 24s linear infinite;
  }

  .center-card {
    position: absolute;
    width: 220px;
    padding: 24px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(20,22,26,.16);
    z-index: 3;
  }

  .center-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 16px 34px rgba(251,155,0,.3);
    font-size: 24px;
    font-weight: 900;
  }

  .center-card b {
    display: block;
    font-size: 36px;
    letter-spacing: -.06em;
  }

  .center-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .floating-node {
    position: absolute;
    z-index: 4;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(255,255,255,.84);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 46px rgba(20,22,26,.12);
    animation: nodeFloat 5.4s ease-in-out infinite;
  }

  .floating-node i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-style: normal;
    font-weight: 900;
    background: linear-gradient(135deg, #8f99a6, var(--silver-3));
  }

  .floating-node.orange i {
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 12px 26px rgba(251,155,0,.28);
  }

  .floating-node small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .floating-node b {
    display: block;
    font-size: 14px;
    letter-spacing: -.02em;
  }

  .n1 { top: 30px; left: 52px; }
  .n2 { top: 128px; right: -8px; animation-delay: -1s; }
  .n3 { bottom: 96px; right: 18px; animation-delay: -2s; }
  .n4 { bottom: 34px; left: 30px; animation-delay: -3s; }

  .mini-chart {
    position: absolute;
    left: -8px;
    bottom: 140px;
    z-index: 5;
    width: 190px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 64px rgba(20,22,26,.13);
  }

  .mini-chart-head {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
  }

  .mini-chart strong {
    display: block;
    margin-top: 8px;
    font-size: 32px;
    letter-spacing: -.06em;
  }

  .bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 58px;
    margin-top: 12px;
  }

  .bar {
    flex: 1;
    border-radius: 999px 999px 7px 7px;
    background: linear-gradient(to top, #fb9b00, var(--orange-3));
    transform-origin: bottom;
    animation: barPulse 2.6s ease-in-out infinite;
  }

  .bar:nth-child(1) { height: 38%; opacity:.58; }
  .bar:nth-child(2) { height: 64%; opacity:.74; animation-delay:.2s; }
  .bar:nth-child(3) { height: 48%; opacity:.68; animation-delay:.4s; }
  .bar:nth-child(4) { height: 82%; animation-delay:.6s; }
  .bar:nth-child(5) { height: 100%; animation-delay:.8s; }

  .section {
    position: relative;
    padding: clamp(82px, 9vw, 132px) clamp(18px, 5vw, 72px);
  }

  .inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fb9b00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .section-title {
    margin: 16px 0 0;
    font-size: clamp(36px, 5.8vw, 78px);
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 900;
  }

  .section-copy {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 650px;
  }

  .about {
    background: #fff;
  }

  .about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(32px, 6vw, 74px);
    align-items: center;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
  }

  .stat {
    min-height: 150px;
    padding: 24px;
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,246,248,.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: .28s ease;
  }

  .stat:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(20,22,26,.12);
  }

  .stat b {
    display: block;
    color: #fb9b00;
    font-size: clamp(34px, 4vw, 54px);
    line-height: .95;
    letter-spacing: -.06em;
  }

  .stat span {
    display: block;
    margin-top: 10px;
    color: #515a65;
    font-weight: 900;
  }


  .team-social-portrait {
    position: relative;
    min-height: 820px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 40px;
  
    isolation: isolate;
  }

  .team-social-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 50% 48%, #000, transparent 78%);
    z-index: -3;
  }

  .social-bg-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(251,155,0,.28);
    z-index: -1;
    animation: spin linear infinite;
  }

  .orbit-a {
    width: 470px;
    height: 470px;
    border-style: dashed;
    animation-duration: 26s;
  }

  .orbit-b {
    width: 350px;
    height: 350px;
    border-color: rgba(183,192,203,.55);
    animation-duration: 18s;
    animation-direction: reverse;
  }

  .orbit-c {
    width: 570px;
    height: 570px;
    border-color: rgba(251,155,0,.16);
    animation-duration: 36s;
  }

  .portrait-card {
    position: relative;
    z-index: 2;
    width: min(360px, 72%);
    aspect-ratio: 4 / 5.6;
    border-radius: 38px;
    overflow: hidden;
    background: var(--silver);
    box-shadow: 0 32px 88px rgba(20,22,26,.18);
    border: 1px solid rgba(255,255,255,.84);
    animation: portraitFloat 6s ease-in-out infinite;
  }

  .portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
  }

  .portrait-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, rgba(0,0,0,.74), rgba(0,0,0,.08) 54%, rgba(255,255,255,.12)),
      radial-gradient(circle at 82% 18%, rgba(251,155,0,.28), transparent 34%);
    pointer-events: none;
  }

  .portrait-shine {
    position: absolute;
    inset: -40% auto auto -30%;
    width: 130px;
    height: 180%;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transform: rotate(18deg);
    animation: shineSweep 5s ease-in-out infinite;
    pointer-events: none;
  }

  .portrait-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    color: #fff;
  }

  .portrait-caption small {
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
  }

  .portrait-caption h3 {
    margin: 10px 0 10px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: .92;
    letter-spacing: -.06em;
  }

  .portrait-caption h3 span {
    color: var(--orange-2);
  }

  .portrait-caption p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
    font-weight: 700;
    font-size: 14px;
  }

  .social-float {
    position: absolute;
    z-index: 5;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(
  135deg,
  transparent,
  transparent
);
  
    animation: nodeFloat 5.8s ease-in-out infinite;
  }

  .sf-ig { top: 70px; left: 76px; }
  .sf-tt { top: 132px; right: 70px; animation-delay: -1s; }
  .sf-fb { bottom: 120px; right: 56px; animation-delay: -2s; }
  .sf-hash { bottom: 76px; left: 82px; animation-delay: -3s; }
  .sf-like {
    top: 50%;
    left: 36px;
    background: linear-gradient(135deg, #fff, #c5ccd5);
    color: #fb9b00;
    animation-delay: -1.8s;
  }

  .mini-social-card {
    position: absolute;
    z-index: 6;
    min-width: 142px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(20,22,26,.12);
    animation: nodeFloat 6.4s ease-in-out infinite;
  }

  .mini-social-card small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mini-social-card b {
    display: block;
    margin-top: 4px;
    color: var(--dark);
    font-size: 28px;
    letter-spacing: -.05em;
  }

  .mini-social-card span {
    color: #fb9b00;
    font-size: 12px;
    font-weight: 900;
  }

  .reach-card {
    left: 36px;
    bottom: 168px;
  }

  .creator-card {
    right: 34px;
    top: 238px;
    animation-delay: -2.4s;
  }

  .services {
    background:
      radial-gradient(circle at 12% 10%, rgba(251,155,0,.16), transparent 30%),
      linear-gradient(135deg, #f8fafc, #fff);
  }

  .service-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(34px, 6vw, 80px);
    align-items: center;
  }

  .phone-stage {
    position: relative;
    min-height: 630px;
    display: grid;
    place-items: center;
  }

  .phone-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,155,0,.2), transparent 68%);
    filter: blur(8px);
    animation: glow 4s ease-in-out infinite;
  }

  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(251,155,0,.28);
    animation: spin linear infinite;
  }

  .r1 { width: 430px; height: 430px; animation-duration: 20s; }
  .r2 { width: 540px; height: 540px; animation-duration: 28s; animation-direction: reverse; border-style: dashed; }

  .phone {
    position: relative;
    z-index: 4;
    width: 310px;
    height: 620px;
    padding: 12px;
    border-radius: 50px;
    background: linear-gradient(145deg, #fff, var(--silver-3) 42%, #6f7782);
    box-shadow: 0 38px 100px rgba(20,22,26,.26), inset 0 0 0 1px rgba(255,255,255,.5);
    animation: phoneFloat 6s ease-in-out infinite;
  }

  .phone::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 24px;
    border-radius: 99px;
    background: #15171b;
    z-index: 5;
  }

  .phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 38px;
    background: #111;
  }

  .phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .86;
  }

  .phone-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(251,155,0,.34), transparent 45%, rgba(255,255,255,.08));
  }

  .data-card {
    position: absolute;
    z-index: 6;
    min-width: 170px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 56px rgba(20,22,26,.13);
    animation: nodeFloat 5.6s ease-in-out infinite;
  }

  .data-card .label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .data-card .value {
    display: block;
    margin-top: 5px;
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.05em;
  }

  .data-card .up {
    color: #fb9b00;
    margin-left: 6px;
    font-size: 13px;
  }

  .dc1 { top: 100px; left: 0; }
  .dc2 { right: 0; bottom: 130px; animation-delay: -1.5s; }
  .dc3 { left: 28px; bottom: 72px; animation-delay: -2.4s; }

  .service-cards {
    display: grid;
    gap: 14px;
  }

  .service-card {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(20,22,26,.08);
    box-shadow: 0 16px 42px rgba(20,22,26,.07);
    overflow: hidden;
    transition: .28s ease;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,155,0,.12), transparent 55%);
    opacity: 0;
    transition: .28s ease;
  }

  .service-card:hover {
    transform: translateX(8px);
    border-color: rgba(251,155,0,.32);
    box-shadow: 0 24px 60px rgba(251,155,0,.12);
  }

  .service-card:hover::after { opacity: 1; }

  .service-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-2), #fb9b00);
    box-shadow: 0 14px 30px rgba(251,155,0,.25);
  }

  .service-card h4,
  .service-card p {
    position: relative;
    z-index: 1;
  }

  .service-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.02em;
  }

  .service-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
  }

  .projects {
    background: #fff;
  }

  .banner {
    position: relative;
    padding: clamp(28px, 5vw, 44px);
    border-radius: 38px;
    background:
      radial-gradient(circle at 82% 8%, rgba(251,155,0,.2), transparent 34%),
      linear-gradient(135deg, #fff, #f3f6f9);
    border: 1px solid rgba(20,22,26,.08);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 74px;
  }

  .banner h3 {
    margin: 0 0 28px;
    font-size: clamp(30px, 4.8vw, 62px);
    line-height: .96;
    letter-spacing: -.06em;
  }

  .reel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .reel-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: marquee 26s linear infinite;
  }

  .reel-item {
    width: 176px;
    height: 220px;
    flex: 0 0 auto;
    border-radius: 26px;
    overflow: hidden;
    background: var(--silver);
  }

  .reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .projects-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
  }

  .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    transition: .25s ease;
    white-space: nowrap;
  }

  .view-btn:hover {
    background: #fb9b00;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(251,155,0,.28);
  }

  .project-scroll {
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .project-scroll::-webkit-scrollbar { display: none; }

  .project-grid {
    min-width: 1020px;
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 18px;
  }

  .project-card {
    position: relative;
    min-height: 408px;
    border-radius: 32px;
    overflow: hidden;
    background: #20242b;
    box-shadow: 0 22px 64px rgba(20,22,26,.12);
    transition: .3s ease;
  }

  .project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
  }

  .project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.74), transparent 62%);
  }

  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 84px rgba(20,22,26,.18);
  }

  .project-card:hover img { transform: scale(1.08); }

  .project-info {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
  }

  .project-info h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
  }

  .project-info p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
    font-weight: 700;
  }

  .brands {
    background:
      radial-gradient(circle at 12% 14%, rgba(251,155,0,.12), transparent 30%),
      linear-gradient(135deg, #f7f9fb, #fff);
    text-align: center;
  }

  .brands .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 36px;
  }

  .brand-logo {
    min-height: 112px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(20,22,26,.07);
    box-shadow: 0 14px 38px rgba(20,22,26,.06);
    color: #727b87;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.04em;
    transition: .25s ease;
  }

  .brand-logo:hover,
  .brand-logo.active {
    color: var(--dark);
    transform: translateY(-6px);
    border-color: rgba(251,155,0,.26);
    box-shadow: 0 22px 54px rgba(251,155,0,.12);
  }

  .brand-logo.italic {
    font-style: italic;
    font-family: Georgia, serif;
  }

  .video-section {
    background: #fff;
  }

  .video-wrap {
    display: grid;
    grid-template-columns: .74fr 1.26fr;
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
  }

  .video-frame {
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--silver);
    border: 1px solid rgba(20,22,26,.08);
    box-shadow: var(--shadow);
  }

  .video-frame iframe,
  .video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
  }

  .mosaic {
    background:
      linear-gradient(180deg, #fff, #f7f9fb);
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .mosaic-head {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto 34px;
    text-align: center;
  }

  .mosaic .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .mosaic-track {
display: flex;
gap: 16px;
padding: 0 16px;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
}

.mosaic-track::-webkit-scrollbar {
display: none;
}

  .mosaic-column {
    display: grid;
    gap: 16px;
  }

  .mosaic-card {
    border-radius: 30px;
    overflow: hidden;
    background: var(--silver);
    box-shadow: 0 18px 52px rgba(20,22,26,.1);
    flex: 0 0 auto;
  }

  .mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mosaic-card.big { width: 310px; height: 420px; }
  .mosaic-card.small { width: 220px; height: 250px; }
  .mosaic-card.tall { width: 220px; height: 256px; }

  .footer {
    padding: 62px 20px;
    text-align: center;
    color: var(--dark);
    background:
      radial-gradient(circle at 50% 0%, rgba(251,155,0,.18), transparent 34%),
      linear-gradient(135deg, #fff, #edf1f5);
    border-top: 1px solid rgba(20,22,26,.08);
  }

  .footer img {
    width: 132px;
    margin: 0 auto 24px;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-links a {
    color: #57616d;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    transition: .24s ease;
  }

  .footer-links a:hover { color: #fb9b00; }

  .footer p {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 13px;
  }

  .reveal {
    animation: reveal .84s ease both;
  }

  .delay-1 { animation-delay: .12s; }
  .delay-2 { animation-delay: .24s; }
  .delay-3 { animation-delay: .36s; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  @keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  @keyframes barPulse {
    0%, 100% { transform: scaleY(.82); }
    50% { transform: scaleY(1); }
  }

  @keyframes glow {
    0%, 100% { opacity: .65; transform: scale(.94); }
    50% { opacity: 1; transform: scale(1.06); }
  }

  @keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-16px) rotate(1deg); }
  }

  @keyframes portraitFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1.5deg); }
  }

  @keyframes shineSweep {
    0%, 35% { transform: translateX(-140px) rotate(18deg); opacity: 0; }
    50% { opacity: .9; }
    70%, 100% { transform: translateX(520px) rotate(18deg); opacity: 0; }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
    }
  }

  @media (max-width: 1080px) {
    .nav-links { display: none; }

    .hero,
    .about-grid,
    .service-layout,
    .video-wrap {
      grid-template-columns: 1fr;
    }

    .hero {
      min-height: auto;
      padding-bottom: 70px;
    }

    .hero-visual { min-height: 520px; }

    .brand-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .video-wrap {
      align-items: start;
    }
  }

  @media (max-width: 720px) {
    .nav-wrap {
      width: calc(100% - 24px);
      border-radius: 26px;
    }

    .brand img { width: 94px; }

    .nav-cta {
      min-height: 42px;
      padding: 0 14px;
      font-size: 12px;
    }

    .hero {
      width: calc(100% - 32px);
      margin-top: 48px;
    }

    h1 {
      font-size: clamp(44px, 16vw, 70px);
    }

    .pill {
      font-size: 10px;
      line-height: 1.4;
    }

    .actions {
      align-items: stretch;
    }

    .btn {
      width: 100%;
    }

    .hero-visual {
      min-height: 430px;
      transform: scale(.86);
      transform-origin: center top;
      margin-bottom: -56px;
    }

    .silver-orbit {
      width: 430px;
      max-width: none;
    }

    .floating-node { min-width: 132px; }
    .n2 { right: 14px; }
    .mini-chart { left: 16px; bottom: 108px; }

    .section {
      padding: 74px 16px;
    }

    .stats {
      grid-template-columns: 1fr;
    }

    .commitment {
      border-radius: 28px;
    }

    .phone-stage {
      min-height: 540px;
      transform: scale(.84);
      transform-origin: center;
      margin: -56px 0 -34px;
    }

    .phone {
      width: 280px;
      height: 560px;
    }

    .data-card {
      min-width: 152px;
    }

    .dc1 { left: -8px; }
    .dc2 { right: -8px; }
    .dc3 { left: 6px; }

    .projects-head {
      flex-direction: column;
      align-items: flex-start;
    }

    .banner {
      border-radius: 28px;
      margin-bottom: 54px;
    }

    .project-grid {
      min-width: 900px;
    }

    .project-card {
      min-height: 360px;
    }

    .brand-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .brand-logo {
      min-height: 92px;
      font-size: 22px;
    }

    .video-frame {
      border-radius: 26px;
    }

    .mosaic-card.big { width: 240px; height: 340px; }
    .mosaic-card.small { width: 170px; height: 162px; }
    .mosaic-card.tall { width: 170px; height: 210px; }
  }


  @media (max-width: 720px) {
    .team-social-portrait {
      min-height: 560px;
      border-radius: 30px;
    }

    .portrait-card {
      width: min(310px, 76%);
      border-radius: 32px;
    }

  
    .sf-ig { top: 58px; left: 32px; }
    .sf-tt { top: 118px; right: 28px; }
    .sf-fb { bottom: 118px; right: 24px; }
    .sf-hash { bottom: 70px; left: 36px; }
    .sf-like { left: 18px; }

    .mini-social-card {
      min-width: 126px;
      padding: 12px 14px;
    }

    .mini-social-card b {
      font-size: 24px;
    }

    .reach-card {
      left: 22px;
      bottom: 154px;
    }

    .creator-card {
      right: 18px;
      top: 214px;
    }
  }

  @media (max-width: 420px) {
    .nav-cta svg { display: none; }
    .phone-stage {
      transform: scale(.76);
      margin: -96px 0 -82px;
    }

    .brand-grid {
      grid-template-columns: 1fr;
    }
  }
.team-social-portrait::before,
.team-social-portrait::after {
background: none !important;
}

.mosaic-wrap {
position: relative;
display: flex;
align-items: center;
}

.mosaic-arrow {
position: absolute;
z-index: 20;
width: 54px;
height: 54px;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 24px;
color: white;

background: rgba(20,22,26,.72);
backdrop-filter: blur(10px);

transition: .25s ease;
}

.mosaic-arrow:hover {
transform: scale(1.08);
background: #fb9b00;
}

.mosaic-arrow.left {
left: 20px;
}

.mosaic-arrow.right {
right: 20px;
}


/*new*/
/* --- Navigation --- */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;

background:#000;

backdrop-filter: blur(18px);

border-bottom: 1px solid rgba(20,22,26,.08);

box-shadow:
  0 10px 34px rgba(20,22,26,.06);
}

.nav-inner {
width: min(1200px, calc(100% - 48px));
height: 80px;
margin: 0 auto;
/* padding: 0 24px; */

display: flex;
align-items: center;
justify-content: space-between;
}

.logo img {
max-height: 38px;
object-fit: contain;
}

.menu {
list-style: none;
display: flex;
align-items: center;
gap: 30px;
margin: 0;
padding: 0;
}

.menu a {
text-decoration: none;
color: var(--text);
font-size: 11px;
font-weight: 800;
letter-spacing: .12em;
transition: .25s ease;
color:#fff;
}

.menu a:hover {
color: #fb9b00;
}

.menu a:hover::after, .menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--orange-2), #fb9b00);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.menu a{color:#fff;font-size:11px;font-weight:900;letter-spacing:.12em;position:relative}
.menu a:after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:2px;background:linear-gradient(90deg,#fb9b00,#fb9b00);transform:scaleX(0);transform-origin:right;transition:.3s}
.menu a:hover,.menu a.active{color:#fb9b00}
.menu a:hover:after,.menu a.active:after{transform:scaleX(1);transform-origin:left}

.contact-btn {
    padding: 11px 22px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, #ffbc00, #ff721f);
    box-shadow: 0 12px 28px rgba(251, 155, 0, .24);
}

.contact-btn:hover {
background: linear-gradient(135deg, var(--orange-2), #fb9b00);
color: #fff !important;
transform: translateY(-2px);
}

/* hamburger */
.menu-toggle {
display: none;
width: 46px;
height: 46px;
border: 0;
border-radius: 50%;
background: #14161a;
cursor: pointer;
}

.menu-toggle span {
display: block;
width: 18px;
height: 2px;
margin: 4px auto;
border-radius: 999px;
background: #fb9b00;
}

/* mobile */
@media (max-width: 768px) {
.navbar {
  background: rgba(255,255,255,.9);
}

.nav-inner {
  width: calc(100% - 24px);
  height: auto;
  min-height: 72px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.logo img {
  max-height: 34px;
}

.menu-toggle {
  display: block;
}

.menu {
  width: 100%;
  max-height: 0;
  overflow: hidden;

  flex-direction: column;
  align-items: stretch;
  gap: 8px;

  transition: max-height .32s ease;
}

.menu.is-open {
  max-height: 360px;
  padding-top: 14px;
}

.menu li {
  width: 100%;
}

.menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;

  background: rgba(20,22,26,.045);
  color: #343941;

  font-size: 12px;
  font-weight: 900;
}

.menu a:hover {
  background: rgba(251,155,0,.13);
}

.contact-btn {
  text-align: center;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--orange-2), #fb9b00);
  border: 0;
}
}

.brand-dots {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;

margin-top: 34px;
}

.brand-dots .dot {
width: 8px;
height: 8px;

border: 0;
border-radius: 999px;

background: rgba(20,22,26,.18);

cursor: pointer;
transition: .25s ease;
}

.brand-dots .dot.active {
width: 30px;
background: #fb9b00;
}

.brand-dots .dot:hover {
background: #fb9b00;
transform: scale(1.18);
}

/* --- Fullscreen Video Header --- */
.hero-video-header {
position: relative;
min-height: 100vh;
display: grid;
place-items: center;
overflow: hidden;
isolation: isolate;
padding: 120px 20px 72px;
color: #fff;
background: #000;
}

.hero-video-header video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -3;
transform: scale(1.02);
}

.hero-video-header::before {
content: "";
position: absolute;
inset: 0;
z-index: -2;
background:
  radial-gradient(circle at 72% 24%, rgba(251,155,0,.38), transparent 36%),
  linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.44) 45%, rgba(0,0,0,.28));
}

.hero-video-header::after {
content: "";
position: absolute;
inset: auto 0 0;
height: 35%;
z-index: -1;
background: linear-gradient(to bottom, transparent, #fff);
pointer-events: none;
}

.hero-video-content {
width: min(var(--max), calc(100% - 32px));
margin: 0 auto;
}

.hero-video-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 16px;
border-radius: 999px;
font-size: 12px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
background: rgba(255,255,255,.14);
border: 1px solid rgba(255,255,255,.24);
backdrop-filter: blur(14px);
}

.hero-video-eyebrow::before {
content: "";
width: 9px;
height: 9px;
border-radius: 50%;
background: #fb9b00;
box-shadow: 0 0 0 8px rgba(251,155,0,.2);
}

.hero-video-title {
max-width: 920px;
margin: 24px 0 0;
font-size: clamp(48px, 6vw, 80px);
line-height: .9;
letter-spacing: -.04em;
font-weight: 900;
}

.hero-video-copy {
max-width: 640px;
margin: 24px 0 0;
color: rgba(255,255,255,.78);
font-size: clamp(16px, 1.8vw, 20px);
line-height: 1.75;
font-weight: 600;
}

.hero-video-actions {
display: flex;
flex-wrap: wrap;
gap: 13px;
margin-top: 34px;
}

.hero-video-actions .btn-ghost {
color: #fff;
background: rgba(255,255,255,.12);
border-color: rgba(255,255,255,.24);
}

/* --- Re-trigger Reveal on Every Scroll Pass --- */
.scroll-reveal {
opacity: 0;
transform: translate3d(0, 34px, 0) scale(.985);
filter: blur(8px);
transition:
  opacity .78s cubic-bezier(.2,.8,.2,1),
  transform .78s cubic-bezier(.2,.8,.2,1),
  filter .78s cubic-bezier(.2,.8,.2,1);
transition-delay: var(--reveal-delay, 0ms);
will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
opacity: 1;
transform: translate3d(0, 0, 0) scale(1);
filter: blur(0);
}

.scroll-reveal[data-reveal="left"] {
transform: translate3d(-42px, 0, 0) scale(.985);
}

.scroll-reveal[data-reveal="right"] {
transform: translate3d(42px, 0, 0) scale(.985);
}

.scroll-reveal[data-reveal="zoom"] {
transform: translate3d(0, 20px, 0) scale(.94);
}

.scroll-reveal.is-visible[data-reveal="left"],
.scroll-reveal.is-visible[data-reveal="right"],
.scroll-reveal.is-visible[data-reveal="zoom"] {
transform: translate3d(0, 0, 0) scale(1);
}

/* Keep brand logos black & white while still allowing reveal blur */
.brand-row img.scroll-reveal {
filter: grayscale(1) contrast(1.08) brightness(.92) blur(8px);
}

.brand-row img.scroll-reveal.is-visible {
filter: grayscale(1) contrast(1.08) brightness(.92) blur(0);
}

.brand-row img.scroll-reveal.is-visible:hover {
filter: grayscale(0) contrast(1) brightness(1) blur(0);
}

.stage {
      position: relative;
      min-height: 640px;
      display: grid;
      place-items: center;
    }

    .phone {
      position: relative;
      z-index: 30;
      width: 302px;
      height: 608px;
      padding: 12px;
      border-radius: 50px;
      background: linear-gradient(145deg, #fff, #e7ebf0 36%, #aeb7c3 68%, #69727e);
      box-shadow: 0 42px 110px rgba(16,17,20,.22), inset 0 0 0 1px rgba(255,255,255,.62);
      animation: phoneFloat 6s ease-in-out infinite;
    }

    .phone::before {
      content: "";
      position: absolute;
      z-index: 34;
      top: 22px;
      left: 50%;
      transform: translateX(-50%);
      width: 86px;
      height: 24px;
      border-radius: 999px;
      background: #0f1014;
    }

    .screen {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 38px;
      background: #111;
    }

    .screen-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
	/* 03 Liquid Cards */
    .liquid-blob {
      position: absolute;
      z-index: 10;
      border-radius: 42% 58% 60% 40% / 42% 38% 62% 58%;
      background: linear-gradient(135deg, rgba(251,155,0,.18), rgba(216,222,230,.32));
      filter: blur(.2px);
      animation: morph 8s ease-in-out infinite;
    }
    .lb1 { width: 360px; height: 300px; top: 72px; right: 40px; }
    .lb2 { width: 300px; height: 260px; bottom: 80px; left: 80px; animation-delay: -3s; }
    .glass-card {
      position: absolute;
      z-index: 42;
      width: 176px;
      padding: 16px;
      border-radius: 28px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 22px 58px rgba(16,17,20,.11);
      backdrop-filter: blur(18px);
      animation: nodeFloat 5.4s ease-in-out infinite;
    }
    .glass-card b { display:block; font-size: 20px; letter-spacing:-.05em; }
    .glass-card small { color: var(--muted); font-weight:900; letter-spacing:.08em; }
    .gc1 { top: 86px; left: -150px;}
    .gc2 { right: 40px; bottom: 230px; animation-delay: -1.3s; }
    .gc3 { left: 20px; bottom: 70px; animation-delay: -3.5s; }
    .gc4 { top: 130px;left: 100px;  animation-delay: -1.3s; }
    .gc5 { top: 280px; left:30px; animation-delay: -2s; }

/***/.brand-slider {
  margin-top: 50px;
  overflow: hidden;
}

.brand-pages {
  display: flex;
  transition: transform .6s ease;
}

.brand-page {
  min-width: 100%;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 44px 36px;
  margin-bottom: 46px;
}

.brand-row img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;

  object-fit: contain;

  filter: grayscale(1) brightness(.12);
  opacity: .42;

  transition: .32s ease;
}

.brand-row img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}
.brand-row img {
  max-width: 120px;
}
@media (max-width: 980px) {
  .brand-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .brand-row img {
    max-width: 120px;
    height: 52px;
  }
}

@media (max-width: 640px) {
  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }
  .brand-row img {
    max-width: 100px;
    height: 42px;
  }
	.gc2 {right: 0px;bottom: 230px;}
	.gc3 {left: -80px;bottom: 70px;}
	.gc4 {top: 190px;left: 0;}
	.gc5 {top: 340px;left: 10px;}
}

@media (prefers-reduced-motion: reduce) {
.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}
}

@media (max-width: 720px) {
.hero-video-header {
  min-height: 92vh;
  padding-top: 110px;
}

.hero-video-actions .btn {
  width: 100%;
}
}