/* Global Styles */
:root {
    --dark-green: #1a472a;
    --medium-green: #2a623d;
    --light-green: #5d8b75;
    --accent-green: #8db38b;
    --very-light-green: #e8f5e9;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --gradient-green: linear-gradient(135deg, var(--dark-green), var(--medium-green));
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

p {
    margin-bottom: 1rem;
    color: #444;
}

a {
    text-decoration: none;
    color: var(--medium-green);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-green);
}

section {
    padding: 100px 0;
    position: relative;
}

/* Top Accent Bar - not used anymore
.top-accent {
    height: 5px;
    background: var(--gradient-green);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}
*/

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-subtitle {
    display: block;
    background-color: var(--very-light-green);
    color: var(--dark-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--medium-green);
    border-radius: 2px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-right: 8px;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #0f3319, var(--dark-green));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--light-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--medium-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0; /* Удаляю отступ, так как нет top-accent */
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

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

/* Logo styles */
.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo a {
    display: flex;
    text-decoration: none;
}

.footer-logo-img {
    height: 35px;
    margin-bottom: 1rem;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 700;
}

.logo span {
    color: var(--light-green);
    font-weight: 400;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

/* Navigation styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--medium-green);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--medium-green);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: var(--dark-green);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -150px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: var(--very-light-green);
    color: var(--dark-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--medium-green);
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
}

.stat-text {
    font-size: 0.9rem;
    color: #777;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.mockup {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
}

.mockup-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    pointer-events: none;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--medium-green);
}

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

.icon-2 {
    top: 30%;
    right: 0;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

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

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    background-color: var(--light-gray);
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--medium-gray) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 5px solid var(--light-green);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--very-light-green), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px var(--shadow-strong);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    background: var(--gradient-green);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(42, 98, 61, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed var(--light-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

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

.feature-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.feature-detail ul {
    list-style: none;
}

.feature-detail li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #555;
}

.feature-detail li i {
    color: var(--medium-green);
    margin-right: 10px;
}

.extra-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.extra-feature-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.extra-feature-item:hover {
    transform: translateY(-5px);
}

.ef-icon {
    width: 35px;
    height: 35px;
    background-color: var(--very-light-green);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.ef-text {
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    background-color: var(--white);
    text-align: center;
    padding-bottom: 120px;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.review-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 5px 25px var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    border-left: 5px solid var(--medium-green);
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.review-author {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.review-info {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-card p {
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
    text-align: right;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: var(--very-light-green);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-green);
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--very-light-green);
    border-radius: 50%;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--medium-green);
    transform: scale(1.2);
}

.app-ratings {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta {
    background: var(--gradient-green);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    flex: 2;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-image {
    flex: 1;
    text-align: center;
}

.mockup-small {
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
}

/* Footer Accent Bar - not used anymore
.footer-accent {
    height: 5px;
    background: var(--gradient-green);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
*/

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-green);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-logo .social-links {
    display: flex;
    gap: 1rem;
}

.footer-logo .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-logo .social-links a:hover {
    background-color: var(--medium-green);
    transform: translateY(-5px);
}

.footer-links {
    flex: 3;
    display: flex;
    gap: 3rem;
}

.footer-nav,
.footer-legal {
    flex: 1;
}

.footer-nav h3,
.footer-legal h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-nav h3::after,
.footer-legal h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--light-green);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 1rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 100%;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .app-stats {
        justify-content: center;
    }
    
    .cta .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mockup-small {
        margin-top: 2rem;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: 50px;
        left: -100px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        width: 95%;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        margin-left: auto;
    }
    
    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .reviews-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reviews-nav {
        margin-top: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .container {
        width: 92%;
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .badge {
        padding: 5px 12px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 220px;
    }
    
    .app-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .extra-features {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-slider {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .review-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .mockup-small {
        max-width: 180px;
    }
    
    .instruction-step {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .copyright p {
        margin-bottom: 0.5rem;
    }
    
    /* Fixing floating elements */
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
    
    .hero-wave {
        bottom: -5px;
    }
    
    .hero-wave svg {
        width: 150%;
        margin-left: -25%;
    }

    /* Расположение отзывов в ряд на десктопе */
    @media (min-width: 769px) {
        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            justify-content: center;
        }

        .review-card {
            max-width: 100%;
            margin: 0;
        }

        .reviews-nav {
            display: none !important;
        }
    }

    /* На мобильных оставляем слайдер */
    @media (max-width: 768px) {
        .reviews-slider {
            flex-direction: column;
            align-items: center;
        }

        .review-card {
            width: 100%;
            max-width: 400px;
            margin: 0 auto 1.5rem;
        }

        .reviews-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }
    }
} 