:root {
  --bg: #02050a;
  --bg-soft: #08101a;
  --panel: #0f1722;
  --panel-2: #111d2b;
  --text: #f4fbff;
  --muted: #a9bfd0;
  --line: rgba(116, 224, 239, 0.14);
  --brand: #74e0ef;
  --brand-strong: #47c3d8;
  --brand-soft: #d8f8fd;
  --danger: #ff7f92;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(980px 520px at -5% -10%, rgba(116, 224, 239, 0.2), transparent 55%),
    radial-gradient(900px 560px at 100% 15%, rgba(71, 195, 216, 0.18), transparent 58%),
    linear-gradient(180deg, #020307, #05111c 35%, #04070e);
}

.site-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1));
  pointer-events: none;
}

.cinematic-bars {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 12vh;
  background: #000;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-top {
  top: 0;
}

.bar-bottom {
  bottom: 0;
}

body.cinema-ready .bar-top {
  transform: translateY(-100%);
}

body.cinema-ready .bar-bottom {
  transform: translateY(100%);
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.3vw, 5.2rem);
  max-width: 15ch;
}

h1 span {
  color: var(--brand-soft);
  display: block;
}

h2 {
  font-size: clamp(1.45rem, 2.9vw, 2.65rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.13rem;
}

.section {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 5.2rem 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.eyebrow {
  width: fit-content;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #032230;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem min(4vw, 2.2rem);
  border-bottom: 0;
  background: rgba(3, 7, 11, 0.42);
  backdrop-filter: blur(14px);
}

.topbar.is-scrolled {
  border-color: transparent;
  background: rgba(5, 10, 16, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(116, 224, 239, 0.25));
}

.topnav {
  display: flex;
  gap: clamp(0.7rem, 1.7vw, 1.6rem);
  flex-wrap: wrap;
  justify-content: center;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-social {
  display: flex;
  gap: 0.45rem;
}

.top-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(116, 224, 239, 0.1);
  color: var(--brand-soft);
  transition: transform 0.2s ease, background 0.2s ease;
}

.top-social a:hover {
  transform: translateY(-1px);
  background: rgba(116, 224, 239, 0.22);
}

.top-social svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.topnav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: var(--text);
}

.btn {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(110deg, var(--brand), var(--brand-soft) 70%);
  color: #04202c;
  box-shadow: 0 12px 34px rgba(116, 224, 239, 0.28);
}

.btn-outline {
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.55);
  color: var(--brand-soft);
  background: rgba(116, 224, 239, 0.08);
}

.btn-ghost {
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.16);
  color: #d9e8f2;
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7.4rem min(4vw, 2.4rem) 4.5rem;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 9, 0.4) 8%, rgba(2, 6, 10, 0.92) 80%),
    radial-gradient(860px 500px at 76% 6%, rgba(116, 224, 239, 0.25), transparent 64%),
    radial-gradient(750px 450px at 16% 42%, rgba(71, 195, 216, 0.24), transparent 67%);
  z-index: -1;
}

.hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
}

.hero-copy {
  font-size: clamp(1rem, 2vw, 1.26rem);
  color: #d2e2ec;
  max-width: 62ch;
}

