:root {
    --bg: #180b0f;
    --bg-2: #231114;
    --panel: #070509;
    --panel-soft: rgba(255, 255, 255, 0.065);
    --text: #ffffff;
    --muted: #cfc5c8;
    --red: #e50914;
    --mint: #75b9a3;
    --gold: #f2df8d;
    --blue: #2299d6;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(117, 185, 163, 0.13), transparent 34rem),
        radial-gradient(circle at 70% 82%, rgba(242, 223, 141, 0.11), transparent 30rem),
        linear-gradient(180deg, var(--bg), #12080b 56%, #1b0d11);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section-pad {
    padding: clamp(72px, 8vw, 132px) 0;
}

.section-pad.section-customized[style*="--section-bg"],
.footer.section-customized[style*="--section-bg"] {
    background: var(--section-bg);
}

.section-pad.section-customized[style*="--section-text"],
.footer.section-customized[style*="--section-text"] {
    color: var(--section-text);
}

.section-pad.section-customized[style*="--section-text-size"],
.footer.section-customized[style*="--section-text-size"] {
    font-size: var(--section-text-size);
}

.section-pad.section-customized {
    padding-block: var(--section-padding-y, clamp(72px, 8vw, 132px));
}

.section-customized > .wrap {
    max-width: var(--section-max-width, 1180px);
}

.section-customized[style*="--section-eyebrow-color"] .eyebrow {
    color: var(--section-eyebrow-color);
}

.section-customized[style*="--section-eyebrow-size"] .eyebrow {
    font-size: var(--section-eyebrow-size);
}

.section-customized[style*="--section-title-color"] h1,
.section-customized[style*="--section-title-color"] h2 {
    color: var(--section-title-color);
}

.section-customized[style*="--section-title-size"] h1,
.section-customized[style*="--section-title-size"] h2 {
    font-size: var(--section-title-size);
}

.section-customized[style*="--section-body-color"] .hero-subtitle,
.section-customized[style*="--section-body-color"] .section-copy > p:not(.eyebrow),
.section-customized[style*="--section-body-color"] .poster-subtitle,
.section-customized[style*="--section-body-color"] .section-heading > p:not(.eyebrow) {
    color: var(--section-body-color);
}

.section-customized[style*="--section-body-size"] .hero-subtitle,
.section-customized[style*="--section-body-size"] .section-copy > p:not(.eyebrow),
.section-customized[style*="--section-body-size"] .poster-subtitle,
.section-customized[style*="--section-body-size"] .section-heading > p:not(.eyebrow) {
    font-size: var(--section-body-size);
}

.section-customized[style*="--section-button-bg"] .btn {
    background: var(--section-button-bg);
}

.section-customized[style*="--section-button-color"] .btn {
    color: var(--section-button-color);
}

.section-customized[style*="--section-button-size"] .btn {
    font-size: var(--section-button-size);
}

.section-customized[style*="--section-card-title-color"] .step-card h3,
.section-customized[style*="--section-card-title-color"] .feature-tile h2,
.section-customized[style*="--section-card-title-color"] .price-card h3,
.section-customized[style*="--section-card-title-color"] .service-item h3,
.section-customized[style*="--section-card-title-color"] .testimonial-card h3,
.section-customized[style*="--section-card-title-color"] .blog-card h3,
.section-customized[style*="--section-card-title-color"] .faq-list summary {
    color: var(--section-card-title-color);
}

.section-customized[style*="--section-card-title-size"] .step-card h3,
.section-customized[style*="--section-card-title-size"] .feature-tile h2,
.section-customized[style*="--section-card-title-size"] .price-card h3,
.section-customized[style*="--section-card-title-size"] .service-item h3,
.section-customized[style*="--section-card-title-size"] .testimonial-card h3,
.section-customized[style*="--section-card-title-size"] .blog-card h3,
.section-customized[style*="--section-card-title-size"] .faq-list summary {
    font-size: var(--section-card-title-size);
}

.section-customized[style*="--section-card-body-color"] .step-card p,
.section-customized[style*="--section-card-body-color"] .price-card li,
.section-customized[style*="--section-card-body-color"] .save,
.section-customized[style*="--section-card-body-color"] .service-item p,
.section-customized[style*="--section-card-body-color"] .testimonial-card p,
.section-customized[style*="--section-card-body-color"] .blog-card p,
.section-customized[style*="--section-card-body-color"] .faq-list p {
    color: var(--section-card-body-color);
}

.section-customized[style*="--section-card-body-size"] .step-card p,
.section-customized[style*="--section-card-body-size"] .price-card li,
.section-customized[style*="--section-card-body-size"] .save,
.section-customized[style*="--section-card-body-size"] .service-item p,
.section-customized[style*="--section-card-body-size"] .testimonial-card p,
.section-customized[style*="--section-card-body-size"] .blog-card p,
.section-customized[style*="--section-card-body-size"] .faq-list p {
    font-size: var(--section-card-body-size);
}

.section-customized[style*="--section-card-bg"] .step-card,
.section-customized[style*="--section-card-bg"] .price-card,
.section-customized[style*="--section-card-bg"] .feature-tile,
.section-customized[style*="--section-card-bg"] .testimonial-card,
.section-customized[style*="--section-card-bg"] .blog-card,
.section-customized[style*="--section-card-bg"] .service-item,
.section-customized[style*="--section-card-bg"] .faq-list details {
    background: var(--section-card-bg);
}

.section-customized[style*="--section-card-border"] .step-card,
.section-customized[style*="--section-card-border"] .price-card,
.section-customized[style*="--section-card-border"] .feature-tile,
.section-customized[style*="--section-card-border"] .testimonial-card,
.section-customized[style*="--section-card-border"] .blog-card,
.section-customized[style*="--section-card-border"] .service-item,
.section-customized[style*="--section-card-border"] .faq-list details {
    border-color: var(--section-card-border);
}

.site-header {
    position: fixed;
    inset: 16px 20px auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin-inline: auto;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(10, 6, 8, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled {
    background: rgba(10, 6, 8, 0.9);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    font-weight: 950;
    overflow: hidden;
}

.brand-mark--image {
    padding: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
    color: var(--gold);
}

.site-nav a {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--mint));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.site-nav a.active {
    color: var(--gold);
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--red);
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-action:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.38);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    padding-top: 124px;
}

