:root {
  --purple: #5B2EFF;
  --purple-2: #8b5cff;
  --black: #111111;
  --deep: #050505;
  --panel: #0b0b0d;
  --silver: #c0c0c0;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(192, 192, 192, 0.32);
  --glow: 0 0 34px rgba(106, 0, 255, 0.45), 0 0 90px rgba(106, 0, 255, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(106, 0, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #030303 0%, var(--black) 48%, #07020d 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 16%, rgba(91, 46, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 12% 74%, rgba(0, 178, 255, 0.045), transparent 24rem);
}

body.menu-open {
  overflow: hidden;
}

.top-license-bar {
  position: relative;
  z-index: 95;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 0.55rem 0;
  text-align: center;
  text-transform: uppercase;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 200;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--silver), var(--purple-2));
  box-shadow: var(--glow);
}

.energy-canvas {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(106, 0, 255, 0.28), transparent 22rem),
    #020202;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loading-screen img {
  width: min(360px, 78vw);
  filter: drop-shadow(0 0 34px rgba(106, 0, 255, 0.48));
  animation: logoPulse 2s ease-in-out infinite;
}

.loading-screen span {
  width: min(280px, 62vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loading-screen span::before {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--purple), var(--silver));
  animation: logoEnergy 1.6s ease-in-out infinite;
}

.loading-screen.loaded {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  border-radius: 999px;
  background: var(--purple);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 999px;
}

.brand::before {
  position: absolute;
  inset: 7% -7%;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle, rgba(106, 0, 255, 0.28), transparent 68%);
  filter: blur(14px);
  opacity: 0.55;
}

.brand img {
  position: relative;
  width: clamp(210px, 17vw, 270px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.91rem;
  font-weight: 800;
  padding: 0.68rem 0.82rem;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  min-height: 44px;
  padding: 0 1rem;
  font-weight: 900;
}

.mobile-panel {
  display: none;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active,
.float-btn:active,
.slider-controls button:active,
.ai-toggle:active {
  transform: translateY(1px) scale(0.98);
}

.btn.is-loading {
  pointer-events: none;
  color: transparent;
}

.btn.is-loading::after {
  position: absolute;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: rotate 800ms linear infinite;
}

.magnetic {
  will-change: transform;
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--purple), #4d00bc);
  box-shadow: var(--glow);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-dark {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.72);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 6rem 0 4rem;
}

.hero-cinematic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transform: scale(1.04);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

.brand-hero-image {
  object-fit: contain;
  object-position: center;
  opacity: 0.78;
  filter: drop-shadow(0 0 48px rgba(91, 46, 255, 0.3));
}

.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
}

.hero-media-video.is-ready {
  opacity: 0.5;
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

.hero-media-video.is-ready + .hero-media-fallback {
  opacity: 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 75% 25%, rgba(106, 0, 255, 0.32), transparent 26rem),
    radial-gradient(circle at 25% 72%, rgba(192, 192, 192, 0.12), transparent 24rem),
    linear-gradient(115deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.5));
}

.hero::after {
  position: absolute;
  z-index: 2;
  left: -12%;
  right: -12%;
  top: 24%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--purple), var(--silver), transparent);
  filter: blur(0.3px);
  opacity: 0.65;
  animation: scan 6s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 3rem;
}

.premium-media-hero {
  min-height: 85vh;
  max-height: 100vh;
  padding: clamp(4.5rem, 8vh, 7rem) 0 clamp(4.5rem, 8vh, 6rem);
  background: #020202;
}

.premium-media-hero::before {
  opacity: var(--cms-hero-overlay, 0.78);
  background:
    radial-gradient(circle at 18% 30%, rgba(91, 46, 255, 0.36), transparent 24rem),
    radial-gradient(circle at 76% 18%, rgba(0, 178, 255, 0.13), transparent 28rem),
    linear-gradient(100deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82));
}

.premium-media-hero::after {
  display: none;
}

.hero-media-fallback {
  opacity: 0.62;
}

.hero-media-fallback.brand-hero-image {
  opacity: 0.78;
}

.hero-premium-layout {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  min-height: calc(85vh - 9rem);
}

.hero-copy {
  max-width: 940px;
}

.hero-copy h1 {
  max-width: 980px;
  text-shadow: 0 0 42px rgba(91, 46, 255, 0.24), 0 18px 50px rgba(0, 0, 0, 0.56);
}

.hero-copy p {
  max-width: 690px;
}

.premium-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  box-shadow: 0 0 28px rgba(91, 46, 255, 0.18);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  margin-bottom: 1.15rem;
  padding: 0 0.95rem;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.hero-electric-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-electric-glow span {
  position: absolute;
  left: -14%;
  right: -14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.6), rgba(91, 46, 255, 0.9), transparent);
  filter: drop-shadow(0 0 14px rgba(91, 46, 255, 0.65));
  opacity: 0.2;
  animation: choiceLineFlow 8s ease-in-out infinite;
}

.hero-electric-glow span:nth-child(1) {
  bottom: 10%;
}

.hero-electric-glow span:nth-child(2) {
  bottom: 16%;
  animation-delay: -2.2s;
}

