﻿/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F9F9F9;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f9f9;
    --border: #e5e5e5;
    --border-hover: #d4d4d4;
    --text: #2F2D39;
    --text-secondary: #6E6986;
    --accent: #e82353;
    --accent-light: #ff6b8a;
    --accent-glow: rgba(232, 35, 83, 0.2);
    --gradient: linear-gradient(135deg, #e82353, #ff6b8a);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Spacing */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 20px;
    --s-6: 24px;
    --s-8: 32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;
    --s-20: 80px;
    --s-section: 120px;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-variant-numeric: lining-nums;
    accent-color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

h1, h2, h3, h4 { line-height: 1.3; }

h1 { font-size: 72px; }
h2 { font-size: 60px; }
h3 { font-size: 36px; }
h4 { font-size: 24px; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--s-10);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    z-index: 1100;
    box-shadow: 0 0 10px var(--accent-glow);
    pointer-events: none;
}

/* ===== Custom Cursor ===== */
.custom-cursor {
    display: none;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.custom-cursor__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-glow);
}

.custom-cursor__ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.custom-cursor--hover .custom-cursor__ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
    opacity: 0.3;
}

.custom-cursor--hover .custom-cursor__dot {
    transform: translate(-50%, -50%) scale(1.5);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-4) var(--s-8);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn--primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
    font-size: 18px;
}

.btn--lg {
    padding: var(--s-5) var(--s-10);
    font-size: 18px;
    gap: var(--s-2);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn--full {
    width: 100%;
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--s-16);
}

.section-label {
    display: inline-block;
    padding: var(--s-2) var(--s-4);
    background: rgba(232, 35, 83, 0.08);
    border: 1px solid rgba(232, 35, 83, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--s-5);
}

.section-title {
    font-size: clamp(32px, 4.2vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: var(--s-4) auto 0;
}

.section-cta {
    text-align: center;
    margin-top: var(--s-12);
}

.section-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--s-4) 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 32px;
    width: auto;
}

.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1440px;
    margin: 0 auto;
    gap: var(--s-8);
    padding: var(--s-4) var(--s-10);
    z-index: 1001;
    pointer-events: none;
}

.header__nav > * {
    pointer-events: auto;
}

.header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.header__link--cta {
    padding: var(--s-2) var(--s-6);
    background: var(--gradient);
    color: #fff;
    border-radius: 8px;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s-1);
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Nav mobile-only elements (hidden on desktop) */
.nav__top {
    display: none;
}

.nav__tg {
    display: none;
}

/* Nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay--active {
    opacity: 1;
    pointer-events: all;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--s-section) 0 var(--s-20);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    will-change: transform;
}

.hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -300px;
    left: -250px;
    animation: glowPulseFaint 8s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: #ff6b8a;
    bottom: -100px;
    right: -50px;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes glowPulseFaint {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.2; }
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero__grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(232, 35, 83, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 35, 83, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    mask-image: radial-gradient(ellipse at center top, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 20%, transparent 70%);
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-16);
    align-items: center;
}

.hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-2) var(--s-5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 35, 83, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: var(--s-6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: dotPulse 2s ease-in-out infinite;
}


@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--s-6);
}

.hero__accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__scramble-char {
    color: var(--accent-light);
    opacity: 0.7;
    font-weight: 900;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--s-8);
}

.hero__actions {
    display: flex;
    gap: var(--s-4);
    flex-wrap: wrap;
    margin-bottom: var(--s-12);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--s-6);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-row {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.hero__stat-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero__stat-plus,
.hero__stat-unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-light);
}

.hero__stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Mockup */
.hero__right {
    position: relative;
}

.hero__mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 60px var(--accent-glow);
    border: 1px solid var(--border-hover);
    animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__browser {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3) var(--s-4);
    background: #1a1a26;
    border-bottom: 1px solid var(--border);
}

.hero__browser-dots {
    display: flex;
    gap: var(--s-2);
}

.hero__browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
}

.hero__browser-dots span:first-child { background: #ff5f57; }
.hero__browser-dots span:nth-child(2) { background: #febc2e; }
.hero__browser-dots span:last-child { background: #28c840; }

.hero__browser-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg);
    padding: var(--s-2) var(--s-4);
    border-radius: 6px;
}

.hero__browser-body {
    overflow: hidden;
}

.hero__browser-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-4) var(--s-5);
    background: #fff;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    animation: floatCard 6s ease-in-out infinite;
}

.hero__floating-card svg {
    color: #22c55e;
    flex-shrink: 0;
}

.hero__floating-card--1 {
    top: 20px;
    right: -30px;
    z-index: 2;
}

.hero__floating-card--2 {
    bottom: 40px;
    left: -20px;
    z-index: 2;
    animation-delay: 3s;
}

.hero__floating-card--2 svg {
    color: #1a1a1a;
}

.hero__floating-title {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__floating-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #22c55e;
}

.hero__floating-card--2 .hero__floating-value {
    color: #1a1a1a;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Portfolio ===== */
.portfolio {
    padding: var(--s-section) 0;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
}

.portfolio__card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.portfolio__card-img {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__card.visible .portfolio__card-img {
    clip-path: inset(0 0 0 0);
}

.portfolio__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.portfolio__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 35, 83, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio__card-link {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.portfolio__card-body {
    padding: var(--s-8);
}

.portfolio__card-tag {
    display: inline-block;
    padding: var(--s-1) var(--s-3);
    background: rgba(232, 35, 83, 0.08);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: var(--s-3);
}

.portfolio__card-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.portfolio__card-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--s-4);
}

.portfolio__card-url {
    font-size: 14px;
    color: var(--accent-light);
    font-weight: 500;
}

/* ===== Tech Stack Marquee ===== */
.marquee {
    padding: var(--s-10) 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(232, 35, 83, 0.02);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: var(--s-12);
    padding-right: var(--s-12);
}

.marquee__item {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    padding-left: var(--s-5);
}

.marquee__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Platforms (Tilda & TapTop) ===== */
.platforms {
    padding: var(--s-section) 0;
    background: none;
}

.platforms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
}

