/* ==========================================================================
   GTS — Gulf Technical Service Co. | Industrial site stylesheet
   Design tokens derived from GTS brochure material (navy flame mark,
   signal yellow band, steel blue headers, hexagon photo frames).
   ========================================================================== */

:root{
  /* ---- Brand palette (sourced from GTS brochures/logo) ---- */
  --ink:        #0e1f2e;   /* near-black navy, body text on light */
  --navy-900:   #0b1e30;   /* deepest navy - footer / hero base */
  --navy-800:   #123350;   /* primary navy - header, dark sections */
  --navy-700:   #1c4568;   /* logo flame navy */
  --steel-600:  #3f6f9e;   /* brochure banner blue */
  --steel-400:  #6f9bc7;
  --steel-100:  #eaf1f8;
  --signal:     #ffd400;   /* brand signal yellow */
  --signal-dark:#e0a800;
  --signal-ink: #4a3800;   /* text-on-yellow */
  --paper:      #f6f8fa;
  --white:      #ffffff;
  --slate-600:  #566779;
  --slate-400:  #8695a4;
  --line:       #e2e8ee;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(14,31,46,.06);
  --shadow-md: 0 12px 32px rgba(14,31,46,.12);
  --shadow-lg: 0 24px 60px rgba(14,31,46,.20);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", "Courier New", monospace;

  --container: 1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:96px; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--signal-dark);
}
p{ margin:0 0 1em; color:var(--slate-600); }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }
:focus-visible{ outline:3px solid var(--signal); outline-offset:2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---- Utility ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--signal-dark); font-weight:600;
  margin-bottom:.85em;
}
.eyebrow::before{
  content:""; width:22px; height:2px; background:var(--signal-dark); display:inline-block;
}
.section-head{ max-width:720px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size:1.05rem; }
.section-pad{ padding:96px 0; }
@media(max-width:768px){ .section-pad{ padding:64px 0; } }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.05em;
  font-size:.86rem; font-weight:600;
  padding:15px 30px; border-radius:4px; border:2px solid transparent;
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--signal); color:var(--signal-ink); border-color:var(--signal); }
.btn-primary:hover{ background:var(--signal-dark); border-color:var(--signal-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.55); }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:var(--white); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--signal-dark); border-color:var(--signal); }
.btn-ghost:hover{ border-color:var(--signal-dark); background:var(--signal-dark); color:var(--white); }
.btn-sm{ padding:10px 20px; font-size:.76rem; }
.btn svg{ width:16px; height:16px; }

.tag{
  display:inline-block; font-family:var(--font-mono); font-size:.68rem;
  letter-spacing:.08em; text-transform:uppercase; color:var(--steel-600);
  background:var(--steel-100); border-radius:20px; padding:5px 12px; font-weight:600;
}

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
/* .topbar{
  background: #1D1C21; color:#c9d7e4; font-size:.82rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; height:40px; }
.topbar-info{ display:flex; gap:22px; }
.topbar-info a{ color:#c9d7e4; display:inline-flex; align-items:center; gap:6px; transition:color .15s; }
.topbar-info a:hover{ color:var(--signal); }
.topbar-info svg{ width:14px; height:14px; opacity:.8; }
.topbar-tag{ font-family:var(--font-mono); letter-spacing:.08em; font-size:.72rem; color:#8ea3b8; }
@media(max-width:860px){ .topbar-tag{ display:none; } .topbar-info{ gap:14px; } }
@media(max-width:560px){ .topbar-info span.hide-xs{ display:none; } } */
/* ==========================================================
   FIXED TOP BAR
========================================================== */

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  background: #1D1C21;
  color: #c9d7e4;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 9999;
}


/* Container */

.topbar .container {
    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 40px;
}


/* Information */

.topbar-info {
    display: flex;

    gap: 22px;
}


.topbar-info a {
    color: #c9d7e4;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    transition: color .15s;
}


.topbar-info a:hover {
    color: var(--signal);
}


.topbar-info svg {
    width: 14px;

    height: 14px;

    opacity: .8;
}


/* Right text */

.topbar-tag {
    font-family: var(--font-mono);

    letter-spacing: .08em;

    font-size: .72rem;

    color: #8ea3b8;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:860px) {

    .topbar-tag {
        display: none;
    }

    .topbar-info {
        gap: 14px;
    }

}


@media(max-width:560px) {

    .topbar-info span.hide-xs {
        display: none;
    }

}

.site-header{
  position: fixed;      /* was sticky */
  top: 40px;             /* sit right below the topbar */
  left: 0;
  right: 0;
  z-index: 200;
  background:#1D1C21;
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* push page content down so it isn't hidden under both fixed bars */
body{
  padding-top: calc(40px + 84px); /* topbar height + header-inner height */
}

.header-inner{ display:flex; align-items:center; justify-content:space-between; height:84px; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height:46px; width:auto; border-radius:6px; }
.brand-text{ line-height:1.15; }
.brand-text strong{ display:block; font-family:var(--font-display); font-size:1.02rem; letter-spacing:.02em; color:var(--signal); text-transform:uppercase; white-space:nowrap; }
.brand-text span{ display:block; font-size:.68rem; letter-spacing:.14em; color:var(--steel-400); text-transform:uppercase; font-family:var(--font-mono); }

.nav{ display:flex; align-items:center; gap:0; }
.nav > li{ position:relative; }
.nav > li > a, .nav > li > button{
  display:flex; align-items:center; gap:5px; white-space:nowrap;
  font-family:var(--font-display); font-size:.8rem; letter-spacing:.03em;
  text-transform:uppercase; color:#dbe6f0; padding:14px 11px;
  background:none; border:none; cursor:pointer; font-weight:500;
  transition:color .15s;
}
.nav > li > a:hover, .nav > li > button:hover, .nav > li.active > a{ color:var(--signal); }
.nav > li > button svg{ width:11px; height:11px; transition:transform .2s; }
.nav > li:hover > button svg{ transform:rotate(180deg); }

.dropdown{
  position:absolute; top:100%; left:0; min-width:280px;
  background:var(--white); border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  padding:10px; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  border:1px solid var(--line);
}
.nav > li:hover .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{
  display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:8px;
  color:var(--navy-800); font-size:.88rem; font-weight:600; transition:background .15s, color .15s;
}
.dropdown a:hover{ background:var(--steel-100); color:var(--steel-600); }
.dropdown a .num{ font-family:var(--font-mono); font-size:.7rem; color:var(--slate-400); width:20px; }

.header-cta{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-cta .btn{ padding:12px 18px; white-space:nowrap; }

.nav-toggle{
  display:none; width:44px; height:44px; border-radius:8px; border:1px solid rgba(255,255,255,.2);
  background:transparent; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background:var(--white); transition:transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media(max-width:1240px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:flex; }
  .header-cta .btn-outline{ display:none; }
}

/* Mobile nav panel */
.mobile-nav{
  position: fixed;
  top: calc(40px + 84px);   /* was just 84px */
  right: 0;
  bottom: 0;
  left: 0;
  background: #1D1C21;
  z-index: 190;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 10px 20px 40px;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav li{ border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-nav a, .mobile-nav .msec-toggle{
  display:flex; align-items:center; justify-content:space-between;
  padding:17px 4px; color:var(--white); font-family:var(--font-display);
  text-transform:uppercase; letter-spacing:.03em; font-size:1rem;
  background:none; border:none; width:100%; text-align:left; cursor:pointer;
}
.mobile-sub{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.mobile-sub.open{ max-height:600px; }
.mobile-sub a{ padding:12px 4px 12px 18px; font-size:.86rem; color:#b9cadb; text-transform:none; font-family:var(--font-body); font-weight:600; }
.mobile-nav .btn{ margin-top:20px; width:100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
/* .hero{
  position:relative; background:var(--navy-900); color:var(--white);
  padding:110px 0 90px; overflow:hidden; isolation:isolate;
}
.hero::before{
  content:""; position:absolute; top:0; right:0; bottom:0; left:0; z-index:-2;
  background:
    radial-gradient(ellipse 900px 600px at 82% 8%, rgba(63,111,158,.35), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, #0a1a29 100%);
}
.hero-ribbon{
  position:absolute; top:-10%; right:-8%; width:60%; height:130%; z-index:-1;
  background:linear-gradient(100deg, transparent 42%, rgba(255,212,0,.14) 43%, rgba(255,212,0,.14) 46%, transparent 47%,
             transparent 56%, rgba(255,212,0,.07) 57%, rgba(255,212,0,.07) 59%, transparent 60%);
}
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
@media(max-width:980px){ .hero-grid{ grid-template-columns:1fr; } }

.hero-eyebrow{
  display:inline-flex; align-items:center; gap:.6em; font-family:var(--font-mono);
  font-size:.75rem; letter-spacing:.16em; text-transform:uppercase; color:var(--signal);
  background:rgba(255,212,0,.1); border:1px solid rgba(255,212,0,.35); padding:8px 16px;
  border-radius:30px; margin-bottom:26px;
}
.hero h1{
  color:var(--white); font-size:clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom:.35em;
}
.hero h1 span{ color:var(--signal); }
.hero .lede{ font-size:1.14rem; color:#c3d3e0; max-width:560px; margin-bottom:2em; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stats div strong{
  display:block; font-family:var(--font-display); font-size:1.7rem; color:var(--white); letter-spacing:.02em;
}
.hero-stats div span{ font-size:.78rem; color:var(--steel-400); text-transform:uppercase; letter-spacing:.08em; font-family:var(--font-mono); }

.hero-media{ position:relative; }
.hex-cluster{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.hex-cluster .hex-frame:nth-child(2){ margin-top:44px; }
.hex-cluster .hex-frame:nth-child(3){ margin-top:-30px; }
.hex-frame{
  clip-path:polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  aspect-ratio:1/1.02; overflow:hidden; background:var(--navy-700);
  border:3px solid rgba(255,212,0,.55);
}
.hex-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; left:-14px; bottom:-14px; background:var(--white); color:var(--navy-900);
  border-radius:var(--radius-md); padding:18px 22px; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:14px; max-width:260px;
}
.hero-badge svg{ width:34px; height:34px; color:var(--signal-dark); flex-shrink:0; }
.hero-badge strong{ display:block; font-family:var(--font-display); font-size:.95rem; text-transform:uppercase; }
.hero-badge span{ font-size:.78rem; color:var(--slate-600); }

/* Marquee strip 
.strip{ background:var(--white); border-bottom:1px solid var(--line); padding:26px 0; overflow:hidden; }
.strip-track{ display:flex; gap:64px; align-items:center; white-space:nowrap; animation:marquee 26s linear infinite; width:max-content; }
.strip:hover .strip-track{ animation-play-state:paused; }
.strip-track span{ font-family:var(--font-mono); font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:var(--slate-400); display:inline-flex; align-items:center; gap:12px; }
.strip-track span::before{ content:"◆"; color:var(--signal-dark); font-size:.6rem; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } } */

/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;

    width: 100%;

    min-height: 720px;

    display: grid;

    grid-template-columns: 50% 50%;

    background: rgb(23, 22, 27);

    color: #ffffff;

    padding: 0 !important;

    margin: 0 !important;

    overflow: hidden;
}


/* ==========================================================
   LEFT SIDE
========================================================== */

.hero-left {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background: rgb(23, 22, 27);

    padding: 70px 60px;

    box-sizing: border-box;

    z-index: 5;
}


.hero-content {
    width: 100%;

    max-width: 620px;

    margin: 0 auto;
}


/* ==========================================================
   EYEBROW
========================================================== */

.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    color: #ffd400;

    font-family: var(--font-mono);

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

    background: rgba(255,212,0,.06);

    border: 1px solid rgba(255,212,0,.35);

    padding: 9px 16px;

    border-radius: 4px;

    margin-bottom: 25px;
}


/* ==========================================================
   TITLE
========================================================== */

.hero h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(
        2.5rem,
        4vw,
        4rem
    );

    line-height: 1.05;

    letter-spacing: -.025em;
}


.hero h1 span {
    display: block;

    color: #ffd400;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.hero .lede {
    max-width: 540px;

    margin: 0 0 30px;

    color: #bcb9c2;

    font-size: 1rem;

    line-height: 1.7;
}


/* ==========================================================
   BUTTONS
========================================================== */

.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 55px;
}


/* ==========================================================
   STATS
========================================================== */

.hero-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-bottom:
        1px solid rgba(255,255,255,.12);

    padding-bottom: 32px;

    margin-bottom: 26px;
}


.hero-stats div {
    padding: 0 18px;

    border-right:
        1px solid rgba(255,255,255,.12);
}


.hero-stats div:first-child {
    padding-left: 0;
}


.hero-stats div:last-child {
    border-right: none;
}


.hero-stats strong {
    display: block;

    color: #ffffff;

    font-family: var(--font-display);

    font-size: 1.65rem;

    margin-bottom: 4px;
}


.hero-stats span {
    display: block;

    color: #8d8993;

    font-family: var(--font-mono);

    font-size: .68rem;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: .06em;
}


/* ==========================================================
   FACILITY
========================================================== */

.hero-facility {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #e1dee4;

    font-size: .84rem;
}


.hero-facility span {
    width: 4px;

    height: 24px;

    flex-shrink: 0;

    background: #ffd400;
}


/* ==========================================================
   RIGHT SIDE
========================================================== */

.hero-right {
    position: relative;

    width: 100%;

    min-width: 0;

    min-height: 720px;

    height: 100%;

    overflow: hidden;

    padding: 0;

    margin: 0;

    background: #111116;
}


/* ==========================================================
   SLIDER
========================================================== */

.hero-slider {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 720px;

    overflow: hidden;

    padding: 0;

    margin: 0;
}


/* ==========================================================
   SLIDE
========================================================== */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 5s ease;

    z-index: 1;
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);

    z-index: 2;
}