.hero-electric-glow span:nth-child(3) {
  bottom: 23%;
  animation-delay: -4.4s;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-indicator i {
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scroll-indicator i::before {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--purple), rgba(0, 178, 255, 0.78));
  box-shadow: 0 0 14px rgba(91, 46, 255, 0.58);
  animation: scrollCue 1.7s ease-in-out infinite;
}

.hero-mark-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 45%, rgba(106, 0, 255, 0.32), transparent 45%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-mark-panel::before,
.hero-mark-panel::after {
  position: absolute;
  content: "";
}

.hero-mark-panel::before {
  inset: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: var(--radius);
}

.hero-mark-panel::after {
  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;
  background: conic-gradient(from 180deg, transparent, rgba(106, 0, 255, 0.18), transparent, rgba(192, 192, 192, 0.12), transparent);
  animation: rotate 14s linear infinite;
}

.hero-mark-panel > img {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(58%, 300px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 34px rgba(106, 0, 255, 0.5));
  animation: markLevitate 6s ease-in-out infinite;
}

.contact-brand-panel > img {
  width: min(82%, 420px);
  height: min(82%, 420px);
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 42px rgba(91, 46, 255, 0.5));
}

.power-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(60%, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(106, 0, 255, 0.26), transparent 58%),
    rgba(0, 0, 0, 0.42);
  box-shadow: inset 0 0 34px rgba(106, 0, 255, 0.16), 0 0 70px rgba(106, 0, 255, 0.2);
  transform: translate(-50%, -50%);
  animation: markLevitateCore 6s ease-in-out infinite;
}

.power-core::before,
.power-core::after {
  position: absolute;
  inset: -12px;
  content: "";
  border: 1px solid rgba(106, 0, 255, 0.3);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.power-core::after {
  inset: 18px;
  border-color: rgba(192, 192, 192, 0.18);
  animation-duration: 12s;
  animation-direction: reverse;
}

.power-core img {
  position: relative;
  z-index: 2;
  width: 66%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(106, 0, 255, 0.45));
}

.hero-stat {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.68);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-stat.one {
  left: 1.1rem;
  bottom: 1.1rem;
}

.hero-stat.two {
  right: 1.1rem;
  top: 1.1rem;
}

.eyebrow,
.badge {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin: 1rem 0 1.35rem;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  padding: 0.62rem 0.82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 7.5vw, 6.55rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.18;
}

.lead,
.hero p,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.section .hero-logo {
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 22px rgba(106, 0, 255, 0.24));
}

.section {
  padding: 6.5rem 0;
}

.section.alt {
  background:
    radial-gradient(circle at 80% 0%, rgba(106, 0, 255, 0.14), transparent 32rem),
    #080808;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin-inline: auto;
  max-width: 700px;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.glass,
.card,
.form-card,
.trust-item,
.counter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.card,
.trust-item,
.counter {
  padding: 1.4rem;
}

.card {
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-45%);
  transition: 260ms ease;
}

.card:hover {
  border-color: rgba(106, 0, 255, 0.55);
  transform: translateY(-8px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62), 0 0 42px rgba(106, 0, 255, 0.16);
}

.card:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.card > * {
  position: relative;
  z-index: 2;
}

.card p,
.counter span,
.footer-note {
  color: var(--muted);
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: -2.4rem;
}

.conversion-stats {
  margin-top: 0;
  padding-top: 1rem;
}

.trust-item {
  display: grid;
  gap: 0.35rem;
}