.hero-marquee,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, var(--hero-overlay-opacity, 0.18)), rgba(24, 11, 15, calc(var(--hero-overlay-opacity, 0.18) + 0.12)) 62%, rgba(24, 11, 15, calc(var(--hero-overlay-opacity, 0.18) + 0.28))),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, calc(var(--hero-overlay-opacity, 0.18) + 0.1)));
    backdrop-filter: saturate(1.08);
}

.hero-marquee {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    opacity: var(--hero-image-opacity, 0.96);
}

.marquee-row {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: marquee-right var(--marquee-speed, 48s) linear infinite;
}

.marquee-row.is-reverse .marquee-track {
    animation-name: marquee-left;
}

.marquee-track img {
    width: clamp(260px, 30vw, 540px);
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.08);
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero-content {
    max-width: 1030px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--red);
    font-size: clamp(0.76rem, 1.2vw, 0.92rem);
    font-weight: 950;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 6.9rem);
    line-height: 0.98;
    font-weight: 950;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.12;
    font-weight: 950;
}

h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1.2;
    font-weight: 950;
}

.hero-subtitle {
    max-width: 860px;
    margin: 30px auto 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(229, 9, 20, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(229, 9, 20, 0.34);
    filter: saturate(1.08);
}

.btn-small {
    min-height: 46px;
    padding-inline: 22px;
    font-size: 0.92rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 30px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.92rem, 1.5vw, 1.12rem);
    font-weight: 850;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-metrics strong,
.check-list span {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    flex: 0 0 28px;
    border: 2px solid var(--mint);
    border-radius: 50%;
    color: var(--mint);
    font-size: 0.9rem;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(34px, 7vw, 86px);
}

.split-grid--reverse {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
}

.section-copy > p:not(.eyebrow) {
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.7vw, 1.25rem);
    font-weight: 650;
}

.check-list {
    display: grid;
    gap: 18px;
    margin: 34px 0;
    padding: 0;
    list-style: none;
}

.check-list.compact {
    gap: 14px;
    margin-block: 24px 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.55vw, 1.2rem);
    font-weight: 850;
}

.media-stack {
    position: relative;
    min-height: 620px;
}

.main-media {
    width: min(560px, 100%);
    height: 560px;
    margin-left: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.media-stack:hover .main-media,
.content-image:hover img,
.services-media:hover .services-main,
.services-media:hover .services-float,
.faq-visual:hover .faq-image-main,
.faq-visual:hover .faq-image-small {
    filter: saturate(1.12) contrast(1.05);
    box-shadow: 0 30px 95px rgba(0, 0, 0, 0.44);
}

.stat-card {
    position: absolute;
    display: grid;
    gap: 8px;
    min-width: 190px;
    padding: 28px 26px;
    border-radius: 8px;
    background: var(--gold);
    color: #080609;
    text-align: center;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-stack:hover .stat-card {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.media-stack:hover .stat-card:nth-of-type(1) {
    transform: translate(-8px, -8px);
}

.media-stack:hover .stat-card:nth-of-type(2) {
    transform: translate(8px, 8px);
}

.stat-card:nth-of-type(1) {
    top: 90px;
    left: 0;
    background: #a9d7c8;
}

.stat-card:nth-of-type(2) {
    right: 10px;
    bottom: 48px;
}

.stat-card span {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.stat-card strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.section-heading {
    margin-bottom: clamp(34px, 6vw, 70px);
}

.centered {
    text-align: center;
}

.steps-grid,
.pricing-grid,
.blog-grid,
.tile-grid {
    display: grid;
    gap: clamp(20px, 3vw, 34px);
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    position: relative;
    min-height: 320px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(0, 0, 0, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
    transform-style: preserve-3d;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
    will-change: transform;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 18%), var(--hover-glow-color, rgba(229, 9, 20, 0.28)), transparent 34%),
        linear-gradient(135deg, rgba(242, 223, 141, 0.08), transparent 38%, rgba(117, 185, 163, 0.08));
    opacity: 0;
    transition: opacity 220ms ease;
}

.step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 0 24%, var(--hover-border-color, rgba(242, 223, 141, 0.72)), transparent 46% 100%);
    opacity: 0;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 220ms ease;
    animation: border-spin 3.4s linear infinite;
    pointer-events: none;
}

@keyframes border-spin {
    to { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover::after {
    opacity: 1;
}

.step-card:hover {
    border-color: rgba(242, 223, 141, 0.38);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 44px var(--hover-glow-color, rgba(229, 9, 20, 0.22));
    transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
}

.step-card h3,
.step-card p {
    position: relative;
    transform: translateZ(28px);
}

.step-card p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 650;
}

.step-number {
    position: absolute;
    top: 28px;
    right: 34px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 6rem;
    line-height: 1;
    font-weight: 950;
}

[dir="rtl"] .step-number {
    right: auto;
    left: 34px;
}

.center-link {
    margin-top: 40px;
    text-align: center;
}

.center-link a {
    color: var(--mint);
    font-weight: 950;
    font-size: 1.05rem;
}

.content-image img {
    width: 100%;
    aspect-ratio: 1.25;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.content-image:hover img {
    transform: translateY(-8px) scale(1.015);
}

.highlight-box {
    margin-block: 28px;
    padding: clamp(22px, 4vw, 34px);
    background: var(--mint);
    color: #fff;
    font-size: clamp(1.12rem, 2vw, 1.55rem);
    font-weight: 850;
}

.poster-section {
    text-align: center;
}

.poster-row {
    position: relative;
    width: min(100vw, 100%);
    margin-inline: auto;
    padding: 10px 0 24px;
    overflow: hidden;
    overscroll-behavior-inline: contain;
    touch-action: pan-y;
    scrollbar-width: none;
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    transform: translateZ(0);
}

.poster-row::-webkit-scrollbar {
    display: none;
}

.poster-row.is-dragging {
    cursor: grabbing;
}

.poster-track {
    display: flex;
    width: max-content;
    gap: clamp(14px, 2vw, 28px);
    will-change: transform;
    animation: poster-marquee var(--slider-speed, 34s) linear infinite;
}

.poster-row:hover .poster-track,
.poster-row.is-dragging .poster-track {
    animation-play-state: paused;
}

.poster-track img {
    width: clamp(220px, 19vw, 330px);
    height: clamp(305px, 27vw, 460px);
    flex: 0 0 clamp(220px, 19vw, 330px);
    aspect-ratio: 0.72;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.08);
    filter: saturate(1.05) contrast(1.05);
    transform: translateY(0) scale(1);
    transition: transform 280ms ease, filter 280ms ease, box-shadow 280ms ease;
    user-select: none;
}

.poster-track img:hover {
    transform: translateY(-12px) scale(1.04);
    filter: saturate(1.18) contrast(1.08);
    box-shadow: 0 30px 92px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 223, 141, 0.34), 0 0 38px rgba(242, 223, 141, 0.14);
}

@keyframes poster-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-33.333%, 0, 0);
    }
}