/* ==========================================================
   SLIDE IMAGE
========================================================== */

.hero-slide img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    margin: 0;

    padding: 0;
}


/* ==========================================================
   DARK GRADIENT
========================================================== */

.slide-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.58) 30%,
            rgba(0,0,0,.18) 65%,
            rgba(0,0,0,.38) 100%
        );

    pointer-events: none;
}


.slide-overlay::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 65%;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.96),
            rgba(0,0,0,.55),
            transparent
        );
}


/* ==========================================================
   SLIDE CONTENT
========================================================== */

.slide-content {
    position: absolute;

    left: 10%;

    top: 43%;

    transform: translateY(-50%);

    width: 68%;

    z-index: 5;
}


.slide-label {
    color: #ffd400;

    font-family: var(--font-mono);

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.slide-content h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-display);

    font-size: clamp(
        2rem,
        3.4vw,
        3.3rem
    );

    line-height: 1.08;

    text-transform: uppercase;
}


.slide-content h2 span {
    display: block;
}


.slide-line {
    width: 46px;

    height: 4px;

    background: #ffd400;

    margin: 20px 0;
}


.slide-content p {
    max-width: 520px;

    margin: 0;

    color: #d2ced5;

    font-size: .95rem;

    line-height: 1.7;
}


/* ==========================================================
   ARROWS
========================================================== */

.hero-arrow {
    position: absolute;

    top: 43%;

    transform: translateY(-50%);

    z-index: 20;

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background: rgba(8,8,10,.55);

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 5px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background .25s ease,
        border-color .25s ease;
}


.hero-arrow:hover {
    background: #ffd400;

    color: #111116;

    border-color: #ffd400;
}


.hero-arrow svg {
    width: 26px;

    height: 26px;
}


.hero-prev {
    left: 18px;
}


.hero-next {
    right: 18px;
}


/* ==========================================================
   FEATURES
========================================================== */

.hero-features {
    position: absolute;

    left: 7%;

    right: 7%;

    bottom: 48px;

    z-index: 15;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 15px;

    background:
        rgba(12,12,15,.78);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);
}


.hero-feature {
    min-height: 105px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-right:
        1px solid rgba(255,255,255,.12);
}


.hero-feature:last-child {
    border-right: none;
}


.feature-icon {
    flex-shrink: 0;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffd400;
}


.feature-icon svg {
    width: 31px;

    height: 31px;
}


.hero-feature strong {
    display: block;

    color: #ffffff;

    font-family: var(--font-display);

    font-size: .82rem;

    margin-bottom: 5px;
}


.hero-feature span {
    display: block;

    color: #aaa6af;

    font-size: .67rem;

    line-height: 1.45;
}


/* ==========================================================
   DOTS
========================================================== */

.hero-dots {
    position: absolute;

    left: 10%;

    bottom: 18px;

    z-index: 20;

    display: flex;

    gap: 7px;
}


.hero-dots button {
    width: 28px;

    height: 4px;

    padding: 0;

    border: 0;

    border-radius: 4px;

    background: rgba(255,255,255,.35);

    cursor: pointer;

    transition: all .3s ease;
}


.hero-dots button.active {
    width: 40px;

    background: #ffd400;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .hero-left {
        padding-left: 35px;

        padding-right: 35px;
    }

    .hero-features {
        left: 5%;

        right: 5%;
    }

    .hero-feature {
        padding: 13px;
    }

}


@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
    }


    .hero-left {
        min-height: auto;

        padding: 70px 25px;

        text-align: center;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero .lede {
        margin-left: auto;

        margin-right: auto;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-stats {
        text-align: left;
    }


    .hero-right {
        min-height: 680px;
    }


    .hero-slider {
        min-height: 680px;
    }

}


@media (max-width: 600px) {

    .hero-left {
        padding: 55px 20px;
    }


    .hero h1 {
        font-size: 2.3rem;
    }


    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    .hero-stats div {
        padding: 0 10px;

        border-right: none;
    }


    .hero-right {
        min-height: 650px;
    }


    .hero-slider {
        min-height: 650px;
    }


    .slide-content {
        left: 7%;

        width: 86%;

        top: 35%;
    }


    .slide-content h2 {
        font-size: 2rem;
    }


    .hero-features {
        grid-template-columns: repeat(2, 1fr);

        bottom: 45px;
    }


    .hero-feature {
        min-height: 88px;

        padding: 10px;
    }


    .hero-feature:nth-child(2) {
        border-right: none;
    }


    .hero-feature:nth-child(1),
    .hero-feature:nth-child(2) {
        border-bottom:
            1px solid rgba(255,255,255,.12);
    }


    .feature-icon {
        display: none;
    }


    .hero-arrow {
        width: 44px;

        height: 44px;
    }

}

/* ==========================================================
   HERO STAT CARDS
========================================================== */
.hero-stat-container {
    position: relative;

    width: 100%;

    max-width: 1320px;

    margin: 40px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    z-index: 30;
}


/* ==========================================================
   CARD CONTAINER
========================================================== */

.hero-stat-container {

    width: min(1320px, 100%);

    margin: 40px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    position: relative;

    z-index: 30;
}


/* ==========================================================
   CARD
========================================================== */

.hero-stat-card {

    position: relative;

    min-height: 300px;

    padding: 40px 25px 32px;

    background: #ffffff;

    border: 1px solid #e7e7e9;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    cursor: pointer;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.hero-stat-card:hover {

    background: #ffd400;

    border-color: #ffd400;

    transform: translateY(-10px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.16);
}


/* ==========================================================
   ICON
========================================================== */

.hero-stat-icon {

    width: 88px;

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffd400;

    color: #17161b;

    border-radius: 18px;

    margin-bottom: 28px;

    box-shadow:
        0 12px 25px rgba(255, 212, 0, 0.25);

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}


/* Icon SVG */

.hero-stat-icon svg {

    width: 42px;

    height: 42px;
}


/* ==========================================================
   ICON HOVER
========================================================== */

.hero-stat-card:hover .hero-stat-icon {

    background: #17161b;

    color: #ffd400;

    transform: scale(1.06);
}


/* ==========================================================
   NUMBER
========================================================== */

.hero-stat-number {

    color: #222544;

    font-family: var(--font-display);

    font-size: 3.2rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.03em;

    transition: color 0.4s ease;
}


.hero-stat-card:hover .hero-stat-number {

    color: #17161b;
}


/* ==========================================================
   TITLE
========================================================== */

.hero-stat-title {

    margin-top: 8px;

    color: #222544;

    font-family: var(--font-display);

    font-size: 1.25rem;

    font-weight: 700;

    transition: color 0.4s ease;
}


.hero-stat-card:hover .hero-stat-title {

    color: #17161b;
}


/* ==========================================================
   LABEL
========================================================== */

.hero-stat-label {

    margin-top: 12px;

    color: #8b8b91;

    font-family: var(--font-mono);

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    transition: color 0.4s ease;
}


.hero-stat-card:hover .hero-stat-label {

    color: #17161b;
}


/* ==========================================================
   HOVER LIGHT EFFECT
========================================================== */

.hero-stat-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -100px;

    right: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);

    opacity: 0;

    transition: opacity 0.4s ease;
}


.hero-stat-card:hover::before {

    opacity: 1;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .hero-stat-container {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .hero-stat-card {

        min-height: 280px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .hero-stat-section {

        padding: 0 18px 50px;
    }

    .hero-stat-container {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 20px;
    }

    .hero-stat-card {

        min-height: 260px;
    }

}

/* ==========================================================================
   About
   ========================================================================== */
/* .about-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:64px; align-items:center; }
@media(max-width:960px){ .about-grid{ grid-template-columns:1fr; gap:40px; } }
.about-media{ position:relative; }
.about-media .frame-main{
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/4.4;
}
.about-media .frame-main img{ width:100%; height:100%; object-fit:cover; }
.about-media .frame-float{
  position:absolute; width:44%; bottom:-30px; right:-28px; border-radius:var(--radius-md);
  overflow:hidden; border:5px solid var(--white); box-shadow:var(--shadow-lg); aspect-ratio:5/4;
}
.about-media .frame-float img{ width:100%; height:100%; object-fit:cover; }
@media(max-width:600px){ .about-media .frame-float{ display:none; } }

.about-copy h2{ font-size:clamp(1.8rem,3.2vw,2.5rem); margin-bottom:.55em; }
.about-copy p{ font-size:1.02rem; }
.about-points{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0 32px; }
.about-points li{ display:flex; align-items:flex-start; gap:10px; font-size:.92rem; font-weight:600; color:var(--navy-800); }
.about-points svg{ width:18px; height:18px; color:var(--signal-dark); flex-shrink:0; margin-top:2px; }
@media(max-width:480px){ .about-points{ grid-template-columns:1fr; } } */

/* =========================================================
   GTS ABOUT SECTION
   ONLY ABOUT SECTION CSS
========================================================= */

/* =========================================================
   GTS ABOUT SECTION
   COMPLETE CSS
========================================================= */


/* =========================================================
   ABOUT SECTION
========================================================= */

.gts-about-section {
    position: relative;
    width: 100%;

    padding: 42px 0;

    overflow: hidden;

    background:
        /* linear-gradient(
            135deg,
            #0c1722 0%,
            #121f2c 48%,
            #0d1823 100%
        ); */
        rgb(23, 22, 27);

        margin-top: 40px;
}


/* Background glow */

.gts-about-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -260px;
    top: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(184, 137, 36, 0.10) 0%,
            rgba(184, 137, 36, 0.04) 35%,
            transparent 70%
        );

    pointer-events: none;
}


.gts-about-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -260px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.045) 0%,
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   MAIN ABOUT CONTAINER
========================================================= */

.gts-about-container {
    position: relative;

    z-index: 2;

    width: min(
        1500px,
        calc(100% - 70px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        48%
        52%;

    align-items: stretch;

    gap: 0;
}


/* =========================================================
   LEFT IMAGE GALLERY
========================================================= */

.gts-about-gallery {
    position: relative;

    width: 100%;

    height: 500px;

    display: grid;

    /*
       Different image sizes.
       NOT an equal grid.
    */

    grid-template-columns:
        42%
        58%;

    grid-template-rows:
        38%
        62%;

    gap: 8px;

    padding-right: 12px;

    box-sizing: border-box;
}


/* =========================================================
   COMMON IMAGE BOX
========================================================= */

.gts-about-img {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 10px;

    background: #101a24;

    box-sizing: border-box;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   IMAGE
========================================================= */

.gts-about-img img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.75s
        cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.75s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.gts-about-img:hover img {
    transform: scale(1.055);

    filter:
        brightness(1.06)
        saturate(1.08);
}


/* =========================================================
   IMAGE POSITIONS
========================================================= */


/*
   IMAGE 1
   LARGE LEFT/TOP IMAGE
*/

.gts-about-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}


/*
   IMAGE 2
   SMALLER LEFT/BOTTOM IMAGE

   It is placed normally in the layout,
   not over Image 1.
*/

.gts-about-img-2 {
    grid-column: 1;
    grid-row: 2;

    /*
       Make it visually smaller
       than Image 1.
    */

    height: 42%;

    align-self: end;
}


/*
   IMAGE 3
   SMALLER RIGHT/TOP IMAGE
*/

.gts-about-img-3 {
    grid-column: 2;
    grid-row: 1;

    height: 100%;
}


/*
   IMAGE 4
   LARGE RIGHT/BOTTOM IMAGE
*/

.gts-about-img-4 {
    grid-column: 2;
    grid-row: 2;

    height: 100%;

    position: relative;
}


/* =========================================================
   IMAGE 1 - MAKE IT DOMINANT
========================================================= */

.gts-about-img-1 {
    height: 100%;
}


/* =========================================================
   IMAGE 2 - MAKE SMALLER
========================================================= */

.gts-about-img-2 {
    height: 72%;
}


/* =========================================================
   IMAGE 3 - SMALLER
========================================================= */

.gts-about-img-3 {
    height: 100%;
}


/* =========================================================
   IMAGE 4 - LARGE
========================================================= */

.gts-about-img-4 {
    height: 100%;
}


/* =========================================================
   IMAGE DARK GRADIENT
========================================================= */

.gts-about-img::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 52%,
            rgba(0, 0, 0, 0.18) 100%
        );
}


