﻿/* Copyright 2026 HomeOne Interiors. All rights reserved. */
:root {
  --bg:   #060d1a;
  --bg2:  #09111f;
  --bg3:  #0d1829;
  --blue: #1a6bda;
  --bl:   #5b9aff;
  --glow: rgba(26,107,218,.32);
  --white:#eef3ff;
  --mute: #7e92b2;
  --line: rgba(26,107,218,.16);
  --fh:   'Josefin Sans', sans-serif;
  --fb:   'Jost', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --nav-h: 72px;
  --ob-h:  0px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; color: inherit; }
address { font-style: normal; }
h1,h2,h3,h4,h5,h6 { font-family: var(--fh); line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.2rem,5vw,4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 600; letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; }
p { color: var(--mute); }
.grain-wrap { position: relative; overflow: hidden; }
.grain-wrap::after {
  content: '';
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04; pointer-events: none; z-index: 1;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)}10%{transform:translate(-5%,-10%)}20%{transform:translate(-15%,5%)}
  30%{transform:translate(7%,-25%)}40%{transform:translate(-5%,25%)}50%{transform:translate(-15%,10%)}
  60%{transform:translate(15%,0)}70%{transform:translate(0,15%)}80%{transform:translate(3%,35%)}90%{transform:translate(-10%,10%)}
}
.ph-hero-bc { margin-bottom: 36px; }
.ph-hero-bc .ph-bc-list {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; list-style: none;
}
.ph-hero-bc .ph-bc-item { display: flex; align-items: center; }
.ph-hero-bc .ph-bc-link {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); transition: color .2s;
}
.ph-hero-bc .ph-bc-link:hover { color: rgba(255,255,255,.85); }
.ph-hero-bc .ph-bc-sep { color: rgba(26,107,218,.55); font-size: 9px; margin-right: 8px; }
.ph-hero-bc .ph-bc-current {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  max-width: 42ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.rv  { opacity: 0; transform: translateY(28px); }
.rvl { opacity: 0; transform: translateX(-32px); }
.rvr { opacity: 0; transform: translateX(32px); }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: none; transition: opacity .65s var(--ease), transform .65s var(--ease); }
.skip-nav {
  position: absolute; top: -100%; left: 24px; z-index: 10000;
  background: var(--blue); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 6px 6px; font-size: 14px;
}
.skip-nav:focus { top: 0; }
body .ph-hero { padding-top: calc(var(--nav-h) + var(--ob-h)); }

.ob {
  position: fixed; top: 0; left: 0; right: 0; z-index: 910;
  height: var(--ob-h); overflow: hidden;
  background: linear-gradient(90deg, #060d1a 0%, #091225 25%, #0e1b30 50%, #091225 75%, #060d1a 100%);
  border-bottom: 1px solid rgba(26,107,218,.28);
  transform: translateY(0); opacity: 1;
  transition: transform .45s var(--ease), opacity .35s;
}
.ob.ob-hide { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.ob-inner {
  display: flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 44px 0 16px; gap: 14px;
  position: relative; z-index: 2;
}
.ob-badge {
  display: flex; align-items: center; gap: 7px; flex-shrink: 0;
  background: rgba(26,107,218,.12); border: 1px solid rgba(26,107,218,.3);
  padding: 3px 10px 3px 7px; border-radius: 2px;
}
.ob-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(26,107,218,.9), 0 0 16px rgba(26,107,218,.5);
  animation: obDotPulse 2s ease-in-out infinite;
}
@keyframes obDotPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 6px rgba(26,107,218,.8); }
  50%      { transform: scale(1.55); box-shadow: 0 0 14px rgba(26,107,218,1), 0 0 28px rgba(26,107,218,.4); }
}
.ob-badge-label {
  font: 700 9px/1 var(--fh); letter-spacing: .2em; text-transform: uppercase; color: var(--blue);
}
.ob-marquee {
  flex: 1; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.ob-track {
  display: flex; align-items: center; gap: 36px; width: max-content;
  animation: obMarquee 32s linear infinite;
  will-change: transform;
}
.ob-marquee:hover .ob-track { animation-play-state: paused; }
.ob-item {
  font: 500 12.5px/1 var(--fb); color: rgba(238,243,255,.78);
  letter-spacing: .02em; white-space: nowrap; flex-shrink: 0;
}
.ob-item em { color: var(--white); font-style: normal; font-weight: 600; }
.ob-sep { color: rgba(26,107,218,.65); font-size: 8px; flex-shrink: 0; }
@keyframes obMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ob-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(238,243,255,.35); font-size: 12px;
  transition: color .2s, background .2s;
}
.ob-close:hover { color: var(--white); background: rgba(255,255,255,.1); }
.ob-beam {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, transparent 25%, rgba(26,107,218,.055) 50%, transparent 75%);
  animation: obBeam 7s linear infinite;
}
@keyframes obBeam { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.ob::after {
  content: ''; position: absolute; bottom: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(26,107,218,.55), rgba(91,154,255,.8), rgba(26,107,218,.55), transparent);
  animation: obGlow 3.5s ease-in-out infinite alternate;
}
@keyframes obGlow { from { opacity: .3; } to { opacity: .9; } }

