﻿:root {
    --bg: #FFFFFF;
    --ink: #1a1a1a;
    --muted: #666666;
    --sand: #f8f8f8;
    --primary: #FF006E;
    --secondary: #00D926;
    --tertiary: #FF7A00;
    --highlight: #00D4FF;
    --card: rgba(255, 255, 255, 0.98);
    --line: #E0E0E0;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #F8F8F8 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.blur-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.25;
    animation: floatShape 9s ease-in-out infinite;
}

.shape-a {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -70px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15), rgba(255, 0, 110, 0));
}

.shape-b {
    width: 480px;
    height: 480px;
    bottom: -170px;
    left: -90px;
    background: radial-gradient(circle, rgba(0, 217, 38, 0.1), rgba(0, 217, 38, 0));
    animation-delay: 2s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.08;
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    line-height: 1.2;
}

h1,
h2 {
    font-family: 'Prata', Georgia, serif;
    letter-spacing: 0.02em;
}

p {
    margin-top: 0;
    color: var(--muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark {
    width: 2.1rem;
    height: 2.1rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Prata', serif;
    font-size: 1rem;
    box-shadow: 0 0 12px rgba(255, 0, 110, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(255, 122, 0, 0.08));
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-weight: 600;
    color: #555555;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
    border-color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
}

main {
    padding-bottom: 4rem;
}

.hero {
    padding: 6rem 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-copy p {
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.6rem 0 1.8rem;
}

.btn {
    border: 2px solid var(--primary);
    border-radius: 999px;
    background: linear-gradient(135deg, #FF006E, #FF7A00);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.74rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 0, 110, 0.35);
}

.btn-small {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.stat-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.stat-grid li {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: var(--shadow);
}

.stat-grid strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.stat-grid span {
    font-size: 0.83rem;
    color: var(--muted);
}

.hero-card,
.feature-card,
.product-card,
.info-card,
.contact-form,
.cta-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 2rem;
    transform: rotate(-1.2deg);
}

.hero-card ul {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: #555555;
}

.page-hero {
    padding: 5rem 0 1rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 19ch;
}

.section {
    padding: 2.8rem 0;
}

.section-head {
    margin-bottom: 1.2rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card {
    padding: 1.35rem;
}

.product-card .tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--tertiary);
    margin-bottom: 0.65rem;
}

.price {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 0, 110, 0.04);
}

.timeline span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 0, 110, 0.25);
}

.bullet-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.7rem;
    color: var(--muted);
}

.faq-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.cta-panel {
    padding: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(255, 122, 0, 0.05));
}

.contact-form {
    padding: 1.35rem;
}

.contact-form h2 {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter input {
    width: 100%;
    margin-top: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
    background: #FAFAFA;
    color: var(--ink);
    font-family: inherit;
}

.contact-form input::placeholder,
.newsletter input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-info {
    display: grid;
    gap: 0.9rem;
}

.info-card {
    padding: 1.2rem;
}

.legal-content {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.legal-content h2 {
    margin: 1.6rem 0 0.5rem;
    font-size: 1.2rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(135deg, #F8F8F8, #F0F0F0);
    padding: 2.4rem 0 1.6rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-top h3 {
    margin-bottom: 0;
}

.newsletter {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-bottom {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 1rem 0;
}

.footer-bottom h4 {
    margin-bottom: 0.5rem;
}

.footer-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.legal-line {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    font-size: 0.85rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(22px);
    }
}

@media (max-width: 980px) {
    .hero,
    .split,
    .footer-bottom,
    .faq-grid,
    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .hero-card {
        transform: none;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 4vw;
        width: min(280px, 88vw);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 1rem;
        transform: scale(0.96);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.open {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .nav-wrap > .btn-small {
        display: none;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* в”Ђв”Ђ Images в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.brand-logo {
    height: 2.4rem;
    width: auto;
    display: block;
}

.footer-logo {
    height: 2rem;
    width: auto;
    display: block;
    opacity: 0.85;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-visual:hover img {
    transform: scale(1.02);
}

.section-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.section-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-visual img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (max-width: 980px) {
    .hero-visual img {
        height: 240px;
    }

    .section-visual img {
        height: 220px;
    }

    .about-visual img {
        height: 260px;
    }
}

