﻿:root {
    --primary: #FF4400;
    --primary-light: #FF6600;
    --primary-dark: #CC3300;
    --primary-glow: rgba(255, 68, 0, 0.4);
    --primary-glow-subtle: rgba(255, 68, 0, 0.15);

    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 68, 0, 0.3);

    --header-height: 70px;
    --container-width: 1100px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --danger: #ff5252;
    --warning: #ffab40;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 4px 20px var(--primary-glow);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 800px;
    max-height: 800px;
    background: url('../img/ninjabr-ferramentas-premium-logo.webp') center/contain no-repeat;
    opacity: 0.04;
    z-index: 50;
    pointer-events: none;
    filter: grayscale(100%);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(8, 8, 12, 0.78);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    background: rgba(8, 8, 12, 0.92);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 68, 0, 0.2));
    transition: transform var(--transition-fast);
}

.header-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 68, 0, 0.4));
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: all var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    min-height: 85vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, var(--bg-primary) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* ========== BUTTONS (matching ninjabr.net style) ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8800 0%, #ff4400 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 68, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 68, 0, 0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-danger {
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 82, 82, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 82, 82, 0.45);
}

/* ========== ALERT BOX ========== */
.alert-box {
    background: rgba(255, 82, 82, 0.06);
    border: 1px solid rgba(255, 82, 82, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 32px 0;
    box-shadow: var(--shadow-sm);
}

.alert-box i {
    color: var(--danger);
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.alert-box h3 {
    color: var(--danger);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.alert-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== OFFICIAL SITES ========== */
.official-sites {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.official-sites .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
}

.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.site-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow-subtle), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.site-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 30px var(--primary-glow-subtle);
}

.site-card:hover::before {
    opacity: 1;
}

.site-card .icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.site-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.site-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.site-card .btn {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ========== SECTION GENERICS ========== */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== BENEFITS GRID ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow-subtle);
}

.benefit-card .icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    background: var(--primary-glow-subtle);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.benefit-card:hover .icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 15px var(--primary-glow-subtle);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 56px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, var(--primary-glow-subtle), transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0 28px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin: 0 auto 24px;
    opacity: 0.9;
    transition: transform var(--transition-fast);
}

.footer-logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-primary);
    font-size: 0.8rem;
    line-height: 1.6;
}



@keyframes floatingPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    padding: calc(var(--header-height) + 40px) 0 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, var(--primary-glow-subtle), transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== CONTENT (inner pages) ========== */
.content-section {
    padding: 48px 0;
}

.content-block {
    max-width: 760px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 36px 0 14px;
    line-height: 1.4;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin-bottom: 28px;
}

.content-block ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.7;
}

.content-block ul li:last-child {
    border-bottom: none;
}

.content-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.92rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.comparison-table td {
    background: var(--bg-card);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--primary);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--danger);
    font-weight: 700;
}

/* ========== GUARANTEE BADGE ========== */
.guarantee-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    margin: 36px auto;
    max-width: 500px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.guarantee-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 30px var(--primary-glow-subtle);
}

.guarantee-box i {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.guarantee-box h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.guarantee-box p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========== ONDE COMPRAR CARDS ========== */
.buy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
}

.buy-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 44px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.buy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow-subtle), transparent 60%);
}

.buy-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 40px var(--primary-glow-subtle);
}

.buy-card .selo {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.buy-card .selo img {
    height: 48px;
}

.buy-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.buy-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.buy-card .btn {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== KEYFRAMES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 6px;
}

.breadcrumb .current {
    color: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        padding-top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.85rem;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .alert-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 24px 20px;
    }

    .sites-grid,
    .buy-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .floating-cta {
        display: none !important;
    }

    .comparison-table {
        font-size: 0.82rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }

    .page-hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .page-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .content-block h2 {
        font-size: 1.2rem;
        margin-top: 36px;
    }

    .cta-section {
        padding: 56px 0;
    }

    .guarantee-box {
        padding: 28px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .site-card {
        padding: 28px 20px;
    }

    .buy-card {
        padding: 32px 20px;
    }
}

/* --- Catalog Section (SEO) --- */
.catalog-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.catalog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.catalog-card:hover::before {
    opacity: 1;
}

.catalog-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.catalog-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
}

.catalog-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.catalog-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.catalog-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}