:root {
    --primary-color: #4BDC8C;
    --secondary-color: #36A66D;
    --dark-color: #1A1A1A;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --gradient-1: linear-gradient(135deg, #4BDC8C 0%, #36A66D 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 5px 1px rgba(75, 220, 140, 0.3);
    opacity: 0.2;
    animation: twinkle 4s ease-in-out infinite;
}

.p1 { left: 10%; top: 20%; animation-delay: 0.4s; }
.p2 { left: 20%; top: 80%; animation-delay: 1.8s; }
.p3 { left: 30%; top: 45%; animation-delay: 2.3s; }
.p4 { left: 40%; top: 65%; animation-delay: 0.7s; }
.p5 { left: 50%; top: 15%; animation-delay: 1.2s; }
.p6 { left: 60%; top: 90%; animation-delay: 3.5s; }
.p7 { left: 70%; top: 35%; animation-delay: 2.8s; }
.p8 { left: 80%; top: 55%; animation-delay: 0.9s; }
.p9 { left: 90%; top: 25%; animation-delay: 1.5s; }
.p10 { left: 15%; top: 70%; animation-delay: 3.2s; }
.p11 { left: 75%; top: 5%; animation-delay: 2.1s; }
.p12 { left: 45%; top: 85%; animation-delay: 0.2s; }
.p13 { left: 5%; top: 40%; animation-delay: 1.1s; }
.p14 { left: 85%; top: 75%; animation-delay: 2.7s; }
.p15 { left: 25%; top: 30%; animation-delay: 0.5s; }
.p16 { left: 55%; top: 60%; animation-delay: 3.8s; }
.p17 { left: 35%; top: 10%; animation-delay: 1.9s; }
.p18 { left: 95%; top: 50%; animation-delay: 2.5s; }
.p19 { left: 65%; top: 95%; animation-delay: 0.8s; }
.p20 { left: 48%; top: 33%; animation-delay: 3.3s; }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
        box-shadow: 0 0 5px 1px rgba(75, 220, 140, 0.3);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.8);
        box-shadow: 0 0 15px 4px rgba(75, 220, 140, 0.8);
    }
}

.dynamic-background {
    background: linear-gradient(45deg, #111111, #0c1f18);
}

.gradient-overlay {
    display: none;
}





/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.2;
    filter: blur(1px);
    animation-name: floatIcon;
    animation-duration: 25s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    text-shadow: 0 0 20px rgba(75, 220, 140, 0.8);
}

.float-icon i {
    transform: rotate(10deg);
}

.icon1 { left: 15%; top: 20%; animation-delay: 0s; font-size: 28px; }
.icon2 { left: 75%; top: 15%; animation-delay: 5s; font-size: 36px; }
.icon3 { left: 30%; top: 80%; animation-delay: 10s; font-size: 32px; }
.icon4 { left: 80%; top: 60%; animation-delay: 7s; font-size: 28px; }
.icon5 { left: 10%; top: 50%; animation-delay: 12s; font-size: 30px; }

