/* Local SEO landing pages */
.seo-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(251, 22, 185, 0.2), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(33, 150, 243, 0.18), transparent 28rem),
        linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 55%, #260D52 100%);
    color: #fff;
}

.seo-page::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    inset: 0;
    mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.seo-page > * {
    position: relative;
    z-index: 1;
}

.seo-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 15, 26, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    position: sticky;
    top: 0;
    z-index: 20;
}

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

.seo-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.seo-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
}

.seo-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #FB16B9;
}

.seo-hero {
    overflow: hidden;
    padding: 110px 0 70px;
    position: relative;
}

.seo-hero::before {
    background:
        linear-gradient(90deg, rgba(15, 15, 26, 0) 0%, rgba(15, 15, 26, 0.58) 28%, rgba(15, 15, 26, 0.9) 100%),
        linear-gradient(145deg, rgba(251, 22, 185, 0.22), rgba(33, 150, 243, 0.14)),
        url("../images/studio-nagran-brandcast-produkcja-audio-wideo.jpg");
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: "";
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 86%, transparent 100%);
    opacity: 0.42;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: min(48vw, 720px);
}

.seo-hero .container {
    position: relative;
    z-index: 1;
}

.seo-eyebrow {
    background: rgba(127, 215, 255, 0.08);
    border: 1px solid rgba(127, 215, 255, 0.22);
    border-radius: 999px;
    color: #7fd7ff;
    display: inline-flex;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
    padding: 8px 14px;
    text-transform: uppercase;
}

.seo-hero-grid {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.seo-hero h1 {
    font-size: clamp(2.7rem, 5.8vw, 5.8rem);
    line-height: 1.04;
    max-width: 900px;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.seo-lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.8;
    margin: 26px 0 34px;
    max-width: 850px;
}

.seo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.seo-page .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
}

.seo-page .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.seo-hero-card,
.seo-panel,
.seo-faq details {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.seo-hero-card {
    backdrop-filter: blur(12px);
    position: relative;
    padding: 34px;
    overflow: hidden;
}

.seo-hero-card::before {
    background: linear-gradient(135deg, rgba(251, 22, 185, 0.28), rgba(33, 150, 243, 0.18), transparent 70%);
    content: "";
    height: 180px;
    position: absolute;
    right: -80px;
    top: -80px;
    transform: rotate(18deg);
    width: 220px;
}

.seo-hero-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    position: relative;
}

.seo-checklist {
    display: grid;
    gap: 14px;
}

.seo-checklist li {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88);
    padding: 11px 12px 11px 38px;
    position: relative;
}

.seo-checklist li::before {
    color: #FB16B9;
    content: "✓";
    font-weight: 900;
    left: 14px;
    position: absolute;
    top: 11px;
}

.seo-section {
    padding: 72px 0;
}

.seo-section.alt {
    background: rgba(255, 255, 255, 0.04);
}

.seo-section h2 {
    margin-bottom: 24px;
}

.seo-grid {
    align-items: stretch;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-panel {
    color: inherit;
    display: block;
    min-height: 100%;
    padding: 26px;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.seo-panel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(127, 215, 255, 0.24);
    transform: translateY(-4px);
}

.seo-panel h3 {
    color: #fff;
    margin-bottom: 12px;
}

.seo-panel p,
.seo-panel li,
.seo-section p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.seo-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.seo-service-links a {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.seo-service-links a:hover {
    background: var(--color-gradient);
    color: #fff;
    transform: translateY(-2px);
}

.seo-faq {
    display: grid;
    gap: 16px;
}

.seo-faq details {
    padding: 22px 24px;
}

.seo-faq details[open] {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(251, 22, 185, 0.28);
}

.seo-faq summary {
    cursor: pointer;
    font-weight: 900;
}

.seo-faq p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 12px;
}

.seo-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    padding: 34px 0;
}

@media (max-width: 900px) {
    .seo-header-inner,
    .seo-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-header-inner {
        padding: 18px 0;
    }

    .seo-hero {
        padding-top: 70px;
    }

    .seo-hero::before {
        display: none;
    }

    .seo-hero-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }
}
