 /* ─── 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: 80px 6vw 80px;
  max-width: 700px;
}
.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;
    text-align: center;

}

/* ─── 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;
            }
        }
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        :root {
            --accent: #ff6600;
            --accent-2: #ff9933;
            --bg-dark: #0f1419;
            --bg-card: rgba(10, 14, 30, 0.92);
            --text-main: #f7f7f7;
            --text-muted: #b4b7c4;
            --border-soft: rgba(255, 255, 255, 0.06);
            --font-head: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
        }
 
        body {
            font-family: var(--font-head);
            background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(20, 25, 50, 0.8) 100%);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }
 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }
 
        /* ─── 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(0.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: 80px 6vw 80px;
            max-width: 700px;
        }
 
        .section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1rem;
        }
 
        .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: 0.5rem;
            color: var(--text-main);
        }
 
        .feat-hero__title em {
            font-style: normal;
            color: var(--accent);
        }
 
        .feat-hero__sub {
            font-size: 0.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;
        }
 
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 999px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
 
        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
        }
 
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(255, 102, 0, 0.6);
        }
 
        .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;
        }
 
        /* ─── SECTION ─────────────────────────────────── */
        .section {
            padding: 40px 0;
            position: relative;
            z-index: 1;
        }
 
        .feat-section-header {
            text-align: center;
            margin-bottom: 56px;
        }
 
        .section-title {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
 
        .section-title em {
            font-style: normal;
            color: var(--accent);
        }
 
        .section-desc {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
 
        /* ─── DEVICE CARDS ─────────────────────────────────── */
        .feat-devices {
            display: grid;
            grid-template-columns: 1fr 1.15fr 1fr;
            gap: 16px;
            align-items: start;
            margin-bottom: 4rem;
        }
 
        .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;
            font-size: 28px;
        }
 
        .feat-device-card__title {
            font-family: var(--font-head);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -0.3px;
            line-height: 1.2;
            text-align: center;
        }
 
        .feat-device-card__sub {
            font-size: 0.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: 0.68rem;
            font-weight: 600;
            color: rgba(240,236,232,.5);
            letter-spacing: 0.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);
        }
 
        /* ─── COMPATIBILITY TABLES ─────────────────────────────────── */
        .compatibility-section {
            margin-bottom: 3rem;
        }
 
        .compatibility-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-main);
            text-align: center;
            letter-spacing: -0.3px;
        }
 
        .compatibility-table {
            background: var(--bg-card);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 3rem;
        }
 
        .compat-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
 
        .compat-table thead {
            background: rgba(255, 102, 0, 0.1);
            border-bottom: 2px solid rgba(255, 102, 0, 0.3);
        }
 
        .compat-table th {
            padding: 1.2rem;
            text-align: center;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.3px;
            border-right: 1px solid var(--border-soft);
        }
 
        .compat-table th:last-child {
            border-right: none;
        }
 
        .compat-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--border-soft);
            color: var(--text-muted);
        }
 
        .compat-table tbody tr:hover {
            background: rgba(255, 102, 0, 0.05);
        }
 
        .compat-table tbody tr:last-child td {
            border-bottom: none;
        }
 
        .compat-table td strong {
            color: var(--text-main);
            font-weight: 600;
            text-align: center;
        }
 
        /* ─── NOTES SECTION ─────────────────────────────────── */
        .notes-section {
            background: var(--bg-card);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 2rem;
            margin: 3rem 0;
        }
 
        .notes-title {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-main);
        }
 
        .notes-list {
            list-style: none;
        }
 
        .notes-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }
 
        .notes-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
 
        /* ─── 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;
        }
 
        /* ─── FOOTER ─────────────────────────────────── */
        footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-muted);
            font-size: 13px;
            border-top: 1px solid var(--border-soft);
            margin-top: 3rem;
        }
 
        footer strong {
            color: var(--text-main);
        }
 
        /* ─── RESPONSIVE ─────────────────────────────────── */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
 
            .feat-devices {
                grid-template-columns: 1fr;
            }
 
            .feat-device-card--featured {
                order: -1;
            }
 
            .compat-table {
                font-size: 0.8rem;
                text-align: center;
            }
 
            .compat-table th,
            .compat-table td {
                padding: 0.8rem;
                text-align: center;
            }
 
            .final-cta__actions {
                flex-direction: column;
            }
 
            .btn, .btn-primary, .btn-ghost {
                width: 100%;
                justify-content: center;
            }
        }
         .feat-device-card__img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 1rem;
            border-radius: 12px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