.platforms__card {
    padding: var(--s-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platforms__header {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-bottom: var(--s-2);
}

.platforms__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--angle), var(--accent), transparent 40%, var(--accent-light), transparent 70%, var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateBorder {
    to { --angle: 360deg; }
}

.platforms__icon {
    display: block;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platforms__card.visible .platforms__icon {
    transform: scale(1) rotate(0deg);
}

.platforms__name {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms__tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--s-4);
}

.platforms__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}

.platforms__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    font-size: 18px;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.platforms__card.visible .platforms__feature {
    opacity: 1;
    transform: translateX(0);
}

.platforms__card.visible .platforms__feature:nth-child(1) { transition-delay: 0.1s; }
.platforms__card.visible .platforms__feature:nth-child(2) { transition-delay: 0.2s; }
.platforms__card.visible .platforms__feature:nth-child(3) { transition-delay: 0.3s; }
.platforms__card.visible .platforms__feature:nth-child(4) { transition-delay: 0.4s; }
.platforms__card.visible .platforms__feature:nth-child(5) { transition-delay: 0.5s; }

.platforms__feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent-light);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platforms__card.visible .platforms__feature:nth-child(1) svg { transition-delay: 0.15s; }
.platforms__card.visible .platforms__feature:nth-child(2) svg { transition-delay: 0.25s; }
.platforms__card.visible .platforms__feature:nth-child(3) svg { transition-delay: 0.35s; }
.platforms__card.visible .platforms__feature:nth-child(4) svg { transition-delay: 0.45s; }
.platforms__card.visible .platforms__feature:nth-child(5) svg { transition-delay: 0.55s; }

.platforms__card.visible .platforms__feature svg {
    transform: scale(1);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--s-section) 0;
    background: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.testimonials__card {
    padding: var(--s-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonials__card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0;
    line-height: 1;
    transition: opacity 0.6s ease 0.3s;
    pointer-events: none;
}

.testimonials__card.visible::before {
    opacity: 0.08;
}

.testimonials__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--s-4);
}

.testimonials__stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.testimonials__text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: var(--s-4);
    font-style: italic;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: var(--s-3);
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonials__name {
    font-size: 15px;
    font-weight: 600;
}

.testimonials__role {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== Comparison ===== */
.comparison {
    padding: var(--s-section) 0;
}

.comparison__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--s-6);
    align-items: start;
}

.comparison__col {
    padding: var(--s-8) var(--s-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.comparison__col--custom {
    border-color: rgba(232, 35, 83, 0.2);
}

.comparison__heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--s-6);
    text-align: center;
}

.comparison__vs {
    align-self: center;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.comparison__row {
    margin-bottom: var(--s-5);
}

.comparison__row:last-child {
    margin-bottom: 0;
}

.comparison__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--s-2);
}

.comparison__bar-wrap {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.comparison__bar {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--s-3);
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison__bar span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.comparison__bar.animated span {
    opacity: 1;
}

.comparison__bar--low {
    background: linear-gradient(90deg, #2a2a3a, #3a3a4a);
}

.comparison__bar--high {
    background: var(--gradient);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== Who Is It For ===== */
.whois {
    padding: var(--s-section) 0;
}

.whois__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
}

.whois__card {
    padding: var(--s-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.whois__emoji {
    font-size: 40px;
    margin-bottom: var(--s-4);
    line-height: 1;
}

.whois__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.whois__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== Results / Numbers ===== */
.results {
    padding: var(--s-section) 0;
    background: none;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
    text-align: center;
}

.results__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results__circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: var(--s-5);
}

.results__circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.results__circle-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 6;
}

.results__circle-fill {
    fill: none;
    stroke: url(#gradientStroke);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.results__circle-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results__circle-value[data-suffix]::after {
    content: attr(data-suffix);
}

.results__label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--s-1);
}

.results__desc {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===== Advantages ===== */
.advantages {
    padding: var(--s-section) 0;
    background: none;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.advantages__card {
    padding: var(--s-8);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantages__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--angle), var(--accent), transparent 40%, var(--accent-light), transparent 70%, var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantages__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 35, 83, 0.08);
    border-radius: 12px;
    margin-bottom: var(--s-4);
    transform: scale(0) rotate(-180deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantages__card.visible .advantages__icon {
    transform: scale(1) rotate(0deg);
}

.advantages__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.advantages__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.advantages__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: var(--s-20) 0;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-8);
    padding: var(--s-12) var(--s-12);
    background: var(--gradient);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

.cta-banner__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-banner__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-banner__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 5s; }
.cta-banner__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 7s; }
.cta-banner__particles span:nth-child(3) { left: 45%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.cta-banner__particles span:nth-child(4) { left: 60%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; }
.cta-banner__particles span:nth-child(5) { left: 75%; top: 15%; animation-delay: 3s; animation-duration: 5.5s; }
.cta-banner__particles span:nth-child(6) { left: 85%; top: 50%; animation-delay: 1.5s; animation-duration: 6.5s; }
.cta-banner__particles span:nth-child(7) { left: 40%; top: 80%; animation-delay: 2.5s; animation-duration: 7.5s; }
.cta-banner__particles span:nth-child(8) { left: 90%; top: 30%; animation-delay: 0.8s; animation-duration: 5.8s; }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.cta-banner__title {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--s-2);
    background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255,255,255,0.4) 50%, #fff 60%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.cta-banner__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.cta-banner .btn--primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ===== Process ===== */
