/* =========================================
   KARTEL62 - MAIN STYLE
   Tidak ada background-image di CSS.
   Semua gambar berasal langsung dari HTML.
   ========================================= */

:root {
    --bg: #050505;
    --bg-soft: #0c0c0c;
    --card: #111111;
    --card-hover: #171717;
    --text: #ffffff;
    --text-soft: #a7a7a7;
    --border: #262626;
    --accent: #ff1e1e;
    --accent-dark: #b90000;
    --container: 1240px;
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 180px;
    height: 50px;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-navigation a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-button {
    padding: 11px 18px;
    border: 1px solid var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

/* HERO */

.hero-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

.hero-container {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    padding: 70px 0;
}

.hero-label,
.section-heading span,
.featured-content > span,
.tuf-content > span,
.promo-content > span {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.hero-content h1 strong {
    display: block;
    color: var(--accent);
}

.hero-content p {
    max-width: 620px;
    margin: 25px 0;
    color: #d0d0d0;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover {
    background: #fff;
    color: #000;
}

.button-secondary {
    border: 1px solid #444;
    background: #111;
    color: #fff;
}

.button-secondary:hover {
    border-color: var(--accent);
}

/* TRUST */

.trust-section {
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    font-size: 26px;
}

.trust-item h2 {
    font-size: 14px;
    margin-bottom: 3px;
}

.trust-item p {
    color: var(--text-soft);
    font-size: 12px;
}

/* SECTIONS */

.category-section,
.products-section,
.why-section,
.faq-preview {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 55px);
    line-height: 1;
    text-transform: uppercase;
}

.section-heading p {
    margin-top: 15px;
    color: var(--text-soft);
}

/* CATEGORY */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 20%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.category-content {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 25px;
    left: 25px;
}

.category-content span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.category-content h3 {
    margin: 5px 0;
    font-size: 26px;
    text-transform: uppercase;
}

.category-content p {
    color: #c0c0c0;
    font-size: 13px;
    margin-bottom: 12px;
}

.category-content strong {
    color: #fff;
    font-size: 12px;
}

/* FEATURED */

.featured-section {
    padding: 100px 0;
    background: #090909;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.featured-image {
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

.featured-content h2,
.tuf-content h2,
.promo-content h2 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1;
    text-transform: uppercase;
}

.featured-content h2 strong,
.tuf-content h2 strong {
    display: block;
    color: var(--accent);
}

.featured-content p,
.tuf-content p,
.promo-content p {
    margin: 22px 0;
    color: var(--text-soft);
}

.featured-content ul {
    list-style: none;
    margin: 25px 0;
}

.featured-content li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: #ddd;
    font-size: 14px;
}

.featured-content li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--accent);
}

/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    transition: 0.3s ease;
}

.product-card:hover {
    border-color: #444;
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0d0d0d;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 9px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.product-info {
    padding: 22px;
}

.product-category {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}

.product-info h3 {
    margin: 8px 0;
    font-size: 19px;
}

.product-info p {
    min-height: 65px;
    color: var(--text-soft);
    font-size: 13px;
}

.product-info a {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.section-action {
    margin-top: 40px;
    text-align: center;
}

/* TUF */

.tuf-section {
    padding: 100px 0;
    background: #0b0b0b;
}

.tuf-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.tuf-image img {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

/* PROMO */

.promo-section {
    padding: 100px 0;
}

.promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #101010;
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px;
}

.promo-image {
    min-height: 450px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WHY */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--card);
}

.why-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.why-card h3 {
    margin: 20px 0 10px;
    font-size: 20px;
}

.why-card p {
    color: var(--text-soft);
    font-size: 13px;
}

/* FAQ */

.faq-list {
    max-width: 900px;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    padding: 22px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
}

.faq-list p {
    padding: 0 0 22px;
    color: var(--text-soft);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border);
    background: #030303;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 70px 0;
}

