/* Design System & Tokens (Modern Corporate Light Theme) */
:root {
    --bg-primary: #ffffff;      /* Pure White */
    --bg-secondary: #f8fafc;    /* Light Slate Grey */
    --bg-tertiary: #f1f5f9;     /* Light Grey */
    --border: #e2e8f0;          /* Clean Slate Border */
    --text-main: #0f172a;       /* Slate Navy Dark Text */
    --text-muted: #475569;      /* Slate Muted Text */
    --accent: #2563eb;          /* Royal Blue Accent */
    --accent-hover: #1d4ed8;    /* Darker Royal Blue */
    --accent-rgb: 37, 99, 235;
    --radius: 12px;
    --radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* New Premium Gradients */
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --accent-gradient-hover: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
    --glow-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35), 0 0 15px rgba(6, 182, 212, 0.15);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.btn-secondary:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background-color: var(--bg-secondary);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-tg {
    background-color: #229ed9;
    color: #ffffff;
    gap: 8px;
}

.btn-tg:hover {
    background-color: #1e87b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-icon {
    height: 38px;
    width: 38px;
    object-fit: cover;
    object-position: 50% 12%;
    border-radius: 8px;
    background-color: transparent;
    transition: var(--transition);
}

.logo-icon:hover {
    transform: scale(1.08);
}

.footer-logo-icon {
    height: 72px;
    width: 72px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid #1e293b;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Animated Glowing Background Blobs */
.glow-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 100%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: blob-bounce 18s infinite alternate ease-in-out;
}

.glow-blob-1 {
    top: -50px;
    left: -150px;
}

.glow-blob-2 {
    bottom: -50px;
    right: -150px;
    animation-delay: -6s;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 100%);
}

@keyframes blob-bounce {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(1.15); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

.badge-new {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 20%, #2563eb 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.stat-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* Sections Base */
.steps-section, .calculator-section, .reviews-section, .faq-section, .quiz-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.1);
}

.step-num {
    font-size: 54px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.04) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 12px;
    right: 20px;
    transition: var(--transition);
}

.step-card:hover .step-num {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(6, 182, 212, 0.15) 100%);
    -webkit-background-clip: text;
    transform: scale(1.1) translateY(-2px);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 16px;
    color: var(--text-main);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.calc-wrapper {
    display: flex;
    justify-content: center;
}

.calc-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    padding: 40px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.calc-field {
    margin-bottom: 28px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.calc-bold-val {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    margin: 12px 0 6px 0;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.2);
    transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    padding: 0 4px;
}

.calc-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.type-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 8px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.type-btn:hover {
    border-color: var(--accent);
    color: var(--text-main);
    background: var(--bg-tertiary);
}

.type-btn.active {
    background: rgba(var(--accent-rgb), 0.05);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent);
}

.type-name {
    font-size: 12px;
    font-weight: 600;
}

.type-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.calc-result-box {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
    text-align: center;
    border: 1px dashed var(--border);
}

.result-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.result-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
}

.ruble {
    color: var(--accent);
}

.result-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.calc-cta-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reviews Horizontal Slider Section */
.reviews-section {
    background-color: var(--bg-primary);
}

.reviews-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
    max-width: 100%;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 20px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}

.review-slide-card {
    flex: 0 0 380px; /* Card width */
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-slide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -6px rgba(0, 0, 0, 0.05);
}

.review-slide-card.screenshot-card {
    padding: 0;
    overflow: hidden;
    height: 520px;
    width: auto;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: var(--transition);
}

.review-slide-card.screenshot-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
}

.review-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: inherit;
    display: block;
}

/* Pagination Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.reviews-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dots .dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.review-slide-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.review-city {
    font-size: 11px;
    color: var(--text-muted);
}

.rating {
    color: #f1c40f;
    font-size: 12px;
    margin-top: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
    align-self: flex-end;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
    background: var(--bg-secondary);
    color: var(--accent);
    border-color: var(--text-muted);
}

.reviews-tg-promo {
    margin-top: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.tg-promo-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tg-promo-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 15px;
}

/* Quiz Section (Simplified Form) */
.quiz-section {
    background-color: var(--bg-primary);
}

.quiz-container-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid rgba(37, 99, 235, 0.06);
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    padding: 48px 40px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.quiz-container-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.quiz-header {
    text-align: center;
    margin-bottom: 28px;
}

.quiz-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.quiz-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Forms styling */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