.process {
    padding: var(--s-section) 0;
}

.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 36px;
    width: 1px;
    height: var(--line-length, 100%);
    background: var(--border);
    z-index: 0;
}

.process__timeline::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 36px;
    width: 1px;
    height: var(--fill-px, 0px);
    background: var(--gradient);
    z-index: 0;
    box-shadow: 0 0 8px var(--accent-glow);
    transition: height 0.1s linear;
}

.process__step {
    display: flex;
    gap: var(--s-8);
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-bottom: var(--s-12);
}

.process__step:last-child {
    padding-bottom: 0;
}

.process__number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.process__step.visible .process__number {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.process__content {
    padding-top: var(--s-4);
}

.process__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.process__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== About ===== */
.about {
    padding: var(--s-section) 0;
    background: none;
}

.about__inner {
    display: flex;
    align-items: center;
    gap: var(--s-12);
    max-width: 900px;
    margin: 0 auto;
}

.about__avatar {
    flex: 0 0 33%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__avatar img {
    width: 100%;
    height: auto;
    display: block;
}

.about__title {
    font-size: 60px;
    font-weight: 800;
    margin: var(--s-3) 0 var(--s-4);
}

.about__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--s-6);
}

.about__facts {
    display: flex;
    gap: var(--s-8);
}

.about__fact {
    display: flex;
    flex-direction: column;
}

.about__fact-number {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__fact-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== Price ===== */
.price {
    padding: var(--s-section) 0;
    background: none;
}

.price__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: var(--s-6);
    align-items: start;
}

.price__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price__card--featured {
    border-color: var(--accent);
    box-shadow: 0 8px 40px var(--accent-glow);
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.price__from {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: var(--s-1);
    align-self: center;
}


.price__card-top {
    padding: var(--s-10) var(--s-8);
    text-align: center;
    background: none;
    border-bottom: 1px solid var(--border);
}

.price__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--s-2);
}

.price__value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price__currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
}


.price__meta {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--s-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
}

.price__meta-dot {
    color: var(--accent);
}

.price__period {
    font-size: 18px;
    color: var(--text-primary);
    margin-top: var(--s-1);
}

.price__features {
    list-style: none;
    padding: var(--s-6) var(--s-8);
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}

.price__feature {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.price__card.visible .price__feature {
    opacity: 1;
    transform: translateX(0);
}

.price__card.visible .price__feature:nth-child(1) { transition-delay: 0.1s; }
.price__card.visible .price__feature:nth-child(2) { transition-delay: 0.2s; }
.price__card.visible .price__feature:nth-child(3) { transition-delay: 0.3s; }
.price__card.visible .price__feature:nth-child(4) { transition-delay: 0.4s; }
.price__card.visible .price__feature:nth-child(5) { transition-delay: 0.5s; }
.price__card.visible .price__feature:nth-child(6) { transition-delay: 0.6s; }
.price__card.visible .price__feature:nth-child(7) { transition-delay: 0.7s; }
.price__card.visible .price__feature:nth-child(8) { transition-delay: 0.8s; }
.price__card.visible .price__feature:nth-child(9) { transition-delay: 0.9s; }

.price__feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent-light);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price__card.visible .price__feature:nth-child(1) svg { transition-delay: 0.15s; }
.price__card.visible .price__feature:nth-child(2) svg { transition-delay: 0.25s; }
.price__card.visible .price__feature:nth-child(3) svg { transition-delay: 0.35s; }
.price__card.visible .price__feature:nth-child(4) svg { transition-delay: 0.45s; }
.price__card.visible .price__feature:nth-child(5) svg { transition-delay: 0.55s; }
.price__card.visible .price__feature:nth-child(6) svg { transition-delay: 0.65s; }
.price__card.visible .price__feature:nth-child(7) svg { transition-delay: 0.75s; }
.price__card.visible .price__feature:nth-child(8) svg { transition-delay: 0.85s; }
.price__card.visible .price__feature:nth-child(9) svg { transition-delay: 0.95s; }

.price__card.visible .price__feature svg {
    transform: scale(1);
}

.price__card .btn {
    margin: 0 var(--s-8) var(--s-8);
    width: calc(100% - 64px);
}

/* ===== Guarantees ===== */
.guarantees {
    padding: var(--s-section) 0;
}

.guarantees__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
}

.guarantees__card {
    padding: var(--s-8) var(--s-6);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: border-color var(--transition), box-shadow var(--transition);
    will-change: transform;
    transform: translateZ(0);
}

.guarantees__card.visible {
    animation: gentleFloat 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.guarantees__card:nth-child(2).visible { animation-delay: 1.25s; }
.guarantees__card:nth-child(3).visible { animation-delay: 2.5s; }
.guarantees__card:nth-child(4).visible { animation-delay: 3.75s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateZ(0) translateY(0); }
    50% { transform: translateZ(0) translateY(-6px); }
}

.guarantees__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 35, 83, 0.08);
    border-radius: 50%;
    margin: 0 0 var(--s-5);
    position: relative;
}

.guarantees__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(0.8);
}

.guarantees__card.visible .guarantees__icon::after {
    animation: iconRipple 0.8s ease-out 0.3s forwards;
}