.poster-subtitle {
    margin: 34px auto 24px;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 800;
}

.tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-tile {
    position: relative;
    min-height: 520px;
    display: grid;
    align-content: space-between;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background:
        radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 20%), rgba(229, 9, 20, 0.12), transparent 32%),
        #050410;
    overflow: hidden;
    transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
    transform-style: preserve-3d;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
    will-change: transform;
}

.feature-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 2px, transparent 3px);
    background-size: 58px 58px;
    opacity: 0.3;
}

.feature-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 0 18%, var(--hover-border-color, rgba(117, 185, 163, 0.68)), var(--hover-glow-color, rgba(229, 9, 20, 0.56)), transparent 44% 100%);
    opacity: 0;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 220ms ease;
    animation: border-spin 4s linear infinite;
    pointer-events: none;
}

.feature-tile:hover {
    border-color: rgba(242, 223, 141, 0.34);
    box-shadow: 0 30px 95px rgba(0, 0, 0, 0.42), 0 0 48px var(--hover-glow-color, rgba(229, 9, 20, 0.18));
    transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
}

.feature-tile:hover::after {
    opacity: 1;
}

.feature-tile > * {
    position: relative;
    transform: translateZ(30px);
}

.feature-tile h2 {
    max-width: 520px;
    font-size: clamp(2rem, 4.6vw, 4.4rem);
}

.feature-tile span {
    display: inline-flex;
    width: fit-content;
    min-height: 54px;
    align-items: center;
    margin-top: 28px;
    padding-inline: 34px;
    border-radius: 8px;
    background: var(--gold);
    color: #080609;
    font-weight: 950;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-tile:hover span {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(242, 223, 141, 0.24);
}

.feature-tile img {
    width: 70%;
    min-width: 260px;
    margin-left: auto;
    aspect-ratio: 1.45;
    object-fit: cover;
    clip-path: inset(0 0 0 0 round 8px);
    filter: saturate(1.05);
    transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
    transform: translateZ(40px);
}

.feature-tile:hover img {
    filter: saturate(1.18) contrast(1.06);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
    transform: translateZ(54px) translateY(-8px) scale(1.035);
}

.pricing {
    background: rgba(0, 0, 0, 0.12);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        #111017;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-card__top {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding-inline: 12px;
    background: var(--badge);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 950;
}

.price-card__media {
    padding: 26px 28px 8px;
}

.price-card__media img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.price-card__body {
    padding: 12px 28px 28px;
    text-align: center;
}

.price-card h3 {
    font-size: 1.05rem;
}

.price {
    margin: 8px 0 0;
    color: var(--red);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 950;
}

.save {
    margin: 4px 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.price-card ul {
    display: grid;
    gap: 1px;
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    text-align: left;
}

[dir="rtl"] .price-card ul {
    text-align: right;
}

.price-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 750;
}

.price-card li span {
    color: var(--mint);
}

.price-card.is-featured {
    outline: 2px solid rgba(242, 223, 141, 0.55);
}

.price-card,
.testimonial-card,
.blog-card,
.channel-card,
.media-item,
.service-item,
.faq-list details {
    position: relative;
    isolation: isolate;
    transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
    transform-style: preserve-3d;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
    will-change: transform;
}

.price-card::before,
.testimonial-card::before,
.blog-card::before,
.channel-card::before,
.media-item::before,
.service-item::before,
.faq-list details::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 18%), var(--hover-glow-color, rgba(229, 9, 20, 0.2)), transparent 35%),
        linear-gradient(135deg, rgba(242, 223, 141, 0.06), transparent 42%, rgba(117, 185, 163, 0.06));
    opacity: 0;
    transition: opacity 220ms ease;
}

