/*
Theme Name: IPTVUKSBS
Theme URI: https://iptvuksbs.com/
Author: IPTVUKSBS
Description: Professional IPTV UK WordPress Theme
Version: 1.0.0
Text Domain: iptvuksbs
*/

:root {
    --uk-red: #c8102e;
    --uk-red-light: #e31b3d;
    --uk-blue: #012169;

    --navy: #040b16;
    --navy-2: #071321;
    --navy-3: #0a1b2d;

    --white: #ffffff;
    --text: #edf3f8;
    --muted: #9aaaba;

    --border: rgba(255,255,255,.09);
    --card: rgba(255,255,255,.045);

    --max-width: 1180px;
    --radius: 18px;

    --shadow:
        0 25px 70px rgba(0,0,0,.35);

    --transition:
        .3s cubic-bezier(.4,0,.2,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Inter, Arial, sans-serif;

    background: var(--navy);
    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.dark-section {
    background: #06101c;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;

    margin-bottom: 15px;

    color: #ff4f68;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 19px;

    font-size: clamp(34px,4vw,52px);
    line-height: 1.08;

    letter-spacing: -2px;
    font-weight: 850;
}

.section-heading h2 span,
.intro-content h2 span,
.why-content h2 span,
.quality-text h2 span,
.cta-content h2 span {
    color: var(--uk-red);
}

.section-heading p {
    color: var(--muted);
    font-size: 15px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    transition: var(--transition);

    border-bottom:
        1px solid rgba(255,255,255,.06);
}

.header.scrolled {
    background:
        rgba(4,11,22,.94);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);
}

.header-inner {
    min-height: 80px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 20px;

    font-weight: 900;

    letter-spacing: -.7px;
}

.logo-text span {
    color: var(--uk-red);
}

.logo-icon {
    width: 38px;
    height: 38px;

    position: relative;

    overflow: hidden;

    border-radius: 9px;

    background: var(--uk-blue);

    box-shadow:
        0 8px 25px rgba(1,33,105,.25);
}

.logo-icon:before,
.logo-icon:after {
    content: "";

    position: absolute;

    background: #fff;
}

.logo-icon:before {
    width: 100%;
    height: 8px;

    top: 15px;
    left: 0;
}

.logo-icon:after {
    width: 8px;
    height: 100%;

    left: 15px;
    top: 0;
}

.uk-cross {
    position: absolute;

    background: var(--uk-red);

    z-index: 4;
}

.uk-cross.vertical {
    width: 4px;
    height: 100%;

    left: 17px;
    top: 0;
}

.uk-cross.horizontal {
    width: 100%;
    height: 4px;

    left: 0;
    top: 17px;
}

.uk-diagonal {
    position: absolute;

    width: 70px;
    height: 4px;

    background: #fff;

    top: 17px;
    left: -16px;

    transform: rotate(34deg);

    z-index: 2;
}

.uk-diagonal.two {
    transform: rotate(-34deg);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;

    align-items: center;

    gap: 28px;
}

.navigation a {
    color: #b9c5d1;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.navigation a:hover,
.navigation a.active {
    color: #fff;
}

.nav-button {
    padding: 12px 19px;

    border-radius: 8px;

    background: var(--uk-red);

    color: #fff !important;

    box-shadow:
        0 8px 25px rgba(200,16,46,.2);
}

.nav-button:hover {
    background: var(--uk-red-light);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;

    display: block;

    background: #fff;

    margin: 5px 0;

    transition: .25s;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 860px;

    padding: 170px 0 100px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #030a13 0%,
            #071525 55%,
            #07111e 100%
        );
}

.hero-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 120px;

    background:
        radial-gradient(
            circle,
            rgba(200,16,46,.2),
            transparent 65%
        );

    filter: blur(15px);
}


/* =========================================================
   UK FLAG BACKGROUND
========================================================= */

.hero-flag {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -180px;
    top: 80px;

    opacity: .12;

    transform: rotate(-8deg);
}

.hero-flag:before,
.hero-flag:after {
    content: "";

    position: absolute;

    background: #fff;
}

.hero-flag:before {
    width: 100%;
    height: 90px;

    top: 280px;
}

.hero-flag:after {
    width: 90px;
    height: 100%;

    left: 280px;
}

.flag-vertical {
    position: absolute;

    width: 42px;
    height: 100%;

    background: var(--uk-red);

    left: 304px;

    z-index: 2;
}

