/* Strzyżów.TV - finalny CSS produkcyjny z FontAwesome */

:root {
    color-scheme: dark;

    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;

    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;

    --bg: #020617;
    --bg-soft: #0f172a;
    --surface: #0f172a;
    --surface-2: #111827;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --border: rgba(148, 163, 184, 0.18);
    --border-strong: rgba(148, 163, 184, 0.28);

    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.30);
    --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.22);

    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --header-height: 80px;

    --container: 1180px;

    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Urbanist, Inter, ui-sans-serif, system-ui, sans-serif;
}

html[data-theme="light"] {
    color-scheme: light;

    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --muted-2: #64748b;
    --border: rgba(15, 23, 42, 0.10);
    --border-strong: rgba(15, 23, 42, 0.16);

    --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 18px 50px rgba(15, 23, 42, 0.10);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 16px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--green-500);
    color: #fff;
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

.top-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--green-500), #34d399, var(--blue-500));
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.84);
    backdrop-filter: blur(18px);
}

html[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.86);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    width: auto;
    height: 54px;
    object-fit: contain;
}

html[data-theme="dark"] .logo-img {
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.34))
        drop-shadow(0 0 5px rgba(34, 197, 94, 0.18));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.main-nav a {
    transition: color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--green-500);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle,
.menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 197, 94, 0.45);
}

html[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

html[data-theme="light"] .theme-toggle .fa-sun {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

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

.btn-small {
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 14px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--green-500);
    color: white;
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.20);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--green-600);
}

.btn-header {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.26);
    box-shadow: none;
}

.btn-header:hover,
.btn-header:focus-visible {
    background: rgba(34, 197, 94, 0.22);
    color: #d1fae5;
    border-color: rgba(34, 197, 94, 0.40);
}


.btn-dark {
    background: var(--text);
    color: var(--bg);
    box-shadow: var(--shadow-card);
}

.btn-dark:hover,
.btn-dark:focus-visible {
    opacity: 0.92;
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: rgba(34, 197, 94, 0.45);
}

.btn-blue {
    background: var(--blue-600);
    color: white;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.20);
}

.btn-blue:hover,
.btn-blue:focus-visible {
    background: var(--blue-700);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.11) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.11) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-soft));
    pointer-events: none;
}

.blob {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(110px);
    opacity: 0.75;
}

.blob-green {
    top: 80px;
    left: 45%;
    width: 720px;
    height: 720px;
    background: rgba(34, 197, 94, 0.12);
}

.blob-blue {
    top: 190px;
    right: -130px;
    width: 430px;
    height: 430px;
    background: rgba(59, 130, 246, 0.13);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 560px);
    align-items: center;
    gap: clamp(32px, 5vw, 60px);
    padding-block: clamp(48px, 6vw, 86px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    padding: 8px 14px;
    border: 1px solid rgba(34, 197, 94, 0.18);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.09);
    color: var(--green-400);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.centered {
    justify-content: center;
}

.dark-eyebrow {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #86efac;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

h1 {
    max-width: 720px;
    font-size: clamp(46px, 7vw, 80px);
    font-weight: 950;
}

h1 span {
    display: block;
    background: linear-gradient(90deg, var(--green-500), #34d399, var(--blue-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 950;
}

h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 950;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.65vw, 19px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.quick-info {
    width: min(100%, 570px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.quick-info div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.quick-info i {
    color: var(--green-500);
    margin-bottom: 10px;
}

.quick-info div:first-child i {
    color: var(--blue-500);
}

.quick-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 950;
    line-height: 1;
}

.quick-info span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

/* TV mockup */

.hero-card-wrap {
    width: 100%;
    max-width: 560px;
    min-width: 0;
    justify-self: end;
    position: relative;
}

.hero-card-wrap {
    display: block;
    color: inherit;
    cursor: pointer;
}

.hero-card-wrap .tv-card {
    transition:
        transform 0.20s ease,
        border-color 0.20s ease,
        box-shadow 0.20s ease;
}

.hero-card-wrap:hover .tv-card,
.hero-card-wrap:focus-visible .tv-card {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.34);
    box-shadow: 0 26px 76px rgba(0, 0, 0, 0.34);
}

.hero-card-wrap:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.42);
    outline-offset: 8px;
    border-radius: 34px;
}


.hero-card-wrap::before {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(59, 130, 246, 0.12), rgba(52, 211, 153, 0.18));
    filter: blur(26px);
}

.tv-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.tv-card-top {
    min-height: 50px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #fb7185;
}

.browser-dots span:nth-child(2) {
    background: #facc15;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.tv-card-top p {
    min-width: 0;
    margin: 0;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tv-player {
    position: relative;
    width: calc(100% - 36px);
    aspect-ratio: 16 / 9;
    margin: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, 0.25), transparent 36%),
        linear-gradient(135deg, #020617, #111827 52%, #14532d);
}

.screen-noise {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.92) 1px, transparent 0);
    background-size: 18px 18px;
}

.live-tag,
.service-tag {
    position: absolute;
    top: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    max-width: calc(50% - 18px);
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(0,0,0,0.42);
    color: white;
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.live-tag {
    left: 14px;
    gap: 7px;
}

.live-tag span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.15);
}