@keyframes iconRipple {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.guarantees__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.guarantees__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.guarantees__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== FAQ ===== */
.faq {
    padding: var(--s-section) 0;
    background: none;
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item--open {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-5) var(--s-6);
    background: none;
    border: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    gap: var(--s-4);
}

.faq__question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.faq__item--open .faq__question svg {
    transform: rotate(180deg);
    color: var(--accent-light);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq__answer p {
    padding: 0 var(--s-6) var(--s-5);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== Contact ===== */
.contact {
    padding: var(--s-section) 0;
}

.contact__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
}

.contact__field {
    position: relative;
}

.contact__label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 18px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    padding: 0;
    z-index: 1;
}

.contact__input:focus ~ .contact__label,
.contact__input:not(:placeholder-shown) ~ .contact__label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    color: var(--accent-light);
    background: var(--bg);
    padding: 0 var(--s-2);
}


.contact__input {
    width: 100%;
    padding: var(--s-4) var(--s-5);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 18px;
    font-family: inherit;
    line-height: 1;
    transition: var(--transition);
    outline: none;
}

.contact__input::placeholder {
    color: transparent;
}

.contact__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact__textarea {
    min-height: 120px;
    resize: vertical;
}

.contact__note {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: left;
}

.contact__radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.contact__radio-label {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.contact__radio {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.contact__radio:checked {
    border-color: var(--accent);
}

.contact__radio:checked::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent);
}

.contact__consent {
    display: flex;
    align-items: flex-start;
    gap: var(--s-2);
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

.contact__consent-check {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.contact__consent-check:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.contact__consent-check:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.contact__consent--error .contact__consent-check {
    border-color: #ff4444;
}

.contact__consent-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn--cta-hero {
    flex-direction: column;
    gap: 4px;
}

.btn__cta-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn__cta-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.75;
    white-space: nowrap;
}

.response-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text-secondary);
}

.contact__alt {
    text-align: center;
    padding-top: var(--s-8);
}

.contact__alt-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--s-4);
}

.contact__telegram {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-4) var(--s-8);
    background: #2AABEE;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.contact__telegram svg {
    width: 22px;
    height: 22px;
}

/* ===== Footer ===== */
.footer {
    padding: var(--s-8) 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-6);
}

.footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer__logo-img {
    height: 32px;
    width: auto;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: var(--s-6);
}

.footer__link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__right {
    display: flex;
    align-items: center;
    gap: var(--s-5);
    flex-shrink: 0;
}

.footer__tg {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__privacy {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 5px var(--s-4);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal--active {
    opacity: 1;
    pointer-events: all;
}

.modal__content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--s-12);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal--active .modal__content {
    transform: scale(1);
}

.modal__icon {
    width: 56px;
    height: 56px;
    color: #00c853;
    margin-bottom: var(--s-5);
}

.modal__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--s-2);
}

.modal__text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: var(--s-6);
}