.trust-item strong {
  color: var(--white);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.counter strong {
  display: block;
  background: linear-gradient(120deg, var(--white), var(--silver) 55%, #8a8a8a);
  background-clip: text;
  color: transparent;
  font-size: 2.55rem;
  line-height: 1;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(106, 0, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(106, 0, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 20px rgba(106, 0, 255, 0.15);
  font-size: 1.45rem;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover .icon {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 0 30px rgba(106, 0, 255, 0.28);
}

.service-card h3 {
  margin: 1.1rem 0 0.55rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0.58rem 0.78rem;
}

.project-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 76% 24%, rgba(106, 0, 255, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.project-card.large {
  grid-column: span 2;
}

.image-card {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    var(--project-image) center / cover no-repeat;
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 20%, rgba(106, 0, 255, 0.34), transparent 34%);
  opacity: 0.82;
}

.before-after {
  grid-column: span 2;
}

.ba-slider {
  position: relative;
  margin-top: 1.1rem;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 52%;
  overflow: hidden;
  border-right: 2px solid var(--purple);
  box-shadow: 12px 0 32px rgba(106, 0, 255, 0.32);
}

.ba-slider input {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 1rem;
  z-index: 5;
  width: 90%;
  accent-color: var(--purple);
}

.comparison-section {
  background:
    radial-gradient(circle at 25% 0%, rgba(106, 0, 255, 0.2), transparent 32rem),
    linear-gradient(180deg, #050505, #0b0710);
}

.comparison-card {
  min-height: 240px;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.project-meta {
  color: var(--silver);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-showcase,
img.brand-showcase {
  overflow: hidden;
}

.brand-showcase img,
img.brand-showcase {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-hero {
  padding: 6.5rem 0 4.8rem;
}

.about-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.about-brand-card {
  max-height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-brand-card img {
  width: 100%;
  height: clamp(300px, 38vw, 440px);
  object-fit: cover;
  object-position: center;
}

.premium-bull-card,
.contact-brand-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 46, 255, 0.24), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #020202;
  box-shadow: var(--shadow), 0 0 42px rgba(91, 46, 255, 0.16);
}

.premium-bull-card::before,
.contact-brand-card::before {
  position: absolute;
  inset: 1rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.premium-bull-card img,
.contact-brand-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  object-fit: contain;
  object-position: center;
  padding: clamp(0.8rem, 2vw, 1.35rem);
  filter: drop-shadow(0 0 34px rgba(91, 46, 255, 0.42));
}

.contact-brand-card {
  margin-bottom: 1rem;
}

.service-coverage-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 22%, rgba(91, 46, 255, 0.28), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.64);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2vw, 1.6rem);
  backdrop-filter: blur(22px);
}

.coverage-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 48%, rgba(91, 46, 255, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.google-coverage-map {
  min-height: 310px;
  padding: 0;
}

.google-coverage-map::before {
  display: none;
}

.google-coverage-map iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
  filter: grayscale(0.55) contrast(1.05) brightness(0.72);
}

.google-coverage-map::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(91, 46, 255, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.coverage-map::before {
  width: 118px;
  height: 178px;
  content: "";
  border: 1px solid rgba(192, 192, 192, 0.35);
  border-radius: 58% 42% 52% 48% / 38% 38% 62% 62%;
  background:
    radial-gradient(circle at 58% 76%, rgba(0, 178, 255, 0.42), transparent 12%),
    radial-gradient(circle at 44% 52%, rgba(91, 46, 255, 0.52), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 42px rgba(91, 46, 255, 0.18);
  transform: rotate(-8deg);
}

.coverage-state {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(3.6rem, 8vw, 5.8rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(91, 46, 255, 0.46);
}

.coverage-route {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.8), rgba(91, 46, 255, 0.95), transparent);
  filter: drop-shadow(0 0 12px rgba(91, 46, 255, 0.62));
  animation: scan 5s ease-in-out infinite;
}

.coverage-pulse {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 2px solid var(--silver);
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 24px rgba(91, 46, 255, 0.68);
  animation: float 3.5s ease-in-out infinite;
}

.coverage-pulse.one {
  left: 44%;
  top: 44%;
}

.coverage-pulse.two {
  left: 54%;
  top: 62%;
  animation-delay: -1.3s;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverage-cities span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  font-weight: 850;
  padding: 0.52rem 0.72rem;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.coverage-stats div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.42);
  padding: 0.9rem;
}

.coverage-stats strong {
  display: block;
  font-size: 1.7rem;
}

.coverage-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.process-line {
  position: relative;
}

.process-line::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--purple), var(--silver), transparent);
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 47%, rgba(106, 0, 255, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.map-panel::before {
  position: absolute;
  inset: 1.2rem;
  content: "";
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: var(--radius);
}

.florida-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.florida-shape {
  fill: url("#mapMetal");
  stroke: rgba(192, 192, 192, 0.32);
  stroke-width: 2;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.55));
}

.energy-route {
  fill: none;
  stroke: var(--purple);
  stroke-width: 2;
  stroke-dasharray: 10 12;
  filter: url("#mapGlow");
  animation: routeFlow 9s linear infinite;
}

.map-node {
  cursor: pointer;
}

.map-node circle {
  fill: var(--purple);
  stroke: var(--silver);
  stroke-width: 2;
  filter: url("#mapGlow");
  transition: transform 180ms ease;
}

.map-node text {
  fill: #fff;
  font-size: 15px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.72);
  stroke-width: 4px;
}

.map-node:hover circle,
.map-node:focus circle {
  transform: scale(1.35);
}

.map-detail {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  backdrop-filter: blur(16px);
}

.map-detail span {
  color: var(--muted);
  font-size: 0.9rem;
}

.city-dot {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: var(--glow);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.58rem 0.78rem;
  animation: float 4.5s ease-in-out infinite;
}

.review-stars {
  color: var(--purple);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-shadow: 0 0 18px rgba(106, 0, 255, 0.48);
}

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 1rem;
  transition: transform 420ms ease;
}

.reviews-track .card {
  min-width: 0;
}

.google-reviews-section {
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  position: absolute;
  inset: 10% auto auto 8%;
  width: 24rem;
  height: 24rem;
  content: "";
  border-radius: 999px;
  background: rgba(91, 46, 255, 0.16);
  filter: blur(80px);
  pointer-events: none;
}

.google-reviews-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 10%, rgba(91, 46, 255, 0.2), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow), var(--glow);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.google-reviews-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.google-reviews-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.google-review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.google-review-stats strong {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92;
  text-shadow: 0 0 30px rgba(91, 46, 255, 0.45);
}

.google-review-stats span,
.google-review-stats em {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-style: normal;
  padding: 0.65rem 0.85rem;
}

.google-reviews-widget {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.google-reviews-widget iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.google-review-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  min-height: 360px;
  padding: 1.5rem;
  text-align: center;
}