input[type="text"] {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    color: var(--text-main);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 0 10px rgba(6, 182, 212, 0.1);
}

.submit-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: var(--radius);
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

/* Success Screen */
.quiz-success-screen {
    text-align: center;
    padding: 10px 0;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--accent);
    width: 72px;
    height: 72px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.quiz-success-screen h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.quiz-success-screen p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.company-info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: flex-start;
}

.company-desc h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-main);
}

.company-desc p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.company-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-list li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.details-list li span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.details-list li strong {
    color: var(--text-main);
    font-size: 15px;
}

.details-list li strong a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.details-list li strong a:hover {
    color: var(--accent-hover);
}

/* Scam Check Section */
.scam-check-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.scam-check-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    box-shadow: 0 20px 45px -15px rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.scam-check-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.scam-header {
    text-align: center;
    margin-bottom: 32px;
}

.scam-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: var(--text-main);
}

.scam-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-group-row-check {
    display: flex;
    gap: 16px;
}

.form-group-row-check input {
    flex-grow: 1;
}

.check-btn {
    flex-shrink: 0;
    font-weight: 700;
    padding: 0 32px;
}

.scam-result-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.scam-result-box.verified {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.scam-result-box.verified .result-icon {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
}

.scam-result-box.verified .result-title {
    color: #065f46;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.scam-result-box.verified .result-desc {
    color: #047857;
    font-size: 14px;
}

.scam-result-box.fake {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
}

.scam-result-box.fake .result-icon {
    color: #ef4444;
    font-size: 24px;
    font-weight: bold;
}

.scam-result-box.fake .result-title {
    color: #991b1b;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.scam-result-box.fake .result-desc {
    color: #b91c1c;
    font-size: 14px;
}

/* Footer (Dark Anchoring Footer) */
.site-footer {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 60px 0;
    color: #94a3b8;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
}

.site-footer .logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }

    /* Header Navigation */
    .site-header {
        padding: 12px 0;
    }
    .nav-links {
        display: none;
    }
    .logo {
        font-size: 22px;
        gap: 8px;
    }
    .logo-icon {
        height: 38px;
        width: 38px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero-section {
        padding: 120px 0 60px 0;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        gap: 16px;
        padding-top: 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-num {
        font-size: 16px;
    }
    .stat-text {
        font-size: 10px;
        text-align: center;
    }

    /* Sections */
    .steps-section, .calculator-section, .reviews-section, .faq-section, .quiz-section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }
    .section-header p {
        font-size: 14px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-card {
        padding: 24px;
    }
    .step-num {
        font-size: 36px;
        top: 12px;
        right: 16px;
    }

    /* Calculator */
    .calc-card {
        padding: 24px 16px;
    }
    .calc-type-selector {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .type-btn {
        padding: 12px 16px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        text-align: left;
    }
    .type-name {
        font-size: 13px;
    }
    .type-price {
        font-size: 13px;
    }
    .calc-result-box {
        margin: 24px 0;
        padding: 16px;
    }
    .result-value {
        font-size: 28px;
    }

    /* Reviews Slider */
    .review-slide-card {
        flex: 0 0 85vw;
        max-width: 320px;
        padding: 20px;
    }
    .review-slide-card.screenshot-card {
        flex: 0 0 auto;
        max-width: 85vw;
        height: 440px;
        width: auto;
        padding: 0;
    }
    .reviews-tg-promo {
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 16px;
    }
    .tg-promo-content h3 {
        font-size: 18px;
    }

    /* FAQ Section */
    .faq-question {
        font-size: 15px;
        padding: 16px 0;
    }
    .faq-answer p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Quiz Form */
    .quiz-container-card {
        padding: 24px 16px;
    }
    .quiz-header h2 {
        font-size: 22px;
    }
    .quiz-header p {
        font-size: 13px;
    }

    /* Company Info Section */
    .company-info-section {
        padding: 60px 0;
    }
    .company-desc h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .company-details h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .details-list {
        gap: 12px;
    }

    /* Scam Check Section */
    .scam-check-section {
        padding: 60px 0;
    }
    .scam-check-card {
        padding: 24px 16px;
    }
    .scam-header h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .form-group-row-check {
        flex-direction: column;
        gap: 12px;
    }
    .check-btn {
        width: 100%;
        padding: 14px;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: center;
    }
    .stat-item {
        border-bottom: 1px dashed var(--border);
        width: 100%;
        padding-bottom: 12px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