/* =========================================================
   GTS BADGE
   ALWAYS INSIDE IMAGE 4
========================================================= */

.gts-about-img-4 .gts-about-badge {
    position: absolute;

    z-index: 10;

    right: 12px;
    bottom: 12px;

    padding:
        10px
        23px;

    background:
        linear-gradient(
            135deg,
            #d6a12a 0%,
            #a97612 100%
        );

    color: #ffffff;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: 1px;

    line-height: 1;

    border-radius: 2px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.38);

    transform: rotate(-2deg);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.gts-about-img-4 .gts-about-badge:hover {
    transform:
        rotate(0deg)
        translateY(-3px);

    box-shadow:
        0 13px 27px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   RIGHT SIDE ABOUT CONTENT
========================================================= */

.gts-about-content {
    position: relative;

    min-height: 500px;

    padding:
        40px
        52px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    /*
       White glass finish
    */

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.99) 0%,
            rgba(248, 249, 250, 0.97) 55%,
            rgba(238, 241, 244, 0.96) 100%
        );

    border-radius:
        0
        18px
        18px
        0;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.20);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-sizing: border-box;
}


/* =========================================================
   CONTENT GOLD GLOW
========================================================= */

.gts-about-content::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -160px;
    top: -190px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190, 143, 42, 0.14),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   SECOND CONTENT GLOW
========================================================= */

.gts-about-content::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.85),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   ABOUT EYEBROW
========================================================= */

.gts-about-eyebrow {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #a87816;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.gts-about-eyebrow span {
    display: block;

    width: 38px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #b4821a,
            #d4a640
        );
}


/* =========================================================
   ABOUT HEADING
========================================================= */

.gts-about-content h2 {
    position: relative;

    z-index: 3;

    margin:
        0
        0
        18px;

    max-width: 780px;

    color: #102235;

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}


/* Gold heading line */

.gts-about-content h2 strong {
    display: block;

    color: #b17d16;

    font-weight: 900;
}


/* =========================================================
   ABOUT PARAGRAPH
========================================================= */

.gts-about-content p {
    position: relative;

    z-index: 3;

    max-width: 780px;

    margin:
        0
        0
        12px;

    color: #5b6b7c;

    font-size: 14.5px;

    line-height: 1.62;
}


/* =========================================================
   FEATURES
========================================================= */

.gts-about-features {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 24px;

    margin-top: 10px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.gts-about-feature {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   FEATURE CHECK
========================================================= */

.gts-feature-check {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(
            177,
            125,
            22,
            0.12
        );

    color: #a87816;

    font-size: 16px;

    font-weight: 900;
}


/* =========================================================
   FEATURE TITLE
========================================================= */

.gts-about-feature strong {
    display: block;

    color: #1a2c3f;

    font-size: 13.5px;

    font-weight: 800;
}


/* =========================================================
   FEATURE SUBTITLE
========================================================= */

.gts-about-feature small {
    display: block;

    margin-top: 3px;

    color: #8794a1;

    font-size: 11.5px;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.gts-about-btn {
    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: 18px;

    padding:
        10px
        17px;

    border:
        1px solid
        #ae7d18;

    border-radius: 3px;

    color: #a67515;

    background: transparent;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.gts-about-btn span {
    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.gts-about-btn:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #c08c20,
            #a87512
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(174, 125, 24, 0.25);
}


.gts-about-btn:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   IMAGE ENTRANCE ANIMATION
========================================================= */

.gts-about-img {
    opacity: 0;

    animation:
        gtsAboutImageReveal
        0.75s
        cubic-bezier(.2, .8, .2, 1)
        forwards;
}


.gts-about-img-1 {
    animation-delay: .05s;
}


.gts-about-img-2 {
    animation-delay: .13s;
}


.gts-about-img-3 {
    animation-delay: .21s;
}


.gts-about-img-4 {
    animation-delay: .29s;
}


@keyframes gtsAboutImageReveal {

    0% {
        opacity: 0;

        transform:
            translateY(15px)
            scale(.985);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   CONTENT ENTRANCE ANIMATION
========================================================= */

.gts-about-content {
    opacity: 0;

    animation:
        gtsAboutContentReveal
        0.8s
        cubic-bezier(.2, .8, .2, 1)
        .15s
        forwards;
}


@keyframes gtsAboutContentReveal {

    0% {
        opacity: 0;

        transform:
            translateX(20px);
    }

    100% {
        opacity: 1;

        transform:
            translateX(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .gts-about-container {
        width:
            calc(100% - 50px);

        grid-template-columns:
            46%
            54%;
    }


    .gts-about-gallery {
        height: 470px;

        grid-template-columns:
            42%
            58%;

        padding-right: 10px;
    }


    .gts-about-content {
        min-height: 470px;

        padding:
            34px
            38px;
    }


    .gts-about-content h2 {
        font-size:
            clamp(
                1.8rem,
                3vw,
                2.6rem
            );
    }


    .gts-about-content p {
        font-size: 13.5px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .gts-about-section {
        padding:
            35px
            0;
    }


    .gts-about-container {
        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .gts-about-gallery {
        width: 100%;

        height: 440px;

        padding-right: 0;
    }


    .gts-about-content {
        min-height: auto;

        border-radius: 16px;

        padding:
            35px
            38px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gts-about-section {
        padding:
            28px
            0;
    }


    .gts-about-container {
        width:
            calc(100% - 24px);

        gap: 15px;
    }


    .gts-about-gallery {
        height: 370px;

        grid-template-columns:
            40%
            60%;

        grid-template-rows:
            40%
            60%;

        gap: 6px;
    }


    .gts-about-img {
        border-radius: 7px;
    }


    .gts-about-content {
        padding:
            28px
            22px;

        border-radius: 12px;
    }


    .gts-about-eyebrow {
        font-size: 10px;

        letter-spacing: 2.3px;

        margin-bottom: 12px;
    }


    .gts-about-eyebrow span {
        width: 30px;
    }


    .gts-about-content h2 {
        font-size: 1.85rem;

        letter-spacing: -0.8px;

        line-height: 1;
    }


    .gts-about-content p {
        font-size: 13px;

        line-height: 1.55;
    }


    .gts-about-features {
        grid-template-columns:
            1fr;

        gap: 12px;

        margin-top: 8px;
    }


    .gts-about-feature {
        gap: 9px;
    }


    .gts-feature-check {
        width: 30px;
        height: 30px;

        font-size: 14px;
    }


    .gts-about-feature strong {
        font-size: 12.5px;
    }


    .gts-about-feature small {
        font-size: 10.5px;
    }


    .gts-about-btn {
        margin-top: 15px;

        padding:
            9px
            14px;

        font-size: 11px;
    }


    .gts-about-img-4 .gts-about-badge {
        right: 7px;

        bottom: 7px;

        padding:
            7px
            16px;

        font-size: 14px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .gts-about-gallery {
        height: 320px;

        grid-template-columns:
            39%
            61%;
    }


    .gts-about-content {
        padding:
            25px
            18px;
    }


    .gts-about-content h2 {
        font-size: 1.65rem;
    }


    .gts-about-content p {
        font-size: 12.5px;
    }


    .gts-about-img-4 .gts-about-badge {
        right: 6px;

        bottom: 6px;

        padding:
            6px
            13px;

        font-size: 12px;
    }
}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gts-about-img,
    .gts-about-content {
        animation: none;

        opacity: 1;
    }


    .gts-about-img img,
    .gts-about-btn,
    .gts-about-badge {
        transition: none;
    }
}


/*
   Very subtle background glow
*/

.gts-about-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -250px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190, 145, 45, .10),
            transparent 70%
        );

    pointer-events: none;
}


.gts-about-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.045),
            transparent 70%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
--------------------------------------------------------- */

.gts-about-container {
    position: relative;

    z-index: 2;

    width: min(
        1450px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    display: grid;

    /*
       LEFT IMAGE AREA
       RIGHT CONTENT
    */

    grid-template-columns:
        48%
        52%;

    gap: 0;

    align-items: stretch;
}


/* ---------------------------------------------------------
   LEFT IMAGE GALLERY
--------------------------------------------------------- */

.gts-about-gallery {
    position: relative;

    width: 100%;

    height: 500px;

    display: grid;

    grid-template-columns:
        42%
        58%;

    grid-template-rows:
        36%
        64%;

    gap: 8px;

    padding-right: 12px;
}


/* ---------------------------------------------------------
   COMMON IMAGE
--------------------------------------------------------- */

.gts-about-img {
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 100%;

    border-radius: 9px;

    background: #101a24;

    box-shadow:
        0 10px 28px rgba(0,0,0,.22);
}


.gts-about-img img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.2,.8,.2,1),
        filter .7s ease;
}


/* ---------------------------------------------------------
   IMAGE HOVER
--------------------------------------------------------- */

.gts-about-img:hover img {
    transform: scale(1.055);

    filter:
        brightness(1.07)
        saturate(1.05);
}


/* ---------------------------------------------------------
   IMAGE POSITIONS
--------------------------------------------------------- */


/*
   IMAGE 1
   Tall left
*/

.gts-about-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}


/*
   IMAGE 2
   Top-right
*/

.gts-about-img-2 {
    grid-column: 2;
    grid-row: 1;
}


/*
   IMAGE 3
   Bottom-right
*/

.gts-about-img-3 {
    grid-column: 2;
    grid-row: 2;
}


/*
   IMAGE 4

   Small overlay / foreground image
   at the bottom-right.
*/

.gts-about-img-4 {
    position: absolute;

    z-index: 5;

    left: 42%;

    right: 12px;

    bottom: 0;

    width: auto;

    height: 64%;

    margin: 0;
}


/* ---------------------------------------------------------
   SUBTLE IMAGE OVERLAY
--------------------------------------------------------- */

.gts-about-img::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,.16)
        );
}


/* ---------------------------------------------------------
   GTS BADGE
   IMPORTANT:
   IT IS INSIDE IMAGE 4
--------------------------------------------------------- */

.gts-about-badge {
    position: absolute;

    z-index: 10;

    right: 10px;
    bottom: 12px;

    padding:
        9px
        24px;

    background:
        linear-gradient(
            135deg,
            #d59d22,
            #a87510
        );

    color: #fff;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 1px;

    line-height: 1;

    border-radius: 2px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.35);

    transform: rotate(-2deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.gts-about-badge:hover {
    transform:
        rotate(0deg)
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.42);
}


/* ---------------------------------------------------------
   RIGHT ABOUT CONTENT
--------------------------------------------------------- */

.gts-about-content {
    position: relative;

    min-height: 500px;

    padding:
        40px
        52px;

    /*
       White glass / gradient panel
    */

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.99),
            rgba(246,248,250,.96)
        );

    border-radius:
        0
        18px
        18px
        0;

    box-shadow:
        0 18px 50px rgba(0,0,0,.20);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;
}


/* ---------------------------------------------------------
   CONTENT LIGHT GLOW
--------------------------------------------------------- */

.gts-about-content::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -180px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(191,143,42,.13),
            transparent 70%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.gts-about-eyebrow {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #a87816;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.gts-about-eyebrow span {
    width: 37px;
    height: 2px;

    background: #ad7c18;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.gts-about-content h2 {
    position: relative;

    z-index: 2;

    margin:
        0
        0
        19px;

    max-width: 760px;

    color: #102235;

    font-size:
        clamp(
            2rem,
            3.1vw,
            3.1rem
        );

    line-height: .97;

    font-weight: 900;

    letter-spacing: -1.4px;
}


.gts-about-content h2 strong {
    display: block;

    color: #b17d16;

    font-weight: 900;
}


/* ---------------------------------------------------------
   PARAGRAPHS
--------------------------------------------------------- */

