@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Orbitron:wght@500;600;700;800&display=swap');

:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --panel: #111114;
  --panel-2: #17171a;
  --silver: #d7d7da;
  --muted: #909096;
  --red: #ed111b;
  --red-dark: #8f070d;
  --white: #f7f7f8;
  --line: rgba(255,255,255,.1);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(237,17,27,.11), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.62), transparent);
  transition: background .3s ease, height .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.brand {
  width: 155px;
  justify-self: start;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: #d8d8da;
  transition: color .2s ease, transform .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav a:hover {
  color: white;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
}

.header-call:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(237,17,27,.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 145px 7vw 90px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 42%, rgba(140,0,8,.2), transparent 34%),
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.98) 42%, rgba(5,5,5,.62) 72%, rgba(5,5,5,.9) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent 84%);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  background: linear-gradient(transparent, var(--black));
  z-index: -1;
}

.hero-mascot {
  position: absolute;
  right: -2%;
  top: 7%;
  width: min(58vw, 870px);
  height: 92%;
  object-fit: cover;
  object-position: center;
  opacity: .62;
  filter: contrast(1.12) saturate(1.1);
  mask-image: linear-gradient(to right, transparent 0%, black 26%, black 82%, transparent 100%);
  z-index: -2;
  animation: mascotFloat 7s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) scale(1.01); }
  50% { transform: translateY(-14px) scale(1.03); }
}

.hero-content {
  width: min(760px, 64vw);
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .27em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 26px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 span,
.section-heading h2 span,
.contact-header h2 span {
  color: var(--red);
  text-shadow: 0 0 30px rgba(237,17,27,.22);
}

.hero-copy {
  max-width: 660px;
  color: #bcbcc1;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-width: 175px;
  padding: 16px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .25s ease, box-shadow .25s ease;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(237,17,27,.3);
}

.btn-ghost {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stats strong {
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  right: 4.5vw;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  color: #8c8c91;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { transform: scaleY(.5); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  position: relative;
  padding: 110px 7vw;
}

.intro-strip {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0c0e;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
  animation: marqueeMove 32s linear infinite;
}

.marquee-track span {
  font-family: Orbitron, Inter, sans-serif;
  font-size: .78rem;
  letter-spacing: .16em;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--red);
  font-style: normal;
}

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

.services-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(237,17,27,.07), transparent 24%),
    var(--black);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading h2,
.byd-copy h2,
.about-copy h2,
.contact-header h2,
.mascot-break-copy h2 {
  margin-bottom: 22px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.byd-copy > p,
.about-copy > p,
.location-note p {
  color: var(--muted);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 320px;
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% 20%;
  height: 220px;
  background: radial-gradient(circle, rgba(237,17,27,.18), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  border-color: rgba(237,17,27,.55);
  box-shadow: var(--shadow);
}

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

.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #55555a;
  font-family: Orbitron, Inter, sans-serif;
  font-size: .8rem;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid rgba(237,17,27,.45);
  background: rgba(237,17,27,.08);
  color: var(--red);
  font-size: 1.8rem;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) rotate(-5deg) scale(1.08);
  background: var(--red);
  color: white;
  box-shadow: 0 16px 30px rgba(237,17,27,.24);
}

.service-card h3 {
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

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

.byd-section {
  background: #09090b;
}

.byd-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  padding: clamp(35px, 6vw, 82px);
  border: 1px solid rgba(237,17,27,.28);
  background:
    linear-gradient(115deg, rgba(237,17,27,.13), transparent 30%),
    linear-gradient(145deg, #141417, #0b0b0d);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 15px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .78rem;
}

.text-link span {
  color: var(--red);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(7px);
}

.byd-list {
  align-self: center;
}

.byd-list div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: #d9d9dc;
  font-weight: 600;
}

.byd-list span {
  color: var(--red);
  font-family: Orbitron, Inter, sans-serif;
  font-size: .78rem;
}

.mascot-break {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: black;
}

.mascot-watermark {
  position: absolute;
  inset: 0;
}

.mascot-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.36), rgba(0,0,0,.92));
}

