
:root {
    --primary-color: #F1613B;
    --text-color: #FFFFFF;
    --dark-bg: #111111;
    --input-bg: rgba(241, 97, 59, 0.46);
    --input-border: rgba(255, 213, 187, 0);
    --nexa-font: 'Nexa', sans-serif;
    --oswald-font: 'Oswald', sans-serif;
}

@font-face {
    font-family: 'Nexa';
    src: url('https://static.wixstatic.com/ufonts/46babe_545d071d55f1401f8dc769e54cd0f707/woff2/file.woff2') format('woff2');
    font-weight: 900;
}

@font-face {
    font-family: 'Nexa';
    src: url('https://static.wixstatic.com/ufonts/46babe_0e10f5220b354fa495540eb3792f5644/woff2/file.woff2') format('woff2');
    font-weight: 700;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-image: url('https://static.wixstatic.com/media/11062b_f71f178b5f494268bf2f5420c4820ae3~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: var(--nexa-font);
    font-weight: 900;
    color: var(--text-color);
}

h2 {
    color: var(--primary-color);
    font-size: 35px;
}

/* --- Стилі для іконок (білий колір та анімація) --- */
.stat-item img,
.feature-item img,
.info-item img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: pulse-glow 2s infinite alternate;
}

.stat-item:hover img,
.feature-item:hover img,
.info-item:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes pulse-glow {
    from {
        filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
    }
    to {
        filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
    }
}


/* === СТИЛІ ШАПКИ (HEADER) === */
.site-header {
    background-color: rgba(35, 35, 35, 0.4);
    padding: 20px 0;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 200px;
    height: auto;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
}

.header-content h1 {
    font-family: var(--oswald-font);
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 15px;
    text-align: left;
}

.main-nav {
    width: 100%;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--nexa-font);
    font-weight: 900;
    font-size: 20px;
    padding: 5px 10px;
    border-right: 1px solid var(--text-color);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav li:last-child a {
    border-right: none;
}

.main-nav a:hover {
    color: var(--text-color);
}


/* Hero Section */
.hero-section {
    padding: 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h2 {
    font-size: 46px;
    line-height: 1.2;
}

.hero-text p {
    font-family: var(--nexa-font);
    font-weight: 700;
    font-size: 30px;
}

.hero-image img {
    width: 432px;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    max-width: 480px;
}

.about-text h2 {
    font-weight: 700;
}

.about-text p {
    font-family: var(--nexa-font);
    font-weight: 700;
    line-height: 1.5em;
    font-size: 17px;
}

.about-image img {
    width: 477px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item img {
    width: 80px;
    height: 80px;
}

.stat-item strong {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.stat-item span {
    font-family: var(--nexa-font);
    font-weight: 700;
    font-size: 17px;
}


/* Features Section */
.features-section {
    padding: 60px 0;
}

.features-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.features-container.reverse {
    flex-direction: row-reverse;
}

.features-image img {
    width: 497px;
}

.features-list {
    flex: 1;
}

.features-list h2 {
     text-align: center;
}

.features-list > p {
    text-align: center;
    font-size: 17px;
    font-family: var(--nexa-font);
    font-weight: 700;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
}

.feature-item {
    text-align: center;
    max-width: 200px;
}

.feature-item.full-width {
    grid-column: 1 / -1;
}

.feature-item img {
    width: 80px;
    height: 80px;
}

.feature-item span {
    display: block;
    margin-top: 10px;
    font-family: var(--nexa-font);
    font-weight: 700;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3, .contact-form h3 {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item img {
    width: 80px;
    height: 80px;
}

.info-item p, .info-item a {
    font-family: var(--nexa-font);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    color: var(--text-color);
}

.contact-form form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px 22px;
    margin-bottom: 20px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--text-color);
    opacity: 0.8;
}

.contact-form textarea {
    height: 94px;
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-form button {
    background-color: rgba(241, 97, 59, 0.59);
    border: 2px solid #323232;
    color: var(--text-color);
    padding: 12px 30px;
    font-size: 18px;
    font-family: var(--nexa-font);
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: rgba(241, 97, 59, 0.8);
}

.form-footer a img {
    width: 39px;
    height: 39px;
}

#form-thank-you {
    text-align: center;
    font-size: 19px;
    font-family: var(--nexa-font);
    font-weight: 700;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
}

.site-footer h3 {
    color: #FF4040;
    font-size: 35px;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partners-logos img {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease-in-out;
}

.partners-logos a:hover {
    transform: translateY(-10px);
}