/* ============================================================
   RAMOFLIX — Global Stylesheet
   Shared across: index, about, blog, app, legal pages
   ============================================================ */

/* ── VARIABLES ── */
:root {
    --brand: #e50914;
    --brand-dark: #b11226;
    --brand-dim: rgba(229, 9, 20, 0.12);
    --brand-glow: rgba(229, 9, 20, 0.3);
    --bg: #000000;
    --bg2: #0f0f0f;
    --bg3: #181818;
    --surface: #181818;
    --border: rgba(229, 9, 20, 0.18);
    --border-soft: rgba(255, 255, 255, 0.07);
    --text: #ffffff;
    --text2: #a0a0a0;
    --text3: #5a5a5a;
    --radius: 8px;
    --radius-lg: 14px;
    --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: linear-gradient(180deg, #000000 0%, #290202 40%, #470101 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
}

/* ── NAVIGATION ── */
nav:not(.toc-links) {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(24, 24, 24, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 9, 20, 0.25);
    padding: 0 24px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
}
.logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 0 12px var(--brand-glow);
}
.logo-text {
    color: var(--text);
}
.logo-text span {
    color: var(--brand);
}
.logo-r {
    color: var(--text);
}
.logo-f {
    color: var(--brand);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links a {
    padding: 6px 13px;
    border-radius: 7px;
    font-size: 14px;
    color: var(--text2);
    transition:
        color 0.18s,
        background 0.18s;
}
.nav-links a:hover {
    color: var(--text);
    background: var(--bg3);
}
.nav-cta {
    background: var(--brand) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px !important;
    padding: 7px 16px !important;
    border-radius: 7px !important;
    box-shadow: 0 0 14px var(--brand-glow);
    transition:
        background 0.18s,
        box-shadow 0.18s !important;
}
.nav-cta:hover {
    background: var(--brand-dark) !important;
}

/* ── PAGE HERO (about, blog) ── */
.page-hero {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-soft);
    padding: 56px 24px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.page-hero h1 span {
    color: var(--brand);
}
.page-hero p {
    font-size: 17px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--brand);
    color: #fff;
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 0 20px var(--brand-glow);
    transition:
        background 0.18s,
        transform 0.14s;
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}
.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.18s;
}
.btn-secondary:hover {
    background: var(--bg3);
}

/* ── FAQ (about, app) ── */
.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 16px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-q {
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}
.faq-q:hover {
    color: var(--brand);
}
.faq-icon {
    font-size: 18px;
    color: var(--text3);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-a {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    display: none;
    padding-top: 10px;
}
.faq-a.open {
    display: block;
}
.faq-a a {
    color: var(--brand);
    text-decoration: underline;
}

/* ── FOOTER ── */
footer {
    background: var(--bg3);
    border-top: 1px solid rgba(229, 9, 20, 0.15);
    padding: 28px 24px;
}
footer > p {
    font-size: 13px;
    color: var(--text3);
    text-align: center;
}
footer > p > a {
    color: var(--text3);
    margin: 0 8px;
}
footer > p > a:hover {
    color: var(--brand);
}

/* ── ANIMATIONS ── */
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================================
   INDEX PAGE
   ============================================================ */

/* Hero */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px 52px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-dim);
    color: var(--brand);
    border: 1px solid rgba(229, 9, 20, 0.35);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}
h1.hero-title {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.1;
    margin-bottom: 18px;
}
h1.hero-title .hl {
    color: var(--brand);
    text-shadow: 0 0 32px var(--brand-glow);
}
.hero-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text3);
}
.trust-item .chk {
    color: var(--brand);
    font-size: 14px;
}

/* Safe Notice */
.safe-notice-wrap {
    padding: 0 24px 28px;
    max-width: 1148px;
    margin: 0 auto;
}
.safe-notice {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.safe-notice-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.safe-notice-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text2);
}
.safe-notice-text strong {
    color: var(--brand);
}
.safe-notice-text a {
    color: var(--brand);
    text-decoration: underline;
}