.flag-horizontal {
    position: absolute;

    width: 100%;
    height: 42px;

    background: var(--uk-red);

    top: 304px;

    z-index: 2;
}

.flag-diagonal {
    position: absolute;

    width: 760px;
    height: 35px;

    background: #fff;

    top: 305px;
    left: -55px;

    transform: rotate(39deg);
}

.flag-b {
    transform: rotate(-39deg);
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;

    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border:
        1px solid rgba(200,16,46,.35);

    background:
        rgba(200,16,46,.07);

    border-radius: 50px;

    color: #ff5a71;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;

    background: #ff3151;

    border-radius: 50%;

    box-shadow:
        0 0 14px #ff3151;

    animation:
        pulse 1.7s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.hero h1 {
    font-size:
        clamp(45px,5.2vw,73px);

    line-height: 1.02;

    letter-spacing: -3.5px;

    font-weight: 900;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--uk-red);
}

.hero-description {
    color: #a9b8c7;

    font-size: 16px;

    max-width: 620px;

    margin-bottom: 34px;
}

.hero-description strong {
    color: #fff;

    font-weight: 700;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button {
    min-height: 51px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 23px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.button-primary {
    background: var(--uk-red);

    color: #fff;

    box-shadow:
        0 12px 35px rgba(200,16,46,.25);
}

.button-primary:hover {
    background: var(--uk-red-light);

    transform: translateY(-3px);

    box-shadow:
        0 17px 40px rgba(200,16,46,.35);
}

.button-outline {
    border:
        1px solid rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.035);

    color: #fff;
}

.button-outline:hover {
    background:
        rgba(255,255,255,.08);

    transform: translateY(-3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 38px;
}

.trust-item {
    display: flex;

    flex-direction: column;
}

.trust-item strong {
    font-size: 17px;

    font-weight: 800;
}

.trust-item small {
    color: #718091;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .8px;
}

.trust-line {
    width: 1px;
    height: 28px;

    background:
        rgba(255,255,255,.12);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-media {
    position: relative;
}

.image-placeholder {
    height: 530px;

    border-radius: 25px;

    border:
        1px solid rgba(255,255,255,.14);

    background:
        linear-gradient(
            145deg,
            #10263d,
            #071321
        );

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;
}

.image-placeholder:before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.15);

    filter: blur(40px);
}

.placeholder-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #738497;
}

.placeholder-icon {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    margin: 0 auto 15px;

    font-size: 25px;

    color: #aab8c6;
}

.placeholder-content strong {
    display: block;

    font-size: 12px;

    letter-spacing: 2px;

    color: #9aabbc;
}

.placeholder-content small {
    display: block;

    font-size: 10px;

    margin-top: 5px;
}


/* =========================================================
   HERO FLOATING CARDS
========================================================= */

.hero-floating {
    position: absolute;

    padding: 14px 17px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(5,15,27,.93);

    backdrop-filter:
        blur(15px);

    border-radius: 12px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.35);

    display: flex;

    flex-direction: column;

    min-width: 165px;

    animation:
        float 4s ease-in-out infinite;
}

.hero-floating span:last-child {
    color: #778899;

    font-size: 10px;

    margin-top: 2px;
}

.floating-number {
    font-size: 21px;

    font-weight: 900;
}

.floating-one {
    left: -28px;
    bottom: 50px;
}