@media (max-width: 640px) {
  .ob-inner { gap: 8px; padding-right: 40px; }
  .ob-item { font-size: 11px; }
  .ob-badge { display: none; }
}

.pg-bar {
  position: fixed; top: var(--ob-h); left: 0; height: 2px; width: 0;
  background: linear-gradient(to right, var(--blue), var(--bl));
  z-index: 9998; transition: width .1s linear;
}
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: #030810;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  transition: opacity 0.7s ease;
}
#preloader.out { opacity: 0; pointer-events: none; }
.pl-stage {
  position: relative; width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
  perspective: 420px;
}
.pl-cube {
  width: 54px; height: 54px; position: relative;
  transform-style: preserve-3d;
  animation: plCubeSpin 7s linear infinite;
}
@keyframes plCubeSpin {
  0%   { transform: rotateX(0deg)   rotateY(0deg)   rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(540deg) rotateZ(180deg); }
}
.pl-face {
  position: absolute; inset: 0;
  border: 1px solid rgba(91,154,255,.65);
  background: rgba(26,107,218,.07);
}
.pl-face::after {
  content: ''; position: absolute; inset: 3px;
  border: 1px solid rgba(26,107,218,.2);
}
.pl-f  { transform: translateZ(27px); }
.pl-b  { transform: rotateY(180deg)  translateZ(27px); }
.pl-l  { transform: rotateY(-90deg)  translateZ(27px); }
.pl-r  { transform: rotateY(90deg)   translateZ(27px); }
.pl-t  { transform: rotateX(90deg)   translateZ(27px); }
.pl-bo { transform: rotateX(-90deg)  translateZ(27px); }
.pl-ring {
  position: absolute; border-radius: 50%; border-style: solid;
}
.pl-ring-1 {
  width: 108px; height: 108px; border-width: 1px;
  border-color: rgba(26,107,218,.6) rgba(26,107,218,.1) rgba(26,107,218,.1) rgba(26,107,218,.1);
  animation: plR1 2.6s linear infinite;
}
@keyframes plR1 { to { transform: rotate(360deg); } }
.pl-ring-2 {
  width: 138px; height: 138px; border-width: 1px;
  border-color: rgba(91,154,255,.4) transparent transparent transparent;
  animation: plR2 4.8s linear infinite reverse;
}
@keyframes plR2 {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to   { transform: rotateX(68deg) rotateZ(360deg); }
}
.pl-ring-3 {
  width: 168px; height: 168px; border-width: 1px;
  border-color: rgba(26,107,218,.25) transparent transparent transparent;
  animation: plR3 8.5s linear infinite;
}
@keyframes plR3 {
  from { transform: rotateX(80deg) rotateZ(0deg); }
  to   { transform: rotateX(80deg) rotateZ(360deg); }
}
.pl-glow {
  position: absolute; inset: 26px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,218,.28) 0%, rgba(26,107,218,.06) 55%, transparent 75%);
  animation: plGlowPulse 2.2s ease-in-out infinite;
}
@keyframes plGlowPulse {
  0%, 100% { opacity: .5; transform: scale(.88); }
  50%       { opacity: 1; transform: scale(1.14); }
}
.pl-brand {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.pl-logo-wrap { overflow: hidden; }
.pl-logo {
  height: 44px; width: auto;
  opacity: 0; animation: plLogoIn 0.6s ease 0.35s forwards;
  filter: drop-shadow(0 0 14px rgba(26,107,218,.55));
}
@keyframes plLogoIn { to { opacity: 1; } }
.pl-bar {
  width: 220px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
}
.pl-fill {
  display: block; height: 100%; width: 0;
  background: linear-gradient(to right, var(--blue), var(--bl));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--blue), 0 0 16px rgba(26,107,218,.4);
}
.pl-num {
  font-family: var(--fh); font-size: 12px; letter-spacing: .22em;
  color: rgba(91,154,255,.65); min-width: 40px; text-align: center;
}
.pl-num em { font-style: normal; font-size: 10px; }
@media (max-height: 480px) { .pl-stage { transform: scale(.72); } }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: 4px;
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; transition: background .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--bl); box-shadow: 0 8px 28px var(--glow); transform: translateY(-2px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-primary.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); color: var(--mute);
  padding: 12px 24px; border-radius: 4px;
  font-family: var(--fb); font-size: 14px; font-weight: 500;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.08); }