.footer-brand img {
    width: 170px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 400px;
    color: var(--text-soft);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--text-soft);
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom .container {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: #777;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

/* ACCESSIBILITY */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* =========================================
   PRODUCT CATALOG
   ========================================= */

.breadcrumb-section {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: #080808;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-size: 12px;
}

.breadcrumb a {
    color: #aaa;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.product-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-button {
    padding: 11px 18px;
    border: 1px solid var(--border);
    background: #0c0c0c;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.filter-button:hover,
.filter-button.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.catalog-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card.is-hidden {
    display: none;
}

.product-card.is-visible {
    animation: fadeUp 0.4s ease both;
}

.product-hero .hero-content {
    max-width: 650px;
}

.product-hero .hero-content h1 {
    font-size: clamp(45px, 7vw, 80px);
}

.catalog-section {
    padding-top: 70px;
}

/* =========================================
   PART 3
   CONTENT / PROMO / REVIEW / FAQ / ABOUT
   ========================================= */

.content-section {
    padding: 90px 0;
}

.dark-section {
    background: #080808;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-item {
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.promo-item-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.promo-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.promo-item:hover .promo-item-image img {
    transform: scale(1.05);
}

.promo-item-content {
    padding: 28px;
}

.promo-item-content span,
.about-content > span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.promo-item-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.promo-item-content p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 18px;
}

.promo-item-content a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.promo-item-content a:hover {
    color: var(--accent);
}


/* CTA */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    text-align: center;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.cta-box h2 {
    margin-bottom: 15px;
    font-size: clamp(30px, 4vw, 48px);
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: #999;
    line-height: 1.8;
}


/* REVIEW */

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    padding: 32px;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.review-stars {
    margin-bottom: 18px;
    letter-spacing: 4px;
    color: #fff;
}

.review-card h3 {
    margin-bottom: 14px;
}

.review-card p {
    color: #999;
    line-height: 1.8;
}

.review-author {
    margin-top: 20px;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}


/* FAQ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.faq-item summary {
    position: relative;
    padding: 22px 55px 22px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 24px;
    color: #999;
    line-height: 1.8;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: 24px;
    font-size: clamp(32px, 5vw, 55px);
}

.about-content h2 strong {
    display: block;
    color: var(--accent);
}

.about-content p {
    margin-bottom: 18px;
    color: #999;
    line-height: 1.9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 35px;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: #999;
    line-height: 1.8;
}

/* =========================================
   PART 4
   CONTACT & LEGAL
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    padding: 35px;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    font-size: 20px;
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 18px;
}

.contact-card a {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-information h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 50px);
}

.contact-information p {
    color: #999;
    line-height: 1.9;
    margin-bottom: 25px;
}

.section-label {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}


/* LEGAL */

.page-title-section {
    padding: 130px 0 80px;
    background: #080808;
    border-bottom: 1px solid var(--border);
}

.page-title-section span {
    display: block;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.page-title-section h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 6vw, 70px);
}

.page-title-section p {
    color: #999;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 25px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: #999;
    line-height: 1.9;
}

/* =========================================
   PART 5 - PRODUCT CATALOG
========================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #0c0c0c;
    border: 1px solid var(--border);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );
}

.category-card-content span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
}

.category-card-content h3 {
    margin-top: 8px;
    font-size: 25px;
}


/* PRODUCT */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--border);
    transition: transform .3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    aspect-ratio: 7 / 5;
    overflow: hidden;
    background: #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-card-content {
    padding: 25px;
}

.product-category {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.product-card-content h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.product-card-content p {
    margin-bottom: 18px;
    color: #999;
    line-height: 1.7;
}

.product-card-content a {
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.product-card-content a:hover {
    color: var(--accent);
}


/* CTA */

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    border: 1px solid var(--border);
    background: #0c0c0c;
}

.cta-box span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.cta-box h2 {
    margin: 10px 0;
    font-size: 35px;
}

.cta-box p {
    max-width: 650px;
    color: #999;
    line-height: 1.8;
}

/* =========================================
   PART 6 - HOMEPAGE
========================================= */


/* HERO */

.home-hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
}

.home-hero-media,
.home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-media img {
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.55),
            rgba(0,0,0,.2)
        );
}

