@font-face {
  font-family: "Mluvka";
  src: url("Mluvka.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mluvka";
  src: url("Mluvka Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Mluvka";
}

:root {
  --bg-color: #0a0a0a;
  --second-bg-color: #0a0a0a;
  --text-color: #eee7cb;
  --main-color: #ffc800;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 2rem;
  --radius-sm: 1rem;
}

html {
  font-size: 60%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

h2 { font-size: clamp(4rem, 5vw, 8rem); }

h3 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  padding: 3rem 0;
  text-align: center;
}

p {
  font-size: clamp(1.8rem, 1.8vw, 2.5rem);
  font-weight: 300;
}

span { color: var(--main-color); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background-color: var(--border); }
::-webkit-scrollbar-track { background-color: var(--bg-color); }

/* ══════════════════════════════════════
   FADE UP
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 2rem 15%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.solid {
  background-color: rgba(5, 10, 5, 0.55);
  backdrop-filter: blur(1.125rem);
}

.logo {
  width: 10rem;
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.1); }

.navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 300;
  transition: color 0.3s ease;
}
.navbar a:hover { color: var(--main-color); }

/* ══════════════════════════════════════
   MOBILE CONTACT
══════════════════════════════════════ */
.mobile-contact {
  position: fixed;
  top: 3rem;
  right: 2rem;
  z-index: 1000;
}

.mobile-contact .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 4rem;
  background-color: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(238, 231, 203, 0.3);
  transition: transform 0.3s ease;
}

.contact-btn img { height: 3.5rem; }

/* ══════════════════════════════════════
   CONTACT BUTTON & ACCORDION
══════════════════════════════════════ */
.contact-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: inherit;
}

.contact-btn {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: 3rem;
  background-color: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  color: var(--text-color);
  box-shadow: 0 0 20px rgba(238, 231, 203, 0.25);
  text-wrap: nowrap;
  z-index: 2;
}
.contact-btn:hover {
  transform: scale(1.05);
  background-color: var(--text-color);
  color: var(--second-bg-color);
}

.contact-accordion {
  position: absolute;
  top: 150%;
  z-index: 9999;
  min-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    padding 0.3s ease;
  opacity: 0;
  padding: 1rem;
  background: var(--second-bg-color);
  border-radius: 3rem;
  border: 1px solid var(--text-color);
}
.contact-accordion.open {
  max-height: 150px;
  opacity: 1;
  padding: 2rem 1.5rem;
}
.contact-accordion a {
  font-size: 1.5rem;
  color: var(--text-color);
  white-space: nowrap;
  transition: color 0.2s;
}
.contact-accordion a:hover { color: var(--main-color); }

#globalAccordion {
  width: auto;
  min-width: unset;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   COOKIES
══════════════════════════════════════ */
.cookie-banner {
  position: fixed !important;
  bottom: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 99999;
  width: 90%;
  max-width: 600px;
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  padding: 2rem 2.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(2rem) !important;
  pointer-events: none;
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  flex: 1;
  min-width: 200px;
}
.cookie-text i {
  font-size: 2rem;
  color: var(--main-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}
.cookie-desc {
  font-size: 1.3rem;
  color: rgba(238, 231, 203, 0.55);
  line-height: 1.6;
}
.cookie-btn {
  background: var(--main-color);
  color: var(--bg-color);
  border: none;
  border-radius: 3rem;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.cookie-btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
section {
  min-height: unset;
  padding: 10rem 15% 0;
}

#hero {
  padding: 0;
  min-height: 100vh;
}

.hero {
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 8rem;
  gap: clamp(2rem, 4vw, 5rem);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 50%;
  background: linear-gradient(
    to top,
    var(--bg-color) 0%,
    rgba(10, 10, 10, 0.9) 60%,
    rgba(10, 10, 10, 0.4) 80%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  flex-shrink: 0;
  margin-top: clamp(2.5rem, 8vw, 5rem);
  width: 100%;
}
.hero-logo img {
  width: clamp(200px, 60vw, 350px);
  height: auto;
  filter: drop-shadow(0 0 2rem rgba(255, 240, 200, 0.3));
}

/* metrici */
.showreel-metrics {
  display: flex;
  margin-top: 2rem;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 4rem;
  border-right: 1px solid var(--border);
}
.metric:first-child { padding-left: 0; }
.metric:last-child {
  padding-right: 0;
  border-right: none;
}
.metric-val {
  font-size: 3rem;
  font-weight: 700;
}
.count { color: var(--text-color); }
.suffix { color: var(--main-color); }
.metric-label {
  font-size: 1.4rem;
  color: rgba(238, 231, 203, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* pills */
.testimonial-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(0.5rem, 3vw, 3rem) 15% 0;
  gap: 2rem;
  width: 100%;
}
.pill-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--second-bg-color);
  border-radius: 3rem;
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(238, 231, 203, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease, border 0.3s ease, outline 0.3s ease;
  white-space: nowrap;
}
.pill:hover {
  box-shadow: none;
  border-color: transparent;
  outline: 1px solid var(--text-color);
  transform: scale(1.05);
}
.pill .handle { color: var(--text-color); }
.pill .dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--main-color);
  flex-shrink: 0;
}
.pill .quote { color: var(--text-color); }