.google-review-placeholder span {
  color: var(--muted);
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.google-review-placeholder strong {
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
}

.google-review-placeholder em {
  color: var(--muted);
  font-style: normal;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.slider-controls button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  min-height: 44px;
  padding: 0 1rem;
  font-weight: 900;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-weight: 900;
}

.faq-panel {
  display: none;
  color: var(--muted);
  padding-top: 0.8rem;
}

.faq-item.open .faq-panel {
  display: block;
}

.form-card {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  padding: 0.85rem 0.95rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5.5rem;
  background:
    radial-gradient(circle at 78% 15%, rgba(106, 0, 255, 0.28), transparent 28rem),
    linear-gradient(135deg, #050505, #111111 55%, #08020f);
}

.page-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--purple), var(--silver), transparent);
}

.floating-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.66);
  padding: 0.45rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.float-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.05rem;
  box-shadow: var(--shadow);
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1;
  white-space: nowrap;
}

.whatsapp {
  background: #25d366;
  color: #fff;
}

.call-float {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--glow);
}

.back-top {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  cursor: pointer;
}

.ai-assistant {
  position: fixed;
  right: 1rem;
  bottom: 7.8rem;
  z-index: 84;
  width: min(430px, calc(100vw - 2rem));
  font-size: 0.95rem;
}

.ai-toggle {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.68rem;
  float: right;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.24), transparent 1.7rem),
    linear-gradient(135deg, var(--purple), #2d075f 72%, #060008);
  color: var(--white);
  cursor: pointer;
  padding: 0.62rem 1rem 0.62rem 0.75rem;
  box-shadow: 0 18px 55px rgba(91, 46, 255, 0.45), 0 0 0 6px rgba(91, 46, 255, 0.08);
  font-weight: 950;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(91, 46, 255, 0.58), 0 0 0 7px rgba(91, 46, 255, 0.1);
}

.ai-toggle small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.ai-toggle-orb {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, #fff, #8f73ff 38%, #3d14b8 64%, #111 100%);
  box-shadow: 0 0 24px rgba(91, 46, 255, 0.88);
  position: relative;
}

.ai-toggle-orb::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 9px;
  height: 9px;
  border: 2px solid #150729;
  border-radius: 999px;
  background: #24e27a;
}

.ai-panel {
  display: none;
  clear: both;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 46, 255, 0.34), transparent 16rem),
    linear-gradient(160deg, rgba(22, 22, 28, 0.94), rgba(0, 0, 0, 0.9));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), 0 0 55px rgba(91, 46, 255, 0.22);
  backdrop-filter: blur(26px);
}

.ai-assistant.open .ai-panel {
  display: grid;
  animation: assistantIn 220ms ease both;
}

.ai-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.28);
}

.ai-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #050506;
  box-shadow: 0 0 28px rgba(91, 46, 255, 0.28);
}

.ai-avatar img {
  width: 38px;
  height: 30px;
  object-fit: contain;
}

.ai-head span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.ai-head span i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #26d07c;
  box-shadow: 0 0 12px #26d07c;
}

.ai-head-actions {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}

.ai-head-actions button,
.ai-footer button,
.ai-footer a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  padding: 0.42rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 900;
}

.ai-quick-actions {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.75rem 0.85rem;
  scrollbar-width: thin;
}

.ai-quick-actions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(91, 46, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  padding: 0.52rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ai-quick-actions button:hover {
  border-color: rgba(91, 46, 255, 0.72);
  background: rgba(91, 46, 255, 0.24);
  transform: translateY(-1px);
}

.ai-messages {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  height: min(430px, 52vh);
  overflow-y: auto;
  padding: 0.2rem 0.85rem 0.85rem;
}

.ai-message {
  max-width: 88%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 0.72rem 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.ai-message.assistant {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
}

.ai-message.user {
  justify-self: end;
  border-color: rgba(91, 46, 255, 0.42);
  border-bottom-right-radius: 6px;
  background: linear-gradient(135deg, rgba(91, 46, 255, 0.84), rgba(58, 19, 139, 0.86));
  color: #fff;
}

.ai-message.typing {
  display: inline-flex;
  gap: 0.32rem;
  width: fit-content;
}

.ai-message.typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  animation: aiTyping 900ms infinite ease-in-out;
}

.ai-message.typing span:nth-child(2) {
  animation-delay: 120ms;
}

.ai-message.typing span:nth-child(3) {
  animation-delay: 240ms;
}

.ai-photo-list,
.ai-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.ai-photo-list img,
.ai-upload-preview img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  object-fit: cover;
}

.ai-upload-preview {
  margin: 0 0.85rem 0.55rem;
}

.ai-composer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.78rem;
}

.ai-upload {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  padding: 0 0.72rem;
  font-size: 0.8rem;
  font-weight: 950;
}

.ai-upload input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.ai-composer textarea {
  min-height: 44px;
  max-height: 112px;
  resize: none;
  border-radius: 14px;
  font-size: 0.92rem;
}

.ai-composer button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  padding: 0 0.88rem;
  box-shadow: 0 0 24px rgba(91, 46, 255, 0.38);
  font-weight: 950;
}

.ai-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.85rem 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.footer-logo {
  width: min(285px, 100%);
  height: auto;
}

