/* ============================================
   FakeGuard — Premium Anti-Fake Landing Page
   Design System & Styles
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --bg-elevated: #1e1e2a;

    --text-primary: #f0f0f5;
    --text-secondary: #9898aa;
    --text-muted: #6b6b7d;

    --accent-primary: #6366f1;
    --accent-secondary: #818cf8;
    --accent-tertiary: #06b6d4;
    --accent-glow: rgba(99, 102, 241, 0.3);

    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    --telegram: #0088cc;
    --telegram-hover: #006daa;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(99, 102, 241, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1, #06b6d4);
    --gradient-primary-hover: linear-gradient(135deg, #818cf8, #22d3ee);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.hidden {
    display: none !important;
}

/* === Typography === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-md {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    box-shadow: 0 0 30px var(--accent-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 12px;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-telegram {
    background: var(--telegram);
    color: white;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background: var(--telegram-hover);
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s infinite ease-in-out;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    top: 30%;
    left: -50px;
    animation-delay: -13s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    75% {
        transform: translate(20px, 10px);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.hero-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-tertiary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }

    50% {
        opacity: 0.8;
        height: 50px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === How It Works === */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    padding: 40px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 16px;
    right: 24px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent-secondary);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.step-connector {
    width: 64px;
    flex-shrink: 0;
    opacity: 0.4;
}

.steps-cta {
    text-align: center;
    margin-top: 48px;
}

/* === Check Form Section === */
.check-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.check-card {
    position: relative;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.check-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
    pointer-events: none;
}

.single-input-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integrated-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.integrated-input:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: rgba(255, 255, 255, 0.05);
}

.check-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    outline: none;
}

.check-input::placeholder {
    color: var(--text-muted);
}

.check-textarea {
    padding: 20px;
    resize: none;
    min-height: 100px;
}

.input-actions-bottom {
    display: flex;
    align-items: center;
    padding: 8px 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.attach-btn:hover {
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.1);
}

#image-preview-container {
    margin-top: 8px;
}

.image-preview-box {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.image-preview-box img {
    display: block;
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background var(--transition-fast);
}

.remove-image:hover {
    background: var(--danger);
}

.check-topics {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.topics-label {
    font-size: 13px;
    color: var(--text-muted);
}

.topic-chip {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.topic-chip:hover {
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.05);
}

/* === Result Section === */
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.result-header h2 {
    font-size: 24px;
    font-weight: 700;
}

/* Trust Gauge */
.trust-indicator {
    text-align: center;
    margin-bottom: 48px;
}

.trust-gauge {
    position: relative;
    width: 240px;
    margin: 0 auto 24px;
}

.gauge-svg {
    width: 100%;
}

.gauge-fill {
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-value {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.gauge-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--warning);
}

.gauge-percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--warning);
}

.gauge-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.trust-scale {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.scale-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.scale-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

.scale-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.scale-item.reliable .scale-dot {
    background: var(--success);
}

.scale-item.suspicious .scale-dot {
    background: var(--warning);
}

.scale-item.fake .scale-dot {
    background: var(--danger);
}

/* Analysis Blocks */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.analysis-block {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    transition: all var(--transition-normal);
}

.analysis-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-light);
}

.analysis-block[data-severity="warning"] {
    border-left: 3px solid var(--warning);
}

.analysis-block[data-severity="danger"] {
    border-left: 3px solid var(--danger);
}

.analysis-block[data-severity="info"] {
    border-left: 3px solid var(--info);
}

.analysis-icon {
    flex-shrink: 0;
    color: var(--text-muted);
}

.analysis-block[data-severity="warning"] .analysis-icon {
    color: var(--warning);
}

.analysis-block[data-severity="danger"] .analysis-icon {
    color: var(--danger);
}

.analysis-block[data-severity="info"] .analysis-icon {
    color: var(--info);
}

.analysis-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.analysis-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.detail-row.warning {
    color: var(--warning);
}

.detail-row.danger {
    color: var(--danger);
}

.detail-icon {
    flex-shrink: 0;
    font-size: 14px;
}