.nav {
  position: fixed; top: var(--ob-h); left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: top .4s var(--ease), background .3s, box-shadow .3s;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .4s, box-shadow .4s, border-color .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(6,13,26,.95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.nav:not(.scrolled) .nav-link { color: rgba(238,243,255,.8); }
.nav:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-logo { position: relative; }
.nav-inner { display: flex; align-items: center; height: 100%; gap: 32px; }
.nav-logo img { height: 36px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--mute);
  padding: 8px 12px; border-radius: 4px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-link.active,
.nav:not(.scrolled) .nav-link.active { color: var(--white); }
.nav-link.active::after,
.nav-item--drop.open .nav-drop-btn::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 2px; background: var(--blue); border-radius: 1px;
}
.nav-item--drop.open .nav-drop-btn { color: var(--white); }
.nav-drop-btn { font-size: 14px; }
.nav-chev {
  font-size: 10px; transition: transform .25s;
}
.nav-item--drop { position: relative; }
.nav-item--drop:hover .nav-chev,
.nav-item--drop.open .nav-chev { transform: rotate(180deg); }
.mega-menu {
  position: fixed; top: var(--nav-h); left: 50%;
  background: var(--bg2); border: 1px solid var(--line); border-radius: 8px;
  min-width: min(720px, 95vw); max-width: 95vw;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity .28s, visibility .28s, transform .28s var(--ease);
  pointer-events: none;
}
.nav-item--drop.open .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
  background: transparent;
}
.mega-menu--wide { min-width: min(800px, 95vw); }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.mega-col { padding: 28px 24px; }
.mega-col + .mega-col { border-left: 1px solid var(--line); }
.mega-label { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.mega-label--gap { margin-top: 20px; }
.mega-col ul li { margin-bottom: 2px; }
.mega-col ul li a {
  display: block; font-size: 13.5px; color: var(--mute);
  padding: 5px 8px; border-radius: 3px;
  transition: color .2s, background .2s;
}
.mega-col ul li a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mega-col--featured { display: flex; flex-direction: column; gap: 8px; }
.mega-feature {
  background: linear-gradient(135deg, var(--bg3), rgba(26,107,218,.1));
  border: 1px solid var(--line); border-radius: 6px;
  padding: 18px; display: block;
  transition: border-color .25s, box-shadow .25s;
}
.mega-feature:hover { border-color: var(--blue); box-shadow: 0 4px 20px var(--glow); }
.mega-feature-badge { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); }
.mega-feature-title { display: block; font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--white); margin: 6px 0 4px; }
.mega-feature-desc { font-size: 12px; color: var(--mute); margin: 0 0 8px; }
.mega-feature-cta { font-size: 12px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 5px; }
.mega-extra-link {
  display: block; font-size: 13px; color: var(--mute);
  padding: 6px 8px; border-radius: 3px;
  transition: color .2s, background .2s;
}
.mega-extra-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-end { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 7px; border-radius: 4px;
  transition: background .2s;
}
.nav-ham:hover { background: rgba(255,255,255,.06); }
.nav-ham span { display: block; height: 1.5px; background: var(--mute); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-drawer {
  position: fixed; top: 0; right: -340px; width: 320px; height: 100dvh;
  background: var(--bg2); border-left: 1px solid var(--line);
  z-index: 1000; padding: 24px 20px 32px; display: flex; flex-direction: column; gap: 24px;
  overflow-y: auto; transition: right .4s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.nav-drawer.open { right: 0; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 999; opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-logo img { height: 32px; }
.drawer-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--mute); border-radius: 4px; font-size: 18px; transition: color .2s, background .2s; }
.drawer-close:hover { color: var(--white); background: rgba(255,255,255,.06); }
.drawer-list { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.drawer-link { display: block; font-size: 15px; color: var(--mute); padding: 10px 8px; border-radius: 4px; transition: color .2s, background .2s; }
.drawer-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.drawer-group-btn {
  width: 100%; text-align: left; font-size: 15px; color: var(--mute);
  padding: 10px 8px; border-radius: 4px; display: flex; justify-content: space-between; align-items: center;
  transition: color .2s, background .2s;
}
.drawer-group-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.drawer-sub { padding-left: 16px; margin-top: 4px; display: flex; flex-direction: column; gap: 1px; }
.drawer-sub[hidden] { display: none; }
.drawer-sub a { display: block; font-size: 13px; color: var(--mute); padding: 7px 8px; border-radius: 3px; transition: color .2s, background .2s; }
.drawer-sub a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.drawer-cta { display: block; text-align: center; }
.footer { background: var(--bg2); }
.footer-top { padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.footer-top-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 64px; align-items: start; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 36px; }
.footer-tagline { font-size: 13px; color: var(--mute); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 8px; }
.fsoc { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; color: var(--mute); transition: border-color .2s, color .2s, background .2s; }
.fsoc:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.12); }