.footer-list {
  display: grid;
  gap: 0.58rem;
  margin-top: 1rem;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom span:nth-child(2) {
  color: rgba(192, 192, 192, 0.82);
  font-weight: 800;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes scan {
  0%,
  100% {
    transform: translateX(-12%);
    opacity: 0.28;
  }
  50% {
    transform: translateX(12%);
    opacity: 0.8;
  }
}

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

@keyframes routeFlow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes choiceLineFlow {
  0%,
  100% {
    transform: translateX(-8%) skewY(-2deg);
    opacity: 0.2;
  }
  50% {
    transform: translateX(8%) skewY(-2deg);
    opacity: 0.75;
  }
}

@keyframes productShine {
  from {
    transform: translateX(-55%);
  }
  to {
    transform: translateX(55%);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(230%);
    opacity: 0;
  }
}

@keyframes cinematicDrift {
  to {
    transform: scale(1.1) translate3d(-1.6%, 1.2%, 0);
  }
}

@keyframes logoPulse {
  50% {
    filter: drop-shadow(0 0 46px rgba(106, 0, 255, 0.66));
  }
}

@keyframes logoEnergy {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%);
    opacity: 0;
  }
}

@keyframes markLevitate {
  50% {
    transform: translate(-50%, -54%) scale(1.03);
  }
}

@keyframes markLevitateCore {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.03);
  }
}

@keyframes assistantIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aiTyping {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .brand img {
    width: 238px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .mobile-panel {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 88;
    display: none;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.96);
    padding: 1rem;
  }

  .mobile-panel.open {
    display: grid;
    gap: 0.7rem;
  }

  .mobile-panel a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    padding: 0.92rem 1rem;
    font-weight: 850;
  }

  .hero-grid,
  .hero-premium-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-mark-panel {
    min-height: 410px;
  }

  .hero-proof-panel {
    max-width: 520px;
  }

  .grid-4,
  .trust-strip,
  .premium-choice-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }
}

.conversion-hero {
  min-height: 88vh;
}

.conversion-hero h1 {
  text-transform: none;
  max-width: 980px;
}

.hero-estimate-panel {
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.64);
  box-shadow: var(--shadow);
  padding: 1.45rem;
  backdrop-filter: blur(22px);
}

.hero-estimate-panel img {
  width: 82px;
  margin-bottom: 0.75rem;
}

.hero-estimate-panel h2 {
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.hero-estimate-panel form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.conversion-stats strong {
  color: var(--white);
  font-size: 1.45rem;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(75, 30, 120, 0.26);
  color: var(--white);
  font-weight: 950;
  margin-bottom: 0.85rem;
}

.premium-choice-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(91, 46, 255, 0.3), transparent 24rem),
    radial-gradient(circle at 86% 28%, rgba(0, 178, 255, 0.15), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0a0712 48%, #020202 100%);
}

.premium-choice-section::before,
.premium-choice-section::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.premium-choice-section::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 32%, #000, transparent 72%);
}

.premium-choice-section::after {
  left: 50%;
  top: 4rem;
  width: min(680px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 46, 255, 0.22), transparent 64%);
  filter: blur(18px);
  transform: translateX(-50%);
}

.premium-choice-section .container {
  position: relative;
  z-index: 2;
}

.premium-choice-head h2 {
  text-shadow: 0 0 32px rgba(91, 46, 255, 0.28);
}

.premium-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.premium-choice-section .grid-2 {
  display: none;
}

.premium-choice-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
  backdrop-filter: blur(22px);
}

.premium-choice-card::before,
.premium-choice-card::after {
  position: absolute;
  content: "";
}

.premium-choice-card::before {
  inset: 0;
  background: linear-gradient(125deg, transparent 20%, rgba(255, 255, 255, 0.16), transparent 48%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 420ms ease;
}

.premium-choice-card::after {
  inset: auto 1.2rem 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.8), rgba(91, 46, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(91, 46, 255, 0.48);
  opacity: 0.48;
}

.premium-choice-card:hover {
  border-color: rgba(91, 46, 255, 0.74);
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 46, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.62);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.7), 0 0 46px rgba(91, 46, 255, 0.24);
  transform: translateY(-10px);
}

.premium-choice-card:hover::before {
  opacity: 1;
  transform: translateX(58%);
}

.choice-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(91, 46, 255, 0.55);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 178, 255, 0.18), transparent 62%),
    rgba(91, 46, 255, 0.17);
  box-shadow: inset 0 0 22px rgba(91, 46, 255, 0.18), 0 0 28px rgba(91, 46, 255, 0.18);
  color: var(--white);
  margin-bottom: 1.35rem;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.choice-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-choice-card:hover .choice-icon {
  box-shadow: inset 0 0 24px rgba(91, 46, 255, 0.24), 0 0 42px rgba(91, 46, 255, 0.36);
  transform: translateY(-4px) scale(1.04);
}

.premium-choice-card h3 {
  margin-bottom: 0.78rem;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.premium-choice-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.choice-energy-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.choice-energy-lines span {
  position: absolute;
  left: -18%;
  right: -18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.56), rgba(91, 46, 255, 0.9), transparent);
  filter: drop-shadow(0 0 10px rgba(91, 46, 255, 0.62));
  opacity: 0.5;
  animation: choiceLineFlow 7s ease-in-out infinite;
}

.choice-energy-lines span:nth-child(1) {
  top: 27%;
}

.choice-energy-lines span:nth-child(2) {
  top: 58%;
  animation-delay: -2.3s;
  animation-duration: 8.5s;
}