/* Contact modal overrides */
.modal--contact {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.modal__content--form {
    max-width: 520px;
    padding: var(--s-8);
    text-align: left;
    position: relative;
}

.modal__close {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.modal__form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--s-6);
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.price__card--featured.fade-up.visible {
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Spring entrance for advantages */
.advantages__card {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.advantages__card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== Confetti ===== */
.confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.preloader--done {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo-img {
    width: 140px;
    height: auto;
    margin-bottom: var(--s-6);
    opacity: 0;
    transform: scale(0.8);
    animation: preloaderLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes preloaderLogoIn {
    0% { opacity: 0; transform: scale(0.8); filter: blur(4px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.preloader__bar {
    width: 50vw;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader__bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* ===== Noise/Grain Overlay ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.02;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== Mouse Spotlight ===== */
.mouse-spotlight {
    display: none;
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: none;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: none;
}

/* ===== Code Snippet ===== */
/* ===== Scroll Text Highlight ===== */
.scroll-highlight span {
    transition: color 0.15s ease, opacity 0.15s ease;
    color: var(--text-secondary);
    opacity: 0.4;
}

.scroll-highlight span.highlighted {
    color: var(--text);
    opacity: 1;
}

/* ===== Section Title Gradient Wipe ===== */
.section-title--reveal {
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 var(--reveal-progress, 0%), transparent calc(var(--reveal-progress, 0%) + 10%));
    mask-image: linear-gradient(90deg, #000 0%, #000 var(--reveal-progress, 0%), transparent calc(var(--reveal-progress, 0%) + 10%));
}

.section-title--reveal.revealed {
    -webkit-mask-image: none;
    mask-image: none;
}

/* ===== SVG Icon Draw ===== */
.advantages__icon svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1s ease 0.3s;
}

.advantages__card.visible .advantages__icon svg {
    stroke-dashoffset: 0;
}

/* Portfolio grid override (was horizontal scroll, reverted to grid) */

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee__track { animation: none; }
    .hero__particles { display: none; }
    .scroll-progress { display: none; }
    .custom-cursor { display: none; }
}

@media (max-width: 1240px) {
    .price__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .price__card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ===== Hover Effects (desktop only) ===== */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, input, textarea, select { cursor: none; }
    .custom-cursor { display: block; }
    .mouse-spotlight { display: block; }

    .btn--primary:hover {
        box-shadow: 0 8px 32px var(--accent-glow);
    }
    .btn--ghost:hover {
        border-color: var(--accent);
        color: var(--accent-light);
    }
    .btn--outline:hover {
        border-color: var(--accent);
        color: var(--accent-light);
    }
    .cta-banner .btn--primary:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .header__link:hover {
        color: var(--text);
    }
    .header__link--cta:hover {
        color: #fff;
        box-shadow: 0 4px 16px var(--accent-glow);
    }

    .portfolio__card:hover {
        border-color: var(--accent);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
    }
    .portfolio__card:hover .portfolio__card-img img {
        transform: scale(1.05);
    }
    .portfolio__card:hover .portfolio__card-overlay {
        opacity: 1;
    }

    .marquee__track:hover {
        animation-play-state: paused;
    }
    .marquee__item:hover {
        color: var(--accent-light);
    }

    .platforms__card:hover::before {
        opacity: 1;
    }
    .platforms__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px var(--accent-glow);
    }

    .testimonials__card:hover {
        border-color: var(--border-hover);
        transform: translateY(-2px);
    }

    .comparison__col:hover {
        border-color: var(--border-hover);
    }
    .comparison__col--custom:hover {
        border-color: var(--accent);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px var(--accent-glow);
    }

    .whois__card:hover {
        border-color: var(--border-hover);
        transform: translateY(-2px);
    }

    .advantages__card:hover::before {
        opacity: 1;
    }
    .advantages__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px var(--accent-glow);
    }

    .price__card--featured:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 60px var(--accent-glow);
        transform: translateY(-4px);
    }

    .guarantees__card:hover {
        border-color: var(--border-hover);
    }

    .faq__item:hover {
        border-color: var(--border-hover);
    }

    .contact__telegram:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
    }

    .footer__link:hover {
        color: var(--text-primary);
    }
    .footer__tg:hover {
        color: var(--accent-light);
    }
    .footer__privacy:hover {
        color: var(--accent-light);
        border-color: var(--accent);
    }

    .modal__close:hover {
        color: var(--text-primary);
        border-color: var(--text-secondary);
    }
}

/* ===== Responsive ===== */

/* --- 1024px: Small desktop / large tablet --- */
@media (max-width: 1024px) {
    .hero__content {
        gap: var(--s-10);
    }

    .hero__floating-card {
        padding: var(--s-2) var(--s-4);
    }

    .hero__floating-card--1 {
        right: -10px;
    }

    .hero__floating-card--2 {
        left: -10px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .whois__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .comparison__col {
        padding: var(--s-6) var(--s-6);
    }

    .portfolio__card-img {
        height: 220px;
    }
}

/* --- 768px: Tablets / Mobile landscape --- */
@media (max-width: 768px) {
    /* Heading scale */
    h1 { font-size: 44px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }

    /* Container */
    .container {
        padding: 0 var(--s-5);
    }

    /* Sections padding reduction */
    .portfolio,
    .platforms,
    .testimonials,
    .comparison,
    .whois,
    .results,
    .advantages,
    .process,
    .about,
    .price,
    .guarantees,
    .faq,
    .contact {
        padding: var(--s-20) 0;
    }

    .section-header {
        margin-bottom: var(--s-10);
    }

    .section-title {
        font-size: 36px;
    }

    .section-desc {
        font-size: 15px;
    }

    /* Header */
    .header__nav {
        position: fixed;
        top: 0;
        left: auto;
        right: 0;
        justify-content: flex-start;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--s-6) var(--s-6) var(--s-8);
        gap: var(--s-6);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        pointer-events: auto;
    }

    .header__nav--open {
        transform: translateX(0);
    }

    .nav__top {
        display: flex;
        align-items: center;
        width: 100%;
        padding-bottom: var(--s-5);
        border-bottom: 1px solid var(--border);
        margin-bottom: var(--s-2);
    }

    .nav__logo-img {
        height: 32px;
        width: auto;
    }

    .nav__close {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text);
        padding: var(--s-1);
        border-radius: var(--radius);
        transition: var(--transition);
    }

    .nav__tg {
        display: inline-flex;
        align-items: center;
        gap: var(--s-2);
        margin-top: auto;
        padding: var(--s-2) var(--s-6);
        background: #2AABEE;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        transition: var(--transition);
    }

    .nav__tg svg {
        width: 18px;
        height: 18px;
    }

    .nav__tg:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
    }


    .header__burger {
        display: flex;
    }

    .header__burger--active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__burger--active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger--active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero {
        padding: var(--s-20) 0 var(--s-16);
        min-height: auto;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: var(--s-10);
    }

    .hero__left {
        align-items: center;
        text-align: center;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn--primary {
        font-size: 16px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
    }

    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--s-4);
    }

    .hero__stat-number {
        font-size: 28px;
    }

    .hero__stat-label {
        font-size: 14px;
    }

    .hero__right {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__floating-card {
        padding: var(--s-2) var(--s-4);
        font-size: 13px;
    }

    .hero__floating-card--1 {
        right: 0px;
        top: 10px;
    }

    .hero__floating-card--2 {
        left: 0px;
        bottom: 20px;
    }

    .hero__floating-title {
        font-size: 12px;
    }

    .hero__floating-value {
        font-size: 15px;
    }

    /* Portfolio: disable horizontal scroll */
    .portfolio {
        padding: var(--s-20) 0;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
    }

    .portfolio__card-img {
        height: 220px;
    }

    .portfolio__card-body {
        padding: var(--s-6);
    }

    .portfolio__card-title {
        font-size: 24px;
    }

    .portfolio__card-desc {
        font-size: 16px;
    }

    /* Marquee */
    .marquee {
        padding: var(--s-6) 0;
    }

    .marquee__item {
        font-size: 14px;
        padding-left: var(--s-4);
    }

    .marquee__item::before {
        width: 6px;
        height: 6px;
    }

    .marquee__inner {
        gap: var(--s-8);
        padding-right: var(--s-8);
    }

    /* Platforms */
    .platforms__card {
        padding: var(--s-6);
    }

    .platforms__icon {
        width: 36px;
        height: 36px;
    }

    .platforms__name {
        font-size: 24px;
    }

    .platforms__feature {
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials__card {
        padding: var(--s-6);
    }

    .testimonials__text {
        font-size: 16px;
    }

    /* Comparison */
    .comparison__grid {
        grid-template-columns: 1fr;
        gap: var(--s-4);
    }

    .comparison__col {
        padding: var(--s-6) var(--s-5);
    }

    .comparison__vs {
        text-align: center;
        font-size: 24px;
    }

    .comparison__heading {
        font-size: 24px;
        margin-bottom: var(--s-5);
    }

    /* Whois */
    .whois__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .whois__card {
        padding: var(--s-6);
    }

    .whois__text {
        font-size: 16px;
    }

    /* Results */
    .results__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-6);
    }

    .results__circle {
        width: 100px;
        height: 100px;
    }

    .results__circle-value {
        font-size: 22px;
    }

    .results__label {
        font-size: 20px;
    }

    /* Advantages */
    .advantages__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .advantages__card {
        padding: var(--s-6);
    }

    .advantages__text {
        font-size: 16px;
    }

    /* CTA */
    .cta-banner {
        padding: var(--s-10) 0;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: var(--s-8) var(--s-6);
        gap: var(--s-6);
    }

    .cta-banner__title {
        font-size: 36px;
    }

    .cta-banner__text {
        font-size: 16px;
    }

    /* Process */
    .process__timeline::before {
        left: 27px;
    }

    .process__timeline::after {
        left: 27px;
    }

    .process__number {
        width: 56px;
        height: 56px;
        font-size: 16px;
    }

    .process__step {
        gap: var(--s-5);
        padding-bottom: var(--s-8);
    }

    .process__title {
        font-size: 24px;
    }

    .process__content {
        padding-top: var(--s-5);
    }

    .process__text {
        font-size: 16px;
    }

    /* About */
    .about__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about__avatar {
        width: 100%;
    }

    .about__avatar img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .about__title {
        font-size: 36px;
    }

    .about__text {
        font-size: 16px;
    }

    .about__facts {
        justify-content: center;
        gap: var(--s-6);
        flex-wrap: wrap;
    }

    .about__fact-number {
        font-size: 20px;
    }

    .about__fact-label {
        font-size: 14px;
    }

    /* Price */
    .price__grid {
        grid-template-columns: 1fr;
    }

    .price__card:last-child {
        max-width: 100%;
        margin: 0;
    }

    .price__card {
        max-width: 100%;
    }

    .price__card-top {
        padding: var(--s-8) var(--s-6);
    }

    .price__value {
        font-size: 44px;
    }

    .price__currency {
        font-size: 22px;
    }

    .price__features {
        padding: var(--s-6);
        gap: var(--s-4);
    }

    .price__feature {
        font-size: 16px;
    }

    .price__card .btn {
        margin: 0 var(--s-6) var(--s-6);
        width: calc(100% - 48px);
    }

    /* Guarantees */
    .guarantees__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-4);
    }

    .guarantees__card {
        padding: var(--s-6) var(--s-4);
        text-align: left;
    }

    .guarantees__icon {
        margin-left: 0;
    }

    .guarantees__title {
        font-size: 20px;
    }

    .guarantees__text {
        font-size: 16px;
    }

    /* FAQ */
    .faq__list {
        max-width: 100%;
    }

    .faq__question {
        padding: var(--s-4) var(--s-5);
        font-size: 16px;
        gap: var(--s-3);
    }

    .faq__answer p {
        padding: 0 var(--s-5) var(--s-4);
        font-size: 14px;
    }

    /* Contact */
    .contact__wrapper {
        max-width: 100%;
    }

    .contact__input {
        padding: var(--s-4) var(--s-4);
        font-size: 16px;
    }

    .response-hint {
        font-size: 14px;
        justify-content: center;
    }

    .contact__label {
        left: 16px;
        top: 14px;
        font-size: 16px;
    }

    .contact__input:focus ~ .contact__label,
    .contact__input:not(:placeholder-shown) ~ .contact__label {
        left: 12px;
    }

    .contact__telegram {
        padding: var(--s-3) var(--s-6);
        font-size: 14px;
    }

    /* Footer */
    .footer__nav {
        display: none;
    }

    /* Preloader */
    .preloader__logo {
        width: 100px;
        height: 44px;
    }


    /* Modal */
    .modal__content {
        padding: var(--s-8) var(--s-6);
    }

    .modal__icon {
        width: 48px;
        height: 48px;
    }

    .modal__title {
        font-size: 24px;
    }

    .modal__text {
        font-size: 14px;
    }
}