.floating-two {
    right: -25px;
    top: 45px;

    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   STATISTICS
========================================================= */

.statistics {
    background: #040c16;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.statistics-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}

.stat {
    padding: 32px 20px;

    text-align: center;

    border-right:
        1px solid var(--border);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;

    font-size: 25px;

    font-weight: 900;

    margin-bottom: 3px;
}

.stat span {
    color: #728293;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.introduction {
    background: var(--navy);
}

.intro-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.intro-media {
    min-height: 500px;

    position: relative;
}

.empty-image {
    height: 500px;

    border-radius: 22px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            #102a43,
            #091625
        );

    display: grid;

    place-items: center;

    color: #566b7e;

    font-size: 12px;

    letter-spacing: 2px;
}

.intro-badge {
    position: absolute;

    right: -25px;
    bottom: 30px;

    padding: 17px 22px;

    border-radius: 13px;

    background: var(--uk-red);

    box-shadow:
        0 20px 40px rgba(200,16,46,.25);
}

.intro-badge strong {
    display: block;

    font-size: 21px;
}

.intro-badge span {
    font-size: 10px;

    color:
        rgba(255,255,255,.75);
}

.intro-content h2,
.why-content h2,
.quality-text h2 {
    font-size:
        clamp(35px,4vw,50px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.intro-content p,
.why-content > p,
.quality-text > p {
    color: var(--muted);

    font-size: 15px;

    margin-bottom: 17px;
}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {
    display: grid;

    gap: 12px;

    margin-top: 28px;
}

.check-list div {
    display: flex;

    align-items: center;

    gap: 11px;
}

.check-list span {
    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(200,16,46,.12);

    border:
        1px solid rgba(200,16,46,.35);

    color: #ff526c;

    font-size: 11px;
}

.check-list p {
    margin: 0;

    color: #b1bdc8;

    font-size: 13px;
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.feature-card {
    padding: 31px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--card);

    transition: var(--transition);

    position: relative;

    overflow: hidden;
}

.feature-card:before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.08);

    top: -70px;
    right: -60px;

    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(200,16,46,.35);

    background:
        rgba(200,16,46,.045);
}

.feature-card:hover:before {
    transform: scale(1.5);
}

.feature-number {
    color: #ff526c;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 18px;

    margin-bottom: 9px;
}

.feature-card p {
    color: #8d9cac;

    font-size: 13px;

    margin-bottom: 20px;
}

.feature-card a {
    color: #e5ebf1;

    font-size: 11px;

    font-weight: 700;
}

.feature-card a:hover {
    color: #ff526c;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    background: #071321;
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.category {
    min-height: 205px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #122b43,
            #081525
        );

    transition: var(--transition);
}

.category:nth-child(2),
.category:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #351523,
            #081525
        );
}

.category:nth-child(3),
.category:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            #102f3c,
            #081525
        );
}

.category:hover {
    transform: translateY(-5px);

    border-color:
        rgba(200,16,46,.3);
}

.category-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(200,16,46,.28),
            transparent 45%
        );
}

.category-content {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 23px;

    z-index: 2;
}

.category-content small {
    color: #ff526c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.category-content h3 {
    font-size: 20px;

    margin: 5px 0 4px;
}

.category-content p {
    color: #92a1b0;

    font-size: 12px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: #040c16;

    overflow: hidden;
}

.pricing-bg {
    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: -350px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(200,16,46,.13),
            transparent 65%
        );
}

.pricing-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.price-card {
    position: relative;

    padding: 30px 23px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.035);

    display: flex;

    flex-direction: column;

    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(200,16,46,.35);
}

.price-card.popular {
    border-color:
        rgba(200,16,46,.7);

    background:
        linear-gradient(
            180deg,
            rgba(200,16,46,.13),
            rgba(255,255,255,.035)
        );

    transform: translateY(-10px);
}

.price-card.popular:hover {
    transform: translateY(-17px);
}

.price-card.best-value {
    border-color:
        rgba(255,255,255,.17);
}

.popular-badge,
.best-value-badge {
    position: absolute;

    top: -12px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 13px;

    border-radius: 50px;

    background: var(--uk-red);

    color: #fff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    white-space: nowrap;
}

.best-value-badge {
    background: var(--uk-blue);
}

.plan-label {
    color: #ff526c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.price-top h3 {
    font-size: 20px;

    margin: 7px 0 3px;
}

.price-top p {
    color: #758595;

    font-size: 11px;
}

.price {
    font-size: 43px;

    font-weight: 900;

    letter-spacing: -2px;

    margin-top: 22px;
}

.price span {
    font-size: 21px;

    vertical-align: top;

    margin-right: 2px;
}

.price-period {
    color: #68798a;

    font-size: 10px;

    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;

    display: grid;

    gap: 11px;

    flex: 1;

    margin-bottom: 25px;
}

.price-card li {
    color: #a7b4c0;

    font-size: 11px;

    padding-left: 19px;

    position: relative;
}

.price-card li:before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #ff526c;

    font-weight: 900;
}

.price-button {
    width: 100%;

    text-align: center;

    padding: 13px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    background:
        rgba(255,255,255,.06);

    font-size: 11px;

    font-weight: 800;

    transition: var(--transition);
}

.price-button:hover,
.price-card.popular .price-button {
    background: var(--uk-red);

    border-color: var(--uk-red);
}