/* Search */
.search-section {
    background: var(--bg3);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 36px 24px;
}
.search-inner {
    max-width: 680px;
    margin: 0 auto;
}
.search-label {
    text-align: center;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.search-box {
    display: flex;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.search-box:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-dim);
}
.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: var(--font);
}
.search-box input::placeholder {
    color: var(--text3);
}
.search-box button {
    background: var(--brand);
    border: none;
    padding: 13px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.18s;
}
.search-box button:hover {
    background: var(--brand-dark);
}
.search-suggestions {
    display: flex;
    gap: 7px;
    margin-top: 11px;
    flex-wrap: wrap;
    justify-content: center;
}
.suggestion-pill {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text2);
    cursor: pointer;
    transition:
        border-color 0.18s,
        color 0.18s;
}
.suggestion-pill:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* Movie Grid Section */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px;
}
.section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.section-title-h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-title-h2 .dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand);
    animation: pulse 2s infinite;
}
.see-all {
    font-size: 13px;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}
.see-all:hover {
    text-decoration: underline;
}

/* Genre filter */
.genre-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.genre-btn {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    cursor: pointer;
    transition: all 0.18s;
}
.genre-btn:hover,
.genre-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 700;
}

/* Movie cards */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.movie-card {
    background: var(--bg2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
    cursor: pointer;
}
.movie-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 8px 28px rgba(229, 9, 20, 0.22);
}
.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.movie-card:hover .movie-poster img {
    transform: scale(1.04);
}
.poster-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--surface) 0%,
        var(--bg3) 50%,
        var(--surface) 100%
    );
    background-size: 200% 200%;
    animation: shimmer 1.6s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.poster-letter {
    font-size: 28px;
    opacity: 0.3;
}
.movie-rating {
    position: absolute;
    top: 7px;
    right: 7px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #f5c518;
    display: flex;
    align-items: center;
    gap: 3px;
}
.watchlist-btn {
    position: absolute;
    bottom: 7px;
    right: 7px;
    background: rgba(0, 0, 0, 0.72);
    border: none;
    color: white;
    width: 27px;
    height: 27px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.watchlist-btn:hover {
    background: var(--brand);
    color: #fff;
}
.watchlist-btn.active {
    background: var(--brand);
    color: #fff;
}
.movie-info {
    padding: 10px 11px 11px;
}
.movie-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-meta {
    font-size: 11px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 6px;
}
.genre-tag {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    color: var(--text3);
}
.skeleton-card {
    background: var(--bg2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
}
.skeleton-poster {
    width: 100%;
    aspect-ratio: 2/3;
}
.skeleton-info {
    padding: 10px 11px;
}
.skeleton-line {
    height: 11px;
    background: var(--bg3);
    border-radius: 4px;
    margin-bottom: 7px;
    animation: shimmer 1.6s infinite;
    background-size: 200% 200%;
}
.skeleton-line.short {
    width: 60%;
}
.error-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text3);
    font-size: 14px;
}
.error-state .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

/* Features section (index) */
.features {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 24px;
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.features-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--brand);
    margin-bottom: 10px;
}
.features-title {
    text-align: center;
    font-size: clamp(24px, 3.8vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.features-sub {
    text-align: center;
    color: var(--text2);
    font-size: 15px;
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.features-inner .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.2s;
}
.feature-card:hover {
    border-color: rgba(229, 9, 20, 0.3);
}
.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-dim);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}
.feature-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
}

/* App section (index) */
.app-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.app-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--brand);
    margin-bottom: 10px;
}
.app-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.app-desc {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.app-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.app-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand);
}
.app-stat-label {
    font-size: 11px;
    color: var(--text3);
    margin-top: 1px;
}
.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 11px 18px;
    border-radius: 11px;
    transition:
        border-color 0.18s,
        background 0.18s;
}
.app-download-btn:hover {
    border-color: var(--brand);
    background: var(--surface);
}
.app-download-btn .store-icon {
    font-size: 26px;
}
.store-label {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 0.03em;
}
.store-name {
    font-size: 15px;
    font-weight: 700;
}
.app-section .app-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}
.phone-mockup {
    width: 180px;
    margin: 0 auto;
    background: var(--bg3);
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(229, 9, 20, 0.12);
}
.phone-mockup .phone-screen {
    background: var(--bg2);
    padding: 14px 11px;
}
.phone-mockup .phone-notch {
    width: 55px;
    height: 5px;
    background: var(--bg);
    border-radius: 3px;
    margin: 0 auto 14px;
}
.phone-app-header {
    font-size: 10px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 10px;
    letter-spacing: 1.2px;
}
.phone-movie-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.phone-movie-thumb {
    flex: 1;
    aspect-ratio: 2/3;
    background: var(--surface);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Blog preview (index) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
}
.blog-card {
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.blog-card:hover {
    border-color: rgba(229, 9, 20, 0.35);
}
.blog-thumb {
    width: 100%;
    height: 170px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}
.blog-cat {
    position: absolute;
    top: 11px;
    left: 11px;
    background: var(--brand);
    color: #fff;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-body {
    padding: 18px;
}
.blog-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.4;
}
.blog-excerpt {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 12px;
}
.blog-meta {
    font-size: 11px;
    color: var(--text3);
    display: flex;
    gap: 10px;
}