.mascot-watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
  opacity: .5;
  filter: contrast(1.2) saturate(1.1);
}

.mascot-break-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.about-section {
  background:
    linear-gradient(90deg, #09090b, #0d0d0f),
    var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-logo {
  padding: 45px;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(237,17,27,.12), transparent 60%);
}

.about-logo img {
  width: 100%;
}

.about-copy p {
  max-width: 720px;
}

.contact-section {
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 80% 15%, rgba(237,17,27,.1), transparent 26%),
    var(--black);
}

.contact-header {
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
  border-color: var(--red);
  background: linear-gradient(145deg, rgba(237,17,27,.15), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.contact-card small,
.location-note small {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .18em;
}

.contact-card strong {
  font-size: clamp(1rem, 2vw, 1.6rem);
  word-break: break-word;
}

.contact-card span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.location-note {
  margin-top: 16px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--line);
}

.location-note div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-note p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  z-index: 90;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 15px 35px rgba(237,17,27,.35);
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-8px) scale(1.07);
}

.floating-whatsapp span {
  font-weight: 900;
  font-size: .76rem;
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 15px 35px rgba(237,17,27,.3), 0 0 0 0 rgba(237,17,27,.2); }
  50% { box-shadow: 0 15px 35px rgba(237,17,27,.4), 0 0 0 13px rgba(237,17,27,0); }
}

footer {
  padding: 34px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: #08080a;
  color: var(--muted);
  font-size: .78rem;
}

footer img {
  width: 120px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(5,5,5,.97);
    transform: translateY(-100%);
    transition: transform .35s ease;
    z-index: -1;
    font-size: 1rem;
  }

  body.menu-open .main-nav {
    transform: translateY(0);
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
  }

  .hero-mascot {
    width: 100%;
    right: -12%;
    top: 2%;
    height: 75%;
    opacity: .48;
  }

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

  .byd-panel,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-logo {
    max-width: 620px;
  }
}