/* --- 480px: Small mobile --- */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--s-4);
    }

    /* Sections */
    .portfolio,
    .platforms,
    .testimonials,
    .comparison,
    .whois,
    .results,
    .advantages,
    .process,
    .about,
    .price,
    .guarantees,
    .faq,
    .contact {
        padding: var(--s-16) 0;
    }

    .section-header {
        margin-bottom: var(--s-8);
    }

    .section-label {
        font-size: 14px;
        padding: 5px var(--s-3);
    }

    .section-desc {
        font-size: 14px;
        margin-top: var(--s-3);
    }

    /* Hero */
    .hero {
        padding: var(--s-20) 0 var(--s-12);
    }

    .hero__badge {
        font-size: 12px;
        padding: var(--s-2) var(--s-4);
        gap: var(--s-2);
        margin-bottom: var(--s-5);
    }

    .hero__title {
        font-size: 44px;
        margin-bottom: var(--s-4);
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: var(--s-6);
    }

    .hero__actions {
        margin-bottom: var(--s-8);
    }

    .hero__actions .btn {
        max-width: 100%;
        padding: var(--s-4) var(--s-6);
        font-size: 16px;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--s-3);
        width: 100%;
    }

    .hero__stat {
        flex-direction: row;
        align-items: center;
        gap: var(--s-3);
        padding: var(--s-4) var(--s-5);
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        width: 100%;
    }

    .hero__stat-row {
        flex-shrink: 0;
    }

    .hero__stat-number {
        font-size: 24px;
    }

    .hero__stat-plus,
    .hero__stat-unit {
        font-size: 14px;
    }

    .hero__stat-label {
        font-size: 14px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__right {
        max-width: 100%;
    }

    .hero__floating-card {
        padding: var(--s-2) var(--s-2);
        border-radius: 10px;
        gap: var(--s-2);
    }

    .hero__floating-card svg {
        width: 16px;
        height: 16px;
    }

    .hero__floating-title {
        font-size: 12px;
    }

    .hero__floating-value {
        font-size: 13px;
    }

    .hero__browser {
        padding: var(--s-2) var(--s-3);
        gap: var(--s-2);
    }

    .hero__browser-dots span {
        width: 8px;
        height: 8px;
    }

    .hero__browser-url {
        font-size: 12px;
        padding: var(--s-1) var(--s-3);
    }

    .hero__glow--1 {
        width: 300px;
        height: 300px;
    }

    .hero__glow--2 {
        width: 200px;
        height: 200px;
    }

    /* Portfolio */
    .portfolio__card-img {
        height: 180px;
    }

    .portfolio__card-body {
        padding: var(--s-4);
    }

    .portfolio__card-tag {
        font-size: 12px;
        padding: var(--s-1) var(--s-2);
        margin-bottom: var(--s-2);
    }

    .portfolio__card-title {
        font-size: 24px;
        margin-bottom: var(--s-2);
    }

    .portfolio__card-desc {
        font-size: 16px;
        margin-bottom: var(--s-2);
    }

    .portfolio__card-url {
        font-size: 12px;
    }

    /* Marquee */
    .marquee {
        padding: var(--s-5) 0;
    }

    .marquee__item {
        font-size: 12px;
        padding-left: var(--s-4);
    }

    .marquee__inner {
        gap: var(--s-6);
        padding-right: var(--s-6);
    }

    /* Platforms */
    .platforms__grid {
        max-width: 100%;
    }

    .platforms__card {
        padding: var(--s-6);
    }

    .platforms__icon {
        width: 32px;
        height: 32px;
    }

    .platforms__name {
        font-size: 24px;
    }

    .platforms__tagline {
        font-size: 14px;
        margin-bottom: var(--s-5);
    }

    .platforms__feature {
        font-size: 16px;
        gap: var(--s-2);
    }

    .platforms__features {
        gap: var(--s-3);
    }

    /* Testimonials */
    .testimonials__grid {
        max-width: 100%;
    }

    .testimonials__card {
        padding: var(--s-5);
    }

    .testimonials__card::before {
        font-size: 72px;
    }

    .testimonials__text {
        font-size: 16px;
        margin-bottom: var(--s-5);
    }

    .testimonials__avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .testimonials__name {
        font-size: 14px;
    }

    .testimonials__role {
        font-size: 12px;
    }

    /* Comparison */
    .comparison__col {
        padding: var(--s-5) var(--s-4);
    }

    .comparison__heading {
        font-size: 24px;
        margin-bottom: var(--s-4);
    }

    .comparison__label {
        font-size: 14px;
    }

    .comparison__bar-wrap {
        height: 28px;
    }

    .comparison__bar span {
        font-size: 12px;
    }

    .comparison__bar {
        transition: none;
    }

    .comparison__vs {
        font-size: 24px;
    }

    .comparison__row {
        margin-bottom: var(--s-4);
    }

    /* Whois */
    .whois__grid {
        max-width: 100%;
    }

    .whois__card {
        padding: var(--s-5);
    }

    .whois__emoji {
        font-size: 32px;
        margin-bottom: var(--s-3);
    }

    .whois__title {
        font-size: 20px;
    }

    .whois__text {
        font-size: 16px;
    }

    /* Results */
    .results__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-4);
    }

    .results__circle {
        width: 80px;
        height: 80px;
        margin-bottom: var(--s-3);
    }

    .results__circle-value {
        font-size: 18px;
    }

    .results__label {
        font-size: 20px;
    }

    .results__desc {
        font-size: 14px;
    }

    /* Advantages */
    .advantages__grid {
        max-width: 100%;
    }

    .advantages__card {
        padding: var(--s-5);
    }

    .advantages__icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--s-4);
    }

    .advantages__icon svg {
        width: 20px;
        height: 20px;
    }

    .advantages__title {
        font-size: 20px;
    }

    .advantages__text {
        font-size: 16px;
    }

    /* CTA */
    .cta-banner {
        padding: var(--s-8) 0;
    }

    .cta-banner__inner {
        padding: var(--s-6) var(--s-5);
        border-radius: 16px;
    }

    .cta-banner__title {
        font-size: 36px;
    }

    .cta-banner__text {
        font-size: 16px;
    }

    .cta-banner .btn--primary {
        width: 100%;
        padding: var(--s-4) var(--s-6);
    }

    /* Process */
    .process__timeline {
        max-width: 100%;
    }

    .process__timeline::before {
        left: 23px;
    }

    .process__timeline::after {
        left: 23px;
    }

    .process__number {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .process__step {
        gap: var(--s-4);
        padding-bottom: var(--s-8);
    }

    .process__content {
        padding-top: var(--s-4);
    }

    .process__title {
        font-size: 24px;
        margin-bottom: var(--s-2);
    }

    .process__text {
        font-size: 16px;
    }

    /* About */
    .about__inner {
        align-items: flex-start;
        text-align: left;
    }

    .about__facts {
        justify-content: flex-start;
    }


    .about__title {
        font-size: 36px;
        margin: var(--s-2) 0 var(--s-3);
    }

    .about__text {
        font-size: 16px;
        margin-bottom: var(--s-5);
    }

    .about__facts {
        gap: var(--s-4);
    }

    .about__fact-number {
        font-size: 18px;
    }

    .about__fact-label {
        font-size: 14px;
    }

    /* Price */
    .price__grid {
        grid-template-columns: 1fr;
    }

    .price__card-top {
        padding: var(--s-6) var(--s-5);
    }

    .price__value {
        font-size: 36px;
    }

    .price__currency {
        font-size: 18px;
    }

    .price__period {
        font-size: 18px;
    }

    .price__features {
        padding: var(--s-5) var(--s-4);
        gap: var(--s-3);
    }

    .price__feature {
        font-size: 16px;
        gap: var(--s-2);
    }

    .price__feature svg {
        width: 18px;
        height: 18px;
    }

    .price__card .btn {
        margin: 0 var(--s-4) var(--s-5);
        width: calc(100% - 32px);
        font-size: 16px;
    }

    /* Guarantees */
    .guarantees__grid {
        grid-template-columns: 1fr;
    }

    .guarantees__card {
        padding: var(--s-5) var(--s-4);
    }

    .guarantees__icon {
        width: 44px;
        height: 44px;
        margin-bottom: var(--s-4);
    }

    .guarantees__icon svg {
        width: 20px;
        height: 20px;
    }

    .guarantees__title {
        font-size: 20px;
    }

    .guarantees__text {
        font-size: 16px;
    }

    /* FAQ */
    .faq__question {
        padding: var(--s-4) var(--s-4);
        font-size: 16px;
        gap: var(--s-2);
    }

    .faq__question svg {
        width: 18px;
        height: 18px;
    }

    .faq__answer p {
        padding: 0 var(--s-4) var(--s-4);
        font-size: 14px;
    }

    /* Contact */
    .contact__form {
        gap: var(--s-4);
    }

    .contact__note {
        text-align: left;
    }


    .contact__input {
        padding: var(--s-3) var(--s-4);
        font-size: 16px;
    }

    .response-hint {
        font-size: 14px;
        justify-content: center;
    }

    .contact__label {
        left: 14px;
        top: 12px;
        font-size: 16px;
    }

    .contact__input:focus ~ .contact__label,
    .contact__input:not(:placeholder-shown) ~ .contact__label {
        top: -10px;
        left: 10px;
        font-size: 12px;
    }

    .contact__textarea {
        min-height: 100px;
    }

    .contact__note {
        font-size: 12px;
    }

    .contact__alt {
        padding-top: var(--s-6);
    }

    .contact__alt-text {
        font-size: 14px;
        margin-bottom: var(--s-3);
    }

    .contact__telegram {
        padding: var(--s-3) var(--s-5);
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: var(--s-6) 0;
    }

    .footer__tg {
        font-size: 12px;
    }

    .footer__right {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s-3);
    }

    .footer__privacy {
        white-space: normal;
    }

    /* Modal */
    .modal__content {
        padding: var(--s-8) var(--s-6);
        width: 92%;
    }

    .modal__icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--s-4);
    }

    .modal__title {
        font-size: 24px;
    }

    .modal__text {
        font-size: 13px;
        margin-bottom: var(--s-5);
    }

    /* Preloader */
    .preloader__logo {
        width: 80px;
        height: 36px;
    }

}