.gts-about-content p {
    position: relative;

    z-index: 2;

    max-width: 780px;

    margin:
        0
        0
        12px;

    color: #5a6b7d;

    font-size: 14.5px;

    line-height: 1.62;
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.gts-about-features {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 24px;

    margin-top: 10px;
}


.gts-about-feature {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* ---------------------------------------------------------
   CHECK
--------------------------------------------------------- */

.gts-feature-check {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(
            180,
            135,
            36,
            .12
        );

    color: #ac7b18;

    font-size: 16px;

    font-weight: 900;
}


/* ---------------------------------------------------------
   FEATURE TEXT
--------------------------------------------------------- */

.gts-about-feature strong {
    display: block;

    color: #1a2c3f;

    font-size: 13.5px;

    font-weight: 800;
}


.gts-about-feature small {
    display: block;

    margin-top: 3px;

    color: #84919f;

    font-size: 11.5px;
}


/* ---------------------------------------------------------
   BUTTON
--------------------------------------------------------- */

.gts-about-btn {
    position: relative;

    z-index: 2;

    width: fit-content;

    margin-top: 19px;

    padding:
        10px
        17px;

    border:
        1px solid
        #ad7c18;

    border-radius: 3px;

    color: #a67515;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        all .3s ease;
}


.gts-about-btn span {
    margin-left: 7px;

    font-size: 15px;

    transition:
        transform .3s ease;
}


.gts-about-btn:hover {
    background: #ad7c18;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(173,124,24,.25);
}


.gts-about-btn:hover span {
    display: inline-block;

    transform:
        translateX(4px);
}


/* =========================================================
   SUBTLE ENTRANCE ANIMATION
========================================================= */

.gts-about-img {
    opacity: 0;

    animation:
        gtsAboutImageIn
        .75s
        cubic-bezier(.2,.8,.2,1)
        forwards;
}


.gts-about-img-1 {
    animation-delay: .05s;
}


.gts-about-img-2 {
    animation-delay: .12s;
}


.gts-about-img-3 {
    animation-delay: .19s;
}


.gts-about-img-4 {
    animation-delay: .26s;
}


.gts-about-content {
    opacity: 0;

    animation:
        gtsAboutContentIn
        .8s
        cubic-bezier(.2,.8,.2,1)
        .12s
        forwards;
}


/* ---------------------------------------------------------
   IMAGE ANIMATION
--------------------------------------------------------- */

@keyframes gtsAboutImageIn {

    from {
        opacity: 0;

        transform:
            translateY(16px)
            scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* ---------------------------------------------------------
   CONTENT ANIMATION
--------------------------------------------------------- */

@keyframes gtsAboutContentIn {

    from {
        opacity: 0;

        transform:
            translateX(20px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .gts-about-container {
        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr;

        gap: 22px;
    }


    .gts-about-gallery {
        height: 430px;

        padding-right: 0;
    }


    .gts-about-content {
        min-height: auto;

        border-radius: 18px;

        padding:
            35px
            40px;
    }


    /*
       Make Image 4 normal on tablet.
    */

    .gts-about-img-4 {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        height: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gts-about-section {
        padding:
            28px
            0;
    }


    .gts-about-container {
        width:
            calc(100% - 24px);
    }


    .gts-about-gallery {
        height: 330px;

        gap: 6px;
    }


    .gts-about-content {
        padding:
            28px
            22px;
    }


    .gts-about-content h2 {
        font-size: 2rem;

        letter-spacing: -1px;
    }


    .gts-about-content p {
        font-size: 13.5px;

        line-height: 1.55;
    }


    .gts-about-features {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .gts-about-badge {
        right: 7px;

        bottom: 9px;

        padding:
            8px
            19px;

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .gts-about-gallery {
        height: 290px;
    }


    .gts-about-content {
        padding:
            25px
            18px;
    }


    .gts-about-content h2 {
        font-size: 1.75rem;
    }


    .gts-about-eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }

}

/* ==========================================================
   SERVICE CARDS SECTION
========================================================== */

.service-cards-section {

    width: 100%;

    padding: 100px 30px;

    background: #f7f7f8;

    box-sizing: border-box;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.service-section-heading {

    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.service-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    color: #ffd400;

    font-family: var(--font-mono);

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.service-section-heading h2 {

    margin: 0 0 18px;

    color: #1d1c24;

    font-family: var(--font-display);

    font-size: clamp(
        2rem,
        4vw,
        3.4rem
    );

    line-height: 1.08;
}


.service-section-heading h2 span {

    color: #55545d;
}


.service-section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: #74727a;

    font-size: 1rem;

    line-height: 1.7;
}


/* ==========================================================
   CARDS CONTAINER
========================================================== */

.service-cards-container {

    width: min(1320px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;
}


/* ==========================================================
   CARD
========================================================== */

.service-card {

    height: 470px;

    perspective: 1200px;

    cursor: pointer;
}


/* ==========================================================
   INNER
========================================================== */

.service-card-inner {

    position: relative;

    width: 100%;

    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}


/* ==========================================================
   ROTATE ON HOVER
========================================================== */

.service-card:hover .service-card-inner {

    transform: rotateY(180deg);
}


/* ==========================================================
   FRONT + BACK
========================================================== */

.service-card-front,
.service-card-back {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border-radius: 20px;

    box-sizing: border-box;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

    overflow: hidden;
}


/* ==========================================================
   FRONT
========================================================== */

.service-card-front {

    background: #ffd400;

    color: #1d1c24;

    padding: 55px 38px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border: 1px solid rgba(29,28,36,.08);

    box-shadow:
        0 20px 45px rgba(29,28,36,.12);
}


/* ==========================================================
   FRONT DECORATION
========================================================== */

.service-card-front::before {

    content: "";

    position: absolute;

    width: 210px;

    height: 210px;

    top: -115px;

    right: -95px;

    border-radius: 50%;

    background: rgba(255,255,255,.22);
}


.service-card-front::after {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    bottom: -90px;

    left: -70px;

    border-radius: 50%;

    background: rgba(29,28,36,.06);
}


/* ==========================================================
   ICON
========================================================== */

.service-icon {

    position: relative;

    z-index: 2;

    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    border-radius: 22px;

    background: #1d1c24;

    color: #ffd400;

    box-shadow:
        0 15px 30px rgba(29,28,36,.18);

    transition:
        transform .4s ease;
}


.service-card:hover .service-icon {

    transform: scale(.95);
}


.service-icon svg {

    width: 48px;

    height: 48px;
}


/* ==========================================================
   FRONT TITLE
========================================================== */

.service-card-front h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 17px;

    color: #1d1c24;

    font-family: var(--font-display);

    font-size: 1.65rem;

    line-height: 1.15;
}


/* ==========================================================
   FRONT DESCRIPTION
========================================================== */

.service-card-front p {

    position: relative;

    z-index: 2;

    max-width: 390px;

    margin: 0;

    color: #37353d;

    font-size: .94rem;

    line-height: 1.7;
}


/* ==========================================================
   HOVER HINT
========================================================== */

.flip-hint {

    position: absolute;

    bottom: 22px;

    z-index: 2;

    color: rgba(29,28,36,.55);

    font-family: var(--font-mono);

    font-size: .62rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* ==========================================================
   BACK
========================================================== */

.service-card-back {

    transform: rotateY(180deg);

    padding: 45px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #1d1c24 0%,
            #292832 55%,
            #34343f 100%
        );

    color: #ffffff;

    box-shadow:
        0 20px 45px rgba(29,28,36,.25);
}


/* ==========================================================
   BACK TITLE
========================================================== */

.service-card-back h3 {

    margin: 0 0 30px;

    color: #ffd400;

    font-family: var(--font-display);

    font-size: 1.7rem;

    line-height: 1.15;
}


/* ==========================================================
   BACK LIST
========================================================== */

.service-card-back ul {

    list-style: none;

    margin: 0;

    padding: 0;
}


.service-card-back li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;

    color: #f2f1f4;

    font-size: .92rem;

    line-height: 1.5;
}


.service-card-back li span {

    flex-shrink: 0;

    color: #ffd400;

    font-size: 1rem;

    font-weight: 700;
}


/* ==========================================================
   LEARN MORE
========================================================== */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 15px;

    padding: 11px 17px;

    color: #1d1c24;

    background: #ffd400;

    border-radius: 7px;

    font-family: var(--font-display);

    font-size: .75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .05em;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}


.service-link:hover {

    background: #ffffff;

    transform: translateX(4px);
}


.service-link span {

    font-size: 1.1rem;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .service-cards-container {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .service-cards-section {

        padding: 70px 18px;

    }


    .service-cards-container {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .service-card {

        height: 450px;

    }


    .service-card-front {

        padding: 40px 25px;

    }


    .service-card-back {

        padding: 35px 28px;

    }

}

/* ==========================================================================
   DIVISIONS — PREMIUM DARK / 2 ROW LAYOUT
   ========================================================================== */
.divisions-section{position:relative;overflow:hidden;padding:105px 0 115px;background:#1D1C21;color:#fff;isolation:isolate}
.divisions-section::before{content:"";position:absolute;inset:0;z-index:-2;background:radial-gradient(circle at 12% 12%,rgba(255,255,255,.035),transparent 30%),radial-gradient(circle at 88% 78%,rgba(255,212,0,.055),transparent 30%),#1D1C21}
.divisions-section::after{content:"";position:absolute;inset:0;z-index:-1;opacity:.08;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,black,transparent 92%)}
.divisions-section .section-head{text-align:center;max-width:760px;margin:0 auto 52px}.divisions-section .section-head h2{color:#fff}.divisions-section .section-head p{color:#aaa7b0}.division-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}
.division-card{position:relative;min-width:0;display:flex;flex-direction:column;overflow:hidden;background:linear-gradient(145deg,#29282f,#211f25);border:1px solid rgba(255,255,255,.09);border-radius:18px;box-shadow:0 12px 35px rgba(0,0,0,.24);transform:translateY(0);transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .35s ease}
.division-card::before{content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,transparent,#ffd400,transparent);transform:scaleX(0);transition:transform .45s ease;z-index:10}.division-card::after{content:"";position:absolute;width:200px;height:200px;right:-120px;bottom:-120px;border-radius:50%;background:radial-gradient(circle,rgba(255,212,0,.14),transparent 70%);opacity:0;transition:opacity .45s ease,transform .45s ease;pointer-events:none}
.division-card:hover{transform:translateY(-10px);border-color:rgba(255,212,0,.42);box-shadow:0 25px 55px rgba(0,0,0,.42),0 0 0 1px rgba(255,212,0,.04)}.division-card:hover::before{transform:scaleX(1)}.division-card:hover::after{opacity:1;transform:scale(1.2)}
.division-card .thumb{position:relative;width:100%;aspect-ratio:16/10;overflow:hidden;background:#111116}.division-card .thumb img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .75s cubic-bezier(.2,.8,.2,1),filter .5s ease}.division-card:hover .thumb img{transform:scale(1.09);filter:brightness(1.08) saturate(1.08)}.division-card .thumb::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.03) 20%,rgba(0,0,0,.65) 100%);pointer-events:none}
.division-card .thumb .num{position:absolute;top:12px;left:12px;z-index:5;display:flex;align-items:center;justify-content:center;min-width:36px;height:27px;padding:0 9px;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:rgba(20,19,24,.84);color:#ffd400;font:700 .62rem var(--font-mono);letter-spacing:.08em;backdrop-filter:blur(8px);transition:transform .3s ease}.division-card:hover .thumb .num{transform:scale(1.08)}
.division-card .body{position:relative;z-index:2;display:flex;flex-direction:column;flex:1;padding:20px}.division-card h3{margin:0 0 8px;color:#fff;font-size:1.08rem;line-height:1.3;transition:color .3s ease}.division-card:hover h3{color:#ffd400}.division-card p{flex:1;margin:0;color:#9e9ba5;font-size:.82rem;line-height:1.55;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}
.division-card .highlights{display:flex;flex-wrap:wrap;gap:5px;margin:13px 0 16px}.division-card .highlights span{padding:4px 8px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:rgba(255,255,255,.045);color:#9e9ba5;font: .59rem var(--font-mono);transition:.3s ease}.division-card:hover .highlights span{background:rgba(255,212,0,.08);border-color:rgba(255,212,0,.18);color:#ffd400;transform:translateY(-2px)}
.division-card .view-link{position:relative;display:inline-flex;align-items:center;gap:7px;width:max-content;padding:4px 0;margin-top:auto;border:0;background:transparent;color:#ffd400;font:700 .68rem var(--font-display);letter-spacing:.06em;text-transform:uppercase;cursor:pointer}.division-card .view-link::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:#ffd400;transition:width .3s ease}.division-card:hover .view-link::after{width:calc(100% - 20px)}.division-card .view-link svg{width:13px;height:13px;transition:transform .3s ease}.division-card:hover .view-link svg{transform:translateX(6px)}
.division-detail-wrap{margin-top:60px;border-top:1px solid rgba(255,255,255,.1);padding-top:8px}.division-detail{border-bottom:1px solid rgba(255,255,255,.1)}.division-detail-head{display:flex;align-items:center;gap:20px;width:100%;padding:25px 5px;border:0;background:transparent;color:#fff;text-align:left;cursor:pointer;transition:background .3s ease,padding .3s ease}.division-detail-head:hover{padding-left:12px;background:rgba(255,255,255,.025)}.division-detail-head .idx{width:35px;flex-shrink:0;color:#040404;font: .9rem var(--font-mono)}.division-detail-head h3{flex:1;margin:0;color : var(--signal-dark);font:1.15rem var(--font-display)}.division-detail-head .sub{display:block;margin-top:5px;color:#09090a;font-size:.82rem;font-weight:400}.division-detail-head .chev{width:20px;height:20px;flex-shrink:0;color:var(--signal-dark);transition:transform .35s ease}.division-detail.open .division-detail-head .chev{transform:rotate(180deg)}.division-detail.open .division-detail-head h3{color: --si}.division-detail-body{max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.2,.8,.2,1)}.division-detail.open .division-detail-body{max-height:2600px}.division-detail-inner{display:grid;grid-template-columns:1fr 300px;gap:40px;padding:8px 5px 45px 58px;background:transparent!important}.division-detail-inner .lead-text{margin:0 0 24px;color:#0a0a0b;font-size:.95rem;line-height:1.7}.spec-cols{display:grid;grid-template-columns:1fr 1fr;gap:28px 35px}.spec-block h4{display:inline-block;margin:0 0 16px;padding:0 0 7px;border-bottom:2px solid var(--signal-dark);color: var(--signal-dark);font:.7rem var(--font-mono);letter-spacing:.09em;text-transform:uppercase}.spec-block li{position:relative;padding:8px 0 8px 18px;border-bottom:1px dashed rgba(255,255,255,.09);color:#080808;font-size:.82rem}.spec-block li::before{content:"";position:absolute;left:0;top:14px;width:6px;height:6px;background:#ffd400;border-radius:1px}.division-detail-inner .side-photo{overflow:hidden;aspect-ratio:4/5;border:1px solid rgba(255,255,255,.1);border-radius:15px;background:#111116;box-shadow:0 18px 45px rgba(0,0,0,.3)}.division-detail-inner .side-photo img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.division-detail-inner .side-photo:hover img{transform:scale(1.06)}.division-detail-inner .side-note{margin-top:15px;padding:16px 18px;border:1px solid rgba(255,212,0,.12);border-radius:8px;background:rgba(255,212,0,.055);color:#b8b4bc;font-size:.78rem}
@media(max-width:1100px){.division-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:850px){.division-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.division-detail-inner{grid-template-columns:1fr;padding-left:5px}}@media(max-width:600px){.divisions-section{padding:70px 0 80px}.division-grid{grid-template-columns:1fr}.division-card .thumb{aspect-ratio:16/9}.division-card .body{padding:18px}.division-detail-head{gap:12px;padding:20px 3px}.division-detail-inner{padding-bottom:30px}.spec-cols{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.division-card{animation:none;transition:none}.division-card:hover{transform:none}.division-card::before,.division-card::after,.division-card .thumb img,.division-card .thumb .num,.division-card h3,.division-card .highlights span,.division-card .view-link svg,.division-detail-head,.division-detail-head .chev,.division-detail-inner .side-photo img{transition:none!important}}

/* =========================================================
   SEALS PRODUCT GALLERY
   5 IMAGE EXPANDING GALLERY
   Theme: #1d1c24 + Yellow
========================================================= */

.seals-product-gallery {
  width: 100%;
  max-width: 1600px;
  height: 560px;

  margin: 45px auto 25px;
  padding: 0;

  display: flex;
  gap: 3px;

  overflow: hidden;

  background: #111217;

  border-radius: 20px;

  border: 1px solid rgba(255, 212, 0, 0.20);

  box-sizing: border-box;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.18),
    inset 0 0 35px rgba(255, 212, 0, 0.025);
}


/* =========================================================
   CARD
========================================================= */

.seal-product-card {
  position: relative;

  flex: 1 1 0;

  min-width: 0;
  height: 100%;

  overflow: hidden;

  cursor: pointer;

  background: #1d1c24;

  border-right: 1px solid rgba(255, 255, 255, 0.06);

  isolation: isolate;

  transition:
    flex 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}


/* Expanded card */

.seal-product-card.active {
  flex: 4.8 1 0;

  filter: brightness(1);
}


/* =========================================================
   IMAGE
========================================================= */

.seal-product-card > img {
  position: absolute;

  inset: -5%;

  width: 110%;
  height: 110%;

  max-width: none;

  object-fit: cover;

  object-position: center;

  z-index: 0;

  opacity: 0.90;

  filter:
    saturate(0.85)
    contrast(1.05);

  transform:
    scale(1.02)
    translate(0, 0);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}


/* Active image */

.seal-product-card.active > img {
  opacity: 1;

  filter:
    saturate(1.05)
    contrast(1.08);

  transform:
    scale(1.10)
    translate(0, 0);
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

.seal-product-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 8, 0.12) 0%,
      rgba(5, 5, 8, 0.18) 35%,
      rgba(5, 5, 8, 0.88) 100%
    );

  opacity: 1;

  transition:
    background 0.6s ease;
}


/* Collapsed cards darker */

.seal-product-card:not(.active) .seal-product-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 8, 0.52),
      rgba(5, 5, 8, 0.91)
    );
}


/* =========================================================
   ANIMATED YELLOW BORDER
   IMPORTANT:
   This is ONLY the border.
   It does NOT cover the image.
========================================================= */

.seal-product-border {
  position: absolute;

  inset: 0;

  z-index: 10;

  padding: 1px;

  pointer-events: none;

  border-radius: inherit;

  opacity: 0;

  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 35deg,
      #ffd400 65deg,
      #fff6a8 90deg,
      #ffd400 115deg,
      transparent 150deg,
      transparent 360deg
    );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  mask-composite: exclude;

  transition:
    opacity 0.35s ease;
}


/* Active border */

.seal-product-card.active .seal-product-border {
  opacity: 1;

  animation:
    sealBorderRotate 3s linear infinite;
}


/* Border animation */

@keyframes sealBorderRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* =========================================================
   CONTENT
========================================================= */

.seal-product-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 8;

  width: 100%;
  max-width: 650px;

  padding: 38px;

  box-sizing: border-box;

  opacity: 0;

  visibility: hidden;

  transform: translateY(35px);

  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.45s;
}


/* Show content on active card */

.seal-product-card.active .seal-product-content {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);

  transition-delay: 0.15s;
}


/* =========================================================
   NUMBER
========================================================= */

.seal-product-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 15px;

  border: 1px solid rgba(255, 212, 0, 0.60);

  border-radius: 50%;

  color: #ffd400;

  background: rgba(29, 28, 36, 0.75);

  font-family: var(--font-mono, monospace);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  box-shadow:
    0 0 0 5px rgba(255, 212, 0, 0.035);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}


.seal-product-card:hover .seal-product-number {
  transform: rotate(360deg);

  box-shadow:
    0 0 0 7px rgba(255, 212, 0, 0.06),
    0 0 25px rgba(255, 212, 0, 0.18);
}


/* =========================================================
   KICKER
========================================================= */

.seal-product-kicker {
  display: block;

  margin-bottom: 10px;

  color: #ffd400;

  font-family: var(--font-mono, monospace);

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.seal-product-content h4 {
  margin: 0 0 15px;

  color: #ffffff;

  font-family:
    var(--font-display, Arial, sans-serif);

  font-size:
    clamp(2rem, 3.2vw, 3.3rem);

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -0.025em;

  text-transform: uppercase;

  text-shadow:
    0 3px 20px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.seal-product-content p {
  max-width: 520px;

  margin: 0 0 20px;

  color: #d8e1ea;

  font-size: 0.92rem;

  line-height: 1.7;
}


/* =========================================================
   PRODUCT TAGS
========================================================= */

.seal-product-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


.seal-product-tags span {
  display: inline-flex;

  padding: 7px 11px;

  border: 1px solid rgba(255, 212, 0, 0.30);

  color: #ffd400;

  background:
    rgba(29, 28, 36, 0.72);

  font-family:
    var(--font-mono, monospace);

  font-size: 0.62rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  backdrop-filter: blur(8px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.seal-product-tags span:hover {
  background:
    rgba(255, 212, 0, 0.12);

  border-color: #ffd400;

  transform: translateY(-2px);
}


/* =========================================================
   VERTICAL TITLE
========================================================= */

.seal-product-vertical {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 7;

  transform:
    translate(-50%, -50%)
    rotate(-90deg);

  white-space: nowrap;

  color: rgba(255, 255, 255, 0.72);

  font-family:
    var(--font-mono, monospace);

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}


/* Hide vertical title on active card */

.seal-product-card.active .seal-product-vertical {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(-90deg)
    scale(0.8);
}


/* =========================================================
   COLLAPSED CARDS
========================================================= */

.seal-product-card:not(.active) {
  filter: brightness(0.70);
}


.seal-product-card:not(.active):hover {
  filter: brightness(0.88);
}


/* =========================================================
   MOUSE FOLLOWING YELLOW LIGHT
========================================================= */

.seal-product-card::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);

  z-index: 2;

  pointer-events: none;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 212, 0, 0.14) 0%,
      rgba(255, 212, 0, 0.055) 30%,
      transparent 70%
    );

  opacity: 0;

  transition:
    opacity 0.25s ease;
}


.seal-product-card:hover::after {
  opacity: 1;
}


/* =========================================================
   MOVING SHINE
========================================================= */

.seal-product-card::before {
  content: "";

  position: absolute;

  top: -100%;
  left: -60%;

  width: 40%;
  height: 300%;

  z-index: 4;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );

  transform: rotate(18deg);

  opacity: 0;
}


.seal-product-card:hover::before {
  opacity: 1;

  animation:
    sealShine 1.1s ease forwards;
}


@keyframes sealShine {

  0% {
    left: -60%;
  }

  100% {
    left: 140%;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .seals-product-gallery {
    height: 500px;
  }

  .seal-product-card.active {
    flex: 3.8 1 0;
  }

  .seal-product-content {
    padding: 28px;
  }

  .seal-product-content h4 {
    font-size: 2.1rem;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .seals-product-gallery {
    height: auto;

    display: flex;

    flex-direction: column;

    gap: 4px;

    border-radius: 15px;

    margin-top: 35px;
  }


  .seal-product-card,
  .seal-product-card.active {

    flex: none;

    width: 100%;

    height: 90px;

    min-height: 90px;
  }


  .seal-product-card.active {

    height: 420px;

    min-height: 420px;
  }


  .seal-product-content {

    padding: 25px;

    max-width: 100%;
  }


  .seal-product-content h4 {

    font-size: 2rem;
  }


  .seal-product-content p {

    font-size: 0.85rem;
  }


  .seal-product-vertical {

    font-size: 0.60rem;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .seal-product-card.active {

    height: 440px;

    min-height: 440px;
  }


  .seal-product-content {

    padding: 20px;
  }


  .seal-product-content h4 {

    font-size: 1.7rem;
  }


  .seal-product-number {

    width: 36px;
    height: 36px;
  }

}

/* =========================================================
   FIX — REMOVE EXTRA BACKGROUND UNDER PRODUCT GALLERY
========================================================= */

.seals-product-gallery {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent !important;
}


/* Remove any background created by the gallery wrapper */
.seals-product-gallery::before,
.seals-product-gallery::after {
    display: none !important;
    content: none !important;
}


/* Make sure gallery parent does NOT create gray space */
.division-detail-inner {
    background: transparent !important;
}


/* The direct parent of the gallery must stay transparent */
.division-detail-body {
    background: transparent !important;
}


/* Prevent extra bottom background/padding from gallery */
.seals-product-gallery {
    margin-bottom: 0 !important;
}


/* If the gallery cards have rounded bottom corners,
   keep the dark gallery edge clean */
.seal-product-card {
    margin-bottom: 0 !important;
}


/* Remove accidental shadow/background extending below gallery */
.seals-product-gallery {
    box-shadow: none !important;
}


/* =========================================================
   IMPORTANT:
   Keep the NEXT DIVISION separate from the gallery
========================================================= */

.seals-product-gallery + * {
    background: transparent;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-band{ background:#1D1C21; color:var(--white); }
.services-band .section-head h2{ color:var(--white); }
.services-band .section-head p{ color:#b7c8d8; }
.service-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-md); overflow:hidden; }
@media(max-width:980px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .service-grid{ grid-template-columns:1fr; } }
.service-item{ background:#1d1c24; padding:32px 26px; transition:background .2s; }
.service-item:hover{ background:#292832; }
.service-item svg{ width:30px; height:30px; color:var(--signal); margin-bottom:16px; }
.service-item h4{ color:var(--white); font-size:.98rem; margin-bottom:.4em; }
.service-item p{ color:#9db2c5; font-size:.82rem; margin:0; }

/* ==========================================================================
   Products
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:980px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .product-grid{ grid-template-columns:1fr; } }
.product-card{
  border:1px solid var(--line); border-radius:var(--radius-md); padding:28px 24px; transition:box-shadow .2s, transform .2s, border-color .2s;
  background:linear-gradient(180deg, #fff, #fbfcfd);
}
.product-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:transparent; }
.product-card .icon{
  width:52px; height:52px; border-radius:12px; background:var(--steel-100); display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.product-card .icon svg{ width:26px; height:26px; color:var(--steel-600); }
.product-card h4{ font-size:1rem; margin-bottom:.5em; }
.product-card p{ font-size:.86rem; margin:0; }

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-band{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.brand-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:18px; }
@media(max-width:980px){ .brand-grid{ grid-template-columns:repeat(4,1fr); } }
@media(max-width:560px){ .brand-grid{ grid-template-columns:repeat(2,1fr); } }
.brand-tile{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center; padding:20px 14px; aspect-ratio:3/2;
  transition:box-shadow .2s, transform .2s;
}
.brand-tile:hover{ box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.brand-tile img{ max-height:38px; width:auto; object-fit:contain; }
.brand-tile.text-only{ font-family:var(--font-display); text-transform:uppercase; letter-spacing:.03em; color:var(--navy-800); text-align:center; font-size:.85rem; line-height:1.25; }

/* ==========================================================================
   Industries
   ========================================================================== */
.industry-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
@media(max-width:980px){ .industry-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:560px){ .industry-grid{ grid-template-columns:repeat(2,1fr); } }
.industry-tile{
  border:1px solid var(--line); border-radius:var(--radius-md); padding:26px 16px; text-align:center;
  transition:border-color .2s, background .2s, transform .2s;
}
.industry-tile:hover{ border-color:var(--signal-dark); background:var(--steel-100); transform:translateY(-3px); }
.industry-tile svg{ width:28px; height:28px; color:var(--steel-600); margin-bottom:12px; }
.industry-tile span{ font-family:var(--font-display); font-size:.82rem; text-transform:uppercase; letter-spacing:.03em; color:var(--navy-800); }

/* ==========================================================================
   CTA strip
   ========================================================================== */
.cta-strip{
  background:linear-gradient(100deg, var(--signal-dark), var(--signal));
  color:var(--white); border-radius:var(--radius-lg); padding:52px 56px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-strip::after{
  content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,212,0,.18), transparent 70%);
}
.cta-strip h3{ color:var(--white); font-size:1.6rem; margin-bottom:.3em; max-width:520px; }
.cta-strip p{ color:#c3d3e0; margin:0; max-width:480px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================
   CERTIFICATES SECTION
========================================================== */

.certificates-section {
  position: relative;

  padding: 110px 0;

  background: #1d1c24;

  overflow: hidden;

  isolation: isolate;
}


/* ==========================================================
   BACKGROUND GRADIENT
========================================================== */

.certificates-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -350px;
  left: -250px;

  background:
    radial-gradient(
      circle,
      rgba(255, 212, 0, 0.10),
      transparent 65%
    );

  filter: blur(20px);

  animation: certificateGlow 8s ease-in-out infinite alternate;

  pointer-events: none;
}


.certificates-section::after {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -250px;
  bottom: -300px;

  background:
    radial-gradient(
      circle,
      rgba(25, 65, 95, 0.35),
      transparent 70%
    );

  filter: blur(25px);

  animation: certificateGlowRight 10s ease-in-out infinite alternate;

  pointer-events: none;
}


@keyframes certificateGlow {

  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(120px, 80px) scale(1.15);
  }

}


@keyframes certificateGlowRight {

  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, -80px) scale(1.2);
  }

}


/* ==========================================================
   HEADING
========================================================== */

.certificates-heading {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin: 0 auto 55px;
}


.certificates-heading .eyebrow {
  color: var(--signal);
}


.certificates-heading h2 {
  color: var(--white);
}


.certificates-heading h2 span {
  color: var(--signal);
}


.certificates-heading p {
  color: #c9d7e4;
}


/* ==========================================================
   GRID
========================================================== */

.certificates-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;

  max-width: 1100px;

  margin: 0 auto;
}


/* ==========================================================
   CERTIFICATE CARD
========================================================== */

.certificate-card {
  position: relative;

  padding: 12px;

  border-radius: 18px;

  background: #24232b;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28);

  overflow: hidden;

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}


/* ==========================================================
   MOVING YELLOW BORDER
========================================================== */

.certificate-card::before {
  content: "";

  position: absolute;

  inset: -2px;

  border-radius: inherit;

  padding: 2px;

  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 250deg,
      #ffd400 290deg,
      #fff4a3 320deg,
      #ffd400 345deg,
      transparent 360deg
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask-composite: exclude;

  opacity: 0;

  pointer-events: none;

  transition: opacity .35s ease;
}


.certificate-card:hover::before {
  opacity: 1;

  animation:
    certificateBorderMove 3s linear infinite;

  filter:
    drop-shadow(0 0 5px rgba(255, 212, 0, .8))
    drop-shadow(0 0 14px rgba(255, 212, 0, .35));
}


@keyframes certificateBorderMove {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* ==========================================================
   HOVER CARD
========================================================== */

.certificate-card:hover {

  transform: translateY(-10px);

  border-color:
    rgba(255, 212, 0, 0.35);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.40),
    0 0 25px rgba(255, 212, 0, 0.08);
}


/* ==========================================================
   CERTIFICATE IMAGE
========================================================== */

.certificate-image-wrap {

  position: relative;

  width: 100%;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  border-radius: 12px;

  background: #f5f5f5;
}


.certificate-image-wrap img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}


.certificate-card:hover
.certificate-image-wrap img {

  transform: scale(1.04);

  filter:
    contrast(1.02)
    brightness(1.03);
}


/* ==========================================================
   IMAGE GLOW
========================================================== */

.certificate-glow {

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  left: -100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 212, 0, 0.25),
      transparent 70%
    );

  opacity: 0;

  z-index: 2;

  pointer-events: none;
}


.certificate-card:hover
.certificate-glow {

  opacity: 1;

  animation:
    certificateImageGlow 2.8s ease-in-out infinite alternate;
}


@keyframes certificateImageGlow {

  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(430px, 250px);
  }

}


/* ==========================================================
   CERTIFICATE INFORMATION
========================================================== */

.certificate-content {

  display: grid;

  grid-template-columns: 50px 1fr;

  gap: 16px;

  padding: 25px 18px 18px;

  color: var(--white);
}


.certificate-number {

  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: rgba(255, 212, 0, 0.08);

  border: 1px solid rgba(255, 212, 0, 0.30);

  color: var(--signal);

  font-family: var(--font-mono);

  font-size: .75rem;
}


.certificate-label {

  display: block;

  margin-bottom: 6px;

  color: var(--signal);

  font-family: var(--font-mono);

  font-size: .65rem;

  letter-spacing: .12em;

  text-transform: uppercase;
}


.certificate-content h3 {

  margin: 0 0 8px;

  color: var(--white);

  font-family: var(--font-display);

  font-size: 1.5rem;

  letter-spacing: .02em;
}


.certificate-content p {

  margin: 0;

  color: #c9d7e4;

  font-size: .88rem;

  line-height: 1.65;
}

/* ==========================================================
   CERTIFICATE IMAGE — PROPER FIT
========================================================== */

.certificate-image-wrap {
  position: relative;

  width: 100%;
  height: 390px;

  overflow: hidden;

  border-radius: 12px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  box-sizing: border-box;
}


.certificate-image-wrap img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;

  transition:
    transform 0.6s ease,
    filter 0.5s ease;
}


/* Slight zoom only when hovering */
.certificate-card:hover
.certificate-image-wrap img {
  transform: scale(1.03);

  filter:
    brightness(1.02)
    contrast(1.02);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

  .certificates-grid {
    grid-template-columns: 1fr;

    max-width: 650px;
  }

}


@media (max-width: 768px) {

  .certificates-section {
    padding: 80px 0;
  }

  .certificates-heading {
    margin-bottom: 40px;
  }

  .certificate-content {
    padding: 22px 16px 16px;
  }

}


@media (max-width: 480px) {

  .certificates-grid {
    gap: 20px;
  }

  .certificate-card {
    padding: 8px;
    border-radius: 14px;
  }

  .certificate-image-wrap {
    border-radius: 10px;
  }

  .certificate-content {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .certificate-number {
    width: 36px;
    height: 36px;
  }

}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; }
@media(max-width:920px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{ background:#1D1C21; color:var(--white); border-radius:var(--radius-lg); padding:40px 36px; }
.contact-info-card h3{ color:var(--white); font-size:1.3rem; }
.contact-info-card p{ color:#b7c8d8; font-size:.92rem; }
.contact-line{ display:flex; gap:16px; padding:18px 0; border-top:1px solid rgba(255,255,255,.1); }
.contact-line:first-of-type{ border-top:none; margin-top:8px; }
.contact-line svg{ width:22px; height:22px; color:var(--signal); flex-shrink:0; margin-top:2px; }
.contact-line strong{ display:block; font-family:var(--font-display); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:#8ea3b8; margin-bottom:4px; }
.contact-line a, .contact-line span{ color:var(--white); font-size:.94rem; }
.contact-line a:hover{ color:var(--signal); }

.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--navy-800); margin-bottom:8px; font-family:var(--font-mono); }
.field input, .field select, .field textarea{
  width:100%; border:1.5px solid var(--line); border-radius:8px; padding:13px 15px; font-family:var(--font-body);
  font-size:.94rem; color:var(--ink); background:var(--paper); transition:border-color .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--steel-600); background:var(--white); }
.field textarea{ resize:vertical; min-height:120px; }
.form-card .btn{ width:100%; margin-top:6px; }
.form-note{ font-size:.78rem; color:var(--slate-400); margin-top:14px; text-align:center; }

.map-embed{ margin-top:26px; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line); aspect-ratio:16/7; }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:#1D1C21; color:#9db2c5; padding-top:76px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08); }
@media(max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img{ height:42px; border-radius:6px; }
.footer-brand strong{ display:block; color:var(--white); font-family:var(--font-display); text-transform:uppercase; font-size:1.05rem; }
.footer-col h5{ color:var(--white); font-size:.82rem; letter-spacing:.1em; margin-bottom:20px; }
.footer-col li{ margin-bottom:12px; font-size:.88rem; }
.footer-col a{ transition:color .15s; }
.footer-col a:hover{ color:var(--signal); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.8rem; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#9db2c5; }
.footer-bottom a:hover{ color:var(--signal); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
/* Progressive enhancement: content is visible by default. Only once JS confirms
   it can run (html.js-anim) do we hide-then-animate elements into view. This
   guarantees content is never stuck invisible if a script error occurs. */
.reveal{ opacity:1; transform:none; }
html.js-anim .reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
html.js-anim .reveal.in{ opacity:1; transform:translateY(0); }

/* Page hero (used by anchored sub-sections as inner banners) */
.page-band{ background:var(--navy-800); color:var(--white); padding:64px 0; text-align:center; }
.page-band h2{ color:var(--white); }
.breadcrumb{ font-family:var(--font-mono); font-size:.78rem; color:var(--steel-400); letter-spacing:.06em; }
.breadcrumb a:hover{ color:var(--signal); }

/* Back to top */
.to-top{
  position:fixed; right:24px; bottom:24px; width:48px; height:48px; border-radius:50%;
  background:var(--signal); color:var(--navy-900); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); border:none; cursor:pointer; z-index:150;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:opacity .25s, transform .25s, visibility .25s;
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top svg{ width:20px; height:20px; }

/* ---------- Crad Section in every division ------------ */

/* =========================================================
   ANIMATED DIVISION CARD
   Yellow gradient moves from START → END around border
   ========================================================= */

.filters-info-panel {
  position: relative;
  isolation: isolate;

  min-height: 230px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 212, 0, 0.10),
      transparent 30%
    ),
    #1d1c24;

  box-shadow: var(--shadow-md);

  overflow: hidden;
}


/* =========================================================
   YELLOW GRADIENT BORDER
   ========================================================= */

.filters-info-panel::before {
  content: "";

  position: absolute;
  inset: 0;

  padding: 2px;

  border-radius: inherit;

  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    #ffd400 45%,
    #fff3a0 50%,
    #ffd400 55%,
    transparent 65%,
    transparent 100%
  );

  background-size: 300% 100%;
  background-position: 0% 50%;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask-composite: exclude;

  opacity: 0;

  pointer-events: none;

  z-index: 1;
}


/* =========================================================
   START ANIMATION WHEN MOUSE ENTERS CARD
   ========================================================= */

.filters-info-panel:hover::before {
  opacity: 1;

  animation:
    yellowBorderFlow 2.5s linear infinite;

  filter:
    drop-shadow(0 0 4px rgba(255, 212, 0, 0.8))
    drop-shadow(0 0 10px rgba(255, 212, 0, 0.35));
}


/* =========================================================
   GRADIENT TRAVELS START → END
   ========================================================= */

@keyframes yellowBorderFlow {

  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }

}


/* =========================================================
   KEEP CONTENT ABOVE BORDER
   ========================================================= */

.filters-info-panel > * {
  position: relative;
  z-index: 2;
}


/* =========================================================
   KICKER
   ========================================================= */

.filters-info-kicker {
  display: block;

  margin-bottom: 8px;

  color: var(--signal);

  font-family: var(--font-mono);

  font-size: .72rem;

  letter-spacing: .14em;

  text-transform: uppercase;
}


/* =========================================================
   HEADING
   ========================================================= */

.filters-info-panel strong {
  display: block;

  margin-bottom: 12px;

  color: var(--white);

  font-family: var(--font-display);

  font-size: 1.65rem;

  text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.filters-info-panel p {
  margin: 0;

  color: #c9d7e4;

  font-size: .9rem;

  line-height: 1.7;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .filters-info-panel {
    min-height: 200px;
    padding: 24px;
  }

}

/* ==========================================================
   VISUAL PRODUCT CATALOG — premium responsive product showcase
   ========================================================== */
.product-overview{background:linear-gradient(180deg,#fff 0%,#f5f8fb 100%);}
.category-pills{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.category-pill{position:relative;overflow:hidden;display:flex;align-items:center;gap:12px;min-height:72px;padding:18px 20px;border:1px solid var(--line);border-radius:14px;background:#fff;color:var(--ink);font-family:var(--font-display);font-size:1rem;text-transform:uppercase;letter-spacing:.03em;box-shadow:0 8px 25px rgba(14,31,46,.05);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease;color .25s ease;}
.category-pill::after{content:"";position:absolute;inset:auto -20% -70% 20%;height:80px;background:radial-gradient(circle,var(--signal) 0,transparent 68%);opacity:.12;transition:transform .35s ease;}
.category-pill span{display:grid;place-items:center;width:30px;height:30px;border-radius:8px;background:var(--navy-900);color:var(--signal);font-family:var(--font-mono);font-size:.62rem;position:relative;z-index:1;}
.category-pill:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(14,31,46,.12);border-color:rgba(224,168,0,.55);}
.category-pill:hover::after{transform:translateY(-20px) scale(1.2);}
.category-pill:active{transform:translateY(-2px);}

/* .catalog-section{position:relative;overflow:hidden;padding:112px 0 120px;background:var(--navy-900);color:#fff;isolation:isolate;}
.catalog-section::before{content:"";position:absolute;inset:0;z-index:-2;background:radial-gradient(circle at 15% 15%,rgba(63,111,158,.24),transparent 32%),radial-gradient(circle at 88% 75%,rgba(255,212,0,.08),transparent 28%),linear-gradient(135deg,#081824,#0d263b 55%,#071522);}
.catalog-section::after{content:"";position:absolute;inset:0;z-index:-1;opacity:.18;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(to bottom,black,transparent 90%);}
.catalog-glow{position:absolute;width:420px;height:420px;border-radius:50%;filter:blur(80px);pointer-events:none;z-index:-1;opacity:.18;animation:catalogFloat 10s ease-in-out infinite;}
.catalog-glow-one{background:#3f6f9e;top:-180px;left:-180px}.catalog-glow-two{background:#ffd400;right:-240px;bottom:-220px;animation-delay:-4s}
@keyframes catalogFloat{0%,100%{transform:translate3d(0,0,0)}50%{transform:translate3d(20px,-24px,0)}}
.catalog-heading{display:flex;justify-content:space-between;align-items:end;gap:32px;margin-bottom:44px;}
.catalog-eyebrow{color:var(--signal)}.catalog-eyebrow::before{background:var(--signal)}
.catalog-heading h2{color:#fff;font-size:clamp(2.5rem,5vw,4.5rem);margin-bottom:.2em;letter-spacing:.01em}.catalog-heading h2 span{color:var(--signal)}
.catalog-heading p{max-width:650px;color:#b9c9d7;font-size:1.02rem;margin:0}
.catalog-count{min-width:150px;padding:18px 20px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.05);backdrop-filter:blur(12px);text-align:center}.catalog-count strong{display:block;font-family:var(--font-display);font-size:2rem;color:var(--signal);line-height:1}.catalog-count span{display:block;margin-top:7px;color:#a9bbc9;font-family:var(--font-mono);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase}
.catalog-toolbar{display:flex;gap:18px;align-items:center;justify-content:space-between;margin-bottom:28px;padding:14px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.045);backdrop-filter:blur(16px);position:sticky;top:84px;z-index:5;box-shadow:0 16px 40px rgba(0,0,0,.12)}
.catalog-filters{display:flex;gap:8px;flex-wrap:wrap}.catalog-filter{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:#c6d3de;border-radius:999px;padding:9px 13px;font-family:var(--font-mono);font-size:.62rem;letter-spacing:.04em;text-transform:uppercase;cursor:pointer;transition:.22s ease}.catalog-filter:hover{border-color:rgba(255,212,0,.55);color:#fff;transform:translateY(-2px)}.catalog-filter.active{background:var(--signal);color:var(--signal-ink);border-color:var(--signal);box-shadow:0 6px 20px rgba(255,212,0,.16)}
.catalog-search{height:42px;min-width:245px;display:flex;align-items:center;gap:8px;border:1px solid rgba(255,255,255,.15);background:rgba(0,0,0,.18);border-radius:12px;padding:0 10px 0 13px}.catalog-search span{font-size:20px;color:var(--signal);line-height:1}.catalog-search input{width:100%;border:0;outline:0;background:transparent;color:#fff;font:600 .8rem var(--font-body)}.catalog-search input::placeholder{color:#8fa2b2}.catalog-search button{border:0;background:transparent;color:#8fa2b2;font-size:20px;cursor:pointer;line-height:1}.catalog-search button:hover{color:#fff}
.catalog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.catalog-card{min-width:0}.catalog-card[hidden]{display:none}.catalog-card-button{display:block;width:100%;height:100%;padding:0;border:1px solid rgba(255,255,255,.10);border-radius:18px;background:rgba(255,255,255,.055);color:#fff;text-align:left;overflow:hidden;cursor:pointer;transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .35s ease,box-shadow .35s ease,background .35s ease;box-shadow:0 12px 35px rgba(0,0,0,.14)}
.catalog-card-button:hover{transform:translateY(-9px);border-color:rgba(255,212,0,.48);background:rgba(255,255,255,.085);box-shadow:0 24px 55px rgba(0,0,0,.26),0 0 0 1px rgba(255,212,0,.05)}
.catalog-image-wrap{position:relative;aspect-ratio:4/3;overflow:hidden;background:#dce5ec}.catalog-image-wrap::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,12,20,.15),transparent 35%,rgba(3,12,20,.72));pointer-events:none}.catalog-image-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.8,.2,1),filter .5s ease}.catalog-card-button:hover .catalog-image-wrap img{transform:scale(1.1);filter:saturate(1.08) contrast(1.04)}
.catalog-index{position:absolute;left:13px;top:13px;z-index:2;display:grid;place-items:center;min-width:38px;height:27px;padding:0 8px;border-radius:8px;background:rgba(7,21,34,.82);border:1px solid rgba(255,255,255,.16);font:600 .62rem var(--font-mono);color:var(--signal);backdrop-filter:blur(8px)}.catalog-division{position:absolute;right:12px;top:13px;z-index:2;padding:7px 9px;border-radius:999px;background:rgba(7,21,34,.76);border:1px solid rgba(255,255,255,.14);color:#e7eef4;font:600 .55rem var(--font-mono);letter-spacing:.08em;text-transform:uppercase;backdrop-filter:blur(8px)}
.catalog-hover{position:absolute;left:15px;bottom:14px;right:15px;z-index:3;display:flex;justify-content:space-between;align-items:center;color:#fff;font:600 .65rem var(--font-mono);letter-spacing:.12em;text-transform:uppercase;opacity:0;transform:translateY(10px);transition:.3s ease}.catalog-arrow{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:var(--signal);color:var(--signal-ink);font-size:16px}.catalog-card-button:hover .catalog-hover{opacity:1;transform:translateY(0)}
.catalog-card-body{padding:18px 18px 20px}.catalog-card-body h3{color:#fff;font-size:1rem;line-height:1.3;margin:0 0 7px}.catalog-card-body p{color:#8fa6b8;font-size:.73rem;margin:0;font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.06em}
.catalog-empty{text-align:center;padding:60px 20px;border:1px dashed rgba(255,255,255,.2);border-radius:18px;color:#b7c6d2}.catalog-empty strong{display:block;color:#fff;font:600 1.4rem var(--font-display);text-transform:uppercase}.catalog-empty span{display:block;margin-top:7px}
.catalog-modal{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:24px}.catalog-modal.open{display:flex}.catalog-modal-backdrop{position:absolute;inset:0;background:rgba(2,9,15,.82);backdrop-filter:blur(10px);animation:catalogFade .25s ease}.catalog-modal-dialog{position:relative;display:grid;grid-template-columns:minmax(280px,1.05fr) minmax(280px,.95fr);width:min(980px,100%);max-height:min(760px,calc(100vh - 48px));overflow:auto;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:#0c2234;box-shadow:0 35px 100px rgba(0,0,0,.5);animation:catalogModalIn .35s cubic-bezier(.2,.8,.2,1)}.catalog-modal-image{min-height:420px;background:#dce5ec}.catalog-modal-image img{width:100%;height:100%;object-fit:cover}.catalog-modal-content{padding:56px 46px;display:flex;flex-direction:column;justify-content:center}.catalog-modal-content>span{font:600 .66rem var(--font-mono);letter-spacing:.14em;text-transform:uppercase;color:var(--signal);margin-bottom:12px}.catalog-modal-content h3{color:#fff;font-size:clamp(1.8rem,4vw,3rem);margin-bottom:18px}.catalog-modal-content p{color:#aebfcd}.catalog-modal-content .btn{align-self:flex-start;margin-top:10px}.catalog-modal-close{position:absolute;right:14px;top:14px;z-index:3;width:40px;height:40px;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(7,21,34,.72);color:#fff;font-size:26px;cursor:pointer;backdrop-filter:blur(8px)}.catalog-modal-close:hover{background:var(--signal);color:var(--signal-ink)}
@keyframes catalogFade{from{opacity:0}to{opacity:1}}@keyframes catalogModalIn{from{opacity:0;transform:translateY(20px) scale(.97)}to{opacity:1;transform:none}}
.catalog-card.reveal{opacity:0;transform:translateY(24px) scale(.98)}.catalog-card.reveal.in{opacity:1;transform:none;transition:opacity .65s ease,transform .65s cubic-bezier(.2,.8,.2,1)}
@media(max-width:1100px){.category-pills{grid-template-columns:repeat(2,1fr)}.catalog-grid{grid-template-columns:repeat(3,1fr)}.catalog-toolbar{top:74px}.catalog-heading{align-items:flex-start}}
@media(max-width:850px){.catalog-grid{grid-template-columns:repeat(2,1fr)}.catalog-toolbar{position:relative;top:auto;flex-direction:column;align-items:stretch}.catalog-search{min-width:0;width:100%}.catalog-heading{flex-direction:column}.catalog-count{align-self:flex-start}}
@media(max-width:560px){.category-pills{grid-template-columns:1fr}.catalog-section{padding:78px 0 88px}.catalog-grid{grid-template-columns:1fr;gap:16px}.catalog-card-body{padding:16px}.catalog-modal{padding:12px}.catalog-modal-dialog{grid-template-columns:1fr;max-height:calc(100vh - 24px)}.catalog-modal-image{height:280px;min-height:0}.catalog-modal-content{padding:28px 24px 30px}.catalog-filter{font-size:.58rem;padding:8px 10px}.catalog-heading h2{font-size:2.8rem}}
@media(prefers-reduced-motion:reduce){.catalog-glow{animation:none}.catalog-card-button,.catalog-image-wrap img,.catalog-hover{transition:none}} */

/* ==========================================================
   VISUAL PRODUCT CATALOG
   DARK #1D1C21 THEME
   ========================================================== */


/* ==========================================================
   CATALOG SECTION
   ========================================================== */

.catalog-section {
    position: relative;
    overflow: hidden;

    padding: 112px 0 120px;

    background: #1D1C21;
    color: #fff;

    isolation: isolate;
}


/* Background glow / atmosphere */
.catalog-section::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(255, 255, 255, 0.035),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(255, 212, 0, 0.045),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #1D1C21 0%,
            #1D1C21 55%,
            #17161B 100%
        );
}


/* Subtle grid */
.catalog-section::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    opacity: .10;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


/* ==========================================================
   FLOATING GLOW
   ========================================================== */

.catalog-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    z-index: -1;

    opacity: .12;

    animation:
        catalogFloat 10s ease-in-out infinite;
}


/* Left glow */
.catalog-glow-one {
    background: #ffffff;

    top: -180px;
    left: -180px;
}


/* Right yellow glow */
.catalog-glow-two {
    background: #ffd400;

    right: -240px;
    bottom: -220px;

    animation-delay: -4s;
}


/* Glow animation */
@keyframes catalogFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(20px, -24px, 0);
    }
}


/* ==========================================================
   CATALOG HEADING
   ========================================================== */

.catalog-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 32px;

    margin-bottom: 44px;
}


.catalog-eyebrow {
    color: var(--signal);
}


.catalog-eyebrow::before {
    background: var(--signal);
}


.catalog-heading h2 {
    color: #ffffff;

    font-size:
        clamp(2.5rem, 5vw, 4.5rem);

    margin-bottom: .2em;

    letter-spacing: .01em;
}


.catalog-heading h2 span {
    color: var(--signal);
}


.catalog-heading p {
    max-width: 650px;

    color: #BDBAC3;

    font-size: 1.02rem;

    margin: 0;
}


/* ==========================================================
   CATALOG COUNT
   ========================================================== */

.catalog-count {
    min-width: 150px;

    padding: 18px 20px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 14px;

    background:
        rgba(255,255,255,.035);

    backdrop-filter: blur(12px);

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.20);
}


.catalog-count strong {
    display: block;

    font-family: var(--font-display);

    font-size: 2rem;

    color: var(--signal);

    line-height: 1;
}


.catalog-count span {
    display: block;

    margin-top: 7px;

    color: #99959F;

    font-family: var(--font-mono);

    font-size: .62rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* ==========================================================
   CATALOG TOOLBAR
   ========================================================== */

.catalog-toolbar {
    display: flex;

    gap: 18px;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;

    padding: 14px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 18px;

    background:
        rgba(29,28,33,.88);

    backdrop-filter: blur(16px);

    position: sticky;

    top: 84px;

    z-index: 5;

    box-shadow:
        0 16px 40px rgba(0,0,0,.28);
}


/* ==========================================================
   FILTERS
   ========================================================== */

.catalog-filters {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.catalog-filter {
    border:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.035);

    color: #C6C3CB;

    border-radius: 999px;

    padding: 9px 13px;

    font-family: var(--font-mono);

    font-size: .62rem;

    letter-spacing: .04em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        .22s ease;
}


.catalog-filter:hover {
    border-color:
        rgba(255,212,0,.55);

    color: #ffffff;

    transform:
        translateY(-2px);

    background:
        rgba(255,212,0,.06);
}


.catalog-filter.active {
    background:
        var(--signal);

    color:
        var(--signal-ink);

    border-color:
        var(--signal);

    box-shadow:
        0 6px 20px rgba(255,212,0,.16);
}


/* ==========================================================
   SEARCH
   ========================================================== */

.catalog-search {
    height: 42px;

    min-width: 245px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        #151419;

    border-radius: 12px;

    padding:
        0 10px 0 13px;
}


.catalog-search span {
    font-size: 20px;

    color:
        var(--signal);

    line-height: 1;
}


.catalog-search input {
    width: 100%;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        #ffffff;

    font:
        600 .8rem var(--font-body);
}


.catalog-search input::placeholder {
    color:
        #77737D;
}


.catalog-search button {
    border: 0;

    background:
        transparent;

    color:
        #77737D;

    font-size:
        20px;

    cursor:
        pointer;

    line-height:
        1;
}


.catalog-search button:hover {
    color:
        #ffffff;
}


/* ==========================================================
   PRODUCT GRID
   ========================================================== */

.catalog-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.catalog-card {
    min-width: 0;
}


.catalog-card[hidden] {
    display: none;
}


/* ==========================================================
   PRODUCT CARD
   ========================================================== */

.catalog-card-button {
    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        #1D1C21;

    color: #ffffff;

    text-align: left;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    box-shadow:
        0 12px 35px rgba(0,0,0,.28);
}


/* Product card hover */
.catalog-card-button:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(255,212,0,.48);

    background:
        #25242A;

    box-shadow:
        0 24px 55px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,212,0,.05);
}


/* ==========================================================
   PRODUCT IMAGE
   ========================================================== */

.catalog-image-wrap {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background:
        #121116;
}


.catalog-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08),
            transparent 35%,
            rgba(0,0,0,.72)
        );

    pointer-events: none;
}