.footer-stat-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.footer-headline { font-family: var(--fh); font-size: clamp(1.7rem,2.8vw,2.4rem); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 28px; }
.footer-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.footer-rating-num { font-family: var(--fh); font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.footer-rating-stars { color: #f5a623; font-size: 17px; letter-spacing: 3px; }
.footer-rating-sub { font-size: 12.5px; color: var(--mute); margin-bottom: 16px; }
.footer-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-chip { font-size: 11px; font-weight: 600; color: var(--mute); padding: 4px 11px; border: 1px solid var(--line); border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; transition: border-color .2s, color .2s; }
.footer-chip i { color: var(--blue); font-size: 10px; }
.footer-chip:hover { border-color: rgba(26,107,218,.35); color: var(--white); }

.footer-address { margin-bottom: 4px; }
.footer-address p { font-size: 13px; color: var(--mute); line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 24px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mute); transition: color .2s; }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item i { color: var(--blue); width: 14px; }
.footer-cta-btn { display: inline-flex; }
.footer-links-band { padding: 56px 0 44px; border-bottom: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.footer-col-head i { color: var(--blue); font-size: 12px; }
.footer-col-head--gap { margin-top: 28px; }
.footer-links { display: flex; flex-direction: column; gap: 5px; }
.footer-links a { font-size: 13px; color: var(--mute); transition: color .2s, padding-left .18s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-strip { padding: 16px 0; background: var(--bg3); border-top: 1px solid var(--line); }
.footer-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-studios, .footer-hours { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--mute); }
.footer-studios i, .footer-hours i { color: var(--blue); font-size: 11px; }
.footer-studios .fs-sep { opacity: .35; margin: 0 3px; }
.footer-wa { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #25d366; transition: opacity .2s; }
.footer-wa i { font-size: 15px; }
.footer-wa:hover { opacity: .8; }
.footer-bottom { padding: 15px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--mute); }
.footer-sep { margin: 0 8px; opacity: .4; }
.footer-credit { font-size: 12px; color: var(--mute); }
.footer-credit a { color: var(--blue); transition: color .2s; }
.footer-credit a:hover { color: var(--bl); }
.breadcrumb {
  padding-top: calc(var(--nav-h) + 1px);
  background: linear-gradient(90deg, rgba(26,107,218,.07) 0%, transparent 55%);
  border-bottom: 1px solid rgba(26,107,218,.1);
}
.bc-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 13px 0;
}
.bc-trail { display: flex; align-items: center; }
.bc-list { display: flex; align-items: center; gap: 6px; list-style: none; }
.bc-item { display: flex; align-items: center; }
.bc-link {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute); padding: 5px 10px; border-radius: 2px;
  transition: color .2s, background .2s;
}
.bc-link:hover { color: var(--white); background: rgba(26,107,218,.1); }
.bc-sep { color: rgba(26,107,218,.45); font-size: 9px; margin-right: 6px; }
.bc-current {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); padding: 5px 10px; background: rgba(26,107,218,.1); border-radius: 2px;
}
.bc-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase;
}
.bc-badge i { color: var(--blue); font-size: 10px; }
.cta-band { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band-refer {
  text-align: center; margin-top: 28px; font-size: 13px; color: rgba(126,146,178,.6);
}
.cta-band-refer a {
  color: var(--blue); font-weight: 600; margin-left: 4px;
  text-decoration: none; transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-band-refer a:hover { color: var(--bl); }
.cta-band-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.cta-band h2 { font-size: clamp(1.5rem,3vw,2.2rem); color: var(--white); margin-bottom: 10px; }
.cta-band-sub { font-size: 14px; color: var(--mute); }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.stats-bar { background: var(--bg3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 60px 0; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-family: var(--fh); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--white); line-height: 1; }
.stat-suf { font-family: var(--fh); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 600; color: var(--blue); line-height: 1; display: inline; }
.stat-label { font-size: 12px; color: var(--mute); letter-spacing: .08em; text-transform: uppercase; }
.trust-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; background: var(--bg2); }
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 32s linear infinite;
}
.trust-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--mute); white-space: nowrap; padding: 0 28px; }
.mq-item i { color: var(--blue); }
.mq-sep { color: var(--line); font-size: 16px; line-height: 1; padding: 0 4px; }
.testi-strip { padding: 96px 0; background: var(--bg); }
.testi-hd { text-align: center; margin-bottom: 48px; }
.testi-hd h2 { margin-bottom: 12px; }
.testi-rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 8px; }
.testi-stars { color: #f5a623; font-size: 20px; letter-spacing: 2px; }
.testi-score { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--white); }
.testi-count { font-size: 13px; color: var(--mute); }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex; gap: 24px; width: max-content;
  animation: testiScroll 36s linear infinite;
}
.testi-strip:hover .testi-track { animation-play-state: paused; }
@keyframes testiScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testi-card {
  width: 360px; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--line); border-radius: 6px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testi-stars-sm { color: #f5a623; font-size: 14px; letter-spacing: 3px; }
.testi-text { font-size: 14px; color: var(--mute); line-height: 1.7; flex: 1; }
.testi-author { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 14px; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-loc { font-size: 12px; color: var(--blue); }
.lead-form-sec { padding: 96px 0; background: var(--bg2); }
.lf-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.lf-info h2 { margin-bottom: 12px; }
.lf-sub { font-size: 14.5px; color: var(--mute); margin-bottom: 32px; }
.lf-contact-list { display: flex; flex-direction: column; gap: 14px; }
.lf-contact-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mute); }
.lf-contact-list i { color: var(--blue); width: 16px; }
.lf-contact-list a { color: var(--mute); transition: color .2s; }
.lf-contact-list a:hover { color: var(--white); }
.lf-form { display: flex; flex-direction: column; gap: 16px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-label { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--mute); }
.lf-input {
  width: 100%; background: var(--bg3); border: 1px solid var(--line); border-radius: 4px;
  padding: 11px 14px; font-family: var(--fb); font-size: 14px; color: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.lf-input::placeholder { color: rgba(126,146,178,.5); }
.lf-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,107,218,.15); }
.lf-select { appearance: none; cursor: pointer; }
.lf-textarea { resize: vertical; min-height: 80px; }
.lf-note { font-size: 12px; color: var(--mute); text-align: center; margin-top: -4px; }
.lf-input.lf-input-err { border-color: #e05252; box-shadow: 0 0 0 3px rgba(224,82,82,.12); }
.lf-err-msg { font-size: 11.5px; color: #e05252; min-height: 15px; line-height: 1.4; }
.process-strip { padding: 96px 0; background: var(--bg); }
.ps-hd { text-align: center; margin-bottom: 60px; }
.ps-hd h2 { margin-bottom: 8px; }
.ps-steps { display: flex; align-items: flex-start; gap: 0; }
.ps-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 16px; position: relative;
}
.ps-num {
  font-family: var(--fh); font-size: 2.8rem; font-weight: 700; color: var(--line);
  line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue), var(--bl));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ps-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ps-desc { font-size: 12.5px; color: var(--mute); line-height: 1.5; }