.choice-energy-lines span:nth-child(3) {
  top: 78%;
  animation-delay: -4.5s;
  animation-duration: 9.5s;
}

.choice-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 46, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.choice-cta h3 {
  margin: 0.28rem 0 0;
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  line-height: 1;
}

.choice-cta-btn {
  min-height: 56px;
  padding-inline: 1.45rem;
  background: linear-gradient(135deg, #5B2EFF, #3b14b8);
  box-shadow: 0 0 28px rgba(91, 46, 255, 0.52), 0 0 76px rgba(91, 46, 255, 0.22);
}

.toros-store-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(91, 46, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(0, 178, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #030303 0%, #0b0b0d 48%, #05020a 100%);
}

.toros-store-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.toros-store-section .container {
  position: relative;
  z-index: 2;
}

.store-head h2 {
  text-shadow: 0 0 34px rgba(91, 46, 255, 0.32);
}

.store-energy-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.store-energy-lines span {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.52), rgba(91, 46, 255, 0.86), transparent);
  filter: drop-shadow(0 0 12px rgba(91, 46, 255, 0.62));
  opacity: 0.42;
  animation: choiceLineFlow 8s ease-in-out infinite;
}

.store-energy-lines span:first-child {
  top: 22%;
}

.store-energy-lines span:last-child {
  bottom: 20%;
  animation-delay: -3.4s;
  animation-duration: 10s;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.store-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.store-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
}

.store-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(125deg, transparent 20%, rgba(255, 255, 255, 0.13), transparent 46%);
  opacity: 0;
  transform: translateX(-44%);
  transition: opacity 240ms ease, transform 420ms ease;
}

.store-card:hover {
  border-color: rgba(91, 46, 255, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.7), 0 0 44px rgba(91, 46, 255, 0.24);
  transform: translateY(-8px);
}

.store-card:hover::before {
  opacity: 1;
  transform: translateX(58%);
}

.store-card > * {
  position: relative;
  z-index: 2;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(91, 46, 255, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
}

.store-card.featured .product-art {
  min-height: 100%;
}

.product-art::before,
.product-art::after {
  position: absolute;
  content: "";
}

.product-art::before {
  width: 46%;
  max-width: 150px;
  aspect-ratio: 0.8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--product-fill, #171717);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05), 0 18px 48px rgba(0, 0, 0, 0.46);
}

.product-art::after {
  width: 64%;
  max-width: 230px;
  height: 16px;
  bottom: 2.1rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(8px);
}

.product-art img,
.product-badge {
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(91, 46, 255, 0.5));
}

.product-art img {
  width: min(86px, 30%);
  height: auto;
  margin-bottom: 3.5rem;
  opacity: 0.94;
}

.decals img {
  width: min(180px, 56%);
  margin-bottom: 2.1rem;
}

.product-badge {
  display: inline-grid;
  place-items: center;
  width: min(96px, 38%);
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translateX(-50%);
}

.product-badge.wide {
  width: min(190px, 62%);
}

.product-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.16), transparent 58%);
  opacity: 0.42;
  transform: translateX(-30%);
}

.store-card:hover .product-shine {
  animation: productShine 760ms ease both;
}