.catalog-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


.catalog-card-button:hover
.catalog-image-wrap img {
    transform:
        scale(1.1);

    filter:
        saturate(1.08)
        contrast(1.04);
}


/* ==========================================================
   PRODUCT INDEX
   ========================================================== */

.catalog-index {
    position: absolute;

    left: 13px;
    top: 13px;

    z-index: 2;

    display: grid;

    place-items: center;

    min-width: 38px;
    height: 27px;

    padding: 0 8px;

    border-radius: 8px;

    background:
        rgba(20,19,24,.88);

    border:
        1px solid rgba(255,255,255,.14);

    font:
        600 .62rem var(--font-mono);

    color:
        var(--signal);

    backdrop-filter:
        blur(8px);
}


/* ==========================================================
   PRODUCT DIVISION
   ========================================================== */

.catalog-division {
    position: absolute;

    right: 12px;
    top: 13px;

    z-index: 2;

    padding:
        7px 9px;

    border-radius:
        999px;

    background:
        rgba(20,19,24,.88);

    border:
        1px solid rgba(255,255,255,.12);

    color:
        #E7E4EA;

    font:
        600 .55rem var(--font-mono);

    letter-spacing:
        .08em;

    text-transform:
        uppercase;

    backdrop-filter:
        blur(8px);
}


