/* ============================================================
   Music Planet & A Sports — Premium Corporate Styles
   ============================================================ */

:root {
  --bg: #070707;
  --bg-elevated: #0f0f0f;
  --charcoal: #161616;
  --charcoal-2: #1e1e1e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #737373;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-hot: #ff8533;
  --orange-dim: rgba(255, 106, 0, 0.15);
  --orange-glow: rgba(255, 106, 0, 0.35);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

/* ---------- Glass ---------- */
.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.btn-primary {
  background: var(--orange);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-hot);
  box-shadow: 0 12px 40px var(--orange-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 10px;
  letter-spacing: -0.04em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
}

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

.nav-cta {
  background: var(--orange) !important;
  color: #0a0a0a !important;
  margin-left: 0.35rem;
  padding-inline: 1rem !important;
}

.nav-cta:hover {
  background: var(--orange-hot) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: heroKen 28s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.25) 35%, rgba(7, 7, 7, 0.85) 75%, #070707 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.7) 0%, transparent 55%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 1.75rem;
  padding-top: 4rem;
  max-width: 820px;
  margin-left: max(calc((100% - var(--max)) / 2), 1.25rem);
  margin-right: auto;
  width: min(100% - 2.5rem, 820px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-brand::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-top: 0.85rem;
}

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

.hero-sub {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 560px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}

.stat {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
}

.stat-text {
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  color: var(--orange) !important;
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.scroll-hint {
  position: absolute;
  bottom: 7.5rem;
  right: 2rem;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 4px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.35s;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-orange {
  background: var(--orange);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
}

.about-copy h2 {
  margin-bottom: 1.15rem;
}

.about-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-copy strong {
  color: var(--white);
}

.about-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.about-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---------- Products ---------- */
.products {
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, var(--orange-dim), transparent),
    var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(255, 106, 0, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card .thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--charcoal-2);
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .thumb img {
  transform: scale(1.08);
}

.product-card .body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.product-card h3 {
  font-size: 1.05rem;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  flex: 1;
}

/* ---------- Featured carousel ---------- */
.featured {
  background: var(--bg-elevated);
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.feat-card {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal);
  position: relative;
  aspect-ratio: 3 / 4;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feat-card:hover img {
  transform: scale(1.08);
}

.feat-card .feat-info {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1.35rem 1.35rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.feat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.feat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(7, 7, 7, 0.75);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #0a0a0a;
}

.carousel-btn.prev {
  left: -8px;
}
.carousel-btn.next {
  right: -8px;
}

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.industry-item:hover {
  border-color: rgba(255, 106, 0, 0.4);
  background: var(--orange-dim);
  transform: translateY(-3px);
}

.industry-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--charcoal-2);
  border-radius: 10px;
  color: var(--orange);
}

.industry-icon svg {
  width: 20px;
  height: 20px;
}

.industry-item span {
  font-weight: 500;
  font-size: 0.92rem;
}

/* ---------- Why ---------- */
.why {
  background:
    radial-gradient(ellipse 50% 50% at 10% 80%, var(--orange-dim), transparent),
    var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent);
  transition: transform 0.4s var(--ease), border-color 0.4s, opacity 0.8s var(--ease);
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
}

.why-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: auto;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  transition: background 0.35s;
}

.service-item:hover {
  background: var(--charcoal);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.7;
  line-height: 1;
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ---------- Projects ---------- */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #0a0a0a;
}

.masonry {
  columns: 3;
  column-gap: 1.15rem;
}

.project-card {
  break-inside: avoid;
  margin-bottom: 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal);
  transition: opacity 0.4s, transform 0.4s;
}

.project-card.hidden {
  display: none;
}

.project-card .pimg {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card .pinfo {
  padding: 1.15rem 1.2rem 1.35rem;
}

.project-card .loc {
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.project-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.project-card .meta {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--bg-elevated);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.85rem;
}

.gallery-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.gallery-strip figure:first-child {
  grid-row: span 2;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-strip figure:hover img {
  transform: scale(1.07);
}

.gallery-strip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 1rem 2.5rem 2rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.5;
}

.testimonial-slide blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin: 0.5rem 0 1.5rem;
}

.testimonial-slide cite {
  font-style: normal;
  display: block;
}

.testimonial-slide cite strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.testimonial-slide cite span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}

.testimonial-dots button.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

.testimonial-slider .carousel-btn.prev {
  left: -1rem;
}
.testimonial-slider .carousel-btn.next {
  right: -1rem;
}

/* ---------- Brands ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.brand-logo {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.35s var(--ease);
  text-align: center;
}

.brand-logo:hover {
  filter: none;
  opacity: 1;
  color: var(--white);
  border-color: rgba(255, 106, 0, 0.45);
  background: var(--orange-dim);
}

.brand-logo.jbl {
  color: var(--orange);
  opacity: 1;
  filter: none;
}

/* ---------- Contact ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-info {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-right: 1px solid var(--border);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.contact-tag {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.contact-details {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.contact-details li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ci-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--orange-dim);
  border-radius: 8px;
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-details small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.contact-details a:hover {
  color: var(--orange);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) contrast(1.1);
}

.contact-form {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(0, 0, 0, 0.25);
}

.contact-form h3 {
  margin-bottom: 0.35rem;
}

.form-lead {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 106, 0, 0.6);
  background: rgba(255, 106, 0, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: 1rem;
  color: var(--orange);
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 106, 0, 0.08), transparent 55%),
    #050505;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.55;
}

.footer-cta {
  border-bottom: 1px solid var(--border);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.footer-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-copy {
  max-width: 560px;
}

.footer-cta-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
}

.footer-cta-copy > p:last-child {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1.65fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1.15rem;
}

.footer-tag {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 1.5rem;
}

.footer-contact-chips {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.footer-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.footer-chip:hover {
  border-color: rgba(255, 106, 0, 0.45);
  background: var(--orange-dim);
  transform: translateY(-2px);
}

.chip-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
}

.chip-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.site-footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
}

.site-footer li a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.site-footer li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.35rem 0 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0 1.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.footer-credit p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  font-weight: 400;
}

.footer-credit .credit-heart {
  display: inline-block;
  color: var(--orange);
  margin: 0 0.2rem;
  font-size: 0.72rem;
  vertical-align: middle;
  animation: creditPulse 2.4s ease-in-out infinite;
}

.footer-credit a {
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.footer-credit a:hover {
  color: var(--orange);
  border-bottom-color: rgba(255, 106, 0, 0.5);
}

@keyframes creditPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* ---------- Float CTA ---------- */
.float-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease);
}

.float-btn:hover {
  transform: scale(1.05);
}

.float-whatsapp {
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
}

.float-quote {
  background: var(--orange);
  color: #0a0a0a;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.modal[hidden] {
  display: none;
}

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

.modal-panel {
  position: relative;
  width: min(480px, 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 1;
}

.modal-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.15rem;
}

.modal-panel h3 {
  margin-bottom: 0.5rem;
}

.modal-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 2;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.75rem;
  }

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

  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }

  .masonry {
    columns: 2;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 160px;
  }

  .gallery-strip figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .scroll-hint {
    display: none;
  }

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

@media (max-width: 640px) {
  .product-grid,
  .industry-grid,
  .why-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .masonry {
    columns: 1;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-btn {
    display: none;
  }

  .testimonial-slide {
    padding-inline: 0.5rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .gallery-strip figure:first-child {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-img {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