.price-card::after,
.testimonial-card::after,
.blog-card::after,
.channel-card::after,
.media-item::after,
.service-item::after,
.faq-list details::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    z-index: 2;
    border-radius: inherit;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 0 22%, var(--hover-border-color, rgba(242, 223, 141, 0.66)), var(--hover-glow-color, rgba(229, 9, 20, 0.5)), transparent 48% 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 220ms ease;
    animation: border-spin 4.2s linear infinite;
}

.price-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.channel-card:hover,
.media-item:hover,
.service-item:hover,
.faq-list details:hover {
    border-color: rgba(242, 223, 141, 0.34);
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38), 0 0 38px var(--hover-glow-color, rgba(229, 9, 20, 0.16));
    transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-7px);
}

.price-card:hover::before,
.price-card:hover::after,
.testimonial-card:hover::before,
.testimonial-card:hover::after,
.blog-card:hover::before,
.blog-card:hover::after,
.channel-card:hover::before,
.channel-card:hover::after,
.media-item:hover::before,
.media-item:hover::after,
.service-item:hover::before,
.service-item:hover::after,
.faq-list details:hover::before,
.faq-list details:hover::after {
    opacity: 1;
}

.price-card > *,
.testimonial-card > *,
.blog-card > *,
.channel-card > *,
.media-item > *,
.service-item > *,
.faq-list details > * {
    position: relative;
    z-index: 1;
}

.price-card__media img,
.blog-card img,
.media-item img,
.channel-card li,
.faq-list summary {
    transition: transform 220ms ease, filter 220ms ease, background 220ms ease;
}

.price-card:hover .price-card__media img,
.blog-card:hover img,
.media-item:hover img {
    filter: saturate(1.16) contrast(1.06);
    transform: scale(1.035);
}

.price-card:hover .price,
.channel-card:hover header span,
.media-item:hover small {
    color: var(--gold);
}

.channel-card:hover li,
.faq-list details:hover summary {
    background: rgba(255, 255, 255, 0.1);
}

.custom-note {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-weight: 750;
}

.pricing-gap {
    margin-top: clamp(72px, 9vw, 130px);
}

.cta {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(10, 5, 7, 0.93), rgba(10, 5, 7, 0.45)),
        var(--cta-image) center / cover;
}

.cta-panel {
    position: relative;
    max-width: 620px;
    margin-inline-start: max(20px, calc((100vw - 1180px) / 2));
    transition: transform 240ms ease;
}

.cta:hover .cta-panel,
.order-teaser:hover .order-teaser-panel {
    transform: translateY(-6px);
}

.cta-panel h2 {
    font-size: clamp(2rem, 4.8vw, 4.1rem);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 750;
}

.cta-panel strong {
    display: block;
    color: var(--red);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
}

.cta-panel > span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 750;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: center;
}

.services-media {
    position: relative;
    min-height: 610px;
}

.services-main,
.services-float,
.faq-image-main,
.faq-image-small {
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.services-main {
    width: 78%;
    height: 580px;
}

.services-float {
    position: absolute;
    top: 70px;
    right: 0;
    width: 44%;
    aspect-ratio: 1.08;
}

.services-media:hover .services-main {
    transform: translateY(-8px) scale(1.01);
}

.services-media:hover .services-float {
    transform: translateY(10px) scale(1.04);
}

[dir="rtl"] .services-float {
    right: auto;
    left: 0;
}

.service-badge {
    position: absolute;
    left: 24%;
    bottom: 48px;
    display: grid;
    place-items: center;
    min-width: 150px;
    min-height: 150px;
    padding: 18px;
    border-radius: 8px;
    background: var(--red);
    text-align: center;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

[dir="rtl"] .service-badge {
    left: auto;
    right: 24%;
}

.service-badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.service-badge strong {
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 950;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 42px);
    margin-top: 42px;
}

.service-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.service-icon {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 2px solid var(--mint);
    border-radius: 8px;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 950;
}

.service-icon::before {
    content: "TV";
}

.service-icon--wifi::before {
    content: "Wi";
}

.service-icon--support::before {
    content: "24";
}

.service-icon--shield::before {
    content: "S";
}

.service-icon--install::before {
    content: "DL";
}

.service-icon--price::before {
    content: "$";
}

.service-item h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
}

.service-item p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.testimonials-section {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.025)),
        var(--bg);
}

.testimonials-section .section-heading > p:not(.eyebrow) {
    width: min(760px, 100%);
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 760;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 5vw, 80px);
    width: min(980px, 100%);
    margin: clamp(44px, 6vw, 86px) auto 56px;
}

.testimonial-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.rating {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--red);
    font-size: 1.05rem;
    font-weight: 950;
}

.testimonial-card h3 {
    font-size: 1.12rem;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 700;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 8px;
    background: var(--gold);
    color: #0d0809;
}

.stats-band div {
    display: grid;
    gap: 8px;
}

.stats-band strong {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1;
    font-weight: 950;
}

