/* ============================================================
   VITRO TINT 41 — Home Page CSS
   ============================================================ */

/* ---- LOGO ACCUEIL AGRANDI ---- */
.page-home .navbar:not(.scrolled) .nav-logo-img {
  height: 120px;
  transition: height 0.4s var(--ease-out);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, #0F2C6F 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, #0A1E3F 0%, transparent 70%),
    linear-gradient(160deg, #06111F 0%, #0A1628 50%, #081A38 100%);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(6,12,22,0.65) 0%,
    rgba(10,22,40,0.50) 50%,
    rgba(6,12,22,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-blue);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--c-white-pure);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hero-title-line { display: block; }
.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* Stats bar en bas du hero */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,22,40,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stats-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.hero-stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 12px 0;
}

/* ---- GALLERY INTRO ---- */
.gallery-intro-section {
  padding: 100px 0;
  background: var(--c-white-pure);
}
.gallery-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-intro-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-grey-100);
  cursor: pointer;
}
.gallery-intro-item.gi-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-intro-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.gallery-intro-item:hover img { transform: scale(1.05); }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-intro-item:hover .gi-overlay { opacity: 1; }
.gi-label {
  font-size: 13px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
}
.gallery-intro-cta { text-align: center; }

/* ---- FILM CARD WITH PHOTO ---- */
.film-card-photo {
  padding: 0;
  overflow: hidden;
}
.film-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.film-card:hover .film-card-photo img { transform: scale(1.06); }

/* ---- COMPARE IMAGE ---- */
.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- PROBLEM ---- */
.problem-section {
  padding: 120px 0;
  background: var(--c-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--c-white-pure);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-grey-300);
}
.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.problem-icon svg { width: 100%; height: 100%; }
.problem-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-grey-500);
}
.problem-card-large {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--c-navy) 0%, #0F2242 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
}
.problem-card-large:hover { border-color: rgba(26,111,255,0.3); }
.problem-card-inner { position: relative; }
.problem-card-quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: rgba(26,111,255,0.25);
  display: block;
  margin-bottom: 16px;
}
.problem-card-inner p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-weight: 300;
}
.problem-card-author {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- SOLUTION ---- */
.solution-section {
  padding: 120px 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.solution-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,111,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.solution-left { padding-right: 20px; }
.solution-left .section-title { margin-bottom: 24px; }
.solution-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solution-feat {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.solution-feat:hover {
  background: rgba(26,111,255,0.08);
  border-color: rgba(26,111,255,0.2);
  transform: translateY(-2px);
}
.feat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-icon svg { width: 100%; height: 100%; }
.solution-feat h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.solution-feat p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.4);
}

/* ---- COMPARATEUR ---- */
.compare-section {
  padding: 120px 0;
  background: var(--c-grey-50);
}
.compare-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.compare-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: col-resize;
}

