/* ============================================================
   MIMÉA — STYLES
   Dark · Aéré · Typographie maîtrisée · Langage technique
   ============================================================ */


/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --bg:          #08080f;
  --bg-surface:  #0c0c18;
  --bg-card:     #101020;
  --text-1:      #f0f0f8;
  --text-2:      #8888aa;
  --text-3:      #44445a;

  --blue:        #005fef;
  --blue-glow:   rgba(0, 95, 239, 0.25);
  --orange:      #ee9002;
  --orange-glow: rgba(238, 144, 2, 0.25);
  --magenta:     #ef0160;
  --purple:      #9102ee;

  /* Typography */
  --font-title: 'Sora', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Layout */
  --max-w:  1200px;
  --pad-x:  clamp(1.25rem, 5vw, 2.5rem);

  /* Misc */
  --radius:   4px;
  --radius-lg: 10px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --dur:      0.3s;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }
a   { color: inherit; }
ul  { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-header { margin-bottom: clamp(2.5rem, 6vw, 5rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: #08080f;
  font-weight: 600;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: #ff9f0f;
  border-color: #ff9f0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--orange-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border-color: rgba(240, 240, 248, 0.18);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--full { width: 100%; }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 95, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 239, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  padding-top: 130px;
  padding-bottom: 6rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2rem;
}


.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
  max-width: 820px;
}
.hero__title--accent { color: var(--blue); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Crosshair decoration (right side) */
.hero__crosshair {
  position: absolute;
  right: clamp(3rem, 9vw, 9rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crosshair__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 95, 239, 0.18);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.crosshair__ring::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(0, 95, 239, 0.1);
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }

.crosshair__cross {
  position: absolute;
  inset: 0;
}
.crosshair__cross::before,
.crosshair__cross::after {
  content: '';
  position: absolute;
  background: rgba(0, 95, 239, 0.2);
}
.crosshair__cross::before {
  left: 50%; top: 16%; bottom: 16%;
  width: 1px;
  transform: translateX(-50%);
}
.crosshair__cross::after {
  top: 50%; left: 16%; right: 16%;
  height: 1px;
  transform: translateY(-50%);
}

.crosshair__coord {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-family: 'Courier New', monospace;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1);   }
  50%       { opacity: 0.2; transform: scaleY(0.4); }
}

/* ===== RÉALISATIONS ===== */
.realisations {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-surface);
}

/* ===== À PROPOS ===== */
.apropos {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.apropos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.apropos__text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.stat__number {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__plus  { color: var(--orange); }
.stat__label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Visual frame */
.visual-frame__inner {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Corner markers */
.frame-marker       { position: absolute; width: 22px; height: 22px; }
.fm--tl             { top: 16px;    left: 16px;  border-top: 1.5px solid var(--blue); border-left: 1.5px solid var(--blue);   }
.fm--tr             { top: 16px;    right: 16px; border-top: 1.5px solid var(--blue); border-right: 1.5px solid var(--blue);  }
.fm--bl             { bottom: 16px; left: 16px;  border-bottom: 1.5px solid var(--blue); border-left: 1.5px solid var(--blue);  }
.fm--br             { bottom: 16px; right: 16px; border-bottom: 1.5px solid var(--blue); border-right: 1.5px solid var(--blue); }

/* Central crosshair */
.frame-crosshair {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc__h, .fc__v { position: absolute; background: rgba(0, 95, 239, 0.12); }
.fc__h { height: 1px; width: 55%; }
.fc__v { width: 1px; height: 55%; }
.fc__circle {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(0, 95, 239, 0.18);
  border-radius: 50%;
}

.frame-logo {
  position: relative;
  z-index: 1;
  width: 78%;
  opacity: 0.85;
  mix-blend-mode: screen;
}
[data-theme="light"] .frame-logo {
  mix-blend-mode: multiply;
}

/* ===== CONTACT ===== */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-surface);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-item          { margin-bottom: 2rem; }
.contact-item__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.4rem;
}
.contact-item__value {
  font-size: 0.95rem;
  color: var(--text-1);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a.contact-item__value:hover { color: var(--blue); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__crosshair { display: none; }
}

@media (max-width: 768px) {
  .apropos__inner     { grid-template-columns: 1fr; }
  .contact__inner     { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGES INTERNES — styles communs + pages spécifiques
   ============================================================ */

/* ===== PAGE HERO (remplacement du hero full-screen) ===== */
.page-hero {
  position: relative;
  padding: 160px var(--pad-x) 5rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 95, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 239, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 70% at 20% 0%, black 0%, transparent 100%);
}

.page-hero__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
  opacity: 0.4;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}


.page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.8;
}

/* Split hero — text + video side by side */
.page-hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.page-hero__text { min-width: 0; }

/* Hero video frame */
.page-hero__video-wrap {
  position: relative;
  min-width: 0;
}
.page-hero__video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 60px rgba(238, 144, 2, 0.08);
}
.page-hero__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Corner markers */
.phvf__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  pointer-events: none;
}
.phvf__corner--tl { top: 10px;    left: 10px;  border-top: 1px solid rgba(238,144,2,0.6); border-left: 1px solid rgba(238,144,2,0.6); }
.phvf__corner--tr { top: 10px;    right: 10px; border-top: 1px solid rgba(238,144,2,0.6); border-right: 1px solid rgba(238,144,2,0.6); }
.phvf__corner--bl { bottom: 10px; left: 10px;  border-bottom: 1px solid rgba(238,144,2,0.6); border-left: 1px solid rgba(238,144,2,0.6); }
.phvf__corner--br { bottom: 10px; right: 10px; border-bottom: 1px solid rgba(238,144,2,0.6); border-right: 1px solid rgba(238,144,2,0.6); }