/* ==========================================================
   HOVER ACTION
   ========================================================== */

.catalog-hover {
    position: absolute;

    left: 15px;
    bottom: 14px;
    right: 15px;

    z-index: 3;

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

    color:
        #ffffff;

    font:
        600 .65rem var(--font-mono);

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    opacity:
        0;

    transform:
        translateY(10px);

    transition:
        .3s ease;
}


.catalog-arrow {
    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background:
        var(--signal);

    color:
        var(--signal-ink);

    font-size:
        16px;
}


.catalog-card-button:hover
.catalog-hover {
    opacity:
        1;

    transform:
        translateY(0);
}


/* ==========================================================
   PRODUCT CARD CONTENT
   ========================================================== */

.catalog-card-body {
    padding:
        18px 18px 20px;
}


.catalog-card-body h3 {
    color:
        #ffffff;

    font-size:
        1rem;

    line-height:
        1.3;

    margin:
        0 0 7px;
}


.catalog-card-body p {
    color:
        #8F8B96;

    font-size:
        .73rem;

    margin:
        0;

    font-family:
        var(--font-mono);

    text-transform:
        uppercase;

    letter-spacing:
        .06em;
}


/* ==========================================================
   EMPTY STATE
   ========================================================== */

.catalog-empty {
    text-align:
        center;

    padding:
        60px 20px;

    border:
        1px dashed rgba(255,255,255,.18);

    border-radius:
        18px;

    color:
        #A8A4AE;
}


