 /* ─── FEAT HERO ─────────────────────────────────── */
.feat-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.feat-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.6);
}
.feat-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,8,1) 0%, transparent 20%),
    linear-gradient(0deg, rgba(10,8,8,1) 0%, rgba(10,8,8,.8) 40%, rgba(10,8,8,.2) 80%, transparent 100%),
    linear-gradient(90deg, rgba(10,8,8,.7) 0%, transparent 65%);
}
.feat-hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 6vw 80px;
  max-width: 900px;
}
.feat-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  margin-top: .5rem;
}
.feat-hero__title em {
  font-style: normal;
  color: var(--accent);
}
.feat-hero__sub {
  font-size: .95rem;
  color: rgba(240,236,232,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.feat-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.feat-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.feat-section-header .section-desc {
  margin: 0 auto;
}

/* ─── DEVICE CARDS ─────────────────────────────────── */
.feat-devices {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  align-items: start;
}
.feat-device-card {
  background: #130e0d;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, transform .25s;
}
.feat-device-card:hover {
  border-color: rgba(255,77,0,.25);
  transform: translateY(-4px);
}
.feat-device-card--featured {
  background: #180f0a;
  border-color: rgba(255,77,0,.3);
  box-shadow: 0 0 0 1px rgba(255,77,0,.12), 0 20px 50px rgba(255,77,0,.08);
}
.feat-device-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.feat-device-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.2;
}
.feat-device-card__sub {
  font-size: .85rem;
  color: rgba(240,236,232,.6);
  line-height: 1.6;
}
.feat-device-card__sub strong {
  color: var(--accent-2);
  font-weight: 600;
}
.feat-device-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.feat-device-card__tags span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(240,236,232,.5);
  letter-spacing: .3px;
}
.feat-device-card--featured .feat-device-card__tags span {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.2);
  color: var(--accent-2);
}

        /* ─── FEATURES GRID ─────────────────────────────────── */
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
 
        .feat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-soft);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(26px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
 
        .feat-card:hover {
            border-color: rgba(255, 102, 0, 0.3);
            box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
            transform: translateY(-4px);
        }
 
        .feat-card__icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 60, 0, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }
 
        .feat-card__icon svg {
            width: 24px;
            height: 24px;
        }
 
        .feat-card__title {
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.3px;
        }
 
        .feat-card__sub {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
 
        /* ─── FINAL CTA ─────────────────────────────────── */
        .final-cta {
            text-align: center;
            padding: 80px 0;
        }
 
        .final-cta__title {
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
 
        .final-cta__title em {
            font-style: normal;
            color: var(--accent);
        }
 
        .final-cta__sub {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }
 
        .final-cta__actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
 
        /* ─── RESPONSIVE ─────────────────────────────────── */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
 
            .feat-devices {
                grid-template-columns: 1fr;
            }
 
            .feat-device-card--featured {
                order: -1;
            }
 
            .section-4k__resolution {
                display: none;
            }
 
            .final-cta__actions {
                flex-direction: column;
            }
 
            .btn, .btn-primary, .btn-ghost {
                width: 100%;
                justify-content: center;
            }
        }
                /* ─── FAQ CARDS ─────────────────────────────────── */
        .faq-cards {
            display: grid;
            gap: 1rem;
        }
 
        .faq-card {
            background: var(--bg-card);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
 
        .faq-card:hover {
            border-color: rgba(255, 102, 0, 0.3);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
        }
 
        .faq-card-title {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
            user-select: none;
        }
 
        .faq-card-title:hover {
            background: rgba(255, 102, 0, 0.05);
        }
 
        .faq-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 60, 0, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            flex-shrink: 0;
        }
 
        .faq-question {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-main);
            flex: 1;
            text-align: left;
        }
 
        .faq-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
 
        .faq-card.active .faq-toggle {
            transform: rotate(180deg);
        }
 
        .faq-card-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
 
        .faq-card.active .faq-card-content {
            max-height: 1000px;
        }
 
        .faq-card-inner {
            padding: 0 1.5rem 1.5rem 5rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }
 
        .faq-card-inner p {
            margin-bottom: 1rem;
        }
 
        .faq-card-inner p:last-child {
            margin-bottom: 0;
        }
 
        .faq-card-inner a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
 
        .faq-card-inner a:hover {
            color: var(--accent-2);
        }
 
        .faq-card-inner strong {
            color: var(--text-main);
            font-weight: 700;
        }
 
        /* ─── FINAL CTA ─────────────────────────────────── */
        .final-cta {
            text-align: center;
            padding: 40px 0;
        }
 
        .final-cta__title {
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
 
        .final-cta__title em {
            font-style: normal;
            color: var(--accent);
        }
 
        .final-cta__sub {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }
 
        .final-cta__actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
 
        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(240,236,232,.3);
            color: var(--text-main);
        }
 
        .btn-ghost:hover {
            background: rgba(255,255,255,.05);
            border-color: rgba(240,236,232,.6);
        }
 
        .btn-lg {
            padding: 14px 32px;
            font-size: 15px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
 
            .faq-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
 
            .faq-header-text {
                width: 100%;
            }
 
            .faq-card-inner {
                padding: 0 1.5rem 1.5rem 1.5rem;
            }
 
            .final-cta__actions {
                flex-direction: column;
            }
 
            .btn, .btn-primary, .btn-ghost {
                width: 100%;
                justify-content: center;
            }
        }