.stats-band span {
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.order-teaser {
    position: relative;
    display: grid;
    min-height: 460px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(11, 5, 8, 0.94), rgba(11, 5, 8, 0.62)),
        var(--order-image) center / cover;
}

.order-teaser-panel {
    position: relative;
    max-width: 680px;
    transition: transform 240ms ease;
}

.order-teaser-panel h2 {
    font-size: clamp(2rem, 4.8vw, 4.6rem);
}

.order-teaser-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 760;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
}

.faq-copy .section-heading {
    margin-bottom: 30px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.1rem;
    font-weight: 950;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    font-weight: 650;
}

.faq-visual {
    position: relative;
    min-height: 520px;
}

.faq-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 76%;
    height: 330px;
}

.faq-image-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76%;
    height: 330px;
}

.faq-visual:hover .faq-image-main {
    transform: translate(-10px, -8px) scale(1.018);
}

.faq-visual:hover .faq-image-small {
    transform: translate(10px, 8px) scale(1.018);
}

[dir="rtl"] .faq-image-main {
    right: auto;
    left: 0;
}

[dir="rtl"] .faq-image-small {
    left: auto;
    right: 0;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.blog-card div {
    padding: 22px;
}

.blog-card time {
    color: var(--mint);
    font-size: 0.82rem;
    font-weight: 900;
}

.blog-card h3 {
    margin-top: 8px;
    font-size: 1.3rem;
}

.blog-card p {
    color: var(--muted);
    font-weight: 650;
}

.order-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(229, 9, 20, 0.16), transparent 34rem),
        radial-gradient(circle at 80% 20%, rgba(117, 185, 163, 0.16), transparent 28rem),
        var(--bg);
}

.order-shell {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(24px, 5vw, 54px) 0;
}

.order-brand {
    margin-bottom: 24px;
}

.order-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(6, 4, 6, 0.82);
    box-shadow: var(--shadow);
}

.order-copy,
.order-form {
    padding: clamp(24px, 5vw, 58px);
}

.order-copy h1 {
    font-size: clamp(2.35rem, 5.8vw, 5rem);
}

.order-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 730;
}

.order-offer {
    display: grid;
    gap: 6px;
    margin: 30px 0;
    padding: 18px;
    border: 1px solid rgba(242, 223, 141, 0.34);
    border-radius: 8px;
    background: rgba(242, 223, 141, 0.1);
}

.order-offer span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.order-offer strong {
    font-size: 1.15rem;
}

.order-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.order-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
}

.order-points li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
}

.order-back {
    color: var(--gold);
    font-weight: 900;
}

.order-form {
    display: grid;
    gap: 16px;
    background: rgba(0, 0, 0, 0.22);
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 850;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(242, 223, 141, 0.8);
}

.phone-field {
    position: relative;
}