.source-score {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.score-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger), var(--warning));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.score-value {
    font-weight: 700;
    color: var(--danger);
}

/* Media Checks */
.media-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.media-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
}

.media-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.media-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.media-status.not-confirmed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.media-status.rumor {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.media-status.confirmed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

/* Flagged Block */
.flagged-block {
    grid-column: 1 / -1;
}

.flagged-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* === Telegram Section === */
.telegram-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.telegram-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.telegram-content .section-tag {
    margin-bottom: 16px;
}

.telegram-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.telegram-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.telegram-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.flow-dot.active {
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-glow);
}

.flow-arrow {
    color: var(--text-muted);
    font-size: 14px;
}

/* Phone Mockup */
.telegram-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    background: #1a1a2e;
    border-radius: 32px;
    padding: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #0a0a0f;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: #0e1621;
    border-radius: 20px;
    overflow: hidden;
}

.tg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #17212b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.tg-info {
    display: flex;
    flex-direction: column;
}

.tg-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.tg-status {
    font-size: 12px;
    color: var(--accent-tertiary);
}

.tg-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 280px;
}

.tg-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    position: relative;
}

.tg-message.bot {
    background: #182533;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.tg-message.user {
    background: #2b5278;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.tg-message p {
    font-size: 13px;
    line-height: 1.4;
    color: #e0e0e0;
    margin-bottom: 2px;
}

.tg-message.result-msg p {
    margin-bottom: 4px;
}

.tg-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    float: right;
    margin-top: 2px;
}

.tg-input {
    padding: 12px 16px;
    background: #17212b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-secondary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* === Check Types === */
.check-types-section {
    background: var(--bg-secondary);
}

.check-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: default;
}

.type-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.type-card.special {
    border-color: var(--border-accent);
    background: rgba(99, 102, 241, 0.05);
}

.type-emoji {
    font-size: 32px;
}

.type-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: white;
}

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

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
}

.pricing-card.popular .price-amount {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.check-icon {
    color: var(--success);
    font-weight: 700;
}

.pricing-features li.disabled .check-icon {
    color: var(--text-muted);
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* === Footer === */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom span {
    font-size: 13px;
    color: var(--text-muted);
}

/* === Animations (Scroll Reveal) === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === Loading Animation === */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === Demo Info Card (Question / Image / Topic results) === */
.demo-info-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.demo-info-icon {
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-secondary);
}

.demo-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.demo-info-text {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.demo-info-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 28px 0;
}

.demo-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.demo-question-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
}

.demo-question-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.demo-question-box p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.4;
    font-style: italic;
}