/* Scène APRÈS (fond) */
.compare-after, .compare-before {
  position: absolute;
  inset: 0;
}
.compare-before {
  clip-path: inset(0 50% 0 0);
  transition: none;
}
.compare-scene {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.after-scene {
  background: linear-gradient(160deg, #D4E8FF 0%, #EBF2FF 40%, #F0F4F8 100%);
}
.before-scene {
  background: linear-gradient(160deg, #FFF3E0 0%, #FFE0B2 40%, #FFCCBC 100%);
}

/* Fenêtre CSS simulée */
.window-frame {
  width: 260px;
  height: 300px;
  border: 8px solid #8B7355;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  background: #6B5744;
}
.window-glass {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.after-glass {
  background: linear-gradient(
    135deg,
    rgba(100,160,255,0.6) 0%,
    rgba(180,210,255,0.4) 50%,
    rgba(120,170,255,0.5) 100%
  );
}
.mirror-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.4) 0%,
    rgba(200,230,255,0.2) 30%,
    rgba(255,255,255,0.1) 60%,
    rgba(180,210,255,0.35) 100%
  );
}
.reflection-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 12px,
    rgba(255,255,255,0.06) 12px,
    rgba(255,255,255,0.06) 14px
  );
}
.before-glass {
  background: linear-gradient(
    170deg,
    rgba(255,200,80,0.25) 0%,
    rgba(255,220,120,0.15) 50%,
    rgba(255,180,60,0.2) 100%
  );
}
.sun-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 200deg at 80% -20%,
    rgba(255,200,50,0.5) 0deg,
    transparent 30deg,
    rgba(255,220,80,0.3) 40deg,
    transparent 70deg,
    rgba(255,200,50,0.4) 80deg,
    transparent 120deg
  );
  animation: sunMove 4s ease-in-out infinite alternate;
}
@keyframes sunMove {
  from { opacity: 0.7; transform: rotate(-3deg); }
  to { opacity: 1; transform: rotate(3deg); }
}
.window-frame-inner {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 6px;
  background: #6B5744;
  transform: translateY(-50%);
}
.scene-interior {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 55%;
}
.interior-wall {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #F5F0E8 0%, #EDE8DF 100%);
}
.interior-wall.hot {
  background: linear-gradient(to bottom, #FFF3DC 0%, #FFE8B0 100%);
  animation: heatPulse 3s ease-in-out infinite;
}
@keyframes heatPulse {
  0%, 100% { background: linear-gradient(to bottom, #FFF3DC 0%, #FFE8B0 100%); }
  50% { background: linear-gradient(to bottom, #FFE8B0 0%, #FFCC66 100%); }
}
.interior-floor {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, #C8A882 0%, #B08060 100%);
  border-top: 1px solid #A07850;
}
.interior-item { position: absolute; border-radius: 4px; }
.item-sofa {
  bottom: 30%;
  left: 20%;
  width: 60%;
  height: 24%;
  background: linear-gradient(to bottom, #7B9BB5 0%, #6A88A0 100%);
  border-radius: 6px 6px 2px 2px;
}
.item-sofa.faded { background: linear-gradient(to bottom, #9EB0C4 0%, #8096AC 100%); filter: saturate(0.6); }
.item-table {
  bottom: 30%;
  left: 37%;
  width: 26%;
  height: 8%;
  background: #8B6914;
  margin-bottom: 24%;
  transform: translateY(-210%);
}
.item-table.faded { filter: saturate(0.5); }
.comfort-badge {
  position: absolute;
  top: 30%;
  right: 12%;
  background: rgba(26,111,255,0.9);
  color: white;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(26,111,255,0.4);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.heat-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,120,0,0.12) 0%, transparent 70%);
  animation: heatPulse 3s ease-in-out infinite;
}
.scene-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.after-label {
  background: rgba(26,111,255,0.12);
  color: var(--c-blue);
  border: 1px solid rgba(26,111,255,0.2);
}
.before-label {
  background: rgba(255,107,53,0.12);
  color: var(--c-orange);
  border: 1px solid rgba(255,107,53,0.2);
}

/* Handle comparateur */
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.handle-line {
  flex: 1;
  width: 2px;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.handle-circle {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.handle-circle svg { width: 20px; height: 20px; color: var(--c-navy); }
.compare-container:hover .handle-circle { transform: scale(1.1); }

/* ---- STATS ---- */
.stats-section {
  padding: 100px 0;
  background: var(--c-navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.stats-grid-5 { grid-template-columns: repeat(5, 1fr); }
.stat-minus {
  font-size: clamp(36px, 4vw, 56px) !important;
  color: var(--c-blue) !important;
  margin-right: -4px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: rgba(10,22,40,0.5);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { background: rgba(26,111,255,0.05); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--c-blue);
  margin-left: 2px;
  align-self: flex-end;
  padding-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 12px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 160px;
}
.stat-row {
  display: flex;
  align-items: baseline;
}

/* ---- FILMS PREVIEW ---- */
.films-preview {
  padding: 120px 0;
  background: var(--c-white);
}
.films-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.films-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}
.film-card {
  background: var(--c-white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-grey-100);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.film-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.film-card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.silver-20 {
  background: linear-gradient(
    135deg,
    #8BA8C8 0%, #B0C8E4 25%, #C8D8EE 50%, #A0B8D8 75%, #8AA0C0 100%
  );
}
.silver-35 {
  background: linear-gradient(
    135deg,
    #A8C4DC 0%, #C0D8EC 25%, #D8EAF6 50%, #B8CDE0 75%, #A0BAD0 100%
  );
}
.neutral {
  background: linear-gradient(
    135deg,
    #D8DCE0 0%, #E8ECF0 25%, #F0F4F8 50%, #DFE3E8 75%, #D4D8DC 100%
  );
}
.security {
  background: linear-gradient(
    135deg,
    #1A3A6A 0%, #1E4880 25%, #2258A0 50%, #1A4888 75%, #163060 100%
  );
}
.film-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.35) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}
.film-card:hover .film-shimmer { transform: translateX(100%); }
.film-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-blue);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.security-badge { background: var(--c-navy); }
.film-card-body { padding: 24px; }
.film-ref {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.film-card-body h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
  margin: 8px 0;
  line-height: 1.3;
}
.film-card-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-grey-500);
  margin-bottom: 14px;
}
.film-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.film-specs span {
  font-size: 12px;
  color: var(--c-grey-700);
  padding: 3px 8px;
  background: var(--c-grey-50);
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}
.film-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-blue);
  transition: gap 0.2s;
}
.film-link:hover { gap: 10px; }
.film-link svg { width: 14px; height: 14px; }
.films-cta { text-align: center; }

/* ---- PROCESSUS ---- */
.process-section {
  padding: 120px 0;
  background: var(--c-grey-50);
}
.process-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.process-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-blue), transparent);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-grey-100);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-blue);
  background: var(--c-white-pure);
  border: 1px solid var(--c-grey-100);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-num {
  background: var(--c-blue);
  color: white;
  border-color: var(--c-blue);
  box-shadow: var(--shadow-blue);
}
.step-content { padding-top: 14px; }
.step-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-grey-500);
}