.home-hero-container {
    position: relative;
    z-index: 2;
    min-height: 780px;
    display: flex;
    align-items: center;
}

.home-hero-content {
    max-width: 760px;
}

.home-hero-content h1 {
    margin: 18px 0 25px;
    font-size: clamp(45px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -3px;
}

.home-hero-content h1 strong {
    display: block;
    color: var(--accent);
}

.home-hero-content p {
    max-width: 650px;
    color: #c0c0c0;
    line-height: 1.9;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button-outline {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.03);
    color: #fff;
}

.button-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* INTRO */

.home-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
}

.home-intro h2 {
    margin-top: 12px;
    max-width: 700px;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.05;
}

.home-intro p {
    color: #999;
    line-height: 1.9;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.text-link:hover {
    color: var(--accent);
}


/* HOME CATEGORY */

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-category-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0b0b0b;
}

.home-category-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.home-category-card:hover > img {
    transform: scale(1.06);
}

.home-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 25%,
        rgba(0,0,0,.95)
    );
}

.home-category-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
}

.home-category-content span,
.brand-choice-content span,
.featured-product-card span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.home-category-content h3 {
    margin: 8px 0;
    font-size: 29px;
}

.home-category-content p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}


/* ROG FEATURE */

.home-feature {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.home-feature-media,
.home-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-feature-media img {
    object-fit: cover;
}

.home-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.45),
            rgba(0,0,0,.15)
        );
}

.home-feature-container {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.home-feature-content {
    max-width: 650px;
}

.home-feature-content h2 {
    margin: 15px 0;
    font-size: clamp(55px, 9vw, 110px);
    line-height: .9;
}

.home-feature-content p {
    max-width: 600px;
    color: #bbb;
    line-height: 1.9;
}


/* BRAND CHOICE */

.brand-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.brand-choice-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.brand-choice-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.brand-choice-card:hover > img {
    transform: scale(1.05);
}

.brand-choice-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 15%,
        rgba(0,0,0,.95)
    );
}

.brand-choice-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
}

.brand-choice-content h3 {
    margin: 8px 0;
    font-size: 42px;
}

.brand-choice-content p {
    max-width: 450px;
    color: #aaa;
    line-height: 1.7;
}

.brand-choice-content strong {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
}


/* FEATURED PRODUCTS */

.featured-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.featured-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0c0c0c;
}

.featured-product-card > img {
    width: 100%;
    aspect-ratio: 1 / .8;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.featured-product-card:hover > img {
    transform: scale(1.05);
}

.featured-product-card > div {
    padding: 22px;
}

.featured-product-card h3 {
    margin: 9px 0;
    font-size: 20px;
}

.featured-product-card p {
    color: #888;
    line-height: 1.6;
    font-size: 14px;
}


/* BENEFITS */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.benefit-card {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefit-number {
    margin-bottom: 40px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.benefit-card p {
    color: #888;
    line-height: 1.7;
}


/* HOME FAQ */

.home-faq {
    max-width: 950px;
    margin: 0 auto;
}

.home-faq details {
    border-top: 1px solid var(--border);
}

.home-faq details:last-child {
    border-bottom: 1px solid var(--border);
}

.home-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 25px 5px;
    font-size: 17px;
    font-weight: 800;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary::after {
    content: "+";
    float: right;
    color: var(--accent);
    font-size: 20px;
}

.home-faq details[open] summary::after {
    content: "−";
}

.home-faq details p {
    max-width: 850px;
    padding: 0 5px 25px;
    color: #888;
    line-height: 1.8;
}


/* FINAL CTA */

.home-final-cta {
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.home-final-cta-media,
.home-final-cta-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-final-cta-media img {
    object-fit: cover;
}

.home-final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.home-final-cta-container {
    position: relative;
    z-index: 2;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.home-final-cta-content {
    max-width: 750px;
}

.home-final-cta-content h2 {
    margin: 15px 0;
    font-size: clamp(40px, 6vw, 75px);
    line-height: 1;
}

.home-final-cta-content p {
    max-width: 600px;
    color: #aaa;
    line-height: 1.8;
}