/* Trust band */
.trust-band {
    background: var(--bg3);
    border-top: 1px solid var(--border-soft);
    padding: 36px 24px;
}
.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.trust-title {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text3);
    margin-bottom: 24px;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 9px;
}
.trust-badge-icon {
    font-size: 22px;
}
.trust-badge-title {
    font-size: 13px;
    font-weight: 600;
}
.trust-badge-sub {
    font-size: 11px;
    color: var(--text3);
}

/* Full footer (index) */
footer.footer-full {
    padding: 44px 24px 22px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-brand-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    margin-top: 11px;
    margin-bottom: 18px;
}
.social-links {
    display: flex;
    gap: 8px;
}
.social-link {
    width: 34px;
    height: 34px;
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition:
        border-color 0.18s,
        background 0.18s;
}
.social-link:hover {
    border-color: var(--brand);
    background: var(--surface);
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text3);
    margin-bottom: 14px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text2);
    transition: color 0.18s;
}
.footer-links a:hover {
    color: var(--brand);
}
.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 12px;
    color: var(--text3);
}
.footer-legal {
    display: flex;
    gap: 14px;
}
.footer-legal a {
    font-size: 12px;
    color: var(--text3);
}
.footer-legal a:hover {
    color: var(--text2);
}

/* Toast */
#toast {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(70px);
    background: var(--bg3);
    border: 1px solid var(--brand);
    padding: 11px 18px;
    border-radius: 9px;
    font-size: 13px;
    z-index: 999;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(229, 9, 20, 0.25);
    color: var(--text);
}
#toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.content {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px;
}
.breadcrumb {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.breadcrumb a {
    color: var(--text3);
}
.breadcrumb a:hover {
    color: var(--brand);
}
.alert-safe {
    background: rgba(229, 9, 20, 0.06);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 44px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.alert-safe-icon {
    font-size: 26px;
    flex-shrink: 0;
}
.alert-safe h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 6px;
}
.alert-safe p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}
.section-block {
    margin-bottom: 48px;
}
.section-block h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.section-block p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 12px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.value-card {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.2s;
}
.value-card:hover {
    border-color: rgba(229, 9, 20, 0.3);
}
.value-icon {
    font-size: 26px;
    margin-bottom: 9px;
}
.value-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.value-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}
.contact-box {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-box p {
    font-size: 14px;
    color: var(--text2);
}
.satellite-section {
    background: rgba(229, 9, 20, 0.04);
    border: 1px solid rgba(229, 9, 20, 0.15);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 48px;
}
.satellite-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.satellite-section p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 0;
}
.partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.partner-tag {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text2);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    align-items: start;
}
.post-featured {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
    transition: border-color 0.2s;
}
.post-featured:hover {
    border-color: rgba(229, 9, 20, 0.35);
}
.feat-thumb {
    width: 100%;
    height: 220px;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
}
.feat-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--brand);
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.feat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fbbf24;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}
.feat-body {
    padding: 26px;
}
.feat-body h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.feat-body p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 14px;
}
.post-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text3);
}
.article-content h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 32px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}
.article-content h2:first-child {
    border-top: none;
    margin-top: 0;
}
.article-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 22px 0 10px;
}
.article-content p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
}
.article-content ul {
    list-style: none;
    margin-bottom: 14px;
}
.article-content ul li {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    padding: 5px 0 5px 22px;
    position: relative;
}
.article-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand);
}
.article-content .highlight {
    background: rgba(229, 9, 20, 0.07);
    border-left: 3px solid var(--brand);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 18px 0;
}
.article-content .highlight p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text2);
}
.movie-list-item {
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.movie-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--brand);
    min-width: 32px;
}
.movie-item-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}
.movie-item-info p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 0;
}
.movie-item-badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
    flex-wrap: wrap;
}
.badge {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}
.badge-genre {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    color: var(--text3);
}
.badge-rating {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-card {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 18px;
}
.sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text3);
    margin-bottom: 14px;
}
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-link {
    font-size: 14px;
    color: var(--text2);
    padding: 7px 10px;
    border-radius: 7px;
    transition:
        background 0.18s,
        color 0.18s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.sidebar-link:hover {
    background: var(--bg2);
    color: var(--brand);
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.tag-pill {
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text2);
    cursor: pointer;
    transition:
        border-color 0.18s,
        color 0.18s;
}
.tag-pill:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.app-promo {
    background: rgba(229, 9, 20, 0.06);
    border-color: rgba(229, 9, 20, 0.2) !important;
    text-align: center;
}
.app-promo h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 7px;
}
.app-promo p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 14px;
}
.btn-sm {
    background: var(--brand);
    color: #fff;
    padding: 9px 18px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.18s;
}
.btn-sm:hover {
    background: var(--brand-dark);
}

