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

:root {
    --bg-light: #FDF9F3;
    --bg-white: #FFFFFF;
    --dark: #333333;
    --pink: #E79FA2;
    --pink-soft: #E5A5B9;
    --lavender: #C5ACD4;
    --lime: #CDE180;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-gray: #7A7A78;
    
    --gradient-pink: linear-gradient(135deg, #FFEEF0 0%, #FFE4E8 100%);
    --gradient-lavender: linear-gradient(135deg, #F5F0FA 0%, #EDE4F5 100%);
    --gradient-lime: linear-gradient(135deg, #F5F9E8 0%, #EEF5D9 100%);
    --gradient-peach: linear-gradient(135deg, #FFF5EB 0%, #FFEDE0 100%);
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: var(--bg-light);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

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

.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--pink);
}

.header-cta {
    background: var(--lime);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: var(--bg-light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.hero h1 .highlight-pink {
    color: var(--pink);
}

.hero h1 .highlight-lime {
    color: #9BB856;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.hero-cta {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(51,51,51,0.3);
}

/* Stats */
.stats {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.stat-card {
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
}

.stat-card:nth-child(1) { background: var(--gradient-lime); }
.stat-card:nth-child(2) { background: var(--gradient-pink); }
.stat-card:nth-child(3) { background: var(--gradient-lavender); }

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Section titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Who section */
.who {
    padding: 80px 0;
}

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

.who-card {
    padding: 32px 24px;
    border-radius: 24px;
    transition: transform 0.3s;
}

.who-card:hover {
    transform: translateY(-5px);
}

.who-card:nth-child(1) { background: var(--gradient-lime); }
.who-card:nth-child(2) { background: var(--gradient-pink); }
.who-card:nth-child(3) { background: var(--gradient-lavender); }
.who-card:nth-child(4) { background: var(--gradient-peach); }

.who-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.who-card:nth-child(1) .who-icon { background: var(--lime); }
.who-card:nth-child(2) .who-icon { background: var(--pink); }
.who-card:nth-child(3) .who-icon { background: var(--lavender); }
.who-card:nth-child(4) .who-icon { background: var(--pink-soft); }

.who-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-dark);
    stroke-width: 2;
    fill: none;
}

.who-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.who-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Cases */
.cases {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.case-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.case-header {
    margin-bottom: 28px;
}

.case-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.case-exp {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.case-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.case-before, .case-after {
    padding: 20px;
    border-radius: 16px;
    min-height: 150px;
}

.case-before {
    background: #F5F5F3;
}

.case-after-pink {
    background: var(--gradient-pink);
}

.case-after-lavender {
    background: var(--gradient-lavender);
}

.case-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.case-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.case-result {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.case-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    color: var(--pink);
}

.case-link:hover {
    gap: 10px;
}

/* Products */
.products {
    padding: 80px 0;
    background: var(--dark);
    border-radius: 32px;
    margin: 0 24px 80px;
}

.products .section-title {
    color: var(--white);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.8fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transition: transform 0.2s, background 0.2s;
}

.product-card:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.12);
}

.product-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.product-name-lime { color: var(--lime); }
.product-name-pink { color: var(--pink); }
.product-name-lavender { color: var(--lavender); }
.product-name-pink-soft { color: var(--pink-soft); }

.product-for {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 4px;
}

.product-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.price-new {
    color: var(--white);
}

.product-btn {
    background: var(--lime);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(205, 225, 128, 0.4);
}

.btn-disabled {
    background: #434343 !important;
    border: 2px solid #7C7C7C !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

.products-help {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    color: var(--white);
}

.products-help p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.products-help a {
    color: var(--lime);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.products-help a:hover {
    text-decoration: underline;
}

.product-buttons {
    display: flex;
    gap: 12px;
}

.product-btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 2px solid rgba(255,255,255,0.3);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

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

/* Reviews */
.reviews {
    padding: 80px 0;
}

.reviews-grid {
    column-count: 3;
    column-gap: 20px;
}

.review-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 20px;
    break-inside: avoid;
}

.review-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.about-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.telegram {
    background: var(--lime);
    color: var(--text-dark);
}

.social-btn.telegram:hover {
    box-shadow: 0 4px 15px rgba(205, 225, 128, 0.4);
}

.social-btn.linkedin {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.social-btn.linkedin:hover {
    background: var(--text-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.2);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
}

.about-photo {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
}

.about-card p + p {
    margin-top: 16px;
}

.about-card a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.about-card a:hover {
    text-decoration: underline;
}

/* CTA */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-peach);
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-btn {
    min-width: 280px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn.primary {
    background: var(--dark);
    color: var(--white);
}

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

.cta-btn.secondary {
    background: var(--lime);
    color: var(--text-dark);
}

.cta-btn.secondary:hover {
    box-shadow: 0 8px 25px rgba(205, 225, 128, 0.4);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
}

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

.footer-social-btn.telegram {
    background: var(--lime);
    color: var(--text-dark);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 200;
    display: none;
    padding: 0 16px;
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #F3F7E2;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: all;
}

.cookie-banner-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cookie-banner-button {
    background: var(--lime);
    color: var(--text-dark);
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-banner-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(205, 225, 128, 0.4);
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-button {
        width: 100%;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .product-price {
        text-align: center;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .products {
        margin: 0 16px 80px;
        border-radius: 24px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .reviews-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    nav {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-row {
        grid-template-columns: 1fr;
    }

    .case-before, .case-after {
        min-height: auto;
    }
    
    .reviews-grid {
        column-count: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .products {
        margin: 0 16px 60px;
        padding: 60px 20px;
    }

    .about-socials {
        flex-direction: column;
        width: 100%;
    }

    .social-btn {
        text-align: center;
    }
}

/* Legal pages */
.legal-page {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.legal-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-meta {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.legal-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 24px;
    list-style: disc;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: var(--text-dark);
    opacity: 1;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 1.6rem;
    }

    .legal-content {
        padding: 28px 20px;
    }
}

html {
    scroll-behavior: smooth;
}