@media (max-width: 650px) {
  .site-header {
    height: 74px;
    padding-inline: 20px;
  }

  .brand {
    width: 118px;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    min-height: 860px;
    padding: 105px 22px 60px;
  }

  .hero-mascot {
    top: 0;
    right: -22%;
    width: 128%;
    height: 66%;
    opacity: .43;
  }

  h1 {
    font-size: clamp(2.65rem, 14.2vw, 4.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 22px 35px;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 82px 22px;
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .byd-panel {
    gap: 35px;
    padding: 28px 22px;
  }

  .mascot-break {
    min-height: 430px;
  }

  .about-layout {
    gap: 40px;
  }

  .about-logo {
    padding: 22px;
  }

  .location-note,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

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


.motto{display:inline-block;margin:0 0 18px;padding:8px 12px;border-left:3px solid var(--red);background:rgba(237,17,27,.08);font-family:Orbitron,Inter,sans-serif;font-size:.78rem;font-weight:800;letter-spacing:.18em}
.specialization-section{background:radial-gradient(circle at 85% 20%,rgba(237,17,27,.08),transparent 28%),#08080a}
.specialization-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.specialization-card{min-height:230px;padding:30px;border:1px solid var(--line);background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012));transition:.25s ease}
.specialization-card:hover{transform:translateY(-8px);border-color:rgba(237,17,27,.55);box-shadow:var(--shadow)}
.specialization-card h3,.tuning-detail-card h3{font-family:Orbitron,Inter,sans-serif;text-transform:uppercase}
.specialization-card p,.tuning-detail-card p,.tuning-detail-card li{color:var(--muted);line-height:1.7}
.tuning-page-hero{min-height:72vh;display:flex;align-items:center;padding:150px 7vw 90px;background:radial-gradient(circle at 78% 40%,rgba(237,17,27,.18),transparent 30%),linear-gradient(90deg,#050505,#09090b)}
.tuning-page-hero .hero-content{width:min(860px,100%)}
.tuning-page-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.tuning-detail-card{padding:34px;border:1px solid var(--line);background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.015))}
.tuning-detail-card ul{padding-left:18px}
.back-home{color:var(--red);font-size:.78rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
@media(max-width:980px){.specialization-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:650px){.specialization-grid,.tuning-page-grid{grid-template-columns:1fr}.tuning-page-hero{padding:120px 22px 70px}.motto{font-size:.65rem;letter-spacing:.12em}}

.slide-image{position:relative;overflow:hidden;border:1px solid var(--line);background:#0a0a0c;opacity:0;transform:translateX(-70px);transition:opacity .9s ease,transform .9s cubic-bezier(.2,.7,.2,1)}
.slide-image.visible,.reveal.visible .slide-image,.slide-image.reveal.visible{opacity:1;transform:translateX(0)}
.slide-image img{width:100%;height:100%;object-fit:cover}
.specialization-feature{grid-column:span 2;display:grid;grid-template-columns:minmax(240px,.95fr) 1.05fr;gap:28px;align-items:center;padding:22px}
.specialization-feature .slide-image{height:240px}.specialization-feature-copy{padding-right:10px}
.byd-intro{display:grid;grid-template-columns:minmax(220px,.9fr) 1.1fr;gap:34px;align-items:center}.byd-image{height:290px}
.tuning-hero-layout{width:100%;display:grid;grid-template-columns:minmax(360px,.85fr) 1.15fr;gap:55px;align-items:center}.tuning-hero-image{height:430px;box-shadow:var(--shadow)}
.tuning-image-card{grid-column:span 2;display:grid;grid-template-columns:minmax(300px,.95fr) 1.05fr;gap:30px;align-items:center}.tuning-image-card .slide-image{height:300px}
@media(max-width:1100px){.byd-intro{grid-template-columns:1fr}.byd-image{height:250px}.tuning-hero-layout{grid-template-columns:1fr}.tuning-hero-image{height:360px}}
@media(max-width:760px){.specialization-feature,.tuning-image-card{grid-column:span 1;grid-template-columns:1fr}.specialization-feature .slide-image,.tuning-image-card .slide-image,.byd-image,.tuning-hero-image{height:230px}.byd-intro{gap:24px}}


/* V4: images positioned immediately beside their matching titles */
.title-with-image {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.title-with-image h3 {
  margin: 0;
}

.title-thumb {
  width: 118px;
  height: 78px;
  flex: 0 0 118px;
  border-radius: 3px;
}

.section-title-with-image {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
}

.section-title-with-image .eyebrow {
  margin-bottom: 13px;
}

.section-title-with-image h2 {
  margin-bottom: 0;
}

.section-title-thumb {
  width: clamp(180px, 22vw, 310px);
  height: clamp(120px, 15vw, 205px);
  flex: 0 0 auto;
  border-radius: 3px;
}

.specialization-feature,
.tuning-image-card {
  grid-column: auto;
  display: block;
}

.byd-intro {
  display: block;
}

.byd-image {
  height: auto;
}

@media (max-width: 720px) {
  .section-title-with-image {
    align-items: flex-start;
    gap: 16px;
  }

  .section-title-thumb {
    width: 135px;
    height: 92px;
  }

  .section-title-with-image h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.5rem);
  }

  .title-thumb {
    width: 92px;
    height: 64px;
    flex-basis: 92px;
  }
}

@media (max-width: 480px) {
  .section-title-with-image {
    display: grid;
    grid-template-columns: 108px 1fr;
  }

  .section-title-thumb {
    width: 108px;
    height: 78px;
  }
}



/* VERSION 5 */
.experience-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(237,17,27,.12), transparent 27%),
    linear-gradient(145deg, #0c0c0f, #070708);
}

.experience-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.experience-number {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  border: 1px solid rgba(237,17,27,.35);
  background:
    linear-gradient(145deg, rgba(237,17,27,.16), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.experience-number strong {
  font-family: Orbitron, Inter, sans-serif;
  color: var(--red);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: .9;
}

.experience-number span {
  max-width: 320px;
  margin-top: 25px;
  color: #d5d5d8;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.experience-copy h2 {
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.experience-copy h2 span {
  color: var(--red);
}

.experience-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.credentials-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.credentials-grid strong,
.credentials-grid span {
  display: block;
}

.credentials-grid strong {
  margin-bottom: 8px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: .88rem;
  text-transform: uppercase;
}

.credentials-grid span {
  color: var(--muted);
  font-size: .8rem;
}

.hours-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-instagram {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  z-index: 90;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 110%, #ffd600 0 10%, #ff7a00 25%, #ff0169 50%, #d300c5 72%, #7638fa 100%);
  box-shadow: 0 15px 35px rgba(211,0,197,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-instagram:hover {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 18px 38px rgba(211,0,197,.4);
}

.floating-instagram span {
  font-weight: 900;
  font-size: .76rem;
}

@media (max-width: 900px) {
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-number {
    min-height: 300px;
  }
}

@media (max-width: 650px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .floating-instagram {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}


/* VERSION 6 — RPM AI ASSISTANT */
.ai-assistant-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  z-index: 120;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: linear-gradient(145deg, #ed111b, #8f070d);
  color: white;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(237,17,27,.34);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ai-assistant-button:hover {
  transform: translateY(-7px) scale(1.06);
  box-shadow: 0 22px 48px rgba(237,17,27,.46);
}

.ai-label {
  position: relative;
  z-index: 2;
  font-family: Orbitron, Inter, sans-serif;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.ai-pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(237,17,27,.65);
  border-radius: 50%;
  animation: aiPulse 2s ease-out infinite;
}

@keyframes aiPulse {
  0% { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.ai-assistant-panel {
  position: fixed;
  right: 24px;
  bottom: 102px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(650px, calc(100vh - 130px));
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  z-index: 119;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at top right, rgba(237,17,27,.12), transparent 34%),
    rgba(10,10,12,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
  overflow: hidden;
}

.ai-assistant-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-assistant-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.ai-assistant-header strong,
.ai-assistant-header span {
  display: block;
}

.ai-assistant-header strong {
  font-family: Orbitron, Inter, sans-serif;
  text-transform: uppercase;
  font-size: .95rem;
}

.ai-assistant-header span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
}

.ai-assistant-header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: white;
  cursor: pointer;
  font-size: 1.35rem;
}

.ai-assistant-messages {
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: .83rem;
  line-height: 1.55;
}

.ai-message-bot {
  align-self: flex-start;
  color: #dedee1;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}

.ai-message-user {
  align-self: flex-end;
  color: white;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}

.ai-quick-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  overflow-x: auto;
}

.ai-quick-actions button {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: #d9d9dc;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.ai-quick-actions button:hover {
  border-color: var(--red);
  background: rgba(237,17,27,.12);
}

.ai-assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.ai-assistant-form input {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: white;
  outline: none;
}

.ai-assistant-form input:focus {
  border-color: var(--red);
}

.ai-assistant-form button {
  padding: 0 16px;
  border: 0;
  background: var(--red);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 650px) {
  .ai-assistant-button {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .ai-assistant-panel {
    right: 16px;
    bottom: 86px;
    width: calc(100vw - 32px);
  }
}


/* VERSION 7 — LARGE IMAGES DIRECTLY BESIDE SECTION TITLES */
.visual-section-heading {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 58px;
}

.visual-section-copy {
  margin-bottom: 0;
}

.visual-section-image {
  width: 100%;
  height: clamp(300px, 33vw, 470px);
  box-shadow: var(--shadow);
}

.visual-section-image img {
  object-position: center;
}

.byd-panel-v7 {
  display: block;
}

.byd-visual-heading {
  margin-bottom: 42px;
}

.byd-visual-heading .visual-section-image {
  height: clamp(270px, 30vw, 420px);
}

.byd-list-v7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

.byd-list-v7 div {
  min-height: 84px;
}

.hero h1 span {
  color: var(--red);
}

@media (max-width: 980px) {
  .visual-section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visual-section-image,
  .byd-visual-heading .visual-section-image {
    height: clamp(240px, 55vw, 390px);
  }

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

@media (max-width: 650px) {
  .visual-section-heading {
    margin-bottom: 40px;
  }

  .visual-section-image,
  .byd-visual-heading .visual-section-image {
    height: 230px;
  }

  .byd-list-v7 {
    grid-template-columns: 1fr;
  }
}
