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

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a26;
    --border: #1e1e2e;
    --border-hover: #2e2e44;
    --text: #e4e4ef;
    --text-secondary: #8888a0;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --gradient: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    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);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 16px;
    gap: 10px;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

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

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.btn--full {
    width: 100%;
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 16px auto 0;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

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

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

.header__logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.header__link:hover {
    color: var(--text);
}

.header__link--cta {
    padding: 10px 24px;
    background: var(--gradient);
    color: #fff;
    border-radius: 8px;
}

.header__link--cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

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

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: #a29bfe;
    bottom: -100px;
    right: -50px;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero__grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.07) 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: 60px;
    align-items: center;
}

.hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 28px;
}

.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(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

.hero__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.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: 13px;
    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.5), 0 0 60px var(--accent-glow);
    border: 1px solid var(--border-hover);
    transition: transform 0.5s ease;
}

.hero__mockup:hover {
    transform: translateY(-8px);
}

.hero__browser {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1a1a26;
    border-bottom: 1px solid var(--border);
}

.hero__browser-dots {
    display: flex;
    gap: 6px;
}

.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: 6px 16px;
    border-radius: 6px;
}

.hero__browser-body {
    height: 320px;
    overflow: hidden;
}

.hero__browser-body img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    animation: scrollMockup 12s ease-in-out infinite;
}

@keyframes scrollMockup {
    0%, 20% { transform: translateY(0); }
    40%, 60% { transform: translateY(-30%); }
    80%, 100% { transform: translateY(0); }
}

/* Floating cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(18, 18, 26, 0.9);
    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: var(--accent-light);
}

.hero__floating-title {
    display: block;
    font-size: 11px;
    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: var(--accent-light);
}

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

/* ===== Portfolio ===== */
.portfolio {
    padding: 120px 0;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.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: var(--transition);
}

.portfolio__card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.portfolio__card-img {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.portfolio__card:hover .portfolio__card-img img {
    transform: scale(1.05);
}

.portfolio__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 92, 231, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio__card:hover .portfolio__card-overlay {
    opacity: 1;
}

.portfolio__card-link {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.portfolio__card-body {
    padding: 24px;
}

.portfolio__card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.portfolio__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio__card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.portfolio__card-url {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonials__card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonials__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.testimonials__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonials__stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.testimonials__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

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

.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: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== Who Is It For ===== */
.whois {
    padding: 120px 0;
}

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

.whois__card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.whois__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.whois__emoji {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.whois__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== Advantages ===== */
.advantages {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantages__card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.advantages__card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px var(--accent-glow);
}

.advantages__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.advantages__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.advantages__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 80px 0;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    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__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cta-banner__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn--primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.cta-banner .btn--primary:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== Process ===== */
.process {
    padding: 120px 0;
}

.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border));
}

.process__step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 48px;
}

.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;
}

.process__content {
    padding-top: 16px;
}

.process__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}

.about__inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.about__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.about__title {
    font-size: 28px;
    font-weight: 800;
    margin: 12px 0 16px;
}

.about__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about__facts {
    display: flex;
    gap: 32px;
}

.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: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== Price ===== */
.price {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}

.price__card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.price__card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 60px var(--accent-glow);
}

.price__card-top {
    padding: 48px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(162, 155, 254, 0.04));
    border-bottom: 1px solid var(--border);
}

.price__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price__value {
    font-size: 56px;
    font-weight: 900;
    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__period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.price__features {
    list-style: none;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.price__feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.price__card .btn {
    margin: 0 40px 32px;
    width: calc(100% - 80px);
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
}

.contact__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact__input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.contact__input::placeholder {
    color: var(--text-secondary);
}

.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: center;
}

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

.contact__alt-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact__telegram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #2AABEE;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.contact__telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
}

.contact__telegram svg {
    width: 22px;
    height: 22px;
}

/* ===== Guarantees ===== */
.guarantees {
    padding: 120px 0;
}

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

.guarantees__card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.guarantees__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.guarantees__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.guarantees__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.guarantees__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq__question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq__item--open .faq__question svg {
    transform: rotate(180deg);
    color: var(--accent-light);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.footer__copy {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer__tg {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer__tg:hover {
    color: var(--accent-light);
}

/* ===== 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: 48px;
    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: 20px;
}

.modal__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal__text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== 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);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .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);
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        z-index: 999;
    }

    .header__nav--open {
        right: 0;
    }

    .header__burger {
        display: flex;
        z-index: 1001;
    }

    .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__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__left {
        align-items: center;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__floating-card--1 {
        right: 10px;
        top: 10px;
    }

    .hero__floating-card--2 {
        left: 10px;
    }

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

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

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

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .about__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about__facts {
        justify-content: center;
    }

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

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .process__timeline::before {
        left: 27px;
    }

    .process__number {
        width: 56px;
        height: 56px;
        font-size: 16px;
    }

    .process__step {
        gap: 20px;
    }

    .price__card-top {
        padding: 32px 24px;
    }

    .price__value {
        font-size: 44px;
    }

    .price__features {
        padding: 24px;
    }

    .price__card .btn {
        margin: 0 24px 24px;
        width: calc(100% - 48px);
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat {
        padding: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
    }
}