.catalog-empty strong {
    display:
        block;

    color:
        #ffffff;

    font:
        600 1.4rem var(--font-display);

    text-transform:
        uppercase;
}


.catalog-empty span {
    display:
        block;

    margin-top:
        7px;
}


/* ==========================================================
   PRODUCT MODAL
   ========================================================== */

.catalog-modal {
    position:
        fixed;

    inset:
        0;

    z-index:
        9999;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    padding:
        24px;
}


.catalog-modal.open {
    display:
        flex;
}


.catalog-modal-backdrop {
    position:
        absolute;

    inset:
        0;

    background:
        rgba(0,0,0,.84);

    backdrop-filter:
        blur(10px);

    animation:
        catalogFade .25s ease;
}


.catalog-modal-dialog {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        minmax(280px,1.05fr)
        minmax(280px,.95fr);

    width:
        min(980px,100%);

    max-height:
        min(760px,calc(100vh - 48px));

    overflow:
        auto;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        24px;

    background:
        #1D1C21;

    box-shadow:
        0 35px 100px rgba(0,0,0,.65);

    animation:
        catalogModalIn
        .35s
        cubic-bezier(.2,.8,.2,1);
}


/* ==========================================================
   MODAL IMAGE
   ========================================================== */

.catalog-modal-image {
    min-height:
        420px;

    background:
        #121116;
}