@keyframes floatIcon {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-150px) translateX(70px) rotate(10deg) scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-300px) translateX(150px) rotate(20deg) scale(1.4);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-150px) translateX(200px) rotate(10deg) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) translateX(250px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links li a {
    color: var(--light-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a i {
    font-size: 14px;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 7rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 0 0 15px rgba(75, 220, 140, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-secondary:hover {
    background-color: rgba(75, 220, 140, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background-color: #000;
    border-radius: 40px;
    border: 12px solid #222;
    box-shadow: 0 15px 30px -10px rgba(75, 220, 140, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px -10px rgba(75, 220, 140, 0.5);
}

.phone-mockup::after {
    content: "Скачать";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-1);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.phone-mockup:hover::after {
    opacity: 1;
}

.phone-link {
    display: inline-block;
    text-decoration: none;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
    animation: screenGlow 3s ease-in-out infinite alternate;
}

@keyframes screenGlow {
    0% {
        box-shadow: inset 0 0 15px rgba(75, 220, 140, 0.1);
    }
    100% {
        box-shadow: inset 0 0 25px rgba(75, 220, 140, 0.3);
    }
}

.app-preview {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: pulseContent 3s ease-in-out infinite;
}

@keyframes pulseContent {
    0% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.9;
    }
}

/* App Loading Spinner */
.app-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(75, 220, 140, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

.loading-text {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Pyramid Section */
.pyramid-section {
    padding: 7rem 5% 3rem;
    position: relative;
    overflow: hidden;
}

.pyramid-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.pyramid-content {
    flex: 1;
    max-width: 550px;
    padding-right: 30px;
}

.pyramid-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.start-button {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.start-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pyramid-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pyramid-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(75, 220, 140, 0.3));
    transition: all 0.5s ease;
    animation: pyramid-glow 3s ease-in-out infinite alternate;
}

@keyframes pyramid-glow {
    0% {
        filter: drop-shadow(0 10px 20px rgba(75, 220, 140, 0.2));
    }
    100% {
        filter: drop-shadow(0 20px 30px rgba(75, 220, 140, 0.6));
    }
}

/* Saving Goals Section */
.saving-goals-section {
    padding: 7rem 5% 8rem;
    position: relative;
    overflow: hidden;
    background-color: rgba(26, 26, 26, 0.7);
}

.goals-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 4rem auto 0;
}

.goal-item {
    position: relative;
    width: 280px;
    transition: all 0.4s ease;
}

.goal-item:hover {
    transform: translateY(-10px);
}

.goal-image-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.goal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 5px 15px rgba(75, 220, 140, 0.4));
    transition: all 0.5s ease;
}

.goal-item:hover .goal-image {
    transform: scale(1.02);
    filter: drop-shadow(0 10px 20px rgba(75, 220, 140, 0.7));
}

.goal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 60%, rgba(26, 26, 26, 0.7) 100%);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    z-index: 1;
}

.goal-item:hover .goal-overlay {
    background: radial-gradient(circle at center, transparent 70%, rgba(26, 26, 26, 0.6) 100%);
}

.goal-caption {
    text-align: center;
    padding: 1.5rem 1rem;
}

.goal-caption h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.goal-caption p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background-color: rgba(26, 26, 26, 0.9);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-color);
    position: relative;
    display: block;
    width: fit-content;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(75, 220, 140, 0.1);
    border-color: var(--primary-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(75, 220, 140, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--light-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-container {
    position: relative;
    padding: 2rem 0;
}

.process-timeline {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.6;
}

.process-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.process-step {
    display: flex;
    align-items: center;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(75, 220, 140, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    box-shadow: 0 10px 30px rgba(75, 220, 140, 0.2);
    border: 2px solid rgba(75, 220, 140, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.process-step:hover .process-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(75, 220, 140, 0.3);
    border-color: var(--primary-color);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.process-step:hover .step-badge {
    transform: scale(1.1);
}

.process-content {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.process-step:nth-child(odd) .process-content {
    text-align: right;
}

.process-step:hover .process-content {
    background: rgba(75, 220, 140, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-step:hover .process-content::before {
    transform: scaleX(1);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.process-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Download Section */
.download {
    padding: 8rem 5%;
    background-color: rgba(26, 26, 26, 0.8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 220, 140, 0.05);
    z-index: -1;
}

.download-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.app-store, .google-play, .ru-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(75, 220, 140, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.app-store:hover, .google-play:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: rgba(75, 220, 140, 0.15);
    border-color: var(--primary-color);
}

.app-store i, .google-play i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.app-store span, .google-play span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store span small, .google-play span small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo p {
    color: #ccc;
}

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

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.email-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.email-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.email-item a {
    color: var(--light-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-item a:hover {
    color: var(--primary-color);
}

.email-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ccc;
}

/* Requisites Section */
.footer-requisites-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.requisites-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-align: center;
}

.requisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.requisite-item:hover {
    background: rgba(75, 220, 140, 0.08);
    border-color: rgba(75, 220, 140, 0.3);
    transform: translateY(-2px);
}

.requisite-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requisite-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    word-break: break-word;
}

/* Donation Notifications */
.donation-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 320px;
    pointer-events: none;
}

.donation-message {
    background: rgba(26, 26, 26, 0.85);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 5s forwards;
    backdrop-filter: blur(10px);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.donation-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 220, 140, 0.1), transparent);
    z-index: -1;
}

.donation-message strong {
    color: var(--primary-color);
    font-weight: 600;
}

.donation-message .donation-amount {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
}

.donation-message .donation-goal {
    font-style: italic;
    margin-top: 5px;
    opacity: 0.8;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pyramid-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .pyramid-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-slider {
        gap: 2rem;
    }
    
    .process-step, .process-step:nth-child(odd) {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:nth-child(odd) .process-content {
        text-align: center;
    }
    
    .process-timeline {
        left: 50%;
    }
    
    .process-step {
        align-items: center;
    }
    
    .process-content {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-item {
        width: 240px;
    }
    
    .goal-image-wrapper {
        height: 240px;
    }
    
    .app-stores {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .requisites-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .requisites-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .process-icon {
        width: 100px;
        height: 100px;
        margin: 0 0 2rem;
    }
    
    .process-steps {
        gap: 4rem;
    }
    
    .process-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}