/* Label REC en bas à gauche */
.phvf__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.phvf__rec {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2.4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .page-hero__inner--split {
    grid-template-columns: 1fr;
  }
  .page-hero__video-wrap { order: -1; }
}


/* ===== HIGHLIGHT ACCENT ===== */
.text-blue    { color: var(--blue); }
.text-orange  { color: var(--orange); }
.text-magenta { color: var(--magenta); }

/* ===== ABOUT PAGE ===== */

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: clamp(5rem, 10vw, 9rem);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.13); }

.team-card__photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.team-card--marie .team-card__photo { background: linear-gradient(135deg, #12002a 0%, #34006a 100%); }
.team-card--remi  .team-card__photo { background: linear-gradient(135deg, #001635 0%, #003580 100%); }

.team-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.team-card__photo img[src=""] { display: none; }

.team-card__body { padding: 2rem; }

.team-card__role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-card--marie .team-card__role { color: var(--purple); }
.team-card--remi  .team-card__role { color: var(--blue); }

.team-card__name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.team-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  border: 1px solid;
}
.team-card--marie .team-tag { border-color: rgba(145,2,238,0.3); color: rgba(145,2,238,0.8); background: rgba(145,2,238,0.06); }
.team-card--remi  .team-tag { border-color: rgba(0,95,239,0.3);  color: rgba(0,95,239,0.8);  background: rgba(0,95,239,0.06); }

/* Values */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
@media (min-width: 640px) {
  .values-grid { flex-direction: row; flex-wrap: wrap; }
  .value-card  { flex: 1 1 calc(50% - 0.75rem); }
}
@media (min-width: 1024px) {
  .value-card  { flex: 1 1 calc(33.333% - 1rem); }
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.value-card__icon { font-size: 1.5rem; margin-bottom: 1rem; }
.value-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.value-card__desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.7; }

/* ===== VIDEO PAGE ===== */

/* Impact stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: clamp(3rem, 6vw, 5rem) 0;
}
.impact-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.impact-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0.5;
}
.impact-stat__number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.625rem;
  letter-spacing: -0.03em;
}
.impact-stat__label { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
.impact-stat__source { font-size: 0.65rem; color: var(--text-3); margin-top: 0.5rem; letter-spacing: 0.04em; }

/* Video styles grid */
.video-styles-section { padding: clamp(4rem, 8vw, 7rem) 0; }

.video-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.video-style-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: default;
}
.video-style-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.13); }

.video-style-card__color {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.video-style-card__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.video-style-card__desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.75; }

/* Drone comparison (stabilized vs FPV) */
.drone-comparison-section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-surface); }

.drone-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.drone-type {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.drone-type--fpv { border-color: rgba(238, 144, 2, 0.2); }
.drone-type--fpv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(238,144,2,0.06), transparent 65%);
  pointer-events: none;
}
.drone-type--stab { border-color: rgba(0, 95, 239, 0.2); }
.drone-type--stab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,95,239,0.06), transparent 65%);
  pointer-events: none;
}

.drone-type__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.drone-type--stab .drone-type__badge { color: var(--blue);   background: rgba(0,95,239,0.12);   border: 1px solid rgba(0,95,239,0.25); }
.drone-type--fpv  .drone-type__badge { color: var(--orange); background: rgba(238,144,2,0.12); border: 1px solid rgba(238,144,2,0.25); }

.drone-type__title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.drone-type__subtitle {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.drone-type__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.drone-type__list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.drone-type__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}
.drone-type--stab .drone-type__list li::before { color: var(--blue); }
.drone-type--fpv  .drone-type__list li::before { color: var(--orange); }

/* Vidéo exemple dans les cartes drone */
.drone-type__video-wrap {
  margin-bottom: 1.75rem;
}
.drone-type__video-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.drone-type__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  background: #000;
}