.catalog-modal-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


/* ==========================================================
   MODAL CONTENT
   ========================================================== */

.catalog-modal-content {
    padding:
        56px 46px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;
}


.catalog-modal-content > span {
    font:
        600 .66rem var(--font-mono);

    letter-spacing:
        .14em;

    text-transform:
        uppercase;

    color:
        var(--signal);

    margin-bottom:
        12px;
}


.catalog-modal-content h3 {
    color:
        #ffffff;

    font-size:
        clamp(1.8rem,4vw,3rem);

    margin-bottom:
        18px;
}


.catalog-modal-content p {
    color:
        #AAA6B0;
}


.catalog-modal-content .btn {
    align-self:
        flex-start;

    margin-top:
        10px;
}


/* ==========================================================
   MODAL CLOSE
   ========================================================== */

.catalog-modal-close {
    position:
        absolute;

    right:
        14px;

    top:
        14px;

    z-index:
        3;

    width:
        40px;

    height:
        40px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius:
        50%;

    background:
        rgba(20,19,24,.85);

    color:
        #ffffff;

    font-size:
        26px;

    cursor:
        pointer;

    backdrop-filter:
        blur(8px);
}


.catalog-modal-close:hover {
    background:
        var(--signal);

    color:
        var(--signal-ink);
}


/* ==========================================================
   MODAL ANIMATION
   ========================================================== */

@keyframes catalogFade {

    from {
        opacity:
            0;
    }

    to {
        opacity:
            1;
    }
}


@keyframes catalogModalIn {

    from {
        opacity:
            0;

        transform:
            translateY(20px)
            scale(.97);
    }

    to {
        opacity:
            1;

        transform:
            none;
    }
}


/* ==========================================================
   CARD REVEAL
   ========================================================== */

.catalog-card.reveal {
    opacity:
        0;

    transform:
        translateY(24px)
        scale(.98);
}


.catalog-card.reveal.in {
    opacity:
        1;

    transform:
        none;

    transition:
        opacity .65s ease,
        transform .65s cubic-bezier(.2,.8,.2,1);
}


/* ==========================================================
   RESPONSIVE — 1100px
   ========================================================== */

@media (max-width: 1100px) {

    .category-pills {
        grid-template-columns:
            repeat(2,1fr);
    }

    .catalog-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .catalog-toolbar {
        top:
            74px;
    }

    .catalog-heading {
        align-items:
            flex-start;
    }
}


/* ==========================================================
   RESPONSIVE — 850px
   ========================================================== */

@media (max-width: 850px) {

    .catalog-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .catalog-toolbar {
        position:
            relative;

        top:
            auto;

        flex-direction:
            column;

        align-items:
            stretch;
    }

    .catalog-search {
        min-width:
            0;

        width:
            100%;
    }

    .catalog-heading {
        flex-direction:
            column;
    }

    .catalog-count {
        align-self:
            flex-start;
    }
}


/* ==========================================================
   RESPONSIVE — 560px
   ========================================================== */

@media (max-width: 560px) {

    .category-pills {
        grid-template-columns:
            1fr;
    }

    .catalog-section {
        padding:
            78px 0 88px;
    }

    .catalog-grid {
        grid-template-columns:
            1fr;

        gap:
            16px;
    }

    .catalog-card-body {
        padding:
            16px;
    }

    .catalog-modal {
        padding:
            12px;
    }

    .catalog-modal-dialog {
        grid-template-columns:
            1fr;

        max-height:
            calc(100vh - 24px);
    }

    .catalog-modal-image {
        height:
            280px;

        min-height:
            0;
    }

    .catalog-modal-content {
        padding:
            28px 24px 30px;
    }

    .catalog-filter {
        font-size:
            .58rem;

        padding:
            8px 10px;
    }

    .catalog-heading h2 {
        font-size:
            2.8rem;
    }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .catalog-glow {
        animation:
            none;
    }

    .catalog-card-button,
    .catalog-image-wrap img,
    .catalog-hover {
        transition:
            none;
    }
}