/* --- 360px: Extra small mobile --- */
@media (max-width: 360px) {
    .container {
        padding: 0 var(--s-3);
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__badge {
        font-size: 12px;
        padding: var(--s-1) var(--s-3);
    }

    .hero__floating-card--1,
    .hero__floating-card--2 {
        display: none;
    }

    .hero__stat-number {
        font-size: 22px;
    }

    .results__grid {
        grid-template-columns: 1fr;
    }

    .about__facts {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner__inner {
        padding: var(--s-6) var(--s-4);
    }

}

/* ===== Privacy Page ===== */
.privacy-page {
    padding: calc(72px + var(--s-16)) 0 var(--s-20);
    min-height: 100vh;
}

.privacy-page__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--s-12);
    line-height: 1.2;
}

.privacy-page__section {
    margin-bottom: var(--s-10);
    padding-bottom: var(--s-10);
    border-bottom: 1px solid var(--border);
}

.privacy-page__section:last-child {
    border-bottom: none;
}

.privacy-page__section h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--s-5);
}

.privacy-page__section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--s-3);
}

.privacy-page__section ul {
    padding-left: var(--s-5);
    margin-bottom: var(--s-3);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
}

.privacy-page__section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.privacy-page__link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.privacy-page__link:hover {
    border-bottom-color: var(--accent);
}

/* Privacy table (section 6) */
.privacy-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 14px;
}

.privacy-table__row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 2fr;
    border-bottom: 1px solid var(--border);
}

.privacy-table__row:last-child {
    border-bottom: none;
}

.privacy-table__row--head .privacy-table__cell {
    font-weight: 600;
    color: var(--text);
    background: var(--bg-secondary);
}

.privacy-table__cell {
    padding: var(--s-3) var(--s-4);
    color: var(--text-secondary);
    line-height: 1.5;
    border-right: 1px solid var(--border);
}

.privacy-table__cell:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .privacy-page__title {
        font-size: 26px;
    }

    .privacy-page__section h2 {
        font-size: 17px;
    }

    .privacy-table__row {
        grid-template-columns: 1fr;
    }

    .privacy-table__row--head {
        display: none;
    }

    .privacy-table__cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .privacy-table__cell:last-child {
        border-bottom: none;
    }
}