/* hero photo */
.hero-photo-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
}
.hero-photo-fade-in {
  opacity: 0;
  filter: blur(0.625rem);
  transform: translateY(1.25rem);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out,
    filter 0.8s ease-in-out;
  will-change: opacity, transform, filter;
}
.hero-photo-fade-in.hero-photo-is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.hero-image {
  position: relative;
  margin-top: clamp(2.5rem, 8vw, 5rem);
  z-index: 3;
  width: 30vw;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 8rem 2rem rgba(238, 231, 203, 0.15);
}

.hero-main-content {
  position: relative;
  width: 100%;
  padding: 0 10% 10rem;
  box-sizing: border-box;
  margin-top: calc(-5vw - clamp(2.5rem, 8vw, 5rem));
  z-index: 5;
}
.hero-title {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 3rem;
}
.hero-sub {
  text-align: center;
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 3rem;
}
.hero-main-content .contact-btn {
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.4);
  border: 1px solid var(--main-color);
  margin: 2rem 0 -5rem;
}

/* ══════════════════════════════════════
   SHOWREEL
══════════════════════════════════════ */
.showreel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 10rem);
  background-color: var(--second-bg-color);
  padding-bottom: clamp(4rem, 4vw, 8rem);
}

.bento-showreel {
  padding: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  min-height: 0;
  flex-shrink: 0;
}

.bento-card {
  background: var(--second-bg-color);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.bento-showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toolkit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 3rem 0;
}
.toolkit-label {
  font-size: 1.8rem;
  color: color-mix(in srgb, var(--main-color) 80%, transparent);
}
.toolkit-icons {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.toolkit-icons img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.toolkit-icons img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* ══════════════════════════════════════
   VIDEO CONTROLS
══════════════════════════════════════ */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 5;
}

.proj-img:hover .video-controls,
.bento-showreel:hover .video-controls {
  opacity: 1;
}

.btn-play,
.btn-mute {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}
.btn-play:hover,
.btn-mute:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.btn-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  color: var(--bg-color);
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  transition: transform 0.2s ease, opacity 0.2s ease;
  backdrop-filter: blur(4px);
}
.btn-play-center:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.btn-play-center.hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-fullscreen {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}
.btn-fullscreen:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.btn-play i,
.btn-mute i,
.btn-fullscreen i {
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
}

.btn-play-center i {
  font-size: 2.8rem;
  line-height: 1;
  display: flex;
  margin-left: 3px; /* offset vizual pentru iconița play */
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}
.progress-bar:hover { height: 5px; }

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--main-color);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.time {
  font-size: 1.1rem;
  color: rgba(238, 231, 203, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 300;
}

/* ══════════════════════════════════════
   CAROUSEL
══════════════════════════════════════ */
.carousel-section {
  padding-top: clamp(1.5rem, 3vw, 2.8rem);
  position: relative;
  place-items: center;
  text-align: center;
  background: var(--bg-color);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}

.carousel-viewport {
  padding-top: 3rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.proj-card {
  background: var(--second-bg-color);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s,
    transform 0.35s,
    opacity 0.35s,
    box-shadow 0.35s;
  opacity: 0.5;
  transform: scale(0.95);
}
.proj-card--active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 1.5rem 3.75rem rgba(0, 0, 0, 0.5);
}

.proj-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-img video,
.proj-img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.8rem 0;
}
.carousel-dots {
  padding-right: 2rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.25s;
}
.dot.active {
  width: 2.5rem;
  border-radius: 0.625rem;
  background: var(--text-color);
  border-color: var(--text-color);
}
.carousel-btn {
  width: 4rem;
  height: 4rem;
  padding-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  color: var(--text-color);
  font-size: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--bg-color); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ══════════════════════════════════════
   WORKFLOW