.hero-local {
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.hero-kpis {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-kpis article {
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(8, 13, 19, 0.75);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  padding: 0.9rem 1rem;
}

.hero-kpis strong {
  font-family: 'Sora', sans-serif;
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.hero-kpis span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-reel {
  width: min(1180px, 92vw);
  margin: 1.4rem auto 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reel-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: reelScroll 22s linear infinite;
}

.reel-item {
  width: 190px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  position: relative;
  flex-shrink: 0;
}

.reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.reel-item span {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: #022532;
  background: rgba(216, 248, 253, 0.88);
  font-weight: 700;
}

@keyframes reelScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intro {
  padding-top: 3.4rem;
}

.intro-text {
  font-size: 1.07rem;
  max-width: 74ch;
  color: #cbdae5;
}

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

.route-card {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(116, 224, 239, 0.14), rgba(17, 29, 43, 0.95));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.route-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.service-card {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(116, 224, 239, 0.08), rgba(255, 255, 255, 0.01));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  min-height: 180px;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.category-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
}

.category-chip {
  border: 0;
  background: rgba(15, 23, 34, 0.92);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-1px);
  background: rgba(116, 224, 239, 0.16);
}

.category-chip.is-active {
  background: rgba(116, 224, 239, 0.2);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.filters label {
  min-width: 220px;
  flex: 1;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.filters select {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.2);
  color: var(--text);
  padding: 0.8rem;
  font: inherit;
}

.filters select:focus {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(116, 224, 239, 0.32),
    0 0 0 2px rgba(116, 224, 239, 0.2);
}


.portfolio-meta {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.25rem;
}

.portfolio-note {
  color: #c7d9e6;
  max-width: 70ch;
  font-size: 0.96rem;
}

.portfolio-meta span {
  font-weight: 700;
}

.portfolio-meta small {
  color: var(--muted);
}

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

.portfolio-more {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.portfolio-more .btn[hidden] {
  display: none;
}

.portfolio-card {
  background: var(--panel-2);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-top-width: 3px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.portfolio-card.type-branding-premium { border-top-color: #9beeff; }
.portfolio-card.type-réseaux-sociaux,
.portfolio-card.type-reseaux-sociaux { border-top-color: #74e0ef; }
.portfolio-card.type-clips-musicaux { border-top-color: #d8f8fd; }
.portfolio-card.type-mariage-et-événementiel,
.portfolio-card.type-mariage-et-evenementiel { border-top-color: #88d9f5; }
.portfolio-card.type-institutionnel { border-top-color: #56b7d6; }
.portfolio-card.type-publicité,
.portfolio-card.type-publicite { border-top-color: #2f9fbe; }
.portfolio-card.type-a-classer { border-top-color: #7b8a95; }

.portfolio-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}

.portfolio-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.portfolio-type {
  font-size: 0.78rem;
  padding: 0.27rem 0.55rem;
  background: rgba(116, 224, 239, 0.13);
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.32);
  color: var(--brand-soft);
  border-radius: 999px;
  font-weight: 700;
}

.portfolio-goal {
  font-size: 0.78rem;
  color: var(--muted);
}

.portfolio-title {
  font-size: 1.12rem;
}

.portfolio-client {
  color: var(--muted);
  font-size: 0.92rem;
}

.portfolio-summary {
  color: #d4e3ed;
  font-size: 0.92rem;
}

.portfolio-link {
  margin-top: 0.2rem;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 800;
}

.portfolio-link.is-disabled {
  color: var(--muted);
  cursor: default;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  color: var(--muted);
}

.cm-strategy {
  max-width: 76ch;
  color: #d4e4ee;
  margin: -0.4rem 0 1.2rem;
  font-size: 0.97rem;
}

.cm-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.cm-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(116, 224, 239, 0.16);
  color: var(--brand-soft);
  font-size: 1.55rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.cm-nav:hover {
  transform: translateY(-1px);
  background: rgba(116, 224, 239, 0.3);
}

.cm-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.cm-viewport {
  overflow: hidden;
}

.cm-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cm-list::-webkit-scrollbar {
  display: none;
}

.cm-card {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(116, 224, 239, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  padding: 1.15rem;
  display: grid;
  gap: 1rem;
  min-height: 430px;
  scroll-snap-align: start;
}

.cm-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cm-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  background: #0f1f2a;
}

.cm-identity {
  display: grid;
  gap: 0.15rem;
}

.cm-identity strong {
  font-size: 1.06rem;
}

.cm-identity small {
  color: var(--muted);
  font-size: 0.83rem;
}

.cm-period {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.cm-metrics {
  display: grid;
  gap: 0.75rem;
}

.cm-metric {
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.cm-metric--hero {
  background: linear-gradient(145deg, rgba(116, 224, 239, 0.22), rgba(9, 18, 28, 0.85));
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.18);
  position: relative;
  padding: 1.1rem 1rem;
}

.cm-metric--hero .cm-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  text-shadow: 0 0 28px rgba(116, 224, 239, 0.35);
}

.cm-metric--hero .cm-metric-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cce7f2;
}

.cm-metric-badge {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(116, 224, 239, 0.18);
  color: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.cm-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.cm-metric--views,
.cm-metric--engage {
  background: rgba(116, 224, 239, 0.08);
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.1);
  padding: 0.7rem 0.5rem;
}

.cm-metric--views .cm-metric-value,
.cm-metric--engage .cm-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #f2fbff;
  line-height: 1.2;
}

.cm-metric--views .cm-metric-label,
.cm-metric--engage .cm-metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cm-leads-note {
  margin-top: 0.1rem;
  color: #d4e4ee;
  font-size: 0.89rem;
  line-height: 1.45;
}

.web-card {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(116, 224, 239, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

.web-card p {
  color: #e1eff6;
}

.web-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  display: grid;
  gap: 0.35rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: rgba(15, 23, 34, 0.85);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.process-steps article {
  border: 0;
  border-radius: 14px;
  background: rgba(15, 23, 34, 0.88);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  padding: 0.85rem;
  display: grid;
  gap: 0.45rem;
}

.process-steps span {
  width: fit-content;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #022532;
  background: rgba(216, 248, 253, 0.9);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.process-steps h3 {
  font-size: 1rem;
}

.process-steps p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-panel,
.contact-form {
  border: 0;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-panel h3 {
  font-size: 1.35rem;
}

.contact-panel p {
  color: var(--muted);
}

.quick-actions {
  display: grid;
  gap: 0.55rem;
}

.contact-mini {
  font-size: 0.9rem;
}

.contact-mini a {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

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

label {
  display: grid;
  gap: 0.36rem;
  font-size: 0.88rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #0a1219;
  box-shadow: inset 0 0 0 1px rgba(116, 224, 239, 0.2);
  color: var(--text);
  padding: 0.75rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(116, 224, 239, 0.36),
    0 0 0 2px rgba(116, 224, 239, 0.22);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.35rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.form-status.success {
  color: var(--brand-soft);
}

.form-status.error {
  color: var(--danger);
}

.footer {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 5.5rem;
  color: var(--muted);
  border-top: 0;
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(5, 10, 16, 0.93);
  border-top: 0;
  backdrop-filter: blur(10px);
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.72rem;
  font-size: 0.9rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.video-modal.is-open {
  display: grid;
  place-items: center;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 10, 0.82);
  backdrop-filter: blur(4px);
}

.video-modal-panel {
  position: relative;
  width: min(1040px, 92vw);
  border-radius: 14px;
  background: #050d16;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  padding: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.video-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(116, 224, 239, 0.16);
  color: var(--brand-soft);
  font-size: 1.25rem;
  cursor: pointer;
}

.video-modal-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding-right: 2.2rem;
}

.video-modal-body {
  border-radius: 10px;
  overflow: hidden;
  background: #010203;
}

.video-modal-player,
.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

body.modal-open {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cm-list {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

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

@media (max-width: 820px) {
  .topnav,
  .top-cta {
    display: none;
  }

  .top-actions {
    gap: 0.4rem;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: 5.8rem;
    padding-bottom: 2.5rem;
  }

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

  .hero-reel {
    margin-top: 1rem;
  }

  .reel-item {
    width: 160px;
  }

  .section {
    padding: 4rem 0;
  }

  .route-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .cm-carousel {
    grid-template-columns: auto 1fr auto;
    gap: 0.45rem;
  }

  .cm-nav {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .cm-list {
    grid-auto-columns: 100%;
    gap: 0.7rem;
  }

  .video-modal-panel {
    width: 94vw;
    padding: 0.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: flex;
  }
}