/* Suggestions */
.demo-suggestions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-suggestion {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.demo-suggestion:hover {
    border-color: var(--border-accent);
    background: rgba(99, 102, 241, 0.03);
}

.demo-suggestion>span {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-suggestion strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.demo-suggestion p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Topic Headlines */
.topic-headlines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.topic-headline {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.topic-headline:hover {
    border-color: var(--border-light);
}

.topic-headline-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.topic-headline-top h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.topic-score {
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.topic-headline-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topic-source {
    font-size: 12px;
    color: var(--text-muted);
}

/* Info Note */
.demo-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.demo-info-note>span {
    font-size: 18px;
    flex-shrink: 0;
}

.demo-info-note p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Success severity */
.analysis-block[data-severity="success"] {
    border-left: 3px solid var(--success);
}

.analysis-block[data-severity="success"] .analysis-icon {
    color: var(--success);
}

/* Shake Animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        width: 40px;
    }

    .step-card {
        max-width: 100%;
    }

    .telegram-card {
        grid-template-columns: 1fr;
    }

    .telegram-mockup {
        order: -1;
    }

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

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

    .check-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open,
    .nav-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border-subtle);
        gap: 16px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .check-card {
        padding: 24px;
    }

    .check-tabs {
        flex-direction: column;
        width: 100%;
    }

    .telegram-content .section-title {
        text-align: center;
    }

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

    .telegram-flow {
        justify-content: center;
    }

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

    .result-card {
        padding: 24px;
    }

    .result-header {
        flex-direction: column;
        gap: 16px;
    }

    .result-actions {
        flex-direction: column;
    }

    .trust-scale {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .check-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hide-mobile {
        display: none;
    }

    .demo-info-card {
        padding: 24px;
    }

    .demo-info-card h3 {
        font-size: 18px;
    }

    .topic-headline-top {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .check-types-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .type-card {
        padding: 20px 12px;
    }
}

/* === Loading Spinner === */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

/* === Integrated Input (unified form) === */
.integrated-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integrated-input .check-textarea {
    min-height: 80px;
    resize: vertical;
}

.input-actions-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md, 10px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attach-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
}

.image-preview-box {
    position: relative;
    display: inline-block;
    margin-top: 12px;
}

.image-preview-box img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--danger);
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.single-input-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hidden {
    display: none !important;
}

/* === Two Check Buttons Row === */
.check-buttons-row {
    display: flex;
    gap: 12px;
}

.check-buttons-row .btn {
    flex: 1;
    min-height: 52px;
}

.btn-check-news {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-check-ask {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-check-ask:hover {
    border-color: var(--accent-tertiary);
    background: rgba(6, 182, 212, 0.05);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled::after {
    display: none;
}

/* === Support Section === */
.support-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.support-card {
    position: relative;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-fields {
    display: flex;
    gap: 12px;
}

.support-fields .check-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.support-fields .check-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
    outline: none;
}

.support-form .check-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.support-form .check-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
    outline: none;
}

/* === Trending Fakes Toast === */
.trending-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-glow);
    z-index: 9999;
    animation: toastSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes toastSlideIn {
    from { transform: translateY(100px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.trending-toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(99, 102, 241, 0.05);
}

.trending-toast-header span {
    font-weight: 600;
    font-size: 14px;
}

.trending-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    transition: color var(--transition-fast);
}

.trending-close:hover {
    color: var(--text-primary);
}

.trending-toast-body {
    padding: 14px 18px;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.trending-item + .trending-item {
    border-top: 1px solid var(--border-subtle);
}

.trending-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.trending-text {
    flex: 1;
}

/* === Loading Spinner === */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* === Mobile: Comprehensive Responsive Fixes === */
@media (max-width: 640px) {
    .check-buttons-row {
        flex-direction: column;
    }
    
    .support-fields {
        flex-direction: column;
    }
    
    .trending-toast {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
    }
    
    .support-card {
        padding: 28px 20px;
    }

    /* Global text overflow fix */
    body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    /* Navbar */
    .nav-container {
        padding: 0 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 8px;
    }

    /* Hero */
    .section-title {
        font-size: clamp(22px, 6vw, 32px);
        word-break: break-word;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Check form */
    .check-textarea, .check-input {
        font-size: 14px !important;
        min-height: 80px;
    }

    .integrated-input {
        border-radius: var(--radius-md);
    }

    /* Result Section */
    .result-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .result-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .result-actions {
        flex-direction: column;
        gap: 10px;
    }

    .result-actions .btn {
        width: 100%;
    }

    /* Analysis blocks — prevent text overflow */
    .analysis-block {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow: hidden;
    }

    .analysis-content {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .analysis-content p,
    .analysis-content div,
    .analysis-content h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .analysis-content a {
        word-break: break-all;
    }

    .analysis-content ul {
        padding-left: 16px;
    }

    .analysis-content li {
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .analysis-grid {
        gap: 16px;
    }

    /* Trust Gauge */
    .trust-indicator {
        padding: 16px;
    }

    .trust-scale {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .gauge-svg {
        max-width: 200px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    /* Check types */
    .check-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Telegram flow */
    .telegram-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .telegram-card {
        padding: 28px 16px;
    }

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

    /* Buttons */
    .btn-lg, .btn-xl {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Topic chips */
    .check-topics {
        flex-wrap: wrap;
        gap: 6px;
    }

    .topic-chip {
        font-size: 12px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Tablet adjustments */
@media (max-width: 900px) and (min-width: 641px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 80px 0;
    }
}