.shirt-work {
  --product-fill: linear-gradient(180deg, #c7ff33, #171717 78%);
}

.shirt-casual {
  --product-fill: linear-gradient(180deg, #f5f5f5, #151515 78%);
}

.work-uniform {
  --product-fill: linear-gradient(180deg, #121212, #24242a 36%, #5B2EFF 37%, #111 84%);
}

.hat::before {
  width: 54%;
  max-width: 180px;
  aspect-ratio: 1.85;
  border-radius: 52% 52% 18px 18px;
  background: linear-gradient(180deg, #1c1c1f, #070707);
}

.hat::after {
  width: 44%;
  max-width: 150px;
  height: 38px;
  bottom: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(91, 46, 255, 0.9), #141414);
  filter: none;
}

.stickers::before {
  width: 48%;
  max-width: 152px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #cfd2d8);
}

.helmet-decals::before {
  width: 58%;
  max-width: 190px;
  aspect-ratio: 1.24;
  border-radius: 54% 54% 18px 18px;
  background:
    radial-gradient(circle at 50% 64%, rgba(91, 46, 255, 0.32), transparent 26%),
    linear-gradient(145deg, #f7f7f8, #babec8);
}

.decals::before {
  width: 72%;
  max-width: 260px;
  aspect-ratio: 3.1;
  background: linear-gradient(135deg, #111, #5B2EFF);
}

.product-info {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 1.35rem;
}

.product-type {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0.7rem 0 0.6rem;
}

.product-info p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: auto 0 1.2rem;
}

.swatch {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.34);
}

.swatch.safety-green {
  background: #b9ff25;
}

.swatch.safety-orange {
  background: #ff7a1a;
}

.swatch.black {
  background: #050505;
}

.swatch.white {
  background: #ffffff;
}

.swatch.gray {
  background: #8e8e93;
}

.swatch.beige {
  background: #d8c4a6;
}

.swatch.purple {
  background: #5B2EFF;
}

.store-button {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  box-shadow: 0 0 22px rgba(91, 46, 255, 0.42), 0 0 58px rgba(91, 46, 255, 0.14);
}

.store-card-meta,
.store-card-actions {
  display: grid;
  gap: 0.55rem;
}

.store-card-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 0.9rem;
}

.store-card-meta span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.48rem 0.62rem;
  text-align: center;
}

.store-detail-button {
  min-height: 46px;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  padding: clamp(0.75rem, 2vw, 1.4rem);
}

.product-detail-modal.open {
  display: grid;
  place-items: center;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.product-modal-card {
  position: relative;
  width: min(900px, 100%);
  max-height: 85vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(91, 46, 255, 0.22), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    #050506;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.76), 0 0 70px rgba(91, 46, 255, 0.24);
}

.product-modal-close {
  position: sticky;
  top: 0.8rem;
  left: calc(100% - 6.5rem);
  z-index: 8;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  padding: 0 0.9rem;
  backdrop-filter: blur(14px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
  padding: 0 clamp(1rem, 2.4vw, 1.5rem) 1rem;
}

.product-gallery-panel {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(91, 46, 255, 0.24), transparent 38%),
    #000;
  cursor: zoom-in;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: clamp(0.75rem, 2vw, 1.35rem);
  transition: transform 220ms ease, filter 220ms ease;
  filter: drop-shadow(0 0 34px rgba(91, 46, 255, 0.34));
}

.product-main-image:hover img {
  transform: scale(1.08);
}

.product-detail-modal.image-expanded .product-main-image img {
  transform: scale(1.08);
}

.product-gallery-nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  padding: 0 0.85rem;
}

.product-gallery-nav.prev {
  left: 0.8rem;
}

.product-gallery-nav.next {
  right: 0.8rem;
}

.product-thumbs,
.product-chip-row,
.product-detail-actions,
.related-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-thumbs button {
  width: 74px;
  height: 74px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  padding: 0.25rem;
}

.product-thumbs button.active {
  border-color: rgba(91, 46, 255, 0.82);
  box-shadow: 0 0 24px rgba(91, 46, 255, 0.22);
}

.product-thumbs img,
.related-product-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info {
  align-self: center;
}

.product-detail-info h2 {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.product-detail-description {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.product-option-block {
  margin-top: 1.15rem;
}

.product-option-block h3,
.product-detail-lower h3 {
  margin-bottom: 0.6rem;
}

.product-chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.55rem 0.75rem;
}

.product-detail-actions {
  margin-top: 1.35rem;
}

.product-detail-actions .btn {
  flex: 1 1 170px;
  min-height: 52px;
}

.product-detail-lower {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 2.4vw, 1.5rem) 1.5rem;
}

.product-detail-lower.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-lower section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
}

.product-detail-lower ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .ai-assistant {
  display: none;
}

.store-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 46, 255, 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.store-cta h3 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(1.65rem, 2.8vw, 2.85rem);
  line-height: 1.04;
}

.store-cta p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 690px;
}

.store-cta-button {
  min-height: 56px;
  padding-inline: 1.45rem;
  box-shadow: 0 0 28px rgba(91, 46, 255, 0.52), 0 0 76px rgba(91, 46, 255, 0.22);
}

.merchandise-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(91, 46, 255, 0.34), transparent 28rem),
    radial-gradient(circle at 20% 76%, rgba(0, 178, 255, 0.11), transparent 26rem),
    linear-gradient(135deg, #050505, #101014 55%, #07020d);
}

.merch-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 2rem;
  align-items: center;
}

.featured-merch-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 46, 255, 0.26), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.65);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  backdrop-filter: blur(22px);
}

.featured-merch-banner .product-art {
  min-height: 260px;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.featured-merch-banner .product-art img {
  width: min(240px, 72%);
  max-height: 230px;
  margin-bottom: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 38px rgba(91, 46, 255, 0.5));
}

.featured-merch-banner .product-badge {
  display: none;
}

.featured-merch-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 0.55rem;
}

.featured-merch-banner p {
  color: var(--muted);
}

.merchandise-page-section {
  padding-top: 5.5rem;
}

.merch-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: -1.25rem 0 2rem;
}

.merch-categories button,
.availability-status {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.58rem 0.78rem;
  text-transform: uppercase;
}

.merch-categories button {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.merch-categories button:hover,
.merch-categories button.active {
  border-color: rgba(91, 46, 255, 0.62);
  background: rgba(91, 46, 255, 0.22);
  box-shadow: 0 0 26px rgba(91, 46, 255, 0.18);
  color: var(--white);
  transform: translateY(-2px);
}

.store-card.is-hidden {
  display: none;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: auto 0 1rem;
}

.availability-status.in-stock {
  border-color: rgba(0, 178, 255, 0.34);
  color: #d9f6ff;
  box-shadow: 0 0 18px rgba(0, 178, 255, 0.12);
}

.availability-status.pre-order {
  border-color: rgba(91, 46, 255, 0.45);
  color: #e6ddff;
  box-shadow: 0 0 18px rgba(91, 46, 255, 0.16);
}

.merch-product-grid .product-info {
  min-height: 310px;
}

.hoodie {
  --product-fill: linear-gradient(180deg, #24242a, #5B2EFF 55%, #111 86%);
}

.hoodie::before {
  border-radius: 30px 30px var(--radius) var(--radius);
}

.tumbler::before {
  width: 34%;
  max-width: 112px;
  aspect-ratio: 0.56;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #5B2EFF 54%, #121212);
}

@media (max-width: 1080px) {
  .premium-choice-grid,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-card.featured {
    grid-column: span 2;
  }

  .merch-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid,
  .product-detail-lower {
    grid-template-columns: 1fr;
  }

  .product-detail-lower.compact {
    grid-template-columns: 1fr;
  }

  .google-reviews-panel {
    grid-template-columns: 1fr;
  }
}

.cta-band {
  padding: 3rem 0;
  background:
    linear-gradient(90deg, rgba(75, 30, 120, 0.9), rgba(12, 12, 14, 0.96)),
    #111;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inline h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 0;
}

.gallery-grid .image-card {
  min-height: 330px;
}

.urgency-section {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(75, 30, 120, 0.72)),
    var(--black);
}

.urgency-panel {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 28rem),
    rgba(0, 0, 0, 0.5);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow);
}