/* Placeholder quand pas encore de vidéo */
.drone-type__video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--text-3);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
[data-theme="light"] .drone-type__video-placeholder {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}
.drone-type__video-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}

.drone-type__ideal {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.drone-type__ideal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.drone-type__ideal-list span {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-2);
}

/* ===== BUDGET SECTION ===== */
.budget-section { padding: clamp(4rem, 8vw, 7rem) 0; }


/* ===== DRONE PAGE ===== */

.drone-service-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.drone-service-section + .drone-service-section { border-top: 1px solid rgba(255,255,255,0.06); }

.drone-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.drone-service-inner--reversed { direction: rtl; }
.drone-service-inner--reversed > * { direction: ltr; }

.drone-service__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.drone-service__title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.drone-service__desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.drone-service__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.drone-service__point {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
}
.drone-service__point-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.drone-service__visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.drone-service__visual svg { width: 100px; height: 100px; opacity: 0.4; }
.drone-service__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Advantages */
.advantages-section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-surface); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.advantage-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--dur) var(--ease);
}
.advantage-card:hover { transform: translateY(-3px); }

.advantage-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(0, 95, 239, 0.1);
  border: 1px solid rgba(0, 95, 239, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.advantage-card__icon svg { width: 22px; height: 22px; }
.advantage-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.advantage-card__desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 9rem); }

/* ===== SHARED SECTION SPACING ===== */
.section--light { background: var(--bg-surface); }
.section--dark  { background: var(--bg); }
.section-pad    { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ===== SHOWREEL ===== */
.showreel__player {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.showreel__player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --bg:          #fafafa;
  --bg-surface:  #f1f1f8;
  --bg-card:     #ffffff;
  --text-1:      #0c0c1a;
  --text-2:      #52526a;
  --text-3:      #9898b2;
  --blue-glow:   rgba(0, 95, 239, 0.1);
  --orange-glow: rgba(238, 144, 2, 0.1);
}

/* Hero grid */
[data-theme="light"] .hero__grid,
[data-theme="light"] .page-hero__grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Crosshair decorations */
[data-theme="light"] .crosshair__ring          { border-color: rgba(0, 95, 239, 0.14); }
[data-theme="light"] .crosshair__cross::before,
[data-theme="light"] .crosshair__cross::after  { background: rgba(0, 95, 239, 0.14); }
[data-theme="light"] .fc__h,
[data-theme="light"] .fc__v                    { background: rgba(0, 95, 239, 0.1); }
[data-theme="light"] .fc__circle               { border-color: rgba(0, 95, 239, 0.14); }

/* Frame markers */
[data-theme="light"] .fm--tl,
[data-theme="light"] .fm--tr,
[data-theme="light"] .fm--bl,
[data-theme="light"] .fm--br { border-color: rgba(0, 95, 239, 0.3); }

/* Cards — flip border on light theme */
[data-theme="light"] .team-card,
[data-theme="light"] .value-card,
[data-theme="light"] .advantage-card,
[data-theme="light"] .video-style-card,
[data-theme="light"] .impact-stat,
[data-theme="light"] .visual-frame__inner,
[data-theme="light"] .drone-type,
[data-theme="light"] .drone-service__visual {
  border-color: rgba(0, 0, 0, 0.07);
}

/* Section surfaces */
[data-theme="light"] .section--light          { background: #ebebf5; }
[data-theme="light"] .advantages-section      { background: #ebebf5; }
[data-theme="light"] .drone-comparison-section{ background: #ebebf5; }
[data-theme="light"] .budget-section.section--light { background: #ebebf5; }
[data-theme="light"] .contact               { background: #ebebf5; }

/* Drone service visual */
[data-theme="light"] .drone-service__visual { background: #eeeef8; }

/* Buttons */
[data-theme="light"] .btn--ghost {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text-1);
}
[data-theme="light"] .btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Team card type tags */
[data-theme="light"] .team-tag {
  background: rgba(0, 0, 0, 0.03);
}

/* Drone type badge bg */
[data-theme="light"] .drone-type--stab { border-color: rgba(0, 95, 239, 0.14); }
[data-theme="light"] .drone-type--fpv  { border-color: rgba(238, 144, 2, 0.14); }
[data-theme="light"] .drone-type--stab::before {
  background: radial-gradient(circle at top left, rgba(0,95,239,0.04), transparent 65%);
}
[data-theme="light"] .drone-type--fpv::before {
  background: radial-gradient(circle at top right, rgba(238,144,2,0.04), transparent 65%);
}

/* ===== RESPONSIVE — PAGES INTERNES ===== */
@media (max-width: 768px) {
  .drone-comparison     { grid-template-columns: 1fr; }
  .drone-service-inner  { grid-template-columns: 1fr; }
  .drone-service-inner--reversed { direction: ltr; }

}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .btn           { width: 100%; }

}