.service-tag {
    right: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-large {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.play-large i {
    width: clamp(54px, 10vw, 72px);
    height: clamp(54px, 10vw, 72px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 45px rgba(34, 197, 94, 0.26);
}

.screen-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.09);
    color: white;
    backdrop-filter: blur(14px);
}

.screen-caption strong,
.screen-caption span {
    display: block;
}

.screen-caption strong {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.1vw, 20px);
    font-weight: 950;
}

.screen-caption span {
    margin-top: 4px;
    color: #cbd5e1;
    font-size: 13px;
}

.tv-card-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 18px 18px;
}

.tv-card-bottom div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-2);
}

.tv-card-bottom i {
    flex: 0 0 auto;
    color: var(--green-500);
    font-size: 17px;
}

.tv-card-bottom div:first-child i {
    color: var(--blue-500);
}

.tv-card-bottom span {
    min-width: 0;
    display: block;
    overflow: hidden;
    color: var(--text);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 850;
}

/* Sections */

.section {
    padding-block: clamp(64px, 8vw, 92px);
}

.section-muted {
    border-block: 1px solid var(--border);
    background: var(--bg-soft);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-title > p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.watch-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 4vw, 36px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.watch-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.42;
    background: rgba(34, 197, 94, 0.22);
    pointer-events: none;
}

.watch-card:first-child::after {
    background: rgba(59, 130, 246, 0.22);
}

.watch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.28);
    box-shadow: var(--shadow-card);
}

.card-icon {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 24px;
    font-size: 30px;
}

.card-icon.blue {
    background: rgba(59, 130, 246, 0.10);
    color: var(--blue-500);
}

.card-icon.green {
    background: rgba(34, 197, 94, 0.10);
    color: var(--green-500);
}

.watch-card h3,
.watch-card p,
.watch-card ul,
.watch-card a,
.app-box,
.qr-box {
    position: relative;
    z-index: 1;
}

.watch-card p {
    margin: 16px 0 0;
    color: var(--muted);
}

.watch-card ul {
    display: grid;
    gap: 13px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 15px;
}

.watch-card li {
    position: relative;
    padding-left: 30px;
}

.watch-card li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--green-500);
}

.watch-card .btn {
    margin-top: auto;
}

.app-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface-2);
}

.app-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #9333ea, #3b82f6, #22c55e);
    color: white;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.18);
}

.app-box strong,
.app-box span {
    display: block;
}

.app-box strong {
    font-weight: 950;
}

.app-box span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.app-box > i {
    margin-left: auto;
    color: var(--green-500);
    font-size: 26px;
}

.qr-box {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface-2);
}

.qr-box img {
    width: 128px;
    height: 128px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.qr-box strong,
.qr-box span {
    display: block;
}

.qr-box strong {
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-2);
    font-size: 12px;
}

.qr-box span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

/* Steps */

.steps-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 54px;
    align-items: center;
}

.steps-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin: 20px 0 30px;
    color: var(--muted);
    font-size: 17px;
}

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

.step-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.step-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(34, 197, 94, 0.10);
    color: var(--green-500);
    font-weight: 950;
}

.step-card:nth-child(2) > span {
    background: rgba(59, 130, 246, 0.10);
    color: var(--blue-500);
}

.step-card:nth-child(3) > span {
    background: rgba(16, 185, 129, 0.10);
    color: #10b981;
}

.step-card h3 {
    font-size: 20px;
}

.step-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* Offer */

.offer-card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 50px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.offer-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: rgba(34, 197, 94, 0.10);
    color: var(--green-500);
    font-size: 28px;
}

.offer-card p {
    max-width: 670px;
    margin: 18px auto 32px;
    color: var(--muted);
    font-size: 17px;
}

/* Contact */

.contact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: center;
    padding: clamp(32px, 5vw, 52px);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #020617, #0f172a 48%, #020617);
    color: white;
    box-shadow: var(--shadow-soft);
}

.contact-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.20);
    filter: blur(80px);
}

.contact-copy,
.contact-links {
    position: relative;
    z-index: 1;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 690px;
    margin: 18px 0 0;
    color: #cbd5e1;
}

.contact-links {
    display: grid;
    gap: 14px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    background: rgba(255,255,255,0.055);
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
}

.contact-links a > span {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-500);
    color: white;
    font-size: 20px;
}

.contact-links small,
.contact-links strong {
    display: block;
}

.contact-links small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-links strong {
    margin-top: 3px;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 950;
}

/* Floating mobile CTA */

.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    display: none;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--green-500);
    color: white;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.28);
}

/* Footer */

.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner div {
    display: flex;
    gap: 18px;
    font-weight: 800;
}

.footer-inner a {
    transition: color 0.18s ease;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    color: var(--green-500);
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.20s;
}