.ps-arrow {
  position: absolute; top: 14px; right: -12px; z-index: 1;
  font-size: 13px; color: var(--line);
}
.ps-arrow--last { color: var(--blue); }
.area-links { padding: 80px 0; background: var(--bg3); }
.al-hd { text-align: center; margin-bottom: 40px; }
.al-hd h2 { margin-bottom: 8px; }
.al-sub { font-size: 14px; color: var(--mute); max-width: 500px; margin: 0 auto; }
.al-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.al-item {
  font-size: 13.5px; font-weight: 500; color: var(--mute);
  padding: 8px 18px; border: 1px solid var(--line); border-radius: 100px;
  transition: border-color .2s, color .2s, background .2s;
}
.al-item:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.1); }
.service-links { padding: 80px 0; background: var(--bg2); }
.sl-hd { text-align: center; margin-bottom: 40px; }
.sl-hd h2 { margin-bottom: 4px; }
.sl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.sl-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 6px;
  font-size: 13.5px; color: var(--mute);
  transition: border-color .2s, color .2s, background .2s;
}
.sl-item i { color: var(--blue); width: 16px; font-size: 14px; }
.sl-item:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.07); }
.nav-phone {
  font-size: 13px; font-weight: 500; color: var(--mute);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; transition: color .2s;
}
.nav-phone:hover { color: var(--white); }
.nav-phone i { color: var(--blue); font-size: 11px; }
@media (max-width: 1024px) { .nav-phone { display: none; } }
.float-cta {
  position: fixed; bottom: 28px; left: 50%; right: auto; z-index: 800;
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 11px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  box-shadow: 0 8px 28px var(--glow);
  transform: translateX(-50%) translateY(20px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease), background .2s, box-shadow .2s;
  pointer-events: none; white-space: nowrap;
}
.float-cta.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: all; }
.float-cta:hover { background: var(--bl); box-shadow: 0 12px 36px var(--glow); }
.scroll-top {
  position: fixed; bottom: 32px; right: 24px; z-index: 800;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--line); border-radius: 50%;
  color: var(--mute); font-size: 16px;
  transform: translateY(20px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease), border-color .2s, color .2s, background .2s;
  pointer-events: none;
}
.scroll-top.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.15); }
.wa-btn {
  position: fixed; bottom: 32px; left: 24px; z-index: 800;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 50%;
  font-size: 24px; box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.cursor-ambient {
  position: fixed; top: 0; left: 0; z-index: 0; pointer-events: none;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,218,.11) 0%, transparent 70%);
  filter: blur(32px); will-change: transform; transition: opacity .4s;
}
#cursor-img-preview {
  position: fixed; width: 200px; height: 140px; border-radius: 10px;
  overflow: hidden; pointer-events: none; z-index: 99990;
  opacity: 0; transform: scale(.84) rotate(-2deg);
  transition: opacity .32s cubic-bezier(.16,1,.3,1), transform .32s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(26,107,218,.2);
  will-change: transform, opacity; top: 0; left: 0;
  translate: -50% -130%;
}
#cursor-img-preview.cip-show { opacity: 1; transform: scale(1) rotate(0deg); }
#cursor-img-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 991px) { #cursor-img-preview { display: none !important; } }
.orb-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0;
  animation: orbDrift var(--orb-dur,18s) ease-in-out infinite alternate;
  will-change: transform, opacity; transition: opacity 2s ease;
}
.orb.orb-visible { opacity: var(--orb-op,.04); }
.orb-a { width: 480px; height: 480px; background: radial-gradient(circle,rgba(26,107,218,1) 0%,transparent 68%); --orb-dur:22s; --orb-op:.05; top:-10%;left:-12%; }
.orb-b { width: 340px; height: 340px; background: radial-gradient(circle,rgba(91,154,255,1) 0%,transparent 70%); --orb-dur:16s; --orb-op:.04; bottom:-8%;right:-8%; }
@keyframes orbDrift {
  0%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-30px) scale(1.08)}
  66%{transform:translate(-25px,45px) scale(.96)} 100%{transform:translate(20px,-10px) scale(1.04)}
}
.blue-streak {
  position: absolute; top: 0; left: 0; width: 0%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,107,218,.5) 30%, rgba(91,154,255,.8) 50%, rgba(26,107,218,.5) 70%, transparent);
  pointer-events: none; z-index: 10;
  transition: width 1.4s cubic-bezier(.16,1,.3,1);
}
.blue-streak.bsl-on { width: 100%; }
@media (max-width: 1024px) {
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-contact-col { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lf-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-ham { display: flex; }
  .mega-menu { display: none; }
  .section { padding: 64px 0; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ps-steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .ps-step { flex-direction: row; text-align: left; gap: 20px; }
  .ps-arrow { display: none; }
  .ps-num { font-size: 2rem; }
  .lf-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .testi-card { width: 300px; }
}
.wa-rings, .wa-rings::before, .wa-rings::after {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: waRipple 2.6s ease-out infinite;
  pointer-events: none; z-index: -1;
}
.wa-rings::before,
.wa-rings::after { content: ''; }
.wa-rings::before { animation-delay: .86s; }
.wa-rings::after  { animation-delay: 1.72s; }
@keyframes waRipple {
  0%   { transform: scale(1); opacity: .45; }
  100% { transform: scale(2.2); opacity: 0; }
}
.eyebrow {
  position: relative; display: inline-block;
}
.eyebrow::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--blue), rgba(91,154,255,.35));
  transition: width .6s var(--ease);
}
.eyebrow.ey-in::after { width: 28px; }
@media (prefers-reduced-motion: reduce) {
  .eyebrow::after { display: none; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 16px; }
  .wa-btn { bottom: 72px; right: 16px; }
  .scroll-top { bottom: 16px; right: 16px; }
  .float-cta { bottom: 20px; padding: 10px 16px; font-size: 12px; }
}