/* ============================================================
   APP PAGE
   ============================================================ */

.app-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.hero-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--brand);
    margin-bottom: 10px;
}
.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-title span {
    color: var(--brand);
}
.hero-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 28px;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    padding: 12px 20px;
    border-radius: 12px;
    transition:
        border-color 0.18s,
        background 0.18s;
    margin-bottom: 14px;
}
.store-btn:hover {
    border-color: var(--brand);
    background: var(--surface);
}
.store-btn .store-icon {
    font-size: 28px;
}
.app-hero .app-visual {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}
.phone-frame {
    width: 200px;
    margin: 0 auto;
    background: var(--bg2);
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(229, 9, 20, 0.1);
}
.phone-frame .phone-screen {
    background: var(--bg3);
    padding: 16px 12px;
}
.phone-frame .phone-notch {
    width: 58px;
    height: 5px;
    background: var(--bg);
    border-radius: 3px;
    margin: 0 auto 14px;
}
.phone-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.phone-brand {
    font-size: 10px;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 1.2px;
}
.phone-search-bar {
    flex: 1;
    margin-left: 8px;
    background: var(--bg2);
    border-radius: 5px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 7px;
}
.phone-search-bar span {
    font-size: 9px;
    color: var(--text3);
}
.phone-genre-row {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}
.phone-genre-pill {
    font-size: 8px;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}