.phone-control {
    display: grid;
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.phone-country-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 14px;
    border: 0;
    border-inline-end: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.phone-country-button span {
    color: var(--gold);
    font-size: 0.9rem;
}

.phone-control input[name="phone"] {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.phone-control:focus-within {
    border-color: rgba(242, 223, 141, 0.8);
}

.phone-country-menu {
    position: absolute;
    z-index: 40;
    inset-inline: 0;
    top: calc(100% + 8px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #191116;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.phone-country-menu input {
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
}

.phone-country-list {
    max-height: 250px;
    overflow-y: auto;
    display: grid;
    gap: 4px;
}

.phone-country-list button {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 8px 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    text-align: start;
}

.phone-country-list button:hover,
.phone-country-list button.is-active {
    background: rgba(242, 223, 141, 0.14);
}

.phone-country-list span {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phone-country-list em {
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
}

.status-message {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.status-message.success {
    border: 1px solid rgba(117, 185, 163, 0.5);
    background: rgba(117, 185, 163, 0.15);
    color: #ddfff4;
}

.status-message.error {
    border: 1px solid rgba(229, 9, 20, 0.5);
    background: rgba(229, 9, 20, 0.14);
    color: #ffe3e5;
}

.page-hero {
    min-height: 480px;
    display: grid;
    place-items: center;
    padding: 128px 0 72px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(24, 11, 15, 0.86)),
        var(--page-image) center / cover;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3.4rem, 9vw, 7rem);
}

.page-hero p {
    width: min(900px, 100%);
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 750;
}

.channels-section,
.media-library,
.setup-content {
    position: relative;
    background:
        radial-gradient(circle at 12% 10%, rgba(117, 185, 163, 0.12), transparent 32rem),
        radial-gradient(circle at 86% 8%, rgba(229, 9, 20, 0.12), transparent 28rem),
        linear-gradient(180deg, #15090d, var(--bg-2) 48%, #10070a);
    color: var(--text);
}

.setup-hero h1 {
    font-size: clamp(2.6rem, 6.4vw, 4.8rem);
}

.channels-section .section-heading p:not(.eyebrow),
.media-library .section-heading p:not(.eyebrow) {
    width: min(860px, 100%);
    margin: 18px auto 0;
    color: var(--muted);
    font-weight: 700;
}

.channel-filter-panel {
    margin-top: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(5, 4, 8, 0.82);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.channel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(520px, 100%);
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-box input {
    width: 100%;
    min-height: 58px;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 850;
    outline: 0;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.region-tabs,
.media-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.28);
}

.region-tabs {
    align-items: center;
    border: 0;
    background: transparent;
}

.region-tabs > span {
    margin-inline-end: 4px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.media-filters {
    justify-content: center;
    margin: 34px 0;
    border-radius: 8px;
}

.region-tabs button,
.media-filters button,
.country-sidebar button {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.region-tabs button:hover,
.media-filters button:hover,
.country-sidebar button:hover {
    border-color: rgba(242, 223, 141, 0.42);
    background: rgba(242, 223, 141, 0.1);
    color: #fff;
}

.region-tabs button.active,
.media-filters button.active,
.country-sidebar button.active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.channel-browser {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    align-items: start;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(0, 0, 0, 0.34);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.country-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 8px;
    max-height: calc(100svh - 124px);
    padding: 18px;
    background: rgba(5, 4, 8, 0.82);
    border-inline-end: 1px solid var(--line);
    overflow-y: auto;
}

.country-sidebar h3 {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.country-sidebar button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    border-color: transparent;
}

[dir="rtl"] .country-sidebar button {
    text-align: right;
}

.country-sidebar button span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-sidebar button small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 24px;
    margin-inline-start: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 950;
}

.country-sidebar button.active {
    background: var(--red);
}

.country-sidebar button.active small {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.channel-results {
    min-width: 0;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
}

.channel-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(9, 7, 12, 0.92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.channel-card[hidden],
.media-item[hidden],
.setup-card[hidden] {
    display: none;
}

.channel-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
}

.channel-card header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.22rem;
}

.channel-card header span {
    color: var(--gold);
    font-weight: 950;
}

.channel-card h4 {
    margin: 0 0 14px;
    padding: 14px 18px;
    border-block: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(229, 9, 20, 0.18);
    color: #fff;
    font-size: 1.05rem;
}

.channel-card ul {
    display: grid;
    gap: 8px;
    padding: 0 18px 18px;
    margin: 0;
    list-style: none;
}

.channel-card li {
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 850;
}

.channel-empty {
    margin: 24px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px dashed rgba(242, 223, 141, 0.38);
    border-radius: 8px;
    background: rgba(242, 223, 141, 0.07);
    text-align: center;
}

.channel-empty h3 {
    font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.channel-empty p {
    margin: 10px auto 0;
    color: var(--muted);
    font-weight: 750;
}

.load-more-row {
    display: flex;
    justify-content: center;
    padding: 22px 0 0;
}

.load-more-row [hidden] {
    display: none;
}

.media-catalog {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.media-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(9, 7, 12, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.media-item img {
    width: 100%;
    aspect-ratio: 0.75;
    object-fit: cover;
}

.media-item div {
    padding: 18px;
}

.media-item span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.media-item h3 {
    margin-top: 8px;
    color: #fff;
    font-size: 1.2rem;
}

.media-item p {
    color: var(--muted);
    font-weight: 650;
}

.media-item small {
    color: var(--mint);
    font-weight: 900;
}

.setup-layout {
    display: grid;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.setup-links {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(5, 4, 8, 0.86);
    color: #fff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.setup-links h2 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.setup-links a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.setup-links a:hover,
.setup-links a.active {
    border-color: rgba(229, 9, 20, 0.52);
    background: rgba(229, 9, 20, 0.32);
    color: #fff;
}

.setup-links a.active {
    background: var(--red);
    box-shadow: 0 16px 34px rgba(229, 9, 20, 0.22);
}

.setup-blocks {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.setup-card {
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(8, 6, 11, 0.92);
    color: #fff;
    box-shadow: var(--shadow);
}

.setup-card header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.setup-card header span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(242, 223, 141, 0.36);
    border-radius: 8px;
    color: var(--gold);
    font-weight: 950;
}

.setup-card h2 {
    font-size: clamp(1.55rem, 3.1vw, 2.55rem);
}

.html-content {
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    font-weight: 650;
}

.html-content p {
    margin: 0 0 16px;
}

.html-content p:last-child {
    margin-bottom: 0;
}

.html-content ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.html-content li {
    position: relative;
    padding: 13px 16px 13px 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.84);
}

[dir="rtl"] .html-content li {
    padding-right: 42px;
    padding-left: 16px;
}

.html-content li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.16);
}

[dir="rtl"] .html-content li::before {
    right: 18px;
    left: auto;
}

.contact-modal[hidden],
.cookie-banner[hidden],
.chatbot-panel[hidden] {
    display: none;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    align-items: start;
    justify-items: center;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.contact-card {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100svh - 40px);
    display: grid;
    gap: 14px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #130a0d;
    box-shadow: var(--shadow);
    overflow-y: auto;
}

.contact-card h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-weight: 950;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(900px, calc(100% - 40px));
    margin-inline: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 7, 9, 0.96);
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 4px 0 0;
    color: var(--muted);
}

.chatbot-widget {
    position: fixed;
    right: 22px;
    bottom: 106px;
    z-index: 62;
}

[dir="rtl"] .chatbot-widget {
    right: auto;
    left: 22px;
}

.chatbot-toggle {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 92px;
    height: 64px;
    padding: 0 16px 0 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #ff272f 48%, var(--gold));
    color: #fff;
    cursor: pointer;
    font-weight: 950;
    box-shadow: 0 20px 48px rgba(229, 9, 20, 0.34), 0 12px 35px rgba(0, 0, 0, 0.38);
}

.chatbot-toggle::after {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -2;
    border-radius: inherit;
    border: 1px solid rgba(242, 223, 141, 0.4);
    opacity: 0.8;
    animation: chatbotRing 2.4s ease-out infinite;
}

.chatbot-pulse {
    position: absolute;
    inset: -15px;
    z-index: -3;
    border-radius: inherit;
    background: rgba(229, 9, 20, 0.22);
    animation: chatbotPulse 2.4s ease-out infinite;
}

.chatbot-robot,
.chatbot-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.chatbot-robot svg,
.chatbot-avatar svg {
    width: 25px;
    height: 25px;
}

.chatbot-label {
    line-height: 1;
    white-space: nowrap;
}

@keyframes chatbotPulse {
    0% {
        transform: scale(0.82);
        opacity: 0.7;
    }
    72%,
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes chatbotRing {
    0% {
        transform: scale(0.9);
        opacity: 0.95;
    }
    80%,
    100% {
        transform: scale(1.14);
        opacity: 0;
    }
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(420px, calc(100vw - 32px));
    max-height: min(650px, calc(100svh - 130px));
    display: grid;
    grid-template-rows: auto minmax(180px, 1fr) auto auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%),
        #10080b;
    box-shadow: var(--shadow);
}

[dir="rtl"] .chatbot-panel {
    right: auto;
    left: 0;
}

.chatbot-panel header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.075);
}

.chatbot-panel header div {
    min-width: 0;
}

.chatbot-panel header strong {
    display: block;
    line-height: 1.2;
}

.chatbot-panel header small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.25;
}

.chatbot-avatar {
    color: var(--gold);
    background: rgba(242, 223, 141, 0.12);
}

.chatbot-close {
    margin-inline-start: auto;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 950;
}

.chatbot-messages {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
}

.chatbot-message {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--muted);
    font-weight: 650;
    white-space: pre-wrap;
    word-break: break-word;
}

.chatbot-message.user {
    justify-self: end;
    background: var(--red);
    color: #fff;
}

.chatbot-message.typing {
    color: var(--gold);
}

.chatbot-quick {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 14px 12px;
}

.chatbot-quick button {
    flex: 0 0 auto;
    border: 1px solid rgba(242, 223, 141, 0.35);
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(242, 223, 141, 0.08);
    color: var(--gold);
    font-weight: 850;
    cursor: pointer;
}

.chatbot-panel form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--line);
}