.urgency-panel h2 {
  margin-bottom: 0;
}

.urgency-panel p {
  max-width: 680px;
  color: var(--muted);
}

.estimate-layout {
  align-items: start;
}

.sticky-estimate {
  position: sticky;
  top: 112px;
}

.message-float {
  background: #25d366;
  color: #fff;
}

.estimate-popup {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 86;
  display: grid;
  width: min(330px, calc(100vw - 2rem));
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: var(--shadow);
  padding: 1rem;
  transform: translateY(130%);
  transition: transform 280ms ease;
  backdrop-filter: blur(18px);
}

.estimate-popup.open {
  transform: translateY(0);
}

.estimate-popup.dismissed {
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}

.estimate-popup button {
  position: absolute;
  right: 0.55rem;
  top: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}

.estimate-popup strong {
  padding-right: 1.8rem;
}

.estimate-popup span {
  color: var(--muted);
  font-size: 0.9rem;
}

.seo-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  border-left: 3px solid var(--purple);
  color: var(--muted);
  padding-left: 0.8rem;
}

.service-area-panel {
  min-height: 100%;
}

@media (max-width: 760px) {
  .top-license-bar {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .cta-inline {
    display: grid;
  }

  .choice-cta {
    display: grid;
  }

  .store-cta {
    display: grid;
  }

  .google-reviews-panel {
    border-radius: 18px;
    padding: 1rem;
  }

  .google-reviews-widget,
  .google-reviews-widget iframe,
  .google-review-placeholder {
    min-height: 300px;
  }

  .google-review-stats {
    display: grid;
    align-items: stretch;
  }

  .sticky-estimate {
    position: static;
  }

  .estimate-popup {
    left: 0.75rem;
    bottom: 5.8rem;
  }

  .hero-estimate-panel {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .brand img {
    width: 188px;
  }

  .hero {
    padding-top: 4rem;
  }

  .premium-media-hero {
    min-height: 85vh;
    max-height: none;
    padding: 4.6rem 0 4.8rem;
  }

  .hero-premium-layout {
    min-height: calc(85vh - 8.8rem);
  }

  .premium-media-hero::before {
    background:
      radial-gradient(circle at 18% 24%, rgba(91, 46, 255, 0.34), transparent 18rem),
      linear-gradient(100deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.76) 60%, rgba(0, 0, 0, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.88));
  }

  .premium-hero-badge {
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .hero-scroll-indicator {
    bottom: 0.85rem;
  }

  .hero-mark-panel {
    min-height: 340px;
  }

  .hero-stat {
    position: static;
    margin: 0.6rem;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .trust-strip,
  .premium-choice-grid,
  .store-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .store-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .product-art,
  .store-card.featured .product-art {
    min-height: 220px;
  }

  .product-info {
    min-height: auto;
  }

  .product-detail-modal {
    padding: 0.75rem;
  }

  .product-modal-card {
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
  }

  .product-modal-close {
    left: calc(100% - 5.6rem);
  }

  .product-detail-grid {
    padding-inline: 0.75rem;
  }

  .product-main-image {
    min-height: 260px;
    max-height: 360px;
  }

  .product-detail-info h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .product-detail-actions .btn,
  .store-card-actions .btn {
    width: 100%;
  }

  .product-detail-lower {
    padding-inline: 0.85rem;
  }

  .product-gallery-nav {
    top: 34%;
  }

  .premium-choice-card {
    min-height: 260px;
  }

  .choice-cta-btn,
  .store-cta-button {
    width: 100%;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .before-after {
    grid-column: span 1;
  }

  .section {
    padding: 4.4rem 0;
  }

  .page-hero {
    padding: 6rem 0 4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-actions {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 18px;
    padding: 0.45rem;
  }

  .float-btn {
    min-height: 46px;
    padding: 0 0.55rem;
    font-size: 0.86rem;
  }

  .ai-assistant {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.4rem;
    width: auto;
  }

  .ai-assistant.open {
    inset: 0;
    z-index: 120;
    display: grid;
    align-items: end;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.48);
  }

  .ai-assistant.open .ai-panel {
    width: 100%;
    max-height: calc(100vh - 1.4rem);
    border-radius: 22px;
  }

  .ai-assistant.open .ai-toggle {
    display: none;
  }

  .ai-messages {
    height: min(52vh, 460px);
  }

  .ai-composer {
    grid-template-columns: 1fr;
  }

}

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