:root {
    --primary: #c9a227;
    --primary-dark: #8b6914;
    --primary-gradient: linear-gradient(135deg, #a8843a 0%, #e8c547 55%, #f0d875 100%);
    --accent-emerald: #059669;
    --surface-dark: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --background: #fefdfb;
    --background-alt: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.1);
    --radius: 16px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-full {
    width: 100%;
    padding: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 251, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    font-size: clamp(16px, 3.2vw, 26px);
    font-weight: 900;
    color: var(--surface-dark);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.logo-site {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.mobile-nav-item {
    display: none;
}

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

.btn-sign-in {
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-sign-in:hover {
    background: var(--background-alt);
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: #1a1508;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 132, 58, 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

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

.btn-outline {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--background-alt);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: 1px 1px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #fefdfb 45%, #fffef9 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 560px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero-tagline {
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 34em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 32px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-alt);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    font-size: 14px;
    color: var(--text-secondary);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    font-size: 16px;
    letter-spacing: 2px;
    color: #FFC107;
}

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

.hero-right {
    position: relative;
    height: 600px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.protection-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.card-icon {
    font-size: 28px;
    color: var(--primary-dark);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-stats {
    margin-bottom: 20px;
}

.stat-big {
    font-size: 56px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

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

.progress-bar {
    height: 8px;
    background: var(--background-alt);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 100px;
    transition: width 1s ease;
}

.stat-footer {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.floating-card {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1s;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-width: 200px;
}

.mini-icon {
    width: 40px;
    height: 40px;
    background: var(--background-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: var(--text-primary);
}

.mini-icon.success {
    background: #D1FAE5;
    color: #10B981;
}

.mini-content {
    flex: 1;
}

.mini-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mini-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stats-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.platforms-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.platforms-scroll-container {
    position: relative;
    width: 100%;
    margin: 60px 0 40px;
    overflow: hidden;
}

.platforms-scroll-container::before,
.platforms-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.platforms-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.platforms-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.platforms-scroll {
    display: flex;
    width: 100%;
}

.platforms-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.platforms-scroll-container:hover .platforms-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.platform-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 20px;
}

.platform-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) opacity(0.3);
    transition: all 0.3s ease;
}

.platform-item:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.1);
}

.platform-item-text {
    padding: 0 12px;
}

.platform-item-text span {
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.platform-item-text:hover span {
    color: var(--primary-dark);
    transform: scale(1.06);
}

.platforms-note {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 40px;
}

.platforms-grid {
    display: none;
}

.platform-card,
.platform-logo,
.platform-placeholder {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-hero {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 15%, #F9F9F9 85%, #F9FAFB 100%);
    padding: 100px 0;
    overflow: visible;
    min-height: 1000px;
    display: flex;
    align-items: center;
}

.features-bg-orbs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(232, 197, 71, 0.35);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(5, 150, 105, 0.12);
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(251, 243, 219, 0.95);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.features-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
}

.features-logo {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.features-desc-text {
    max-width: 300px;
    font-size: 14px;
    color: #4B5563;
    text-align: right;
    line-height: 1.5;
}

.features-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.features-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.cards-fan-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .cards-fan-wrapper {
        width: 100%;
        min-width: 100%;
        margin: 0 auto;
        flex-shrink: 0;
    }
}

.card-group {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0; 
    height: 0;
}

.fan-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 300px;
    perspective: 1000px;
    opacity: 0;
    will-change: transform, opacity, z-index;
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.fan-card:hover {
    z-index: 100 !important;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s, box-shadow 0.3s;
    transform-style: preserve-3d;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.fan-card:hover .card-inner {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.2);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-front {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1A1A1A;
    border-color: rgba(255, 255, 255, 0.5);
}

.card-back {
    background: var(--primary-gradient);
    color: #1a1508;
    transform: rotateY(180deg);
    padding: 20px;
}

.card-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.card-front h3 {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 4px;
}

.card-back h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1508;
}

.card-back p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(26, 21, 8, 0.92);
}

.features-hero-title {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-top: auto;
    letter-spacing: -1px;
}

.how-section-process {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #F9FAFB 85%, #FFFFFF 100%);
    overflow: hidden;
}

#process-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.how-container {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
}

.process-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.input-card {
    border-left: 3px solid var(--primary);
}

.input-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.input-card .card-icon {
    background: rgba(201, 162, 39, 0.15);
    color: var(--primary-dark);
}

.output-card {
    border-left: 3px solid var(--primary);
}

.output-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.output-card .card-icon {
    background: rgba(201, 162, 39, 0.15);
    color: var(--primary-dark);
}

.engine-hub {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-core {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 5;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.hub-capsule {
    background: var(--background-alt);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    white-space: nowrap;
}

.hub-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--border);
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(168, 132, 58, 0.35);
    animation: pulse 3s infinite ease-in-out;
}

.ring-2 {
    width: 240px;
    height: 240px;
    border-color: rgba(168, 132, 58, 0.28);
    border-style: dashed;
    animation: rotate 20s infinite linear;
}

.ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 0, 0, 0.05);
    animation: pulse 4s infinite ease-in-out 1s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .engine-hub {
        transform: scale(0.8);
    }

    #process-canvas {
        opacity: 0.5;
    }
}

