   :root {
     --bg-900: #041210;
     --bg-800: #09211d;
     --bg-700: #0d2b25;
     --surface: rgba(255, 255, 255, 0.06);
     --surface-strong: rgba(255, 255, 255, 0.1);
     --line: rgba(255, 255, 255, 0.12);
     --line-soft: rgba(255, 255, 255, 0.06);
     --text: #f7f0e8;
     --muted: #b1bab4;
     --gold: #d3a164;
     --gold-deep: #9f6f3f;
     --mint: #7fc9a6;
     --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
     --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
     --radius-xl: 36px;
     --radius-lg: 28px;
     --radius-md: 22px;
     --radius-sm: 16px;
     --container: 1320px;
     --dark-bg: #09372f;
   }

   * {
     box-sizing: border-box;
   }

   html {
     scroll-behavior: smooth;
   }

   body {
     margin: 0;
     font-family: "Segoe UI", "Aptos", sans-serif;
     color: var(--text);
     /* background:
       radial-gradient(circle at top left, rgba(211, 161, 100, 0.2), transparent 28%),
       radial-gradient(circle at 85% 10%, rgba(127, 201, 166, 0.14), transparent 22%),
       linear-gradient(180deg, var(--bg-900) 0%, #071917 35%, #04100f 100%); */
       background-color: #000;
     overflow-x: hidden;
   }

   h1,
   h2,
   h3,
   h4,
   .navbar-brand span,
   .display-font {
     font-family: "Bahnschrift", "Arial Narrow", sans-serif;
     letter-spacing: 0.02em;
   }

   a {
     text-decoration: none;
     color: inherit;
   }

   img {
     max-width: 100%;
     display: block;
   }

   header.hero {
     padding: 0;
   }

   /* .page-shell {
     position: relative;
     isolation: isolate;
   }

   .page-shell::before,
   .page-shell::after {
     content: "";
     position: fixed;
     width: 32rem;
     height: 32rem;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.18;
     pointer-events: none;
     z-index: -1;
   }

   .page-shell::before {
     left: -10rem;
     top: 3rem;
     background: rgba(211, 161, 100, 0.42);
   }

   .page-shell::after {
     right: -12rem;
     bottom: 8rem;
     background: rgba(6, 235, 128, 0.25);
   } */

   .container {
     max-width: var(--container);
   }

   main>section {
     position: relative;
     isolation: isolate;
   }

   main>section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 50%;
     width: min(1120px, calc(100% - 2rem));
     height: 1px;
     transform: translateX(-50%);
     background: linear-gradient(90deg, transparent 0%, var(--line-soft) 18%, rgba(211, 161, 100, 0.18) 50%, var(--line-soft) 82%, transparent 100%);
     pointer-events: none;
   }

   .section-space {
     padding: 4.5rem 0;
   }

   .text-center .section-title {
     max-width: 36ch;
     margin-left: auto;
     margin-right: auto;
   }

   .text-center .section-copy {
     margin-left: auto;
     margin-right: auto;
   }

   .section-label {
     display: inline-flex;
     align-items: center;
     gap: 0.7rem;
     margin-bottom: 1.2rem;
     color: var(--gold);
     font-size: 0.82rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     font-weight: 800;
   }

   .section-label::before {
     content: "";
     width: 9px;
     height: 9px;
     border-radius: 50%;
     background: var(--mint);
     box-shadow: 0 0 0 6px rgba(127, 201, 166, 0.12);
   }

   .section-title {
     font-size: clamp(2rem, 4vw, 3.8rem);
     margin-bottom: 1.25rem;
     line-height: 1.02;
     /* max-width: 14ch; */
   }

   .section-copy {
     color: var(--muted);
     max-width: 48rem;
     font-size: 1.08rem;
     line-height: 1.85;
   }

   .navbar-wrap {
     padding: 1rem;
   }

   .hero-nav-wrap {
     padding: 0.95rem 1rem 0;
   }

   .navbar {
     padding: 0 20px 0 0;
     border-radius: 999px;
     background: rgba(8, 28, 24, 0.34);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(18px);
     box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
   }

   .navbar-brand {
     display: flex;
     align-items: center;
     padding: 10px;
     gap: 0.9rem;
     color: var(--text);
     font-weight: 700;
   }

   .brand-logo {
     width: 100px;
     border-radius: 50%;
     border: 1px solid rgba(211, 161, 100, 0.4);
   }

   .brand-kicker {
     display: block;
     color: var(--muted);
     font-size: 0.72rem;
     letter-spacing: 0.32em;
     text-transform: uppercase;
   }

   .nav-link {
     color: rgba(247, 240, 232, 0.75);
     transition: transform 0.25s ease, color 0.25s ease;
   }

   .nav-link:hover,
   .nav-link:focus {
     color: var(--gold);
     transform: translateY(-2px);
   }

   .btn-brand,
   .btn-outline-brand {
     border-radius: 999px;
     padding: 0.92rem 1.6rem;
     font-weight: 700;
     transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
   }

   .btn-brand {
     color: #071814;
     border: 0;
     background: linear-gradient(135deg, #f2c897 0%, var(--gold) 52%, var(--gold-deep) 100%);
     box-shadow: 0 0px 7px rgba(211, 161, 100, 0.32);
   }

   .btn-outline-brand {
     color: var(--text);
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(255, 255, 255, 0.04);
   }

   .btn-brand:hover,
   .btn-outline-brand:hover {
     transform: translateY(-3px);
     background: var(--dark-bg);
   }

   .navbar-toggler {
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 14px;
     padding: 0.5rem 0.7rem;
     box-shadow: none !important;
   }

   .navbar-toggler-icon {
     position: relative;
     display: block;
     width: 1.4rem;
     height: 1.2rem;
     background-image: none;
   }

   .navbar-toggler-icon::before,
   .navbar-toggler-icon::after,
   .navbar-toggler-icon span {
     content: "";
     position: absolute;
     left: 0;
     width: 100%;
     height: 2px;
     border-radius: 999px;
     background: var(--text);
   }

   .navbar-toggler-icon::before {
     top: 0;
   }

   .navbar-toggler-icon span {
     top: 0.5rem;
   }

   .navbar-toggler-icon::after {
     top: 1rem;
   }

   .offcanvas {
     background: linear-gradient(180deg, #0a221e 0%, #05120f 100%);
     color: var(--text);
   }

   .offcanvas-header {
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   }

   .offcanvas .nav-link {
     padding: 0.85rem 0;
     font-size: 1.05rem;
   }

   .hero {
     position: relative;
     padding: 2rem 0 2.75rem;
     overflow: clip;
   }

   .hero-stage {
     position: relative;
     padding: 0 0 2rem;
     /* border-radius: 40px; */
     /* border: 1px solid rgba(255, 255, 255, 0.08); */
     /* background:
       radial-gradient(circle at top left, rgba(64, 229, 184, 0.18), transparent 28%),
       radial-gradient(circle at 82% 12%, rgba(211, 161, 100, 0.12), transparent 24%),
       linear-gradient(180deg, rgba(9, 39, 34, 0.98) 0%, rgba(3, 14, 12, 0.98) 100%); */
     /* box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32); */
     overflow: hidden;
     background: linear-gradient(180deg, #09332b 0%, #000000 100%);
   }

   .hero-stage::before {
     content: "";
     position: absolute;
     inset: 6.5rem 0 auto;
     height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 18%, rgba(64, 229, 184, 0.18) 50%, rgba(255, 255, 255, 0.08) 82%, transparent 100%);
     pointer-events: none;
   }

   /* .hero-grid {
     position: relative;
     padding: 4.25rem 0 2.5rem;
   } */

   .hero h1 {
     font-size: clamp(2.7rem, 3vw, 5.8rem);
     line-height: 1.02;
     margin-bottom: 1.25rem;
   }

   .hero .lead {
     color: #fff;
     max-width: 38rem;
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
   }

   .hero-centered {
     position: relative;
     max-width: 980px;
     margin: 0 auto;
     padding: 3.75rem 2rem 2.8rem;
     text-align: center;
     overflow: visible;
   }

   .hero-centered::before,
   .hero-centered::after {
     content: "";
     position: absolute;
     border-radius: 50%;
     filter: blur(10px);
     pointer-events: none;
   }

   .hero-centered::before {
     width: 14rem;
     height: 14rem;
     top: -4rem;
     left: -2rem;
     background: radial-gradient(circle, rgba(64, 229, 184, 0.22), transparent 68%);
   }

   .hero-centered::after {
     width: 16rem;
     height: 16rem;
     right: -3rem;
     bottom: -5rem;
     background: radial-gradient(circle, rgba(211, 161, 100, 0.16), transparent 72%);
   }

   .hero-centered>* {
     position: relative;
     z-index: 1;
   }

   .hero-pill {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.8rem 1.25rem;
     margin-bottom: 1.5rem;
     border-radius: 999px;
     border: 1px solid rgba(64, 229, 184, 0.12);
     background: rgba(64, 229, 184, 0.08);
     color: #eafff8;
     font-size: 0.95rem;
     font-weight: 500;
   }

   .hero-centered h1 {
     /* max-width: 12ch; */
     margin-left: auto;
     margin-right: auto;
     font-size: clamp(2.8rem, 3.7vw, 5.2rem);
   }

   .hero-centered h1 span {
     color: #eabf8a;
   }

   .hero-copy {
     max-width: 43rem;
     margin-left: auto;
     margin-right: auto;
   }

   .hero-actions {
     display: flex;
     justify-content: center;
     margin-bottom: 1rem;
   }

   .hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 40px;
   }

   .hero-card-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 0.9rem;
    border-radius: 999px;
    background: rgba(211, 161, 100, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: capitalize;
    font-weight: 700;
   }

   .hero-card-tags span::before {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 1.05rem;
    border-radius: 50%;
    background:
      radial-gradient(circle at center, rgba(127, 201, 166, 0.18) 0 65%, transparent 66%),
      linear-gradient(180deg, rgba(127, 201, 166, 0.95), rgba(81, 176, 141, 0.95));
    box-shadow: 0 0 0 5px rgba(127, 201, 166, 0.08);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M8.3 13.8 4.9 10.4l-1.4 1.4 4.8 4.8L16.5 8.4 15.1 7z'/%3E%3C/svg%3E") center / 68% 68% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M8.3 13.8 4.9 10.4l-1.4 1.4 4.8 4.8L16.5 8.4 15.1 7z'/%3E%3C/svg%3E") center / 68% 68% no-repeat;
   }

   /* .hero-cta {
     min-width: min(100%, 280px);
     background: linear-gradient(135deg, #42e0ba 0%, #2eb79e 50%, #124f4b 100%);
     color: #f7f0e8;
     box-shadow: 0 18px 40px rgba(38, 170, 142, 0.3);
   }

   .hero-cta:hover {
     background: linear-gradient(135deg, #56e8c5 0%, #2eb79e 50%, #155a55 100%);
     color: #fff;
   } */

   .hero-warning {
     margin: 0;
     color: #dfe8e3;
     font-size: 0.98rem;
   }

   .hero-warning::before {
     content: "▲ ";
     color: #f3c061;
   }

   .hero-social-proof {
     margin-top: 2.8rem;
   }

   .hero-social-proof p {
     margin: 0.35rem 0 0;
     color: #f7f0e8;
     font-weight: 600;
   }

   .hero-warning::before {
     content: "\25B2  ";
     color: #f3c061;
   }

   .hero-stars {
     color: #f0b451;
     letter-spacing: 0.18em;
     font-size: 1.25rem;
   }

   .hero-spotlight,
   .hero-grid-glow {
     position: absolute;
     pointer-events: none;
   }

   .hero-spotlight {
     top: 2rem;
     width: 18rem;
     height: 18rem;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.24;
   }

   .hero-spotlight-left {
     left: 2%;
     background: rgba(64, 229, 184, 0.22);
   }

   .hero-spotlight-right {
     right: 2%;
     background: rgba(211, 161, 100, 0.2);
   }

   .hero-grid-glow {
     inset: auto 10% 0;
     height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgba(64, 229, 184, 0.4) 50%, transparent 100%);
   }

   .hero-mini {
     margin-top: 1.2rem;
     max-width: 34rem;
   }

   .hero-mini span {
     display: inline-flex;
     align-items: center;
     gap: 0.65rem;
     padding: 0.78rem 1rem;
     border-radius: 999px;
     color: #fef6ec;
     font-size: 0.96rem;
     font-weight: 600;
     background:
       linear-gradient(135deg, rgba(211, 161, 100, 0.22), rgba(127, 201, 166, 0.12)),
       rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(211, 161, 100, 0.24);
     box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
   }

   .hero-mini span::before {
     content: "";
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: radial-gradient(circle, #f8d3a7 0%, var(--gold) 65%, rgba(211, 161, 100, 0.2) 100%);
     box-shadow: 0 0 0 7px rgba(211, 161, 100, 0.12);
   }

   .hero-stats,
   .logo-dock {
     display: none;
   }

   /* .video-section {
     padding: 2rem 0 1.5rem;
   } */

   /* .video-showcase {
     display: grid;
     gap: 2rem;
     padding: 2rem;
     border-radius: var(--radius-xl);
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       radial-gradient(circle at top left, rgba(211, 161, 100, 0.1), transparent 26%),
       radial-gradient(circle at bottom right, rgba(64, 229, 184, 0.12), transparent 30%),
       linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
     box-shadow: var(--shadow);
   } */

   .video-copy .section-title {
     max-width: 14ch;
   }

   .video-copy .section-copy {
     max-width: 44rem;
   }

   .video-frame {
     position: relative;
     overflow: hidden;
     border-radius: 30px;
     display: flex;
     justify-content: center;
     /* border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(5, 21, 18, 0.88), rgba(3, 11, 10, 0.96));
     box-shadow: var(--shadow-soft); */
   }

   /*.video-frame::before {*/
   /*  content: "";*/
   /*  position: absolute;*/
   /*  inset: 0;*/
   /*  background:*/
   /*    radial-gradient(circle at center, rgba(64, 229, 184, 0.12), transparent 28%),*/
   /*    linear-gradient(180deg, rgba(4, 16, 15, 0.04), rgba(4, 16, 15, 0.48));*/
   /*  pointer-events: none;*/
   /*  z-index: 1;*/
   /*}*/

   .video-frame video {
     display: block;
     width: 100%;
     aspect-ratio: 16 / 9;
     object-fit: cover;
     background: #03110f;
   }

   .video-frame-note {
     position: absolute;
     left: 1.2rem;
     bottom: 1.2rem;
     z-index: 2;
     padding: 0.7rem 1rem;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(4, 16, 15, 0.72);
     backdrop-filter: blur(10px);
     color: #f7f0e8;
     font-size: 0.88rem;
   }
 
 /*  .brand-marquee-section {
     padding: 1.25rem 0 0;
   } */

   .brand-marquee-shell {
     position: relative;
     /* padding: 0.75rem 0 0; */
   }

   .brand-marquee-label {
     margin-bottom: 1.2rem;
     text-align: center;
     color: rgba(247, 240, 232, 0.64);
     font-size: 0.88rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
   }

   .brand-marquee {
     position: relative;
     overflow: hidden;
     width: 100%;
     /* padding: 0.8rem 0; */
     /* border-top: 1px solid rgba(255, 255, 255, 0.08);
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
     box-shadow: var(--shadow-soft); */
   }

   /* .brand-marquee::before,
   .brand-marquee::after {
     content: "";
     position: absolute;
     top: 0;
     bottom: 0;
     width: 8rem;
     z-index: 1;
     pointer-events: none;
   }

   .brand-marquee::before {
     left: 0;
     background: linear-gradient(90deg, rgba(4, 18, 16, 1) 10%, rgba(4, 18, 16, 0) 100%);
   }

   .brand-marquee::after {
     right: 0;
     background: linear-gradient(270deg, rgba(4, 18, 16, 1) 10%, rgba(4, 18, 16, 0) 100%);
   } */

   .brand-marquee-track {
     display: flex;
     align-items: center;
     width: max-content;
     gap: 1.5rem;
     padding: 0 1.25rem;
     animation: marqueeMove 26s linear infinite;
   }

   .brand-logo-chip {
     flex: 0 0 auto;
     width: 200px;
     /*height: 112px;*/
     /* display: grid;
     place-items: center;
     padding: 1rem;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08); */
   }

   .brand-logo-chip img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     /* filter: saturate(0) brightness(1.85) contrast(0.92);
     opacity: 0.92; */
   }

   /* .counter-section {
     padding: 3.5rem 0 2rem;
   } */

   .counter-panel {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1rem;
     padding: 1.5rem 1.1rem;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       radial-gradient(circle at top center, rgba(25, 112, 100, 0.22), transparent 44%),
       linear-gradient(180deg, rgba(7, 36, 33, 0.98) 0%, rgba(2, 10, 10, 0.98) 100%);
     box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
         width: 75%;
    margin: auto;
   }

   .counter-item {
     padding: 1rem 1rem;
     text-align: center;
     /* border-radius: 999px;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
     border: 1px solid rgba(255, 255, 255, 0.06); */
   }

   .counter-value {
     display: block;
     font-family: "Bahnschrift", "Arial Narrow", sans-serif;
     font-size: clamp(2.8rem, 4.5vw, 4.4rem);
     line-height: 1;
     color: #fff;
   }

   .counter-item span {
     display: block;
     margin-top: 0.65rem;
     color: rgba(247, 240, 232, 0.82);
     font-size: 1rem;
   }

   /* .comparison-section {
     padding-top: 1rem;
   } */

   .comparison-header {
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
   }

   .comparison-label {
     margin-bottom: 1rem;
   }

   .comparison-title {
     display: grid;
     gap: 0.35rem;
     margin-bottom: 0;
     text-align: center;
   }

   .comparison-title .title-line {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.4rem 0.75rem;
   }

   .comparison-title .title-line span {
     display: inline-block;
     opacity: 0;
     transform: translateY(24px) scale(0.96);
   }

   .reveal.is-visible .comparison-title .title-line span {
     animation: titleWordIn 0.7s ease forwards;
   }

   .reveal.is-visible .comparison-title .title-line span:nth-child(1) {
     animation-delay: 0.05s;
   }

   .reveal.is-visible .comparison-title .title-line span:nth-child(2) {
     animation-delay: 0.13s;
   }

   .reveal.is-visible .comparison-title .title-line span:nth-child(3) {
     animation-delay: 0.21s;
   }

   .reveal.is-visible .comparison-title .title-line span:nth-child(4) {
     animation-delay: 0.29s;
   }

   .reveal.is-visible .comparison-title .title-line-alt span:nth-child(1) {
     animation-delay: 0.37s;
   }

   .reveal.is-visible .comparison-title .title-line-alt span:nth-child(2) {
     animation-delay: 0.45s;
   }

   .comparison-card {
     position: relative;
     height: 100%;
     padding: 2.25rem 2rem;
     border-radius: 34px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     overflow: hidden;
     box-shadow: var(--shadow);
   }

   .comparison-card::before {
     content: "";
     position: absolute;
     inset: auto 0 0;
     height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
     pointer-events: none;
   }

   .comparison-card h3 {
     position: relative;
     display: inline-block;
     margin-bottom: 1.8rem;
     font-size: clamp(1.9rem, 4vw, 3rem);
     line-height: 1;
   }

   .comparison-card h3::after {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     bottom: -0.55rem;
     height: 4px;
     border-radius: 999px;
     transform: rotate(-5deg);
     transform-origin: left center;
   }

   .comparison-card-negative {
     /* background:
       radial-gradient(circle at top left, rgba(255, 65, 65, 0.08), transparent 30%),
       linear-gradient(180deg, rgba(6, 28, 33, 0.95), rgba(4, 18, 22, 0.98)); */
       background: radial-gradient(circle at top center, rgba(25, 112, 100, 0.22), transparent 44%), linear-gradient(180deg, rgba(7, 36, 33, 0.98) 0%, rgba(2, 10, 10, 0.98) 100%);
   }

   .comparison-card-negative h3 {
     color: #ff4646;
   }

   /* .comparison-card-negative h3::after {
     background: linear-gradient(90deg, rgba(255, 70, 70, 0.96), rgba(255, 70, 70, 0.35));
   } */

   .comparison-card-positive {
     /* background:
       radial-gradient(circle at top right, rgba(64, 229, 184, 0.1), transparent 30%),
       linear-gradient(180deg, rgba(5, 32, 39, 0.98), rgba(2, 17, 22, 0.98)); */
       background: radial-gradient(circle at top center, rgba(25, 112, 100, 0.22), transparent 44%), linear-gradient(180deg, rgba(7, 36, 33, 0.98) 0%, rgba(2, 10, 10, 0.98) 100%);
   }

   .comparison-card-positive h3 {
     color: var(--gold);
   }

   /* .comparison-card-positive h3::after {
     background: linear-gradient(90deg, rgba(72, 236, 192, 0.96), rgba(72, 236, 192, 0.35));
   } */

   .comparison-list {
     display: grid;
     gap: 1rem;
     margin: 0;
     padding: 0;
     list-style: none;
   }

   .comparison-list li {
     display: grid;
     grid-template-columns: 1.4rem 1fr;
     align-items: start;
     gap: 0.9rem;
     color: #f7f0e8;
     line-height: 1.7;
   }

   .comparison-icon {
     width: 1.4rem;
     height: 1.4rem;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-top: 0.22rem;
   }

   .comparison-icon svg {
     width: 100%;
     height: 100%;
     display: block;
   }

   .comparison-list-negative .comparison-icon {
     color: #ff4545;
   }

   .comparison-list-positive .comparison-icon {
     color: #48ecc0;
   }

   .comparison-list li span:last-child {
     display: block;
   }

   .video-showcase,
   .comparison-card,
   .counter-panel,
   .trust-media,
   .cta-panel,
   .sequence-sticky,
   .case-study-card {
     will-change: transform;
   }

   [data-parallax] {
     --parallax-offset: 0px;
   }

   .card-surface,
   .service-card,
   .process-card,
   .why-card,
   .placeholder-card,
   .case-study-card,
   .quote-card,
   .metric-card,
   .sequence-card {
     position: relative;
     /* background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
       radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 38%); */
       background: linear-gradient(180deg, #09332b 0%, #000000 100%);
     border: 1px solid var(--line);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow);
     overflow: hidden;
   }

   .card-surface::before,
   .service-card::before,
   .process-card::before,
   .why-card::before,
   .placeholder-card::before,
   .case-study-card::before,
   .quote-card::before,
   .metric-card::before,
   .sequence-card::before,
   .creative-card::before,
   .trust-media::before,
   .cta-panel::before,
   .footer-panel::before {
     content: "";
     position: absolute;
     width: 220px;
     height: 220px;
     top: -90px;
     right: -70px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(211, 161, 100, 0.24) 0%, rgba(127, 201, 166, 0.14) 38%, rgba(211, 161, 100, 0.02) 72%, transparent 100%);
     opacity: 0;
     transform: scale(0.72);
     transition: opacity 0.35s ease, transform 0.35s ease;
     pointer-events: none;
     z-index: 0;
   }

   .card-surface:hover::before,
   .service-card:hover::before,
   .process-card:hover::before,
   .why-card:hover::before,
   .placeholder-card:hover::before,
   .case-study-card:hover::before,
   .quote-card:hover::before,
   .metric-card:hover::before,
   .sequence-card:hover::before,
   .creative-card:hover::before,
   .trust-media:hover::before,
   .cta-panel:hover::before,
   .footer-panel:hover::before {
     opacity: 1;
     transform: scale(1);
   }

   .service-card>*,
   .process-card>*,
   .why-card>*,
   .placeholder-card>*,
   .sequence-card>*,
   .case-study-card>*,
   .quote-card>*,
   .metric-card>*,
   .creative-card>*,
   .trust-media>*,
   .cta-panel>*,
   .footer-panel>* {
     position: relative;
     z-index: 1;
   }

   .stat-card {
     padding: 1.5rem;
   }

   .stat-card strong {
     display: block;
     font-size: 2rem;
     color: var(--gold);
   }

   .stat-card span {
     color: var(--muted);
     font-size: 0.93rem;
   }

   .hero-visual {
     position: relative;
     min-height: 420px;
     display: flex;
     align-items: center;
     justify-content: center;
     perspective: 1400px;
   }

   .orb,
   .ring {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
   }

   .orb {
     opacity: 0.72;
     filter: blur(14px);
     animation: floatY 7s ease-in-out infinite;
   }

   .orb.one {
     width: 150px;
     height: 150px;
     top: 5%;
     right: 7%;
     background: radial-gradient(circle, rgba(211, 161, 100, 0.9), rgba(211, 161, 100, 0.04) 72%);
   }

   .orb.two {
     width: 160px;
     height: 160px;
     bottom: 7%;
     left: 6%;
     background: radial-gradient(circle, rgba(127, 201, 166, 0.75), rgba(127, 201, 166, 0.03) 72%);
     animation-delay: -2.2s;
   }

   .ring {
     width: 300px;
     height: 300px;
     top: 11%;
     left: 16%;
     border: 1px solid rgba(255, 255, 255, 0.05);
     box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.015);
     animation: spin 24s linear infinite;
   }

   .dashboard-3d {
     position: relative;
     width: min(100%, 420px);
     min-height: 420px;
     transform-style: preserve-3d;
     will-change: transform;
   }

   .dashboard-back,
   .dashboard-front {
     position: absolute;
     border-radius: 34px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
       linear-gradient(180deg, rgba(9, 38, 33, 0.96), rgba(4, 16, 15, 0.98));
     box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
     backdrop-filter: blur(18px);
   }

   .dashboard-back {
     inset: 1.5rem 1.5rem 0.5rem 0.5rem;
     opacity: 0.34;
     transform: translateZ(-50px) rotate(4deg);
   }

   .dashboard-front {
     inset: 0;
     padding: 0.9rem;
   }

   .hero-dashboard-grid {
     display: block;
     min-height: 0;
   }

   .hero-side-stack,
   .metric-card,
   .metric-tag,
   .metric-value,
   .hero-panel-title,
   .hero-chart,
   .hero-note,
   .hero-kpi,
   .insight-chip,
   .mini-card {
     display: none;
   }

   .hero-image-card {
     position: relative;
     overflow: hidden;
     border-radius: 28px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.12), transparent 30%);
     box-shadow: var(--shadow);
   }

   .hero-image-card img {
     width: 100%;
     height: 100%;
     min-height: 400px;
     object-fit: cover;
   }

   .hero-image-card::after {
     content: "";
     position: absolute;
     inset: auto 1rem 1rem 1rem;
     height: 88px;
     border-radius: 22px;
     background: linear-gradient(180deg, transparent 0%, rgba(4, 16, 15, 0.9) 100%);
     pointer-events: none;
   }

   .hero-image-badge {
     position: absolute;
     left: 1.1rem;
     bottom: 1.15rem;
     z-index: 2;
     padding: 0.65rem 0.9rem;
     border-radius: 16px;
     background: rgba(4, 16, 15, 0.72);
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(12px);
     color: var(--text);
     font-size: 0.9rem;
     line-height: 1.5;
   }

   .metric-card,
   .mini-card,
   .insight-chip {
     border-radius: 22px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.05);
   }

   .metric-card {
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
   }

   .metric-tag {
     display: inline-flex;
     align-items: center;
     border-radius: 999px;
     width: fit-content;
     padding: 0.46rem 0.82rem;
     background: rgba(127, 201, 166, 0.12);
     color: var(--mint);
     font-size: 0.78rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
   }

   .metric-value {
     font-size: clamp(2.6rem, 5vw, 4.7rem);
     line-height: 1;
     margin: 1rem 0 0.7rem;
   }

   .metric-card p,
   .mini-card p,
   .insight-chip {
     color: var(--muted);
   }

   .mini-stack {
     display: grid;
     gap: 1rem;
   }

   .mini-card {
     padding: 1.15rem;
   }

   .hero-panel-title {
     font-size: 1.25rem;
     margin-bottom: 0.55rem;
   }

   .hero-chart {
     margin-top: 1.35rem;
     padding: 1rem;
     border-radius: 22px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.04);
   }

   .hero-chart-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 0.85rem;
     align-items: end;
     min-height: 160px;
   }

   .hero-chart-grid span {
     border-radius: 16px 16px 8px 8px;
     background: linear-gradient(180deg, #efc791 0%, #aa7542 100%);
     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
     animation: growBars 1.5s ease both;
   }

   .hero-chart-grid span:nth-child(1) {
     height: 36%;
   }

   .hero-chart-grid span:nth-child(2) {
     height: 62%;
     animation-delay: 0.08s;
   }

   .hero-chart-grid span:nth-child(3) {
     height: 48%;
     animation-delay: 0.16s;
   }

   .hero-chart-grid span:nth-child(4) {
     height: 82%;
     animation-delay: 0.24s;
   }

   .hero-chart-grid span:nth-child(5) {
     height: 70%;
     animation-delay: 0.32s;
   }

   .hero-note {
     display: flex;
     justify-content: space-between;
     gap: 1rem;
     align-items: center;
     margin-top: 1rem;
     color: var(--muted);
     font-size: 0.95rem;
   }

   .hero-note strong {
     color: var(--text);
     font-size: 1rem;
   }

   .hero-kpi {
     padding: 1.2rem;
     border-radius: 24px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.05);
     box-shadow: var(--shadow-soft);
   }

   .hero-kpi strong {
     display: block;
     font-size: 2rem;
     line-height: 1;
     color: var(--gold);
     margin-bottom: 0.35rem;
   }

   .hero-kpi span,
   .hero-kpi p {
     color: var(--muted);
     margin: 0;
     line-height: 1.7;
   }

   .insight-chip {
     margin-top: 1rem;
     padding: 1rem 1.1rem;
     border-radius: 20px;
   }

   .logo-pill {
     padding: 1.1rem 0.9rem;
     text-align: center;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.04);
     color: rgba(247, 240, 232, 0.72);
     font-size: 0.8rem;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     font-weight: 700;
   }

   .bullet-stream {
     display: grid;
     gap: 1rem;
     margin-top: 1.75rem;
   }

   .bullet-stream div {
     display: flex;
     align-items: start;
     gap: 0.85rem;
     color: var(--muted);
   }

   .bullet-stream div::before {
     content: "";
     flex: 0 0 12px;
     width: 12px;
     height: 12px;
     margin-top: 0.35rem;
     border-radius: 4px;
     background: linear-gradient(180deg, #f2ca9b, var(--gold-deep));
     box-shadow: 0 0 0 6px rgba(211, 161, 100, 0.08);
   }

   .service-card,
   .process-card,
   .why-card,
   .placeholder-card,
   .sequence-card {
     padding: 2rem;
     height: 100%;
     transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
     transform-style: preserve-3d;
     isolation: isolate;
   }

   .service-card:hover,
   .process-card:hover,
   .why-card:hover,
   .placeholder-card:hover,
   .sequence-card:hover {
     transform: translateY(-10px) rotateX(5deg);
     border-color: rgba(211, 161, 100, 0.38);
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
   }

   .service-card h3,
   .process-card h3,
   .why-card h3,
   .placeholder-card h3,
   .sequence-card h3 {
     margin: 1.15rem 0 0.95rem;
     font-size: 1.3rem;
     line-height: 1.18;
   }

   .service-card p,
   .process-card p,
   .why-card p,
   .placeholder-card p,
   .sequence-card p {
     color: var(--muted);
     margin-bottom: 0;
     line-height: 1.8;
   }

   .icon-tile {
     width: 58px;
     height: 58px;
     display: grid;
     place-items: center;
     border-radius: 18px;
     color: var(--gold);
     background: linear-gradient(180deg, rgba(211, 161, 100, 0.24), rgba(211, 161, 100, 0.08));
     border: 1px solid rgba(211, 161, 100, 0.24);
   }

   .icon-tile svg {
     width: 28px;
     height: 28px;
   }

   .trust-split,
   .cta-panel {
     padding: 2.5rem;
     border-radius: var(--radius-xl);
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.08), transparent 30%);
     box-shadow: var(--shadow);
   }

   #trust > .container > .row {
     display: none;
   }

   .trust-centered {
     max-width: 1120px;
     margin: 0 auto;
   }

   /* .trust-centered .section-title {
     max-width: 15ch;
     margin-left: auto;
     margin-right: auto;
   } */

   .trust-centered .section-copy {
     max-width: 50rem;
   }

   .trust-box-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1.5rem;
     margin-top: 2.25rem;
   }

   .trust-focus-card {
     padding: 2rem 1.7rem;
     border-radius: 28px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     /* background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
       radial-gradient(circle at top left, rgba(127, 201, 166, 0.08), transparent 34%); */
       background: linear-gradient(180deg, #09332b 0%, #000000 100%);
     box-shadow: var(--shadow-soft);
     text-align: left;
   }

   .trust-focus-card h3 {
     margin: 0 0 1.25rem;
     font-size: 1.45rem;
     line-height: 1.2;
   }

   /* .trust-focus-card-accent {
     background:
       linear-gradient(180deg, rgba(211, 161, 100, 0.12), rgba(255, 255, 255, 0.035)),
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.12), transparent 34%);
   } */

   .trust-focus-list {
     display: grid;
     gap: 0.9rem;
     margin: 0;
     padding: 0;
     list-style: none;
   }

   .trust-focus-list li {
     display: flex;
     align-items: center;
     /* justify-content: center; */
     gap: 0.7rem;
     color: var(--muted);
     line-height: 1.7;
   }

   .trust-focus-list li::before {
     content: "";
     width: 0.8rem;
     height: 0.8rem;
     flex: 0 0 0.8rem;
     border-radius: 50%;
     background: linear-gradient(180deg, #f2ca9b, var(--gold-deep));
     box-shadow: 0 0 0 5px rgba(211, 161, 100, 0.08);
   }

   /* .problem-layout {
     max-width: 1120px;
     margin: 0 auto;
   } */

   /* .problem-copy .section-title {
     max-width: 14ch;
   } */

   .problem-copy .section-copy {
     max-width: 36rem;
   }

   .problem-box-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 1.5rem;
   }

   .problem-focus-card {
     padding: 2rem 1.75rem;
     border-radius: 30px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     /* background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
       radial-gradient(circle at top left, rgba(127, 201, 166, 0.08), transparent 36%); */
       background: linear-gradient(180deg, #09332b 0%, #000000 100%);
     box-shadow: var(--shadow-soft);
   }

   /* .problem-focus-card-accent {
     background:
       linear-gradient(180deg, rgba(211, 161, 100, 0.12), rgba(255, 255, 255, 0.035)),
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.12), transparent 36%);
   } */

   .problem-card-icon {
     width: 62px;
     height: 62px;
     display: grid;
     place-items: center;
     margin-bottom: 1.15rem;
     border-radius: 18px;
     background: linear-gradient(180deg, rgba(127, 201, 166, 0.2), rgba(127, 201, 166, 0.08));
     border: 1px solid rgba(127, 201, 166, 0.2);
     color: var(--mint);
   }

   .problem-focus-card-accent .problem-card-icon {
     background: linear-gradient(180deg, rgba(211, 161, 100, 0.22), rgba(211, 161, 100, 0.08));
     border-color: rgba(211, 161, 100, 0.2);
     color: var(--gold);
   }

   .problem-card-icon svg {
     width: 30px;
     height: 30px;
   }

   .problem-focus-card h3 {
     margin: 0 0 1.25rem;
     font-size: 1.5rem;
     line-height: 1.2;
   }

   .problem-focus-list {
     display: grid;
     gap: 0.9rem;
     margin: 0;
     padding: 0;
     list-style: none;
   }

   .problem-focus-list li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     color: var(--muted);
     line-height: 1.75;
   }

   .problem-focus-list li::before {
     content: "";
     width: 0.78rem;
     height: 0.78rem;
     flex: 0 0 0.78rem;
     margin-top: 0.42rem;
     border-radius: 50%;
     background: linear-gradient(180deg, #f2ca9b, var(--gold-deep));
     box-shadow: 0 0 0 5px rgba(211, 161, 100, 0.08);
   }

   .trust-media {
     position: relative;
     /* min-height: 560px; */
     border-radius: var(--radius-xl);
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.08);
     box-shadow: var(--shadow);
     background: #071814;
   }

   .trust-media img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }

   /* .trust-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4, 16, 15, 0.08) 0%, rgba(4, 16, 15, 0.76) 72%, rgba(4, 16, 15, 0.94) 100%),
        linear-gradient(90deg, rgba(4, 16, 15, 0.18) 0%, rgba(4, 16, 15, 0) 50%);
    }

    .trust-media-overlay {
      position: absolute;
      inset: auto 1.5rem 1.5rem 1.5rem;
      z-index: 1;
      display: grid;
      gap: 1rem;
    } */

   .trust-chip {
     display: inline-flex;
     width: fit-content;
     padding: 0.55rem 0.9rem;
     border-radius: 999px;
     border: 1px solid rgba(127, 201, 166, 0.24);
     background: rgba(127, 201, 166, 0.12);
     color: var(--mint);
     font-size: 0.8rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     font-weight: 700;
   }

   .trust-metric-row {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 1rem;
   }

   .trust-mini-card {
     padding: 1.15rem 1.2rem;
     border-radius: 20px;
     background: rgba(5, 17, 15, 0.72);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(14px);
   }

   .trust-mini-card strong {
     display: block;
     margin-bottom: 0.35rem;
     color: var(--text);
     font-size: 1rem;
   }

   .trust-mini-card span {
     color: rgba(247, 240, 232, 0.72);
     line-height: 1.6;
     font-size: 0.92rem;
   }

   .sequence-wrap {
     position: relative;
     display: grid;
     grid-template-columns: 0.88fr 1.12fr;
     gap: 3rem;
     align-items: start;
   }

   .sequence-sticky {
     position: sticky;
     top: 6rem;
     padding: 2.5rem;
     border-radius: var(--radius-xl);
     /* background:
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.15), transparent 35%),
       linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)); */
     border: 1px solid rgba(255, 255, 255, 0.08);
     box-shadow: var(--shadow);
     background: linear-gradient(180deg, #09332b 0%, #000000 100%);
   }

   .sequence-list {
     display: grid;
     gap: 1.5rem;
   }

   .sequence-card {
     min-height: 260px;
   }

   .sequence-number,
   .process-number {
     width: 52px;
     height: 52px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 16px;
     color: #071814;
     background: linear-gradient(135deg, #f2ca9b, var(--gold));
     font-weight: 800;
     box-shadow: 0 16px 28px rgba(211, 161, 100, 0.22);
   }

   .creatives-shell {
     position: relative;
     padding: 2.5rem;
     border-radius: var(--radius-xl);
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
       radial-gradient(circle at top left, rgba(127, 201, 166, 0.09), transparent 34%);
     box-shadow: var(--shadow);
     overflow: hidden;
   }

   .creatives-shell::before {
     content: "";
     position: absolute;
     inset: auto -4rem -4rem auto;
     width: 12rem;
     height: 12rem;
     background: radial-gradient(circle, rgba(211, 161, 100, 0.22), transparent 68%);
     pointer-events: none;
   }

   .creatives-owl {
     position: relative;
     padding: 0 0 0;
   }

   .creatives-owl .owl-stage {
     display: flex;
     align-items: stretch;
   }

   .creatives-owl .owl-item {
     padding: 0 0.1rem;
   }

   .creatives-owl .owl-item .item,
   .creatives-owl .owl-item .creative-card {
     height: 100%;
   }

   .creative-card {
     position: relative;
     min-height: 460px;
     border-radius: 24px;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: #071814;
     box-shadow: var(--shadow-soft);
     transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
   }

   .creative-card:hover {
     transform: translateY(-10px);
     border-color: rgba(211, 161, 100, 0.34);
     box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
   }

   .creative-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
   }

   .creative-card:hover img {
     transform: scale(1.05);
   }

   .creative-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(4, 16, 15, 0.08) 15%, rgba(4, 16, 15, 0.5) 62%, rgba(4, 16, 15, 0.96) 100%);
   }

 .creative-card-overlay {
     position: absolute;
     inset: auto 1rem 1rem 1rem;
     z-index: 1;
     padding: 1rem;
     border-radius: 20px;
     background: rgba(5, 17, 15, 0.7);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(14px);
   } 

 .creative-card-tag {
     display: inline-flex;
     margin-bottom: 0.75rem;
     padding: 0.42rem 0.75rem;
     border-radius: 999px;
     background: rgba(211, 161, 100, 0.12);
     color: var(--gold);
     font-size: 0.72rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     font-weight: 700;
   }

  /* .creative-card-overlay h3 {
     margin: 0;
     font-size: 1.1rem;
     line-height: 1.35;
   } */

   /* .creative-videos-section {
     padding-top: 0;
   } */

   .creative-video-shell {
     position: relative;
     padding: 2.5rem;
     border-radius: var(--radius-xl);
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
       radial-gradient(circle at top right, rgba(211, 161, 100, 0.1), transparent 34%);
     box-shadow: var(--shadow);
     overflow: hidden;
   }

   .creative-video-shell::before {
     content: "";
     position: absolute;
     inset: auto auto -4rem -4rem;
     width: 12rem;
     height: 12rem;
     background: radial-gradient(circle, rgba(64, 229, 184, 0.18), transparent 70%);
     pointer-events: none;
   }

   .creative-video-owl {
     position: relative;
   }

   .creative-video-owl .owl-stage {
     display: flex;
     align-items: stretch;
   }

   .creative-video-owl .owl-item {
     padding: 0 0.15rem;
   }

   .creative-video-owl .owl-item .item,
   .creative-video-owl .owl-item .creative-video-card {
     height: 100%;
   }

   .creative-video-card {
     height: 100%;
     /* padding: 1rem; */
     border-radius: 28px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
       rgba(4, 16, 15, 0.78);
     box-shadow: var(--shadow-soft);
     transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
   }

   .creative-video-card:hover {
     transform: translateY(-10px);
     border-color: rgba(127, 201, 166, 0.3);
     box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
   }

   .creative-video-frame {
     position: relative;
     overflow: hidden;
     border-radius: 22px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: #051310;
     aspect-ratio: 9 / 16;
   }

   .creative-video-frame::after {
     content: "";
     position: absolute;
     inset: auto 0 0;
     height: 28%;
     background: linear-gradient(180deg, transparent 0%, rgba(4, 16, 15, 0.72) 100%);
     pointer-events: none;
   }

   .creative-video-frame video {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
     background: #04100f;
   }

   /* .creative-video-meta {
     padding: 1rem 0.3rem 0.2rem;
   }

   .creative-video-meta h3 {
     margin: 0;
     font-size: 1.08rem;
     line-height: 1.45;
   } */

   .creative-video-owl .owl-nav,
   .creative-video-owl .owl-dots {
     margin-top: 1.4rem;
   }

   .creative-video-owl .owl-nav button.owl-prev,
   .creative-video-owl .owl-nav button.owl-next {
     position: absolute;
     top: 44%;
     z-index: 2;
     width: 52px;
     height: 52px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     background: rgba(4, 16, 15, 0.82);
     color: var(--text);
     backdrop-filter: blur(14px);
     transform: translateY(-50%);
     transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
   }

   .creative-video-owl .owl-nav button.owl-prev:hover,
   .creative-video-owl .owl-nav button.owl-next:hover {
     background: rgba(127, 201, 166, 0.18);
     color: var(--mint);
     transform: translateY(-50%) scale(1.04);
   }

   .creative-video-owl .owl-nav button.owl-prev {
     left: -0.5rem;
   }

   .creative-video-owl .owl-nav button.owl-next {
     right: -0.5rem;
   }

   .creative-video-owl .owl-nav button.owl-prev span,
   .creative-video-owl .owl-nav button.owl-next span {
     font-size: 1.5rem;
     line-height: 1;
   }

   .creative-video-owl .owl-dots {
     display: flex;
     justify-content: center;
     gap: 0.55rem;
   }

   .creative-video-owl.owl-theme .owl-dots .owl-dot span {
     width: 10px;
     height: 10px;
     margin: 0;
     background: rgba(255, 255, 255, 0.28);
     transition: transform 0.25s ease, background 0.25s ease;
   }

   .creative-video-owl.owl-theme .owl-dots .owl-dot.active span,
   .creative-video-owl.owl-theme .owl-dots .owl-dot:hover span {
     background: var(--mint);
     transform: scale(1.15);
   }

   .creatives-owl .owl-nav {
     margin-top: 0;
   }

   .creatives-owl .owl-nav button.owl-prev,
   .creatives-owl .owl-nav button.owl-next {
     position: absolute;
     top: 50%;
     z-index: 2;
     width: 52px;
     height: 52px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     background: rgba(4, 16, 15, 0.82);
     color: var(--text);
     backdrop-filter: blur(14px);
     transform: translateY(-50%);
     transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
   }

   .creatives-owl .owl-nav button.owl-prev:hover,
   .creatives-owl .owl-nav button.owl-next:hover {
     background: rgba(211, 161, 100, 0.2);
     color: var(--gold);
     transform: translateY(-50%) scale(1.04);
   }

   .creatives-owl .owl-nav button.owl-prev.disabled,
   .creatives-owl .owl-nav button.owl-next.disabled {
     opacity: 0.4;
     transform: translateY(-50%);
   }

   .creatives-owl .owl-nav button.owl-prev {
     left: -0.5rem;
   }

   .creatives-owl .owl-nav button.owl-next {
     right: -0.5rem;
   }

   .creatives-owl .owl-nav button.owl-prev span,
   .creatives-owl .owl-nav button.owl-next span {
     font-size: 1.5rem;
     line-height: 1;
   }

   .creatives-owl .owl-dots {
     margin-top: 1.4rem;
     display: flex;
     justify-content: center;
     gap: 0.55rem;
   }

   .creatives-owl.owl-theme .owl-dots .owl-dot span {
     width: 10px;
     height: 10px;
     margin: 0;
     background: rgba(255, 255, 255, 0.28);
     transition: transform 0.25s ease, background 0.25s ease;
   }

   .creatives-owl.owl-theme .owl-dots .owl-dot.active span,
   .creatives-owl.owl-theme .owl-dots .owl-dot:hover span {
     background: var(--gold);
     transform: scale(1.15);
   }

   .case-stack {
     position: relative;
     display: grid;
     gap: 1.25rem;
     padding-top: 1.5rem;
   }

   .case-study-card {
     position: sticky;
     top: calc(6.5rem + var(--stack-offset, 0px));
     padding: 2rem;
     border-radius: 30px;
     /* background:
        radial-gradient(circle at top right, rgba(127, 201, 166, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); */
     background: var(--dark-bg);
   }

   .case-study-card:nth-child(1) {
     --stack-offset: 0px;
   }

   .case-study-card:nth-child(2) {
     --stack-offset: 20px;
   }

   .case-study-card:nth-child(3) {
     --stack-offset: 40px;
   }

   .case-study-card:nth-child(4) {
     --stack-offset: 60px;
   }

   .case-study-card:nth-child(5) {
     --stack-offset: 80px;
   }

   .case-study-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: center;
   }

   .case-image-wrap {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     /*min-height: 380px;*/
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: #051210;
   }

   .case-image-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }

   .case-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     padding: 0.5rem 0.85rem;
     border-radius: 999px;
     background: rgba(5, 17, 15, 0.74);
     border: 1px solid rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(14px);
     font-size: 0.82rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--mint);
   }

   .case-tag {
     display: inline-flex;
     width: fit-content;
     padding: 0.45rem 0.8rem;
     border-radius: 999px;
     background: rgba(211, 161, 100, 0.12);
     color: var(--gold);
     font-size: 0.8rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     margin-bottom: 0.85rem;
   }

   .case-study-card h3 {
     font-size: clamp(1.8rem, 3vw, 2.9rem);
     line-height: 1.08;
     margin-bottom: 0.85rem;
   }

   .case-copy {
     color: var(--muted);
     margin-bottom: 1.2rem;
     line-height: 1.85;
   }

   .case-points {
     display: grid;
     gap: 0.85rem;
     /*margin: 1.4rem 0 1.8rem;*/
     margin-top: 10px;
     margin-bottom: 0;
     padding: 0;
     list-style: none;
   }

   .case-points li {
     display: flex;
     gap: 0.8rem;
     color: var(--text);
   }

   .case-points li::before {
     content: "";
     width: 10px;
     height: 10px;
     margin-top: 0.4rem;
     border-radius: 50%;
     background: linear-gradient(180deg, #f2ca9b, var(--gold-deep));
     box-shadow: 0 0 0 6px rgba(211, 161, 100, 0.08);
     flex: 0 0 10px;
   }

   .case-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 0.85rem;
     margin-top: 1.3rem;
   }

   .case-meta span {
     padding: 0.7rem 0.9rem;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.08);
     color: var(--muted);
     font-size: 0.92rem;
   }

   .placeholder-image {
     margin-bottom: 1.2rem;
     overflow: hidden;
     border-radius: 20px;
     border: 1px solid rgba(255, 255, 255, 0.08);
   }

   .placeholder-image img {
     width: 100%;
     height: 240px;
     object-fit: cover;
   }

   .cta-panel {
     position: relative;
     overflow: hidden;
   }

   .cta-panel::after {
     content: "";
     position: absolute;
     right: -3rem;
     bottom: -3rem;
     width: 12rem;
     height: 12rem;
     background: radial-gradient(circle, rgba(211, 161, 100, 0.2), transparent 68%);
     pointer-events: none;
   }

   .site-footer {
     position: relative;
     /* padding: 1rem 0 2rem; */
     color: rgba(247, 240, 232, 0.72);
   }

   .footer-panel {
     position: relative;
     overflow: hidden;
     /* padding: 1.4rem 1.6rem 1rem; */
     padding: 40px 0px 20px 0;
     border-radius: 0;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background:
       linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
       radial-gradient(circle at top left, rgba(211, 161, 100, 0.14), transparent 28%),
       linear-gradient(180deg, rgba(8, 28, 24, 0.95), rgba(4, 16, 15, 0.98));
     box-shadow: var(--shadow);
     text-align: center;
   }

   .footer-glow {
     position: absolute;
     border-radius: 50%;
     filter: blur(18px);
     opacity: 0.55;
     pointer-events: none;
   }

   .footer-glow-one {
     width: 180px;
     height: 180px;
     top: -2rem;
     right: 10%;
     background: rgba(211, 161, 100, 0.18);
   }

   .footer-glow-two {
     width: 160px;
     height: 160px;
     bottom: -3rem;
     left: 8%;
     background: rgba(127, 201, 166, 0.14);
   }

   .footer-brand-wrap {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 0.45rem;
   }

   .footer-kicker {
     display: inline-block;
     margin-bottom: 0;
     color: var(--gold);
     font-size: 0.74rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     font-weight: 700;
   }

   .footer-logo {
     width: 130px;
   }

   .footer-links-row {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.65rem 1.4rem;
     margin-top: 1rem;
   }

   .footer-links-row a {
     color: rgba(247, 240, 232, 0.76);
     font-size: 0.94rem;
     transition: color 0.25s ease, transform 0.25s ease;
   }

   .footer-links-row a:hover {
     color: var(--gold);
     transform: translateY(-2px);
   }

   .footer-bottom {
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     display: block;
     color: rgba(247, 240, 232, 0.58);
     font-size: 0.86rem;
   }

   #trust,
   #scroll-sequence,
   #case-studies,
   #contact {
     background:
       linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
   }

   #services .row,
   #process .row,
   #placeholders .row {
     row-gap: 1.5rem;
   }

   #problem,
   #scroll-sequence,
   #creatives,
   #approach,
   #placeholders {
     padding-top: 7.5rem !important;
   }

   #creatives .section-copy,
   #case-studies .section-copy,
   #process .section-copy {
     max-width: 54rem;
   }

   .reveal {
     opacity: 0;
     transform: translate3d(0, calc(var(--parallax-offset, 0px) + 38px), 0) scale(0.985);
     transition: opacity 0.8s ease, transform 0.8s ease;
   }

   .reveal.is-visible {
     opacity: 1;
     transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1);
   }

   .stagger-group > * {
     transition-delay: var(--stagger-delay, 0ms);
   }

   .tilt-card {
     transform-style: preserve-3d;
     will-change: transform;
     transition: transform 0.18s ease-out;
   }

   .depth-layer {
     transform: translateZ(28px);
   }

   @keyframes floatY {

     0%,
     100% {
       transform: translateY(0);
     }

     50% {
       transform: translateY(-18px);
     }
   }

   @keyframes spin {
     from {
       transform: rotate(0deg);
     }

     to {
       transform: rotate(360deg);
     }
   }

   @keyframes growBars {
     from {
       opacity: 0.4;
       transform: scaleY(0.25);
       transform-origin: bottom;
     }

     to {
       opacity: 1;
       transform: scaleY(1);
       transform-origin: bottom;
     }
   }

   @keyframes marqueeMove {
     from {
       transform: translateX(0);
     }

     to {
       transform: translateX(-50%);
     }
   }

   @keyframes titleWordIn {
     from {
       opacity: 0;
       transform: translateY(24px) scale(0.96);
     }

     to {
       opacity: 1;
       transform: translateY(0) scale(1);
     }
   }

   @media (max-width: 1199.98px) {

     .case-study-grid,
     .sequence-wrap {
       grid-template-columns: 1fr;
     }

     .hero-centered h1,
     .comparison-title {
       max-width: 14ch;
       margin-left: auto;
       margin-right: auto;
     }

     .hero-visual {
       min-height: 360px;
     }

     .dashboard-front,
     .dashboard-back {
       transform: none;
     }
   }

   @media (max-width: 991.98px) {
     .navbar {
       border-radius: 24px;
     }

     /* .hero-stage {
       border-radius: 30px;
     } */

     .hero-grid {
       padding-top: 3.25rem;
      }

     .hero-centered {
       padding: 3.2rem 1.6rem 2.5rem;
      }

      .video-showcase {
        padding: 1.5rem;
      }

      .problem-box-grid {
        grid-template-columns: 1fr;
      }

      .problem-copy .section-title,
      .problem-copy .section-copy {
        max-width: none;
      }

      .problem-focus-card {
        padding: 1.85rem 1.45rem;
      }

      .trust-box-grid {
        grid-template-columns: 1fr;
      }

      .trust-focus-card {
        padding: 1.75rem 1.35rem;
      }

      .comparison-card {
        padding: 2rem 1.5rem;
      }

      .comparison-card h3 {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
      }

      .hero-mini span {
        font-size: 0.92rem;
      }

     /* .section-space {
       padding: 6rem 0;
     } */

     #problem,
     #scroll-sequence,
     #creatives,
     #approach,
     #placeholders {
       padding-top: 6rem !important;
     }

      .dashboard-3d {
        width: min(100%, 380px);
      }

      .counter-panel {
        border-radius: 36px;
        grid-template-columns: 1fr;
      }

      .counter-item {
        border-radius: 28px;
      }

      .brand-logo-chip {
        width: 150px;
        /*height: 96px;*/
      }

      .footer-panel {
        padding: 1.25rem 1.35rem 0.95rem;
      }
   }

   @media (max-width: 767.98px) {
     /* .section-space {
       padding: 4.75rem 0;
     } */

     .hero {
       padding: 2rem 0 2rem;
      }

      .hero-stage {
       padding-bottom: 1.4rem;
       /* border-radius: 26px; */
      }

      .hero h1 {
       font-size: clamp(2.4rem, 3vw, 5.8rem);
      }

      .hero-centered {
       padding: 2.5rem 1.1rem 2.25rem;
       border-radius: 28px;
      }

      /* .video-section {
       padding: 1.5rem 0 1rem;
      } */

      .video-showcase {
       padding: 1.15rem;
       border-radius: 24px;
      }

      .hero-card-tags {
       margin-top: 2rem;
      }

      .hero-card-tags span {
       width: 100%;
       justify-content: center;
      }

      .problem-focus-card {
       padding: 1.5rem 1.1rem;
       border-radius: 22px;
      }

      .problem-focus-card h3 {
       font-size: 1.25rem;
      }

      .problem-focus-list li {
       line-height: 1.65;
      }

      .trust-focus-card {
       padding: 1.5rem 1.1rem;
       border-radius: 22px;
      }

      .trust-focus-card h3 {
       font-size: 1.25rem;
      }

      .trust-focus-list li {
       justify-content: flex-start;
       text-align: left;
      }

      /* .comparison-section {
       padding-top: 0.5rem;
      } */

      .comparison-title .title-line {
       gap: 0.25rem 0.55rem;
      }

      .comparison-title {
       max-width: 11ch;
       margin-left: auto;
       margin-right: auto;
      }

      .comparison-card {
       padding: 1.6rem 1.2rem;
       border-radius: 24px;
      }

      .comparison-card h3 {
       margin-bottom: 1.5rem;
      }

      .comparison-list li {
       grid-template-columns: 1.2rem 1fr;
       gap: 0.75rem;
      }

      .video-frame {
       border-radius: 22px;
      }

      .video-frame-note {
       left: 0.9rem;
       right: 0.9rem;
       bottom: 0.9rem;
       text-align: center;
       border-radius: 16px;
      }

      .hero-warning {
       font-size: 0.92rem;
       line-height: 1.7;
      }

      .hero-social-proof {
       margin-top: 2.2rem;
      }

      .hero-mini span {
        width: 100%;
        justify-content: center;
        text-align: center;
       border-radius: 24px;
     }

      .hero-visual {
        min-height: 300px;
      }

      .brand-marquee-label {
        font-size: 0.75rem;
        line-height: 1.6;
      }

      .brand-marquee::before,
      .brand-marquee::after {
        width: 3rem;
      }

      /*.brand-logo-chip {*/
      /*  width: 128px;*/
      /*  height: 84px;*/
      /*  padding: 0.85rem;*/
      /*}*/

      /* .counter-section {
        padding-top: 2.5rem;
      } */

      .counter-panel {
        padding: 0.85rem;
      }

      .counter-item {
        padding: 1.35rem 0.9rem;
      }

      .counter-item span {
        font-size: 0.92rem;
      }

      .sequence-sticky,
      .creatives-shell,
      .trust-split,
     .cta-panel,
     .case-study-card {
       padding: 1.5rem;
     }

     .service-card,
     .process-card,
     .why-card,
     .placeholder-card,
     .sequence-card {
       padding: 1.5rem;
     }

     /* .trust-media {
        min-height: 400px;
      } */

     .trust-metric-row,
     .footer-brand-wrap {
       grid-template-columns: 1fr;
     }

     .creative-card {
       min-height: 520px;
     }

      .creative-video-shell {
       padding: 1.5rem;
      }

      .creative-video-card {
       padding: 0.85rem;
       border-radius: 22px;
      }

      .creative-video-frame {
       border-radius: 18px;
      }

     .creatives-owl .owl-nav {
       display: none;
     }

      .creative-video-owl .owl-nav {
       display: none;
      }

     .sequence-sticky {
       position: static;
     }

     #problem,
     #scroll-sequence,
     #creatives,
     #approach,
     #placeholders {
       padding-top: 4.75rem !important;
     }

     /*.case-image-wrap {*/
     /*  min-height: 280px;*/
     /*}*/

     .hero-image-card img {
       min-height: 280px;
     }

     .placeholder-image img {
       height: 210px;
     }

     .footer-panel {
       /* padding: 1.1rem 1rem 0.9rem; */
       padding: 40px 0px 20px 0;
     }

     .footer-brand-wrap .brand-logo {
       width: 78px;
     }

     .footer-bottom {
       font-size: 0.8rem;
     }

     .case-study-card {
       position: relative;
       top: auto;
     }
   }

   @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
       animation: none !important;
       transition: none !important;
       scroll-behavior: auto !important;
     }

     .reveal {
       opacity: 1;
       transform: none;
     }

     [data-parallax] {
       --parallax-offset: 0px !important;
     }

     .brand-marquee-track {
       animation: none;
     }
   }
