:root {
    --primary: #0ab3f1;
    --secondary: #00C2FF;
    --accent: #ffc000;
    --accentold: #FF8500;
    --dark: #1E2A38;
    --light: #F8FAFC;
    --success: #00D8A7;
    --text: #334E68;
    --blue: #0ab3f1;
    --yellow: #ffc000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.color-blue {
    color: var(--blue);
}

.color-yellow {
    color: var(--yellow);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(30, 42, 56, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: var(--blue);
    z-index: 1001;
}

.logo {
    text-decoration: none;
}

.logo svg {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover:after {
    width: 100%;
}

/* Навигация для десктопа */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li {
    margin-left: 25px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.desktop-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a:hover:after {
    width: 100%;
}

.header-cta {
    margin-left: 30px;
}

.header-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Гамбургер меню для мобильных */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--primary);
}

.mobile-nav .header-cta {
    margin: 30px 0 0 0;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    background: linear-gradient(180deg, rgba(203, 203, 203, 0.15), rgba(3, 3, 3, 0.85)), 
                 url('/electro/img/courier.jpg') no-repeat center center/cover;
    background-position: center 30%;
    color: white;
    text-align: center;
    padding: 180px 0 120px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,160C960,139,1056,149,1152,144C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center/cover;*/
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-nobr{
    white-space: nowrap;
    color: var(--yellow);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: var(--yellow);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), #ffc000);
    color: black;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 139, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(222, 123, 3, 0.5);
}

.btn:hover:before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p, .about-text span {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.1), rgba(0, 194, 255, 0.1));
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-box i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.market {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('/electro/img/market-opportunities.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, white, #f8fafc);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text);
}

.partner {
    background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), 
                url('/electro/img/logo-vd.jpg') no-repeat center center/cover;
}

.partner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.partner-stat {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
}

.partner-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-stat h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.bikes {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('/electro/img/electrovelo.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.bikes-header {
    font-size: 2em;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
}

.bike-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-card {
    background: linear-gradient(135deg, white, #f8fafc);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.spec-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.spec-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.current-state {
    background: linear-gradient(120deg, rgba(46, 91, 255, 0.9), rgba(0, 194, 255, 0.8)), 
                url('/electro/img/growth-strategy.jpeg') no-repeat center center/cover;
    color: white;
}

.current-state h2 {
    color: var(--light);
}

.state-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.state-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.state-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.state-card h3 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.monetization {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('/electro/img/monetization.jpg') no-repeat center center/cover;
}

.monetization-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.monetization-card {
    background: linear-gradient(135deg, white, #d5f3ff);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.monetization-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /*background: linear-gradient(to right, var(--primary), var(--secondary));*/
}

.monetization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.monetization-card h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.price {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 800;
    margin: 20px 0;
    /*text-shadow: 0 2px 10px rgba(117, 212, 248, 0.4);*/
}

.investment {
    background: linear-gradient(120deg, rgba(30, 42, 56, 0.9), rgba(46, 91, 255, 0.8)), 
                url('/electro/img/courier.jpeg') no-repeat center center/cover;
    color: white;
}

.investment-content {
    max-width: 800px;
    margin: 0 auto;
}

.investment-list {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.investment-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    border-radius: 5px;
}

.investment-item:last-child {
    border-bottom: none;
}

.investment h2 {
    color: white;
}

.total {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
    color: var(--yellow);
    text-shadow: 0 2px 10px rgba(0, 216, 167, 0.3);
}

.royalty {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.franchise-package {
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), no-repeat center center/cover;
    background-attachment: fixed;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 91, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.package-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 91, 255, 0.15);
}

.package-item:hover:before {
    transform: scaleX(1);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.1), rgba(0, 194, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.package-item:hover .package-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
}

.package-icon i {
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
}

.package-item:hover .package-icon i {
    color: white;
    background: transparent;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.package-item h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.package-item p {
    color: var(--text);
    line-height: 1.6;
}

.steps {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75)), 
                url('/electro/img/steps.jpeg') no-repeat center center/cover;
}

.steps-header {
    text-align: center;
    font-size: 3rem;
    margin-top: 30px;
    color: var(--blue);
    text-shadow: 0 10px 20px rgba(10, 179, 241, 0.4);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    box-shadow: 0 0 15px var(--primary);
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 25px;
    background: linear-gradient(135deg, #beeeff, #f8fafc);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.support {
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), 
                url('/electro/img/support-franchisees.jpeg') no-repeat center center/cover;
    background-attachment: fixed;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.support-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 255, 0.1);
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.support-item i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact {
    background: linear-gradient(120deg, rgba(30, 42, 56, 0.9), rgba(46, 91, 255, 0.8)), 
                url('/electro/img/signing-documents.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,160C960,139,1056,149,1152,144C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%C/svg%3E") no-repeat bottom center/cover;
}

.contact h2 {
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-info i {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

/*.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}*/

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo svg {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover svg {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent);
}

.modal h2 {
    color: var(--blue);
    margin-bottom: 20px;
    text-align: center;
}

.modal p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form input {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-form button {
    margin-top: 10px;
}

/* Плавающая кнопка */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    /*animation: pulse 2s infinite;*/
}

/*.floating-cta .btn {
    padding: 20px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 139, 0, 0.4);
}*/

.floating-cta .btn i {
    font-size: 1.5rem;
}

/* Кнопка без тени */
.floating-cta .btn {
    padding: 20px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
    outline: none !important;
    border: none !important;
}

.floating-cta .btn:focus {
    outline: none !important;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4) !important;
}

.floating-cta .btn:active {
    outline: none !important;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4) !important;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 139, 0, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(255, 139, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 139, 0, 0.4);
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item::after {
        left: 20px !important;
    }
    
    .header-cta {
        display: none;
    }

    .mobile-nav .header-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-container {
        /*padding: 12px 0;*/
    }

    .logo {
        font-size: 20px;
    }

    .mobile-nav {
        width: 85%;
        padding: 70px 25px 25px;
    }
    
    .mobile-nav ul li {
        margin-bottom: 15px;
    }
    
    .mobile-nav ul li a {
        font-size: 1rem;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 8px 15px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .partner-stats, .state-cards {
        gap: 20px;
    }
    
    .partner-stat, .state-card {
        min-width: 160px;
        padding: 20px 15px;
    }
    
    .support-list, .package-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .package-item {
        padding: 30px 20px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .package-icon i {
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta .btn {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .mobile-nav {
        width: 90%;
        padding: 60px 20px 20px;
    }

    .footer-links {
        width: 100%;
        display: inline-grid;
    }
}