/* ---- REVIEWS ---- */
.reviews-section {
  padding: 120px 0;
  background: var(--c-white);
  overflow: hidden;
}
.reviews-track-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding: 20px 0;
}
.reviews-track {
  display: flex;
  gap: 24px;
  animation: reviewsScroll 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--c-white-pure);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 380px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-grey-300);
}
.review-stars {
  color: #FFBF00;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-grey-700);
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-navy);
}
.review-author span {
  display: block;
  font-size: 12px;
  color: var(--c-grey-300);
  margin-top: 2px;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 120px 0;
  background: var(--c-grey-50);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--c-grey-100);
}
.faq-item:first-child { border-top: 1px solid var(--c-grey-100); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  gap: 16px;
  cursor: none;
}
.faq-question span {
  font-size: 17px;
  font-weight: 400;
  color: var(--c-navy);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-question:hover span { color: var(--c-blue); }
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--c-grey-300);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), color 0.25s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--c-blue);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-grey-500);
}

/* ---- CTA FINAL ---- */
.cta-section {
  padding: 120px 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(26,111,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,111,255,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 20px 0 20px;
}
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: var(--c-blue);
  padding: 18px 40px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.btn-cta-main:hover {
  background: var(--c-blue-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(26,111,255,0.35);
}
.cta-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.cta-meta svg { width: 15px; height: 15px; }

/* ============================================================
   RESPONSIVE HOME
   ============================================================ */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-layout { grid-template-columns: 1fr; gap: 48px; }
  .solution-left { padding-right: 0; }
  .films-grid { grid-template-columns: repeat(2, 1fr); }
  .films-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .gallery-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-intro-item.gi-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; padding: 16px 12px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-sep { display: none; }
  .hero-scroll-hint { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .films-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-features { grid-template-columns: 1fr; }
  .compare-container { height: 300px; }
  .cta-meta { gap: 16px; }
  .footer-hours li { flex-direction: column; gap: 2px; }
  .gallery-intro-grid { grid-template-columns: 1fr; }
  .gallery-intro-item.gi-large { grid-column: span 1; aspect-ratio: 16/9; }
  .films-grid-6 { grid-template-columns: 1fr; }
  .stats-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .hero-benefits { gap: 12px; }
  .hero-benefit-dot { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(40px, 11vw, 60px); }
  .hero-ctas { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; }
  .review-card { width: 300px; }
}