.monitoring-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.monitoring-section .section-header {
    padding: 0 24px;
    margin-bottom: 60px;
}

.monitoring-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.monitoring-scroll-container::before,
.monitoring-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.monitoring-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.monitoring-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.monitoring-scroll {
    width: 100%;
    overflow: hidden;
}

.monitoring-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: scroll-monitoring 35s linear infinite;
    width: fit-content;
}

.monitoring-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-monitoring {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.monitor-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.monitor-badge i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.monitor-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.monitor-badge:hover i {
    transform: scale(1.2);
}

.monitor-badge.reddit {
    background: #FF4500;
    color: white;
    border-color: #FF4500;
}

.monitor-badge.telegram {
    background: #0088CC;
    color: white;
    border-color: #0088CC;
}

.monitor-badge.discord {
    background: #5865F2;
    color: white;
    border-color: #5865F2;
}

.monitor-badge.twitter {
    background: #000000;
    color: white;
    border-color: #000000;
}

.monitor-badge.google {
    background: #4285F4;
    color: white;
    border-color: #4285F4;
}

.monitor-badge.yandex {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.monitor-badge.vk {
    background: #0077FF;
    color: white;
    border-color: #0077FF;
}

.monitor-badge.special {
    background: var(--primary-gradient);
    color: #1a1508;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 132, 58, 0.35);
}

.monitor-badge.special:hover {
    box-shadow: 0 6px 20px rgba(168, 132, 58, 0.45);
}

.monitoring-grid {
    display: none;
}

.monitor-card,
.monitor-icon,
.monitor-name,
.monitoring-stats {
    display: none;
}

.pricing-section {
    padding: 120px 0;
    background: var(--background);
}

.pricing-vertical-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-content {
    flex: 1;
    padding: 40px;
    border-right: 1px solid var(--border);
}

.pricing-row-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-row-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.pricing-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active:after {
    transform: scaleX(1);
}

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

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.tab-inner-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.price-tag {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.2;
}

.price-tag .period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-tag .or-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0 4px;
}

.simple-list {
    list-style: none;
    margin-top: 16px;
}

.simple-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.simple-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.pricing-action {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--background-alt);
}

.brand-protection-section {
    margin-top: 80px;
    text-align: center;
}

.brand-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.brand-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 160px;
}

.brand-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.brand-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
    }
    
    .pricing-content {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px;
    }
    
    .pricing-action {
        width: 100%;
        padding: 24px;
    }
    
    .pricing-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 10px 16px;
    }
    
    .brand-grid {
        gap: 24px;
    }
    
    .brand-item {
        width: 140px;
    }
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fffef9 0%, #f8fafc 100%);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}

.faq-q {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.faq-a {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 120px 0;
    background: var(--background-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.info-text {
    flex: 1;
}

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

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #10B981;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #EF4444;
    display: block;
}

.footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.company-details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.company-details p {
    margin-bottom: 4px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

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

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        height: auto;
        z-index: 999;
    align-items: center;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .mobile-nav-item {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-nav-item a {
        display: block;
        padding: 12px;
        font-weight: 600;
    }

    .mobile-nav-item:last-child a {
        background: var(--primary-gradient);
        color: #1a1508;
        border-radius: 100px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .protection-card {
        width: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .platforms-track {
        gap: 60px;
    }
    
    .platform-item {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-icon {
    width: 56px;
    height: 56px;
    background: var(--background-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cookie-description a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-accept {
    background: var(--primary-gradient);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 132, 58, 0.35);
}

.btn-decline {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-decline:hover {
    background: var(--background-alt);
    border-color: var(--text-primary);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .cookie-title {
        font-size: 16px;
    }
    
    .cookie-description {
        font-size: 13px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 60px 0;
        overflow: visible;
    }

    .features-container {
        overflow: hidden;
    }

    .cards-fan-wrapper {
        height: auto;
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 20px 24px 40px;
        justify-content: flex-start;
        align-items: stretch;
        scroll-snap-type: x mandatory;
        margin: 0 -24px 40px;
        width: calc(100% + 48px);
        -webkit-overflow-scrolling: touch;
        min-width: auto;
    }

    .cards-fan-wrapper::-webkit-scrollbar {
        display: none;
    }
    .cards-fan-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .card-group {
        position: static;
        display: contents;
        width: auto;
        height: auto;
    }

    .fan-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        width: 280px;
        height: 360px;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 !important;
    }

    .card-inner {
        transform: none;
        transition: transform 0.6s;
    }
    
    .fan-card:hover .card-inner {
        transform: none;
    }

    .fan-card.is-flipped .card-inner {
        transform: rotateY(180deg);
    }

    .card-front, .card-back {
        backface-visibility: hidden;
    }
    
    .features-top-bar {
        padding: 0 24px;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .features-desc-text {
        text-align: center;
        margin: 0 auto;
    }

    .features-hero-title {
        font-size: 40px;
        padding: 0 24px;
    }
}