══════════════════════════════════════ */
.workflow {
  background: var(--second-bg-color);
  padding: 8rem 15%;
}
.workflow-header { margin-bottom: 6rem; }
.workflow-header h2 { margin-bottom: 1.5rem; }
.workflow-header p {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  color: var(--text-color);
}
.workflow-steps {
  display: flex;
  flex-direction: column;
}
.workflow-step {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 1px;
  flex: 1;
  min-height: 4rem;
  background: var(--border);
}
.workflow-step:last-child .step-line { display: none; }
.step-content {
  padding-bottom: 4rem;
  padding-top: 0.8rem;
}
.step-tag {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 2rem;
  padding: 0.3rem 1.2rem;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: left;
  padding: 0.5rem 0 1rem;
  color: var(--text-color);
}
.step-content p {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  color: rgba(238, 231, 203, 0.55);
}
.workflow-step:nth-child(1) { transition-delay: 0s; }
.workflow-step:nth-child(2) { transition-delay: 0.1s; }
.workflow-step:nth-child(3) { transition-delay: 0.2s; }
.workflow-step:nth-child(4) { transition-delay: 0.3s; }
.workflow-step:nth-child(5) { transition-delay: 0.4s; }
.workflow-step:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { padding: 8rem; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 3rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 2rem;
  color: var(--text-color);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--main-color); }
.footer-copy {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* ══════════════════════════════════════
   MEDIA QUERIES
══════════════════════════════════════ */
@media (max-width: 1285px) {
  .header { padding: 2% 3%; }
  .bento-showreel {
    width: clamp(15rem, 30vw, 25rem);
    aspect-ratio: 9/16;
  }
}

@media (max-width: 1024px) {
  .navbar { display: none; }
  .hero-title { font-size: 3rem; }
  .hero-sub { font-size: 2rem; }
  .hero-image { width: 40vw; }
  .carousel-section { padding-top: 1rem; }
  .proj-card--active {
    opacity: 1;
    transform: scale(1);
  }
  .carousel-viewport {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 6%,
      black 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 6%,
      black 94%,
      transparent 100%
    );
  }
  .btn-play,
  .btn-mute {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header { display: none; }

  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-logo img {
    width: clamp(250px, 80vw, 320px);
    height: auto;
  }
  .hero-image { width: 350px; }
  .hero-title { font-size: 3.8rem; }
  .hero-sub { font-size: 1.8rem; }

  .showreel-metrics {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    justify-content: space-around;
  }
  .showreel-metrics .metric { padding: 0 1.5rem; }

  .testimonial-pills {
    width: 100%;
    padding: 3rem 2rem 0;
    gap: 1rem;
    box-sizing: border-box;
  }
  .pill-row { gap: 1rem; }
  .pill-row:first-child {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
  .pill-row:first-child .pill:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .pill-row:last-child {
    flex-direction: column;
    align-items: center;
  }
  .pill {
    white-space: nowrap;
    font-size: 1rem;
    padding: 1rem;
  }

  .showreel {
    flex-direction: column-reverse;
    text-align: center;
    padding: 4rem 6rem;
    gap: 7rem;
  }
  .showreel h2 {
    text-align: center;
    margin: 2rem 0;
  }
  .toolkit {
    font-size: 1.3rem;
    text-align: center;
    place-items: center;
  }

  .carousel-section h3 { font-size: 2rem; }

  .video-controls {
    opacity: 1;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }
  .btn-play,
  .btn-mute {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
  }
  .time { font-size: 1rem; }

  .workflow { padding: 6rem 6%; }
  .workflow-header { text-align: center; }
  .step-num {
    width: 5rem;
    height: 5rem;
    font-size: 1.5rem;
  }
  .workflow-step { gap: 2rem; }

  footer { padding: 6rem 4rem; }
}

@media (min-width: 769px) {
  .mobile-contact { display: none; }
}