.sv-ba {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.sv-ba-hd { text-align: center; margin-bottom: 52px; }
.sv-ba-hd .eyebrow { margin-bottom: 12px; }
.sv-ba-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.sv-ba-hd h2 em { font-style: normal; color: var(--blue); }
.sv-ba-hd p { font-size: 15px; color: var(--mute); max-width: 480px; margin: 14px auto 0; }
.ba-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.ba-stage { position: relative; }
.ba-slide { display: none; }
.ba-slide.active { display: block; }
.ba-slider {
  position: relative; border-radius: 8px; overflow: hidden;
  user-select: none; touch-action: none; aspect-ratio: 16/9;
}
.ba-before, .ba-after {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 18px rgba(255,255,255,.35);
  z-index: 4; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.ba-handle::before {
  content: '';
  flex-shrink: 0; min-width: 56px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue);
  border: 3px solid rgba(255,255,255,.95);
  box-shadow: 0 4px 28px rgba(0,0,0,.6), 0 0 0 1px rgba(26,107,218,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 2L1 8L7 14'/%3E%3Cpath d='M23 2L29 8L23 14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 26px 14px;
  transition: transform .18s var(--ease), box-shadow .18s;
}
.ba-handle:hover::before {
  transform: scale(1.1);
  box-shadow: 0 6px 36px rgba(0,0,0,.65), 0 0 28px rgba(26,107,218,.5);
}
.ba-handle::after {
  content: 'DRAG';
  position: absolute; top: calc(50% + 36px);
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.8); white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  pointer-events: none;
  animation: dragHintFade 2.5s ease 2s forwards;
}
@keyframes dragHintFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.ba-labels {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 16px; z-index: 3;
}
.ba-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: rgba(6,13,26,.75); color: var(--white); padding: 5px 12px; border-radius: 3px; }
.ba-caption { text-align: center; font-size: 13px; color: var(--mute); margin-top: 16px; }
.ba-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px;
}
.ba-btn {
  width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute); font-size: 15px; cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}
