/* ==================== CSS Reset & Variables ==================== */

/* ==================== Font Face - Kalice ==================== */
@font-face {
    font-family: 'Kalice';
    src: url('../fonts/Kalice-Regular.woff2') format('woff2'),
         url('../fonts/Kalice-Regular.woff') format('woff'),
         url('../fonts/Kalice-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kalice';
    src: url('../fonts/Kalice-Bold.woff2') format('woff2'),
         url('../fonts/Kalice-Bold.woff') format('woff'),
         url('../fonts/Kalice-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==================== Font Face - Sebenta ==================== */
@font-face {
    font-family: 'Sebenta';
    src: url('../fonts/SebentaTrial-Regular-BF66bd6cdd25324.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sebenta';
    src: url('../fonts/SebentaTrial-Medium-BF66bd6cdd7d89e.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sebenta';
    src: url('../fonts/SebentaTrial-Semibold-BF66bd6cdd5c53c.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sebenta';
    src: url('../fonts/SebentaTrial-Bold-BF66bd6cd84a809.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sebenta';
    src: url('../fonts/SebentaTrial-Heavy-BF66bd6cdd5683e.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

*:focus,
*:active {
    outline: none;
}

button:focus,
button:active,
a:focus,
a:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
    outline: none;
}

:root {
    /* Colors */
    --primary-color: #0075de;
    --primary-dark: #0056b3;
    --secondary-color: #00B894;
    --accent-color: #FD79A8;
    --dark-bg: #2D3436;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --border-color: #DFE6E9;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-speed: 0.3s;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==================== Header & Navigation ==================== */
.header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible;
    transform: translateZ(0);
    will-change: transform;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    min-height: auto;
    box-sizing: border-box;
    overflow: visible;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.logo a img {
    height: 40px;
    width: auto;
    display: block;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none !important;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: none !important;
}

.nav-mobile-button {
    display: none;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-decoration: none !important;
    border-bottom: none !important;
}

.nav-menu a.active {
    color: var(--primary-color);
    text-decoration: none !important;
    border-bottom: none !important;
}

.arrow {
    font-size: 10px;
    transition: transform var(--transition-speed);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed);
    list-style: none;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    transition: background var(--transition-speed);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none !important;
    border-bottom: none !important;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-secondary,
.btn-primary {
    padding: 5px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none !important;
    line-height: 1.3;
    box-sizing: border-box;
    height: auto;
    overflow: visible;
}

/* Убираем подпрыгивания при нажатии для всех кнопок */
button:active,
a:active,
.btn-primary:active,
.btn-secondary:active,
.btn-cta:active,
.btn-contact:active,
.nav-mobile-button .btn-primary:active {
    transform: none !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    padding: 5px 18px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none !important;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    text-decoration: none !important;
    border-bottom: none !important;
}

.btn-primary:active,
.btn-secondary:active {
    transform: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-speed);
    border-radius: 2px;
}

/* ==================== Sections Padding ==================== */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.icon {
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
    color: var(--primary-color);
}

.icon i {
    font-size: 40px;
}

.icon:nth-child(odd) {
    animation-delay: 0.5s;
}

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

.hero-title {
    font-family: 'Sebenta', 'Crimson Pro', Georgia, 'Times New Roman', serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
    width: 200px;
    height: 54px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-cta:active,
.btn-contact:active {
    transform: none !important;
}

.btn-contact {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    -webkit-font-smoothing: antialiased;
    border: 1px solid transparent;
    height: 54px;
    width: 200px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 16px 48px;
    color: #005bab;
    background: #e6f3fe;
    border-color: transparent;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.btn-contact:hover {
    background: #f2f9ff;
    color: #00396b;
}

.btn-contact:active {
    background: #e6f3fe;
}

/* ==================== Logos Slider ==================== */
.logos-slider-wrapper {
    margin-top: 80px;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.logos-slider-wrapper::before,
.logos-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.logos-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.logos-slider {
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex: 0 0 180px;
    height: 80px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition-speed);
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(0, 184, 148, 0.05) 100%);
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ==================== Stats Section ==================== */
.stats {
    padding: var(--section-padding);
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
}

.stat-label {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Trust Section ==================== */
.trust-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-text h2 {
    font-family: 'Sebenta', 'Crimson Pro', Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2D3436;
    line-height: 1.2;
    background: linear-gradient(135deg, #2D3436 0%, #6C5CE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-intro {
    font-size: 18px;
    color: #636E72;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

/* Compact Highlights Grid */
.trust-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(108, 92, 231, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(0, 184, 148, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover {
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.15);
    transform: translateY(-4px);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-number {
    font-size: 36px;
    font-weight: 800;
    color: #67519f;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    font-size: 28px;
    font-weight: 700;
    color: #00B894;
    flex-shrink: 0;
    text-align: left;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 148, 0.1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.highlight-item p {
    font-size: 15px;
    color: #2D3436;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.trust-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trust-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.trust-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.trust-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 80px rgba(108, 92, 231, 0.25);
}

/* ==================== Products Section ==================== */
.products {
    padding: var(--section-padding);
    background: var(--white);
}

.section-title {
	font-family: 'Sebenta', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.product-icon i {
    font-size: 48px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.learn-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ==================== Reports Section ==================== */
.reports {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: var(--white);
}

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

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.report-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.report-image {
    font-size: 64px;
    margin-bottom: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.report-image i {
    font-size: 64px;
    color: var(--white);
}

.report-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

/* ==================== Blog Section ==================== */
.blog {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.blog-image i {
    font-size: 64px;
    color: var(--white);
}

.blog-card h3 {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-link {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-link:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

/* ==================== Contact Form Section ==================== */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-section .section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 6px;
    transition: all var(--transition-speed);
    border: 2px solid var(--border-color);
}

.radio-label:hover {
    border-color: var(--primary-color);
}

.radio-label input {
    margin-right: 8px;
    cursor: pointer;
}

.radio-label input:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background: var(--white);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-size: 14px;
}

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

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

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

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.youtube-certified {
    background: #FF0000;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .trust-section {
        padding: 80px 0;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .trust-text h2 {
        font-size: 38px;
        text-align: center;
    }

    .trust-intro {
        text-align: center;
        font-size: 17px;
    }

    .trust-highlights {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .trust-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .trust-section {
        padding: 60px 0;
    }

    .trust-text h2 {
        font-size: 32px;
        text-align: center;
    }

    .trust-intro {
        font-size: 16px;
        text-align: center;
    }
    
    .trust-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
    }
    
    .trust-image {
        order: 1;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-number {
        font-size: 32px;
    }

    .highlight-icon {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .highlight-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-speed);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .navbar {
        gap: 0;
        justify-content: space-between;
    }
    
    /* Контейнер для кнопки и hamburger */
    .nav-mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-mobile-button {
        display: flex;
        align-items: center;
    }
    
    .nav-mobile-button .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
        line-height: 1.2;
        height: auto;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0;
    }
    
    .hamburger {
        margin-left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 12px;
    }
    
    .btn-cta,
    .btn-contact {
        width: auto;
        flex: 1;
        min-width: 0;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid,
    .reports-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section .section-title {
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        margin-bottom: 25px;
        font-size: 16px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .btn-cta,
    .btn-contact {
        width: auto;
        flex: 1;
        min-width: 0;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .logos-track {
        gap: 20px;
        animation-duration: 30s;
    }
    
    .client-logo {
        flex: 0 0 140px;
        height: 60px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-suffix {
        font-size: 20px;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-section .section-title {
        margin-bottom: 12px;
        font-size: 28px;
    }
    
    .section-subtitle {
        margin-bottom: 20px;
        font-size: 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        margin-bottom: 10px;
        font-size: 15px;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Enhanced Visual Elements ==================== */


/* Selection styling */
::selection {
    background: rgba(108, 92, 231, 0.3);
    color: #2D3436;
}

::-moz-selection {
    background: rgba(108, 92, 231, 0.3);
    color: #2D3436;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: none;
}


/* ==================== Section-based Nav Button Colors ==================== */
/* Default accent color */
.header {
    --nav-accent: var(--primary-color);
}

/* Section-specific accent colors */
.header[data-section="home"] { --nav-accent: #0075de; }
.header[data-section="benefits"] { --nav-accent: rgb(242, 100, 25); }
.header[data-section="trust"] { --nav-accent: rgb(103, 81, 159); }
.header[data-section="calculator"] { --nav-accent: #0075de; }
.header[data-section="features"] { --nav-accent: rgb(103, 81, 159); }
.header[data-section="steps"] { --nav-accent: rgb(103, 81, 159); }
.header[data-section="pricing"] { --nav-accent: #0075de; }
.header[data-section="tools-comparison"] { --nav-accent: #0075de; }
.header[data-section="faq"] { --nav-accent: #0075de; }

/* Apply accent color to nav buttons */
.header .btn-primary {
    background: var(--nav-accent);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header .btn-primary:hover {
    background: color-mix(in srgb, var(--nav-accent) 85%, black);
}

.header .btn-secondary {
    color: var(--nav-accent);
    border: 2px solid var(--nav-accent) !important;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.header .btn-secondary:hover {
    background: var(--nav-accent);
    color: var(--white);
    border: 2px solid var(--nav-accent) !important;
}

/* Mobile button too */
.header .nav-mobile-button .btn-primary {
    background: var(--nav-accent);
}
