/* =========================================
   IRON TV MAX - GLOBAL
========================================= */

:root {
    --iron-bg: #070b14;
    --iron-bg-light: #0d1422;
    --iron-card: #111a2b;
    --iron-text: #ffffff;
    --iron-muted: #aab4c5;
    --iron-primary: #e50914;
    --iron-primary-hover: #ff1a25;
    --iron-border: rgba(255, 255, 255, 0.08);
    --iron-radius: 18px;
    --iron-container: 1180px;
}

/* =========================================
   RESET
========================================= */

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: var(--iron-bg);
    color: var(--iron-text);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   GLOBAL WORDPRESS / GENERATEPRESS
========================================= */

body.home,
body.page-template-front-page {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--iron-bg) !important;
}

/* Full width homepage */

body.home #page,
body.home .site,
body.home .site-content,
body.home .content-area,
body.home .inside-article,
body.home .entry-content,
body.page-template-front-page #page,
body.page-template-front-page .site,
body.page-template-front-page .site-content,
body.page-template-front-page .content-area,
body.page-template-front-page .inside-article,
body.page-template-front-page .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.home .site-content,
body.home .content-area,
body.home .inside-article,
body.home .entry-content {
    background: transparent !important;
}

/* Header / Footer */

body.home .site-header,
body.home .site-footer {
    margin: 0 !important;
}

/* =========================================
   MAIN CONTAINER
========================================= */

.container {
    width: calc(100% - 40px);
    max-width: var(--iron-container);
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   HERO
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(229, 9, 20, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #070b14 0%,
            #0b1120 55%,
            #080b13 100%
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.08);
    color: #ff6b72;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-description {
    max-width: 680px;
    margin: 0 auto 35px;
    color: var(--iron-muted);
    font-size: 19px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--iron-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--iron-primary-hover);
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid var(--iron-border);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* =========================================
   FEATURES
========================================= */

.features-section {
    width: 100%;
    margin: 0 !important;
    padding: 100px 0;
    background: #090e18;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff5a62;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--iron-border);
    border-radius: var(--iron-radius);
    background: var(--iron-card);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.12);
    color: #ff5a62;
    font-size: 15px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
}

.feature-card p {
    margin: 0;
    color: var(--iron-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   REVIEWS
========================================= */

.reviews-section {
    width: 100%;
    margin: 0 !important;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(229, 9, 20, 0.08),
            transparent 30%
        ),
        #070b14;
}

.reviews-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.reviews-header h2 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.reviews-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.reviews-score strong {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
}

.reviews-score span {
    color: #8e99aa;
    font-size: 14px;
}

.reviews-summary-info {
    text-align: left;
}

.reviews-stars,
.review-rating {
    color: #f5b301;
    letter-spacing: 2px;
}

.reviews-summary-info p {
    margin: 4px 0 0;
    color: #9da8b9;
    font-size: 13px;
}

.reviews-summary-info strong {
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #111a2b;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #e50914,
        #7b0a10
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.review-author {
    min-width: 0;
}

.review-author h3 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 16px;
}

.review-author span {
    color: #7f8b9e;
    font-size: 13px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 20px 0 8px;
    font-size: 17px;
}

.review-rating small {
    margin-left: 7px;
    color: #aab4c5;
    font-size: 12px;
    letter-spacing: 0;
}

.star-partial {
    color: #f5b301;
}

/* =========================================
   VERIFIED BADGE
========================================= */

.verified {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 700;
}

.verified i {
    color: #22c55e;
    font-size: 15px;
    line-height: 1;
}

.verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.review-text {
    margin: 0;
    color: #aeb8c8;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================
   REVIEWS - LOAD MORE
========================================= */

.reviews-grid.reviews-collapsed .review-card:nth-child(n + 4) {
    display: none;
}

.reviews-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.reviews-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #111a2b;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.reviews-toggle:hover {
    background: #182338;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =========================================
   HEADER
========================================= */

.iron-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(7, 11, 20, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.iron-header-container {
    width: min(calc(100% - 40px), 1180px);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.iron-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.iron-logo img {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
}

.iron-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.iron-navigation a {
    position: relative;
    color: #c6cedb;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.iron-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: #e50914;
    transition: width 0.2s ease;
}

.iron-navigation a:hover {
    color: #ffffff;
}

.iron-navigation a:hover::after {
    width: 100%;
}

.iron-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 21px;
    border-radius: 9px;
    background: #e50914;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.iron-header-cta:hover {
    background: #ff1a25;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================================
   MOBILE MENU
========================================= */

.iron-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.iron-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.iron-mobile-menu {
    display: none;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #090e18;
}

.iron-mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 15px 20px 22px;
}

.iron-mobile-menu a {
    padding: 14px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #d6dce7;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.iron-mobile-menu a:hover {
    color: #ffffff;
}

.iron-mobile-menu .iron-mobile-cta {
    margin-top: 15px;
    border: 0;
    border-radius: 9px;
    background: #e50914;
    color: #ffffff;
    text-align: center;
}

.iron-mobile-menu .iron-mobile-cta:hover {
    background: #ff1a25;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .iron-header-container {
        min-height: 72px;
        width: calc(100% - 28px);
    }

    .iron-logo img {
        width: 155px;
    }

    .iron-navigation,
    .iron-header-cta {
        display: none;
    }

    .iron-mobile-toggle {
        display: block;
    }

    .iron-mobile-menu.iron-menu-open {
        display: block;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
        max-width: var(--iron-container);
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        max-width: 760px;
        padding: 70px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .features-section {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 75px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        width: 100%;
        justify-content: center;
    }

    .review-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {

    .iron-header-container {
        min-height: 68px;
    }

    .iron-logo img {
        width: 140px;
    }

    .container {
        width: calc(100% - 28px);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 10px;
    }

    .reviews-summary-info {
        text-align: center;
    }
}