.ba-btn:hover { border-color: var(--blue); color: var(--white); background: rgba(26,107,218,.12); transform: scale(1.08); }
.ba-count { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--mute); letter-spacing: .12em; min-width: 56px; text-align: center; }
.pricing-sec { padding: 120px 0; background: var(--bg2); border-top: 1px solid var(--line); }
.pricing-hd { text-align: center; margin-bottom: 56px; }
.pricing-hd .eyebrow { margin-bottom: 12px; }
.pricing-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); margin-bottom: 8px; }
.pricing-hd h2 em { font-style: normal; color: var(--blue); }
.pricing-hd p { font-size: 14px; color: var(--mute); max-width: 560px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-tier {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 40px 32px; background: var(--bg3);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.price-tier:hover { border-color: rgba(26,107,218,.4); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.price-tier--featured {
  border-color: rgba(26,107,218,.5);
  background: linear-gradient(160deg, var(--bg3), rgba(26,107,218,.05));
  position: relative; overflow: hidden;
}
.price-tier--featured::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.032) 40%, rgba(255,255,255,.058) 50%, rgba(255,255,255,.032) 60%, transparent 100%);
  animation: pShimmer 5.5s ease-in-out 1.8s infinite;
}
@keyframes pShimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}
.price-badge { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); }
.price-tier-name { font-family: var(--fh); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.price-amount { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 12px; color: var(--mute); }
.price-num { font-family: var(--fh); font-size: 2.2rem; font-weight: 700; color: var(--white); }
.price-unit { font-size: 12px; color: var(--mute); }
.price-desc { font-size: 13.5px; color: var(--mute); line-height: 1.6; }
.price-divider { height: 1px; background: var(--line); }
.price-includes { display: flex; flex-direction: column; gap: 10px; }
.price-inc-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--mute); }
.price-inc-item i { color: var(--blue); font-size: 11px; margin-top: 4px; flex-shrink: 0; }
.price-emi { font-size: 12px; color: var(--blue); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.price-cta { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--mute); }
.pricing-note a { color: var(--blue); margin-left: 6px; }