/* Responsive */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-inner,
    .steps-layout,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-lead,
    .quick-info {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card-wrap {
        justify-self: center;
        max-width: 620px;
    }

    .steps-copy {
        text-align: center;
    }

    .steps-copy > p:not(.eyebrow) {
        margin-inline: auto;
    }

    .steps-grid {
        max-width: 840px;
        margin-inline: auto;
    }

    .contact-card {
        text-align: center;
    }

    .contact-links {
        max-width: 460px;
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .main-nav,
    .desktop-only {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .logo-img {
        height: 44px;
    }

    .mobile-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: calc(var(--header-height) + 14px);
        z-index: 99;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: var(--surface);
        box-shadow: var(--shadow-soft);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .mobile-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu a:not(.btn) {
        padding: 14px 16px;
        border-radius: 14px;
        color: var(--muted);
        font-weight: 850;
    }

    .mobile-menu a:not(.btn):hover,
    .mobile-menu a:not(.btn):focus-visible {
        background: var(--surface-2);
        color: var(--green-500);
    }

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

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-inner {
        gap: 36px;
        padding-block: 44px 64px;
    }

    h1 {
        font-size: clamp(40px, 13vw, 56px);
    }

    h2 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .quick-info div {
        display: grid;
        grid-template-columns: 28px 1fr auto;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 16px;
    }

    .quick-info i {
        margin-bottom: 0;
    }

    .quick-info span {
        margin-top: 0;
    }

    .tv-card {
        border-radius: 24px;
    }

    .tv-card-top {
        padding: 12px 14px;
    }

    .tv-player {
        width: calc(100% - 24px);
        margin: 12px;
        border-radius: 20px;
    }

    .live-tag,
    .service-tag {
        top: 10px;
        min-height: 26px;
        padding: 6px 9px;
        font-size: 10px;
    }

    .live-tag {
        left: 10px;
    }

    .service-tag {
        right: 10px;
    }

    .play-large i {
        width: 58px;
        height: 58px;
    }

    .screen-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .screen-caption span {
        font-size: 12px;
    }

    .tv-card-bottom {
        grid-template-columns: 1fr;
        padding: 0 12px 12px;
    }

    .tv-card-bottom div {
        padding: 12px;
    }

    .section {
        padding-block: 58px;
    }

    .section-title {
        margin-bottom: 34px;
    }

    .watch-card,
    .step-card,
    .offer-card,
    .contact-card {
        border-radius: 26px;
    }

    .qr-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qr-box img {
        margin-inline: auto;
    }

    .app-box {
        align-items: center;
    }

    .contact-links a {
        text-align: left;
    }

    .floating-cta {
        display: inline-flex;
    }

    .site-footer {
        padding-bottom: 76px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-inner div {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .header-inner {
        gap: 10px;
    }

    .logo-img {
        height: 38px;
        max-width: 190px;
    }

    .theme-toggle,
    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .quick-info strong {
        font-size: 22px;
    }

    .btn {
        min-height: 50px;
        padding-inline: 18px;
        border-radius: 16px;
    }

    .app-box {
        gap: 12px;
    }

    .app-logo {
        width: 50px;
        height: 50px;
    }

    .contact-links strong {
        font-size: 18px;
    }
}


/* V3 - poprawki jasnego motywu dla headera */

html[data-theme="light"] .btn-header {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border-color: rgba(21, 128, 61, 0.24);
    box-shadow: none;
}

html[data-theme="light"] .btn-header:hover,
html[data-theme="light"] .btn-header:focus-visible {
    background: rgba(34, 197, 94, 0.16);
    color: #166534;
    border-color: rgba(21, 128, 61, 0.36);
}

html[data-theme="dark"] .btn-header {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.26);
    box-shadow: none;
}

html[data-theme="dark"] .btn-header:hover,
html[data-theme="dark"] .btn-header:focus-visible {
    background: rgba(34, 197, 94, 0.22);
    color: #d1fae5;
    border-color: rgba(34, 197, 94, 0.40);
}

html[data-theme="light"] .theme-toggle {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .theme-toggle:hover {
    background: #f8fafc;
    border-color: rgba(21, 128, 61, 0.22);
}

html[data-theme="light"] .site-header {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .logo-img {
    filter: none;
}

html[data-theme="dark"] .logo-img {
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.26))
        drop-shadow(0 0 4px rgba(34, 197, 94, 0.14));
}


/* V4 - subtelniejsze przyciski ofertowe */

.btn-soft-green {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.26);
    box-shadow: none;
}

.btn-soft-green:hover,
.btn-soft-green:focus-visible {
    background: rgba(34, 197, 94, 0.22);
    color: #d1fae5;
    border-color: rgba(34, 197, 94, 0.40);
}

html[data-theme="light"] .btn-soft-green {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border-color: rgba(21, 128, 61, 0.24);
    box-shadow: none;
}

html[data-theme="light"] .btn-soft-green:hover,
html[data-theme="light"] .btn-soft-green:focus-visible {
    background: rgba(34, 197, 94, 0.16);
    color: #166534;
    border-color: rgba(21, 128, 61, 0.36);
}


/* V6 - przyciski aplikacji Android / iOS */

.app-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
}

.app-actions .btn {
    padding-inline: 16px;
}

@media (max-width: 520px) {
    .app-actions {
        grid-template-columns: 1fr;
    }
}