.phone-genre-pill.active {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}
.phone-genre-pill.inactive {
    background: var(--bg2);
    color: var(--text3);
}
.phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.phone-card {
    background: var(--bg2);
    border-radius: 6px;
    overflow: hidden;
}
.phone-poster {
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.phone-card-info {
    padding: 5px;
}
.phone-card-title {
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.phone-card-meta {
    font-size: 7px;
    color: var(--text3);
    margin-top: 1px;
}
.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 9px 0 7px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg3);
}
.phone-nav-icon {
    font-size: 15px;
    opacity: 0.4;
}
.phone-nav-icon.active {
    opacity: 1;
}
.stats-band {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 36px 24px;
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 28px;
}
.stat {
    text-align: center;
}
.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -1px;
}
.stat-label {
    font-size: 13px;
    color: var(--text3);
    margin-top: 3px;
}
.features-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px;
}
.features-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--brand);
    margin-bottom: 9px;
}
.section-title {
    font-size: clamp(24px, 3.8vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 9px;
}
.section-sub {
    font-size: 15px;
    color: var(--text2);
    max-width: 460px;
    margin: 0 auto;
}
.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.feature-item {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 22px;
    transition: border-color 0.2s;
}
.feature-item:hover {
    border-color: rgba(229, 9, 20, 0.3);
}
.fi-icon {
    font-size: 26px;
    margin-bottom: 10px;
}
.fi-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.fi-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
}
.perm-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 52px;
}
.perm-table {
    width: 100%;
    border-collapse: collapse;
}
.perm-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-soft);
}
.perm-table td {
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: top;
}
.perm-table td:first-child {
    color: var(--text);
    font-weight: 500;
    width: 190px;
}
.chk-ok {
    color: #4ade80;
    font-size: 15px;
}
.chk-lim {
    color: var(--text3);
    font-size: 15px;
}
.faq-section {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-soft);
    padding: 52px 24px;
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.cta-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px;
    text-align: center;
}
.cta-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.cta-sub {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 28px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 52px;
    align-items: start;
}
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 36px;
}
.updated-badge span {
    color: var(--text2);
    font-weight: 600;
}
.legal-section {
    margin-bottom: 44px;
    scroll-margin-top: 80px;
}
.legal-section h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-section h2 .sec-icon {
    font-size: 18px;
}
.legal-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 8px;
    color: var(--text);
}
.legal-section p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 12px;
}
.legal-section ul {
    list-style: none;
    margin-bottom: 14px;
}
.legal-section ul li {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    padding: 4px 0 4px 20px;
    position: relative;
}
.legal-section ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--brand);
}
.legal-section ol {
    list-style: decimal;
    margin-bottom: 14px;
    padding-left: 20px;
}
.legal-section ol li {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    padding: 5px 0 5px 8px;
}
.legal-section a {
    color: var(--brand);
    text-decoration: underline;
}
.legal-section a:hover {
    color: var(--brand-dark);
}
.highlight-box,
.info-box,
.warn-box {
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}
.highlight-box {
    background: rgba(229, 9, 20, 0.06);
    border: 1px solid rgba(229, 9, 20, 0.2);
}
.highlight-box p,
.info-box p,
.warn-box p {
    margin-bottom: 0;
    font-size: 14px;
}
.highlight-box p {
    color: var(--text2);
}
.highlight-box strong {
    color: var(--text);
}
.info-box {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.info-box p {
    color: #93bbf0;
}
.info-box strong {
    color: #bfd4f7;
}
.warn-box {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
}
.warn-box p {
    color: #a89060;
}
.warn-box strong {
    color: #fbbf24;
}
.text-brand {
    color: var(--brand);
}
.text-muted {
    color: var(--text3);
}

.takedown-form {
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 28px;
    margin-top: 24px;
}
.takedown-form h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.takedown-form .form-note {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 22px;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}
.form-group label .req {
    color: var(--brand);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    font-family: var(--font);
    transition: border-color 0.18s;
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text3);
}
.form-group select option {
    background: var(--bg3);
    color: var(--text);
}
.form-group textarea {
    min-height: 100px;
}
.form-group textarea.textarea-sm {
    min-height: 80px;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand);
    cursor: pointer;
}
.form-checkbox label {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    cursor: pointer;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.btn-submit {
    background: var(--brand);
    color: #fff;
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition:
        background 0.18s,
        transform 0.14s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.btn-submit:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}
.btn-submit.submitted {
    background: #3d3d3d;
    cursor: default;
    transform: none;
}
.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
}
.form-success.show {
    display: block;
}
.form-success p {
    font-size: 14px;
    color: #86efac;
    margin-bottom: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.data-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-soft);
}
.data-table td {
    padding: 11px 14px;
    font-size: 13px;
    color: var(--text2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: top;
}
.data-table td:first-child {
    color: var(--text);
    font-weight: 500;
    width: 180px;
}
.chk-no {
    color: var(--text3);
}

.page-wrap .sidebar {
    position: sticky;
    top: 78px;
}
.page-wrap .sidebar-card {
    margin-bottom: 16px;
}
.page-wrap .sidebar-title {
    font-size: 11px;
    letter-spacing: 0.07em;
}
.toc-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.toc-link {
    font-size: 13px;
    color: var(--text2);
    padding: 6px 10px;
    border-radius: 7px;
    transition:
        background 0.18s,
        color 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toc-link:hover,
.toc-link.active {
    background: var(--bg2);
    color: var(--brand);
}
.toc-link .toc-icon {
    font-size: 14px;
    flex-shrink: 0;
}
.related-pages {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.related-link {
    font-size: 13px;
    color: var(--text2);
    padding: 8px 10px;
    background: var(--bg2);
    border-radius: 7px;
    border: 1px solid var(--border-soft);
    transition:
        border-color 0.18s,
        color 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.related-link:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.related-link.active {
    border-color: rgba(229, 9, 20, 0.35);
    color: var(--text);
}
.response-card,
.contact-mini {
    background: rgba(229, 9, 20, 0.06);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    padding: 18px;
}
.response-card h4,
.contact-mini h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}
.response-card p,
.contact-mini p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 10px;
}
.response-card a,
.contact-mini a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    font-size: 13px;
}

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

@media (max-width: 900px) {
    .main {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 860px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .app-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .app-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 48px 16px 36px;
    }
    .section {
        padding: 36px 16px;
    }
    .page-wrap {
        padding: 36px 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