.chatbot-input-wrap {
    min-width: 0;
}

.chatbot-panel input[type="text"],
.chatbot-panel input[name="question"] {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.chatbot-input-wrap small {
    display: block;
    max-width: 100%;
    margin-top: 5px;
    color: var(--gold);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chatbot-attach {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(117, 185, 163, 0.52);
    border-radius: 8px;
    background: rgba(117, 185, 163, 0.12);
    color: var(--mint);
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.chatbot-attach input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.chatbot-panel button[type="submit"] {
    border: 0;
    border-radius: 8px;
    min-height: 44px;
    padding: 0 15px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.chatbot-panel button:disabled,
.chatbot-panel input:disabled {
    cursor: wait;
    opacity: 0.7;
}

.footer {
    padding: 42px 0;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.32);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

.footer p {
    color: var(--muted);
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 850;
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.92rem;
}

.language-switcher {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 30;
}

[dir="rtl"] .language-switcher {
    left: auto;
    right: 20px;
}

.language-switcher summary {
    display: flex;
    align-items: center;
    min-width: 92px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 8px;
    background: #fff;
    color: #161616;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 950;
    list-style: none;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher div {
    position: absolute;
    bottom: calc(100% + 10px);
    min-width: 170px;
    display: grid;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    color: #171717;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.language-switcher form {
    margin: 0;
}

.language-switcher button,
.language-switcher a {
    width: 100%;
    border: 0;
    padding: 10px 12px;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: start;
}

.language-switcher button:hover,
.language-switcher a:hover {
    background: rgba(229, 9, 20, 0.09);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 31;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: #21d365;
    color: #fff;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 22px;
}

.whatsapp-float span {
    font-size: 2.2rem;
    line-height: 1;
}

@media (max-width: 980px) {
    .site-header {
        inset-inline: 12px;
    }

    .site-nav {
        position: fixed;
        inset: 78px 12px auto;
        display: none;
        grid-template-columns: 1fr;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(9, 5, 7, 0.96);
    }

    body.nav-open .site-nav {
        display: grid;
    }

    .nav-toggle {
        display: block;
    }

    .header-action {
        margin-left: auto;
        padding: 9px 12px;
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .split-grid,
    .split-grid--reverse,
    .services-layout,
    .faq-layout,
    .channel-browser,
    .setup-layout,
    .order-panel {
        grid-template-columns: 1fr;
    }

    .media-stack {
        min-height: 0;
        display: grid;
        gap: 14px;
    }

    .main-media {
        height: auto;
        aspect-ratio: 1.1;
        margin: 0;
    }

    .stat-card {
        position: static;
        min-width: 0;
    }

    .steps-grid,
    .pricing-grid,
    .service-list,
    .testimonial-grid,
    .channel-grid,
    .media-catalog,
    .blog-grid,
    .tile-grid {
        grid-template-columns: 1fr;
    }

    .country-sidebar,
    .setup-links {
        position: static;
    }

    .country-sidebar {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(5, 4, 8, 0.9);
        scroll-snap-type: x proximity;
    }

    .country-sidebar h3 {
        display: none;
    }

    .country-sidebar button {
        flex: 0 0 auto;
        min-width: max-content;
        min-height: 42px;
        scroll-snap-align: start;
    }

    .setup-links {
        display: flex;
        overflow-x: auto;
        padding: 12px;
        scroll-snap-type: x proximity;
    }

    .setup-links h2 {
        display: none;
    }

    .setup-links a {
        flex: 0 0 auto;
        min-height: 44px;
        scroll-snap-align: start;
    }

    .channel-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .channel-browser {
        overflow: hidden;
    }

    .services-media {
        min-height: 520px;
    }

    .services-main {
        width: 82%;
        height: 500px;
    }

    .service-badge {
        left: 20px;
        bottom: 20px;
    }

    [dir="rtl"] .service-badge {
        left: auto;
        right: 20px;
    }

    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-visual {
        min-height: 430px;
    }

    .faq-image-main,
    .faq-image-small {
        height: 275px;
    }

    .poster-row {
        padding-bottom: 14px;
    }

    .poster-track img {
        width: 220px;
        height: 305px;
        flex-basis: 220px;
    }

    .feature-tile {
        min-height: 430px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 28px, 1180px);
    }

    .section-pad {
        padding: 64px 0;
    }

    .site-header {
        top: 10px;
        padding: 10px;
        gap: 8px;
    }

    .brand span:last-child {
        max-width: 31vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-action {
        padding: 8px 9px;
        font-size: 0.76rem;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 96svh;
        padding-top: 108px;
    }

    .hero-content {
        text-align: start;
    }

    .hero-metrics {
        justify-content: flex-start;
    }

    .hero-subtitle {
        margin-inline: 0;
    }

    .eyebrow {
        letter-spacing: 0.16em;
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4.2rem);
    }

    .btn {
        width: 100%;
    }

    .check-list li {
        align-items: flex-start;
    }

    .step-card {
        min-height: 260px;
    }

    .feature-tile img {
        width: 100%;
        min-width: 0;
    }

    .cta {
        min-height: 620px;
        background:
            linear-gradient(180deg, rgba(10, 5, 7, 0.94), rgba(10, 5, 7, 0.58)),
            var(--cta-image) center / cover;
    }

    .cta-panel {
        margin-inline: auto;
    }

    .cta-actions,
    .order-form,
    .contact-actions,
    .cookie-banner {
        display: grid;
    }

    .phone-control {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .phone-country-button {
        padding-inline: 10px;
    }

    .phone-country-list button {
        grid-template-columns: 42px minmax(0, 1fr) auto;
    }

    .page-hero {
        min-height: 380px;
        padding-top: 112px;
    }

    .channel-toolbar,
    .region-tabs,
    .channel-grid,
    .media-filters {
        padding: 14px;
    }

    .region-tabs,
    .media-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .region-tabs button,
    .media-filters button {
        flex: 0 0 auto;
        min-height: 42px;
        padding-inline: 14px;
        scroll-snap-align: start;
    }

    .channel-browser {
        border-radius: 8px;
        overflow: hidden;
    }

    .channel-card header {
        padding: 14px;
    }

    .channel-card h4 {
        padding: 12px 14px;
    }

    .channel-card ul {
        padding: 0 14px 14px;
    }

    .channel-card li {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .channel-card li:nth-child(n+7) {
        display: none;
    }

    .setup-links {
        display: flex;
        overflow-x: auto;
        padding: 12px;
        scroll-snap-type: x proximity;
    }

    .setup-links h2 {
        display: none;
    }

    .setup-links a {
        flex: 0 0 auto;
        padding: 12px 14px;
        scroll-snap-align: start;
    }

    .setup-blocks {
        gap: 14px;
    }

    .setup-card {
        padding: 20px;
    }

    .setup-card h2 {
        font-size: 1.42rem;
    }

    .media-catalog {
        gap: 14px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 12px;
        width: auto;
    }

    .chatbot-widget {
        right: 14px;
        bottom: 86px;
    }

    [dir="rtl"] .chatbot-widget {
        right: auto;
        left: 14px;
    }

    .chatbot-toggle {
        min-width: 62px;
        width: 62px;
        height: 62px;
        padding: 0;
        justify-content: center;
    }

    .chatbot-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .chatbot-panel {
        position: fixed;
        right: 12px;
        left: 12px;
        bottom: 158px;
        width: auto;
        max-height: min(620px, calc(100svh - 185px));
    }

    [dir="rtl"] .chatbot-panel {
        right: 12px;
        left: 12px;
    }

    .chatbot-panel form {
        grid-template-columns: auto 1fr;
    }

    .chatbot-panel button[type="submit"] {
        grid-column: 1 / -1;
        width: 100%;
    }

    .services-media {
        min-height: 440px;
    }

    .services-main {
        width: 100%;
        height: 410px;
    }

    .services-float {
        width: 48%;
        top: 28px;
    }

    .service-badge {
        min-width: 120px;
        min-height: 120px;
    }

    .service-badge strong {
        font-size: 1.8rem;
    }

    .stats-band {
        grid-template-columns: 1fr;
    }

    .order-shell {
        width: min(100% - 28px, 1120px);
    }

    .order-copy,
    .order-form {
        padding: 22px;
    }

    .faq-visual {
        min-height: 360px;
    }

    .faq-image-main,
    .faq-image-small {
        width: 82%;
        height: 220px;
    }

    .language-switcher {
        left: 14px;
        bottom: 14px;
    }

    [dir="rtl"] .language-switcher {
        left: auto;
        right: 14px;
    }

    .language-switcher summary {
        min-width: 74px;
        min-height: 50px;
        padding-inline: 14px;
    }

    .whatsapp-float {
        width: 62px;
        height: 62px;
        right: 14px;
        bottom: 14px;
    }

    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .step-card,
    .step-card:hover,
    .feature-tile,
    .feature-tile:hover,
    .feature-tile img,
    .feature-tile:hover img {
        transform: none !important;
    }
}