.pricing-note {
    text-align: center;

    color: #667687;

    font-size: 10px;

    margin-top: 25px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: var(--navy);
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-points {
    display: grid;

    gap: 23px;

    margin-top: 32px;
}

.why-point {
    display: flex;

    gap: 17px;
}

.why-point > strong {
    color: var(--uk-red);

    font-size: 12px;

    font-weight: 900;
}

.why-point h3 {
    font-size: 16px;

    margin-bottom: 4px;
}

.why-point p {
    color: #8291a0;

    font-size: 12px;
}

.why-media {
    position: relative;
}

.large-image-placeholder {
    height: 520px;

    border-radius: 23px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            #142c43,
            #081422
        );

    display: grid;

    place-items: center;

    text-align: center;

    color: #596d81;
}

.large-image-placeholder span {
    display: block;

    font-size: 12px;

    letter-spacing: 2px;
}

.large-image-placeholder small {
    display: block;

    margin-top: 7px;

    font-size: 10px;
}

.why-card {
    position: absolute;

    bottom: 25px;
    left: -25px;

    background: var(--uk-red);

    border-radius: 12px;

    padding: 18px 23px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.3);
}

.why-card strong {
    display: block;

    font-size: 24px;
}

.why-card span {
    font-size: 10px;

    color:
        rgba(255,255,255,.75);
}


/* =========================================================
   DEVICES
========================================================= */

.devices-section {
    background: #071321;
}

.devices-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.device-card {
    padding: 28px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,.035);

    border-radius: 15px;

    transition: var(--transition);
}

.device-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(200,16,46,.3);
}

.device-icon {
    width: 45px;
    height: 45px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background:
        rgba(200,16,46,.1);

    border:
        1px solid rgba(200,16,46,.25);

    color: #ff526c;

    font-size: 10px;

    font-weight: 900;

    margin-bottom: 19px;
}

.device-card h3 {
    font-size: 16px;

    margin-bottom: 5px;
}

.device-card p {
    color: #81909f;

    font-size: 12px;
}

.center-button {
    display: flex;

    justify-content: center;

    margin-top: 40px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: #040c16;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.process-card {
    padding: 29px 24px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        rgba(255,255,255,.03);
}

.process-card > span {
    color: var(--uk-red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.process-card h3 {
    font-size: 17px;

    margin: 17px 0 8px;
}

.process-card p {
    color: #7f8e9e;

    font-size: 12px;
}


/* =========================================================
   QUALITY
========================================================= */

.quality-section {
    background: var(--uk-blue);

    overflow: hidden;
}

.quality-section:before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -220px;

    border:
        70px solid rgba(255,255,255,.04);

    border-radius: 50%;
}

.quality-inner {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.quality-text h2 {
    color: #fff;
}

.quality-text h2 span {
    color: #ff5068;
}

.quality-text > p {
    color:
        rgba(255,255,255,.65);
}

.quality-text .section-tag {
    color: #ff8294;
}

.text-link {
    display: inline-block;

    margin-top: 12px;

    color: #fff;

    font-size: 12px;

    font-weight: 700;
}

.quality-options {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;
}

.quality-option {
    padding: 35px 15px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.06);

    border-radius: 13px;

    text-align: center;

    transition: .25s;
}

.quality-option:hover,
.quality-option.active {
    background:
        rgba(200,16,46,.9);

    border-color:
        rgba(255,255,255,.15);

    transform: translateY(-5px);
}

.quality-option strong {
    display: block;

    font-size: 29px;

    font-weight: 900;
}

.quality-option span {
    display: block;

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    margin-top: 5px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    background: #071321;
}

.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.review-card {
    padding: 29px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,.035);

    border-radius: 17px;
}

.review-stars {
    color: #ff526c;

    letter-spacing: 2px;

    font-size: 11px;

    margin-bottom: 18px;
}

.review-card > p {
    color: #a5b1bd;

    font-size: 13px;

    margin-bottom: 24px;
}

.review-user {
    display: flex;

    flex-direction: column;
}

.review-user strong {
    font-size: 12px;
}

.review-user span {
    color: #68798a;

    font-size: 10px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--navy);
}

.faq-wrapper {
    max-width: 900px;

    margin: auto;
}

.faq-item {
    border-bottom:
        1px solid var(--border);
}

.faq-question {
    width: 100%;

    padding: 24px 4px;

    border: 0;

    background: transparent;

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;
}

.faq-question b {
    color: #ff526c;

    font-size: 21px;

    font-weight: 400;

    transition: .25s;
}

.faq-item.open .faq-question b {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;
}

