:root {
    --primary-blue: #13d6d1;
    --primary-dark: #1D283A;
    --accent-blue: #13d6d1;
    --accent-light: #13d6d1;
    --text-dark: #1D283A;
    --text-gray: #4A5568;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-light: #E2E8F0;
    
    --shadow-sm: 0 2px 8px rgba(10, 77, 140, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 77, 140, 0.12);
    --shadow-lg: 0 12px 40px rgba(10, 77, 140, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 32px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.logo-divider {
    width: 2px;
    height: 30px;
    background: var(--border-light);
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--bg-white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0A4D8C 0%, #062F54 100%);
    overflow: hidden;
}

/* Компактная версия Hero */
.hero-compact {
    padding: 100px 0 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
}

/* Grid для двух колонок */
.hero-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    margin-bottom: 0;
}

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

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-compact .hero-title {
    font-size: clamp(22px, 2.5vw, 28px);
}

.title-line {
    display: block;
    animation: slideInLeft 0.6s ease-out both;
}

.title-line:nth-child(2) {
    animation-delay: 0.1s;
}

.title-line:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-line.highlight {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1;
}

.hero-warning {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 3px;
    padding: 14px 18px;
    line-height: 1;
}

/* Info Box */
.hero-info-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 3px;
    margin-top: 0px !important;
    line-height: 1;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    margin-bottom: 3px;
}

.info-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1;
    font-size: 14px;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--accent-orange);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.info-highlight {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.info-warning {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px 0;
    padding: 12px 16px;
    background: rgba(255, 107, 53, 0.2);
    border-left: 4px solid var(--accent-orange);
    border-radius: 6px;
    line-height: 1.5;
}

.info-warning strong {
    font-weight: 700;
    color: var(--bg-white);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out both;
}

.feature-badge:nth-child(1) { animation-delay: 0.4s; }
.feature-badge:nth-child(2) { animation-delay: 0.5s; }
.feature-badge:nth-child(3) { animation-delay: 0.6s; }

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-weight: 600;
    color: var(--bg-white);
    font-size: 14px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ИСПРАВЛЕНИЕ HERO ИЗОБРАЖЕНИЯ */

.hero-image-container {
    position: relative;
    width: 100% !important;  /* НЕ 123% */
    max-width: 550px !important;  /* Большой размер */
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 968px) {
    .hero-compact {
        padding-bottom: 80px !important;
    }
    
    .hero-image-container {
        max-width: 350px !important;
    }
    
    .hero-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .hero-compact {
        padding-bottom: 70px !important;
    }
    
    .hero-image-container {
        max-width: 280px !important;
    }
    
    .hero-image-wrapper {
        margin-bottom: 40px;
    }
    
    .hero-grid {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-compact {
        padding-bottom: 60px !important;
    }
    
    .hero-image-container {
        max-width: 240px !important;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image:not([src]), 
.hero-image[src=""],
.hero-image[src="hero-image.jpg"] {
    display: none;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-image[src]:not([src=""]):not([src="hero-image.jpg"]) ~ .image-placeholder {
    display: none;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    
}

.placeholder-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 14px;
    line-height: 1.6;
}

.placeholder-content code {
    display: block;
    margin-top: 8px;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--accent-orange);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-white);
    clip-path: ellipse(100% 100% at 50% 100%);
}

/* Widget Section */
.widget-section {
    margin-top: -140px !important;  /* Поднять виджет ПОВЕРХ волны */
    padding-top: 70px !important;  /* Компенсировать для содержимого */
    position: relative;
    z-index: 10;
}

.widget-intro {
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 5vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
}

.insurance-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

#alfa-widget {
    width: 100%;
    min-height: 400px;
}

.widget-placeholder {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--border-light);
}

.placeholder-icon {
    font-size: 24px;
    margin-bottom: 20px;
}

.widget-placeholder p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Section */
.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5; /* светлый фон */
    padding: 5px; /* отступ от краёв */
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Risks List */
.risks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.risk-item {
    display: flex;
    gap: 32px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--accent-orange);
}

.risk-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.risk-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    min-width: 60px;
    opacity: 0.3;
}

.risk-content {
    flex: 1;
}

.risk-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.risk-text {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.risk-amount {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 20px;
    font-size: 14px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-orange);
    font-weight: 300;
    transition: var(--transition);
    min-width: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer .contact-list {
    list-style: none;
    padding: 0 32px 16px;
}

.faq-answer .contact-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    margin-bottom: 8px;
}

.faq-answer .contact-list li::before {
    content: '•';
    color: var(--accent-orange);  /* Оранжевые буллиты */
    font-size: 18px;
}

.faq-answer .important-note {
    padding: 12px 32px 24px;
    background: rgba(255, 107, 53, 0.08);  /* Светло-оранжевый фон */
    border-left: 3px solid var(--accent-orange);  /* Оранжевая полоса */
}

/* Claims Process */
.claims-process {
    max-width: 900px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--accent-orange), transparent);
}

.step-number {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.claims-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.claims-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.claims-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact */
.section-contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-icon i {
    font-size: 56px; /* или 3rem */
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.logos-footer .logo-placeholder {
    filter: brightness(0) invert(1);
}

.footer-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Global Link Styles */

a {
    color: var(--primary-blue);
}

a:hover {
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-compact {
        padding: 110px 0 50px;
    }
    
    /* Grid становится одноколоночным */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Изображение уходит вниз */
    .hero-image-wrapper {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image-container {
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .risk-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .risk-number {
        min-width: auto;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 16px 0;
    }
    
    .logo-text {
        display: none;
    }
    
    .language-switcher {
        order: -1;
    }
    
    .hero {
        padding: 110px 0 50px;
    }
    
    .hero-compact {
        padding: 100px 0 40px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .hero-info-box {
        padding: 16px 18px;
        margin-bottom: 20px;
    }
    
    .info-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .info-list li {
        font-size: 13px;
        padding: 5px 0 5px 24px;
    }
    
    .info-list li::before {
        left: 6px;
        font-size: 18px;
    }
    
    .info-highlight {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .hero-image-container {
        max-width: 280px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
    
    .widget-placeholder {
        padding: 60px 24px;
    }
    
    .benefit-card,
    .risk-item,
    .contact-card {
        padding: 32px 24px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px;
    }
    
    .claims-cta {
        padding: 32px 24px;
    }
}

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

/* Selection */
::selection {
    background: #1D283A;
    color: var(--bg-white);
}

/* ========================================
   КНОПКА "КУПИТЬ ОНЛАЙН" В HERO
   ======================================== */

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
    padding: 10px 10px;
    background: var(--accent-blue);
    color: var(--bg-white);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
   /* box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);*/
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

hero-cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-icon {
    font-size: 22px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Адаптивность */
@media (max-width: 640px) {
    .hero-cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 16px;
        margin-top: 20px;
    }
    
    .cta-icon {
        font-size: 20px;
    }
}