.vtesti-card {
  background: var(--bg3); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.vtesti-card:hover {
  transform: translateY(-6px); border-color: rgba(26,107,218,.35);
  box-shadow: 0 20px 56px rgba(26,107,218,.2);
}
.vtesti-wrap {
  position: relative; width: 100%; aspect-ratio: 9/16; overflow: hidden;
}
.vtesti-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vtesti-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(6,13,26,.95) 0%, rgba(6,13,26,.3) 38%, transparent 60%);
  transition: opacity .4s ease;
}
.vtesti-wrap.vt-playing .vtesti-overlay { opacity: 0; }
.vtesti-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 4; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(26,107,218,.9); border: 2px solid rgba(255,255,255,.25); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s, opacity .35s, box-shadow .3s;
  box-shadow: 0 6px 28px rgba(26,107,218,.45);
}
.vtesti-play:hover {
  transform: translate(-50%, -50%) scale(1.12); background: var(--blue);
  box-shadow: 0 8px 36px rgba(26,107,218,.65);
}
.vtesti-play i { color: var(--white); font-size: 16px; margin-left: 4px; }
.vtesti-wrap.vt-playing .vtesti-play { opacity: 0; pointer-events: none; }
.vtesti-meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 16px 18px;
  transition: opacity .35s;
}
.vtesti-wrap.vt-playing .vtesti-meta { opacity: 0; }
.vtesti-vname {
  display: block; font-family: var(--fh); font-size: 14px; font-weight: 600;
  color: var(--white); line-height: 1.3; margin-bottom: 4px;
}
.vtesti-vbadge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: #4caf50; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}
.vtesti-vbadge i { font-size: 9px; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(26,107,218,.35); }
::-webkit-scrollbar-thumb:hover { background: rgba(26,107,218,.65); }
* { scrollbar-width: thin; scrollbar-color: rgba(26,107,218,.35) var(--bg); }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .4s cubic-bezier(.4,0,.2,1) both; }
::view-transition-new(root) { animation: vtIn .55s cubic-bezier(.16,1,.3,1) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px) scale(.994); } }
@keyframes vtIn  { from { opacity: 0; transform: translateY(10px) scale(.994); } }

main img.im-arm { opacity: 0; clip-path: inset(0 0 45% 0); background: #0e1a2e; }
main img.im-in {
  opacity: 1; clip-path: inset(0 0 0 0);
  transition: opacity .75s ease, clip-path .95s cubic-bezier(.16,1,.3,1);
}

.para-img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  main img.im-arm { opacity: 1; clip-path: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