.faq-answer p {
    color: #8493a2;

    font-size: 13px;

    padding: 0 4px 22px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 105px 0;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #c8102e,
            #a70e29
        );
}

.final-flag {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -250px;

    opacity: .1;

    border:
        70px solid white;

    border-radius: 50%;
}

.final-flag span:first-child,
.final-flag span:last-child {
    position: absolute;

    width: 80%;
    height: 60px;

    background: #fff;

    top: 200px;
    left: 30px;
}

.final-flag span:first-child {
    transform: rotate(35deg);
}

.final-flag span:last-child {
    transform: rotate(-35deg);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;

    text-align: center;
}

.cta-content .section-tag {
    color:
        rgba(255,255,255,.7);
}

.cta-content h2 {
    font-size:
        clamp(36px,4vw,54px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 17px;
}

.cta-content h2 span {
    color: #fff;
}

.cta-content p {
    color:
        rgba(255,255,255,.78);

    font-size: 14px;

    max-width: 650px;

    margin:
        0 auto 28px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 11px;

    flex-wrap: wrap;
}

.white-button {
    background: #fff;

    color: var(--uk-red);
}

.white-button:hover {
    transform: translateY(-3px);

    background: #f4f6f8;
}

.transparent-button {
    border:
        1px solid rgba(255,255,255,.35);

    color: #fff;
}

.transparent-button:hover {
    background:
        rgba(255,255,255,.1);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #030913;

    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom:
        1px solid var(--border);
}

.footer-brand p {
    color: #667687;

    font-size: 12px;

    max-width: 320px;

    margin-top: 17px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #687888;

    font-size: 12px;

    transition: .2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #4f6070;

    font-size: 10px;
}


/* =========================================================
   WORDPRESS PAGE CONTENT
========================================================= */

.page-content {
    max-width: 900px;

    margin: 0 auto;

    color: #9aaaba;

    font-size: 15px;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: #fff;

    line-height: 1.25;

    margin:
        35px 0 15px;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
    margin:
        0 0 20px 25px;
}

.page-content a {
    color: #e31b3d;
}

.page-content img {
    max-width: 100%;

    height: auto;
}


/* =========================================================
   WORDPRESS FIXES
========================================================= */

.wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.wp-block-post-content {
    margin: 0;
}

.entry-content {
    margin: 0;
}

.site-main {
    margin: 0;
    padding: 0;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .navigation {
        gap: 17px;
    }

    .navigation a {
        font-size: 11px;
    }

    .hero-grid {
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .price-card.popular {
        transform: none;
    }

    .price-card.popular:hover {
        transform: translateY(-7px);
    }

    .features-grid,
    .category-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }

    .mobile-menu {
        display: block;
    }

    .navigation {
        display: none;

        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background:
            rgba(4,11,22,.98);

        backdrop-filter:
            blur(20px);

        padding: 18px 5%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-bottom:
            1px solid var(--border);
    }

    .navigation.mobile-open {
        display: flex;
    }

    .navigation a {
        padding: 12px 4px;

        font-size: 13px;
    }

    .nav-button {
        text-align: center;

        margin-top: 7px;
    }

    .hero {
        min-height: auto;

        padding:
            135px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-media {
        margin-top: 15px;
    }

    .image-placeholder {
        height: 400px;
    }

    .floating-one {
        left: 10px;
        bottom: 20px;
    }

    .floating-two {
        right: 10px;
        top: 20px;
    }

    .hero-flag {
        right: -350px;
        top: 120px;
    }

    .statistics-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }

    .intro-grid,
    .why-grid,
    .quality-inner {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .why-grid {
        gap: 45px;
    }

    .intro-media {
        min-height: 390px;
    }

    .empty-image {
        height: 390px;
    }

    .intro-badge {
        right: 15px;
    }

    .features-grid,
    .category-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }

    .devices-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .container {
        width: 90%;
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-line {
        height: 23px;
    }

    .trust-item strong {
        font-size: 15px;
    }

    .trust-item small {
        font-size: 8px;
    }

    .image-placeholder {
        height: 330px;
    }

    .hero-floating {
        min-width: 145px;

        padding:
            12px 14px;
    }

    .floating-number {
        font-size: 17px;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .quality-options {
        grid-template-columns: 1fr;
    }

    .quality-option {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }
}

/* Hide WordPress page title on homepage */
.home .entry-title,
.home .wp-block-post-title,
.home .page-title {
    display: none !important;
}