/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    max-width: 100%;
}

/* Screen Reader Only Class for Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

body.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    position: relative;
}

.header.scrolled .nav {
    padding: 0.5rem 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.header.scrolled .logo-image {
    height: 40px;
    width: 40px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.brand-name span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    margin-top: -2px;
}

.header.scrolled .brand-name h1 {
    font-size: 1.3rem;
}

.header.scrolled .brand-name span {
    font-size: 0.7rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu a:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-section a:hover {
    color: #667eea;
    transform: translateX(4px);
}

.dropdown-section a::before {
    display: none;
}

.dropdown-section a i {
    font-size: 1rem;
    width: 16px;
}

.dropdown-section span {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

.phone-numbers {
    display: flex;
    align-items: center;
}

.phone-numbers a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.phone-numbers a:hover {
    color: #667eea;
    transform: translateX(2px);
}

.phone-numbers a::before {
    content: '📞';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.header-contact .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.25);
}

.header-contact .btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px 10px;
    z-index: 1002;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(118, 75, 162, 0.2);
    outline: none;
    box-shadow: 0 2px 8px rgba(118, 75, 162, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(118, 75, 162, 0.3);
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.15);
    transform: translateY(-1px);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0.9;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .header-contact .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    .header.scrolled .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .footer-logo {
        height: 50px;
        width: 50px;
    }
    
    .brand-name h1 {
        font-size: 1.3rem;
    }
    
    .brand-name span {
        font-size: 0.7rem;
    }
    
    .header.scrolled .brand-name h1 {
        font-size: 1.2rem;
    }
    
    .header.scrolled .brand-name span {
        font-size: 0.65rem;
    }
    
    .phone-numbers a {
        font-size: 0.85rem;
    }
    
    .dropdown-menu {
        min-width: 260px;
        padding: 1.25rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    
    /* Hide header contact button when mobile menu is active */
    .nav-menu.active ~ .header-contact {
        display: none;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 0;
        color: #2d3748;
    }

    .header-contact {
        gap: 1rem;
    }

    .header-contact .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 40px;
        width: 40px;
    }
    
    .header.scrolled .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .footer-logo {
        height: 45px;
    }

    .brand-name h1 {
        font-size: 1.2rem;
    }
    
    .brand-name span {
        font-size: 0.65rem;
    }
    
    .header.scrolled .brand-name h1 {
        font-size: 1.1rem;
    }
    
    .header.scrolled .brand-name span {
        font-size: 0.6rem;
    }
    
    .logo-brand {
        gap: 10px;
    }
    
    .dropdown-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 300px;
        max-width: 90vw;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .header.scrolled .nav {
        padding: 0.6rem 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .header-contact .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .header.scrolled .logo-image {
        height: 30px;
        width: 30px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .brand-name h1 {
        font-size: 1.1rem;
    }
    
    .brand-name span {
        font-size: 0.6rem;
    }
    
    .header.scrolled .brand-name h1 {
        font-size: 1rem;
    }
    
    .header.scrolled .brand-name span {
        font-size: 0.55rem;
    }
    
    .logo-brand {
        gap: 8px;
    }
    
    .dropdown-menu {
        min-width: 280px;
        padding: 1rem;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .phone-numbers {
        display: none;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .header-contact {
        gap: 2rem;
    }
    
    .phone-numbers a {
        font-size: 0.95rem;
    }
    
    .header-contact .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="700" r="80" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 25%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 15%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 1;
    }
    75% { 
        transform: translateY(-40px) rotate(270deg); 
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "text image";
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    grid-area: text;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-highlights {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

.highlight::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.hero-image {
    grid-area: image;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: -2rem;
}

.hero-image.floating {
    animation: none;
}

.hero-image.floating img {
    border-radius: 20px;
    box-shadow: 0 60px 200px rgba(102, 126, 234, 1.0), 0 30px 80px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(102, 126, 234, 0.8);
    transition: all 0.3s ease;
}

.hero-image.floating img:hover {
    /* Animation disabled */
}

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

/* Responsive styles for floating image */
@media (max-width: 1024px) {
    .hero-image.floating img {
        width: 480px;
        height: 393px;
        max-width: 480px;
        box-shadow: 0 50px 160px rgba(102, 126, 234, 1.0), 0 24px 70px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(102, 126, 234, 0.7);
    }
}

@media (max-width: 768px) {
    .hero-image.floating img {
        width: 400px;
        height: 327px;
        max-width: 400px;
        box-shadow: 0 40px 140px rgba(102, 126, 234, 1.0), 0 20px 60px rgba(0, 0, 0, 0.36), 0 8px 24px rgba(102, 126, 234, 0.6);
    }
}

@media (max-width: 480px) {
    .hero-image.floating img {
        width: 320px;
        height: 262px;
        max-width: 320px;
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.3;
}

/* Tablet Styles for Hero */
@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1.5rem;
        grid-template-areas: 
            "title"
            "image"
            "highlights"
            "description"
            "buttons";
        text-align: center;
    }
    
    .hero-text {
        display: contents;
    }
    
    .hero-text h1 {
        grid-area: title;
        font-size: 3.5rem;
    }
    
    .hero-image {
        grid-area: image;
        justify-self: center;
        margin: 0;
        max-width: 380px;
    }
    
    .hero-highlights {
        grid-area: highlights;
        align-items: center;
        margin-bottom: 0;
    }
    
    .hero-description {
        grid-area: description;
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        grid-area: buttons;
        justify-self: center;
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
        gap: 3rem;
    }
    
    .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .shape-2 {
        width: 180px;
        height: 180px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .hero-image.floating img {
        width: 380px;
        height: 270px;
        max-width: 380px;
        border-radius: 18px;
    }
}

/* Mobile Styles for Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding-top: 130px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1.2rem;
        grid-template-areas: 
            "title"
            "image"
            "highlights"
            "description"
            "buttons";
        text-align: center;
    }
    
    .hero-text {
        display: contents;
    }
    
    .hero-text h1 {
        grid-area: title;
        font-size: 2.8rem;
        margin-bottom: 0;
    }
    
    .hero-image {
        grid-area: image;
        justify-self: center;
        margin: 0;
        max-width: 280px;
    }
    
    .hero-highlights {
        grid-area: highlights;
        align-items: center;
        margin-bottom: 0;
    }
    
    .hero-description {
        grid-area: description;
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        grid-area: buttons;
        justify-self: center;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image.floating img {
        width: 280px;
        height: 200px;
        max-width: 280px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    }
    
    .highlight {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .hero-card {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: -10%;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: 10%;
        left: -10%;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile Styles for Hero */
@media (max-width: 480px) {
    .hero {
        min-height: 55vh;
        padding-top: 140px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 0.8rem;
        grid-template-areas: 
            "title"
            "image"
            "highlights"
            "description"
            "buttons";
        text-align: center;
    }
    
    .hero-text {
        display: contents;
    }
    
    .hero-text h1 {
        grid-area: title;
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .hero-image {
        grid-area: image;
        justify-self: center;
        margin: 0;
        max-width: 240px;
    }
    
    .hero-highlights {
        grid-area: highlights;
        align-items: center;
        margin-bottom: 0;
    }
    
    .hero-description {
        grid-area: description;
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        grid-area: buttons;
        justify-self: center;
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image.floating img {
        width: 240px;
        height: 160px;
        max-width: 240px;
        border-radius: 12px;
        box-shadow: 0 30px 100px rgba(102, 126, 234, 1.0), 0 16px 50px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(102, 126, 234, 0.5);
    }
    
    .highlight {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .highlight::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    .hero-card {
        padding: 1.5rem 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 25px;
    }
}

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

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(60px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="rgba(102,126,234,0.03)"/><stop offset="100%" stop-color="rgba(118,75,162,0.03)"/></linearGradient></defs><polygon points="0,0 1000,200 1000,1000 0,800" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-text h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a5568;
    text-align: justify;
}

.about-text p strong {
    color: #2d3748;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.about-buttons .btn:hover::before {
    left: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    animation: fadeInRight 1s ease-out;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

/* Desktop only - horizontal layout for feature cards */
@media (min-width: 1025px) {
    .feature-card {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    
    .feature-icon {
        flex-shrink: 0;
        margin-bottom: 0;
        margin-top: 0.2rem;
    }
    
    .feature-content {
        flex: 1;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

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

.feature-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
    z-index: 3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }
}

/* Statistics Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Tablet Styles for About */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .about-buttons {
    justify-content: center;
    }
    
    .experience-badge {
        position: static;
        display: inline-block;
        margin-bottom: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles for About */
@media (max-width: 768px) {
    .about-content {
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    margin-bottom: 1rem;
}

    .about-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .experience-badge {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Small Mobile Styles for About */
@media (max-width: 480px) {
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .about-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .about-stats {
        padding: 1.5rem 0.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cooperation Section */
.cooperation {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.cooperation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="cooperationGrad" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(102,126,234,0.05)"/><stop offset="100%" stop-color="rgba(118,75,162,0.02)"/></radialGradient></defs><circle cx="100" cy="100" r="50" fill="url(%23cooperationGrad)"/><circle cx="900" cy="200" r="80" fill="url(%23cooperationGrad)"/><circle cx="200" cy="800" r="60" fill="url(%23cooperationGrad)"/><circle cx="800" cy="900" r="70" fill="url(%23cooperationGrad)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.cooperation .container {
    position: relative;
    z-index: 2;
}

.cooperation-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connection Lines */
.cooperation-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.3) 15%, 
        rgba(102, 126, 234, 0.6) 40%, 
        rgba(118, 75, 162, 0.8) 50%, 
        rgba(118, 75, 162, 0.6) 60%, 
        rgba(118, 75, 162, 0.3) 85%, 
        transparent 100%
    );
    z-index: 1;
    transform: translateY(-50%);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.step:not(:last-child)::after {
    opacity: 1;
}

.step:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.step:hover::after {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.step:hover .step-number::before {
    opacity: 0.2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

/* Step Icons */
.step-icon {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    opacity: 0.6;
    transform: scale(1.2) rotate(10deg);
}



/* CTA Section */
.cooperation-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.cooperation-cta h3 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cooperation-cta p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cooperation-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

/* Large Desktop Styles for Cooperation */
@media (min-width: 1200px) {
    .cooperation-steps {
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .step {
        padding: 3.5rem 2.5rem;
    }
    
    .step-number {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* Tablet Styles for Cooperation */
@media (max-width: 1024px) {
    .cooperation-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cooperation-steps .step:nth-child(4),
    .cooperation-steps .step:nth-child(5) {
        grid-column: 1;
        margin-left: 0;
        margin-right: 0;
    }
    
    .cooperation-steps .step:nth-child(4) {
        grid-column: 1;
        margin-left: 0;
    }
    
    .cooperation-steps .step:nth-child(5) {
        grid-column: 1;
        margin-right: 0;
    }
    
    .cooperation-steps::before {
        display: none;
    }
    
    .step::after {
        display: none;
    }
    
    .step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        width: 100%;
    }
    
    .step-number {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .step-content {
        flex: 1;
    }

    .step-content h3 {
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 1.5rem 0.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta p {
        font-size: 0.95rem;
    }
    
    .contact-cta .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-brand h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Footer Mobile Styles */
@media (max-width: 1024px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 50px;
        width: 50px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.5rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        height: 40px;
        width: 40px;
    }
    
    .footer-bottom {
        padding-top: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #333;
}



.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.social-btn:hover .social-icon img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Vacancies Section */
.vacancies {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.vacancies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="vacanciesGrad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="rgba(102,126,234,0.04)"/><stop offset="100%" stop-color="rgba(118,75,162,0.02)"/></linearGradient></defs><polygon points="0,0 300,0 200,200 0,150" fill="url(%23vacanciesGrad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.vacancies .container {
    position: relative;
    z-index: 2;
}

.vacancies-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.vacancies-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vacancy-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.vacancy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.vacancy-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.vacancy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.vacancy-card:hover .vacancy-icon {
    transform: scale(1.1) rotate(5deg);
}

.vacancy-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.vacancy-salary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.vacancy-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacancy-details li {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.vacancy-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #38a169;
    font-weight: bold;
}

/* Popular Badge for Vacancy Cards */
.vacancy-card.popular {
    position: relative;
}

.vacancy-card.popular::before {
    transform: scaleX(1);
}

.vacancy-card.popular .popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    z-index: 3;
    animation: bounce 2s infinite;
}

.vacancies-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.vacancies-cta h3 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vacancies-cta p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vacancies-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}

/* Large Desktop Styles for Vacancies */
@media (min-width: 1200px) {
    .vacancies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .vacancy-card {
        padding: 3rem 2.5rem;
    }
    
    .vacancy-icon {
        font-size: 3.5rem;
    }
    
    .vacancy-card h3 {
        font-size: 1.4rem;
    }
    
    .vacancies-cta {
        padding: 3.5rem 2.5rem;
    }
}

/* Tablet Styles for Vacancies */
@media (max-width: 1024px) {
    .vacancies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .vacancy-card {
        padding: 2rem 1.5rem;
    }
    
    .vacancy-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .vacancy-card h3 {
        font-size: 1.2rem;
    }
    
    .vacancies-intro p {
        font-size: 1.1rem;
    }
    
    .vacancies-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .vacancies-cta h3 {
        font-size: 1.6rem;
    }
}

/* Mobile Styles for Vacancies */
@media (max-width: 768px) {
    .vacancies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vacancy-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .vacancy-icon {
        font-size: 2.2rem;
    }
    
    .vacancy-card h3 {
        font-size: 1.1rem;
    }
    
    .vacancy-salary {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .vacancy-details li {
        font-size: 0.9rem;
    }
    
    .vacancies-intro p {
        font-size: 1rem;
    }
    
    .vacancies-cta {
        padding: 2rem 1rem;
    }
    
    .vacancies-cta h3 {
        font-size: 1.5rem;
    }
    
    .vacancies-cta p {
        font-size: 1rem;
    }
    
    .vacancies-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
}

/* Small Mobile Styles for Vacancies */
@media (max-width: 480px) {
    .vacancy-card {
        padding: 1.5rem 1rem;
    }
    
    .vacancy-icon {
        font-size: 2rem;
    }
    
    .vacancy-card h3 {
        font-size: 1rem;
    }
    
    .vacancy-details li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
    
    .vacancies-cta {
        padding: 1.5rem 0.5rem;
    }
    
    .vacancies-cta h3 {
        font-size: 1.3rem;
    }
    
    .vacancies-cta p {
        font-size: 0.95rem;
    }
    
    .vacancies-cta .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Owner Section */
.owner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.owner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="ownerGrad1" cx="20%" cy="20%"><stop offset="0%" stop-color="rgba(102,126,234,0.08)"/><stop offset="100%" stop-color="rgba(102,126,234,0.02)"/></radialGradient><radialGradient id="ownerGrad2" cx="80%" cy="80%"><stop offset="0%" stop-color="rgba(118,75,162,0.08)"/><stop offset="100%" stop-color="rgba(118,75,162,0.02)"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23ownerGrad1)"/><circle cx="800" cy="800" r="200" fill="url(%23ownerGrad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

.owner .container {
    position: relative;
    z-index: 2;
}

.owner-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.owner-bottom {
    margin-bottom: 3rem;
}

.owner-image {
    display: flex;
        flex-direction: column;
    gap: 2rem;
    animation: fadeInLeft 1s ease-out;
}

.owner-photo {
    position: relative;
    display: flex;
    justify-content: center;
        align-items: center;
}

.owner-image-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border: 4px solid white;
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
}

.owner-image-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.2);
}

.photo-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border: 4px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.2);
}

.photo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.photo-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owner-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.credential-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.credential-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-item span {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.owner-story {
    animation: fadeInRight 1s ease-out;
}

.owner-story h3 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.owner-story h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
        left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text p strong {
    color: #2d3748;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owner-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    color: #2d3748;
        font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.owner-contact {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.owner-contact h4 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.owner-contact p {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.owner-buttons {
        display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.owner-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
}

/* Large Desktop Styles for Owner */
@media (min-width: 1200px) {
    .owner-content {
        gap: 5rem;
    }
    
    .owner-image-photo,
    .photo-placeholder {
        width: 350px;
        height: 350px;
    }
    
    .photo-icon {
        font-size: 4.5rem;
    }
    
    .owner-story h3 {
        font-size: 2.5rem;
    }
    
    .story-text p {
        font-size: 1.2rem;
    }
    
    .owner-contact {
        padding: 3rem 2.5rem;
    }
}

/* Tablet Styles for Owner */
@media (max-width: 1024px) {
    .owner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .owner-bottom {
        margin-bottom: 2rem;
    }
    
    .owner-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .owner-image-photo,
    .photo-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .photo-icon {
        font-size: 3.5rem;
    }
    
    .owner-story h3 {
        font-size: 2rem;
    }
    
    .owner-story h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .story-text p {
        text-align: center;
    }
    
    .owner-contact {
        max-width: 600px;
    }
}

/* Mobile Styles for Owner */
@media (max-width: 768px) {
    .owner-content {
        gap: 2rem;
    }
    
    .owner-image-photo,
    .photo-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .photo-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .photo-placeholder span {
        font-size: 1.2rem;
    }
    
    .owner-credentials {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .credential-item {
        padding: 0.8rem 1rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .credential-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .credential-item span {
        font-size: 0.9rem;
        text-align: left;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .owner-story h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
    }
    
    .owner-contact {
        padding: 2rem 1.5rem;
    }
    
    .owner-contact h4 {
        font-size: 1.3rem;
    }
    
    .owner-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .owner-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* Small Mobile Styles for Owner */
@media (max-width: 480px) {
    .owner-image-photo,
    .photo-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .photo-icon {
        font-size: 2.5rem;
    }
    
    .photo-placeholder span {
        font-size: 1.1rem;
    }
    
    .owner-credentials {
        align-items: flex-start;
        text-align: left;
    }
    
    .credential-item {
        padding: 0.7rem 0.8rem;
        border-radius: 12px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .credential-item span {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .owner-story h3 {
        font-size: 1.6rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: 1.2rem 0.8rem;
        border-radius: 16px;
    }
    
    .value-icon {
        font-size: 1.8rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
    
    .owner-contact {
        padding: 1.5rem 1rem;
    }
    
    .owner-contact h4 {
        font-size: 1.2rem;
    }
    
    .owner-contact p {
        font-size: 0.95rem;
    }
    
    .owner-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="reviewsGrad1" cx="30%" cy="30%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient><radialGradient id="reviewsGrad2" cx="70%" cy="70%"><stop offset="0%" stop-color="rgba(255,255,255,0.08)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="300" cy="300" r="200" fill="url(%23reviewsGrad1)"/><circle cx="700" cy="700" r="150" fill="url(%23reviewsGrad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews .section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.reviews .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    max-width: 100%;
    margin-bottom: 4rem;
    overflow: hidden;
}

.reviews-container {
    position: relative;
    width: 100%;
}

.review-slide {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    transition: all 0.5s ease-in-out;
}

.review-slide.active {
    display: grid;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(102, 126, 234, 0.7);
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: #2d3748;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.review-card.featured {
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.review-card.featured::before {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-info span {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.verified-badge {
    background: #38a169;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review-card p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
}

.review-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-date {
    color: #718096;
    font-size: 0.85rem;
    font-weight: 500;
}

.review-location {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

/* Social Links */
.social-links {
        text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-links p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-buttons {
    display: flex;
        justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-btn.viber:hover {
    background: rgba(116, 89, 193, 0.8);
    border-color: #745bc1;
}

.social-btn.telegram:hover {
    background: rgba(41, 171, 226, 0.8);
    border-color: #29abe2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.social-btn.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
}

.social-btn.tiktok {
    border-color: #000000;
    color: #000000;
}

.social-btn.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

/* Reviews Statistics */
.reviews-stats {
    display: flex;
        justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.reviews-stat {
    text-align: center;
    min-width: 120px;
}

.reviews-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.reviews-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.reviews-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.reviews-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.reviews-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reviews-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.reviews-cta .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-weight: 600;
}

.reviews-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.reviews-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.reviews-cta .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.reviews-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a i {
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Specific social media colors */
.footer-social a:hover .fa-facebook-f {
    color: #1877f2;
}

.footer-social a:hover .fa-instagram {
    color: #e4405f;
}

.footer-social a:hover .fa-viber {
    color: #665cac;
}

.footer-social a:hover .fa-telegram {
    color: #0088cc;
}

.footer-social a:hover .fa-tiktok {
    color: #ff0050;
}

@media (max-width: 1024px) {
    .review-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .carousel-nav {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .social-buttons {
        gap: 1rem;
    }

    .social-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .reviews-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
        max-width: 500px;
        margin: 3rem auto;
        padding: 1.5rem;
    }
    
    .reviews-stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        position: relative;
    }
    
    .reviews-stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .review-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .review-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        margin: 0 auto;
        max-width: 350px;
        padding: 1.25rem;
    }
    
    .reviews-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
        max-width: 400px;
        margin: 2rem auto;
        padding: 1.5rem;
    }
    
    .reviews-stat {
        min-width: auto;
        width: 100%;
        max-width: 160px;
        position: relative;
    }
    
    .reviews-stat:not(:last-child)::after {
        display: none;
    }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="ctaGrad1" cx="20%" cy="20%"><stop offset="0%" stop-color="rgba(255,255,255,0.15)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient><radialGradient id="ctaGrad2" cx="80%" cy="80%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23ctaGrad1)"/><circle cx="800" cy="800" r="200" fill="url(%23ctaGrad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-urgency {
    background: rgba(255, 107, 107, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    animation: pulse-urgency 3s infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
}

.cta-urgency p {
    margin: 0;
    color: white;
    font-size: 1.1rem;
}

.cta-urgency p:first-child {
    margin-bottom: 0.5rem;
}

.urgency-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    animation: count-down 1s ease-in-out infinite alternate;
}

@keyframes count-down {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

.cta-main-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
}

.cta-main-btn:hover::before {
    left: 100%;
}

.cta-main-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-guarantee {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.cta-guarantee p {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    line-height: 1.5;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    line-height: 1.4;
}

/* Large Desktop Styles for Final CTA */
@media (min-width: 1200px) {
    .final-cta-content {
        gap: 5rem;
    }
    
    .cta-text h2 {
        font-size: 3.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.4rem;
    }
    
    .cta-highlights {
        gap: 2rem;
    }
    
    .highlight-item {
        padding: 1.2rem 2rem;
    }
    
    .trust-indicators {
        padding: 3.5rem 2rem;
    }
}

/* Tablet Styles for Final CTA */
@media (max-width: 1024px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2.5rem 1rem;
    }
}

/* Mobile Styles for Final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta-content {
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-highlights {
        margin-bottom: 1.5rem;
    }
    
    .highlight-item {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .highlight-item span {
        font-size: 0.95rem;
    }
    
    .cta-actions {
        gap: 1.5rem;
    }
    
    .cta-urgency,
    .cta-guarantee {
        padding: 1.2rem;
    }
    
    .cta-urgency p,
    .cta-guarantee p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0.5rem;
    }
    
    .trust-item {
        padding: 1rem 0.5rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .trust-item span {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles for Final CTA */
@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 0.7rem 0.8rem;
        border-radius: 12px;
    }
    
    .highlight-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .cta-urgency,
    .cta-guarantee {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .cta-urgency p,
    .cta-guarantee p {
        font-size: 0.95rem;
    }
    
    .cta-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .trust-indicators {
        padding: 1.5rem 0.5rem;
        border-radius: 16px;
    }
    
    .trust-item {
        padding: 0.8rem 0.3rem;
    }
    
    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
}

/* Sticky Notification Banner - Enhanced UX */
.sticky-banner {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 380px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.4), 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInBounce 1.2s ease 3s forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.sticky-banner:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.5), 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(-15px);
        opacity: 0.8;
    }
    70% {
        transform: translateX(5px);
        opacity: 0.9;
    }
    85% {
        transform: translateX(-3px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-banner.show {
    transform: translateX(0);
    opacity: 1;
}

.sticky-banner.hide {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    position: relative;
}

.banner-icon {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
}

.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.banner-text strong {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-text span {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.banner-btn {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.3rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    opacity: 1;
}

/* Floating Action Button */
.floating-action-menu {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1400;
}

.fab-container {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.fab-main.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.fab-icon,
.fab-close {
    position: absolute;
    transition: all 0.3s ease;
}

.fab-close {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.fab-main.active .fab-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.fab-main.active .fab-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-options.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fab-option {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.fab-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.fab-option:hover::before {
    left: 100%;
}

.fab-option.viber {
    background: rgba(116, 89, 193, 0.9);
    color: white;
}

.fab-option.telegram {
    background: rgba(0, 136, 204, 0.9);
    color: white;
}

.fab-option.phone {
    background: rgba(52, 211, 153, 0.9);
    color: white;
}

.fab-option.callback {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: none;
    cursor: pointer;
}

.fab-option:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fab-option.viber:hover {
    box-shadow: 0 8px 25px rgba(116, 89, 193, 0.4);
}

.fab-option.telegram:hover {
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.fab-option.phone:hover {
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
}

.fab-option.callback:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.fab-option img {
    filter: brightness(1.2);
}

/* Enhanced responsiveness for sticky elements */
@media (max-width: 1024px) {
    
    .sticky-banner {
        right: 15px;
        max-width: 340px;
        top: 90px;
        animation: slideInBounce 1s ease 2s forwards;
    }

    .sticky-banner:hover {
        transform: translateX(-3px) scale(1.01);
    }
    
    .banner-content {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .banner-icon {
        font-size: 1.6rem;
    }

    .banner-text strong {
        font-size: 0.95rem;
    }

    .banner-text span {
        font-size: 0.85rem;
    }

    .banner-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .fab-main {
        width: 55px;
        height: 55px;
    }
    
    .fab-option {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    
    .sticky-banner {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 80px;
    }
    
    .banner-content {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .banner-text strong {
        font-size: 0.9rem;
    }
    
    .banner-text span {
        font-size: 0.8rem;
    }
    
    .banner-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .floating-action-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .fab-option {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .sticky-banner {
        top: 70px;
        right: 5px;
        left: 5px;
    }
    
    .banner-content {
        padding: 0.7rem 0.8rem;
        gap: 0.6rem;
    }
    
    .banner-icon {
        font-size: 1.3rem;
    }
    
    .banner-text strong {
        font-size: 0.85rem;
    }
    
    .banner-text span {
        font-size: 0.75rem;
    }
    
    .banner-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .banner-close {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .floating-action-menu {
        bottom: 10px;
        right: 10px;
    }
    
    .fab-main {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .fab-option {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Animation for FAB options staggered entrance */
.fab-options.show .fab-option:nth-child(1) {
    animation: fabSlideIn 0.3s ease 0.1s both;
}

.fab-options.show .fab-option:nth-child(2) {
    animation: fabSlideIn 0.3s ease 0.15s both;
}

.fab-options.show .fab-option:nth-child(3) {
    animation: fabSlideIn 0.3s ease 0.2s both;
}

.fab-options.show .fab-option:nth-child(4) {
    animation: fabSlideIn 0.3s ease 0.25s both;
}

@keyframes fabSlideIn {
    from {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Enhanced mobile positioning to avoid conflicts */
@media (max-width: 768px) {
    
    .floating-action-menu {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .cooperation-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cooperation-steps .step:nth-child(4),
    .cooperation-steps .step:nth-child(5) {
        grid-column: 1;
    }
    
    .cooperation-steps .step:nth-child(4) {
        grid-row: 4;
    }
    
    .cooperation-steps .step:nth-child(5) {
        grid-row: 5;
    }
    
    .cooperation-steps::before {
        display: none;
    }

    .step::after {
        display: none;
    }

    .step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .step-number {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 1.15rem;
    }

    .contact-details h3 {
        font-size: 1.3rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="contactGrad1" cx="20%" cy="20%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient><radialGradient id="contactGrad2" cx="80%" cy="80%"><stop offset="0%" stop-color="rgba(255,255,255,0.08)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23contactGrad1)"/><circle cx="800" cy="800" r="250" fill="url(%23contactGrad2)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
        flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a {
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.contact-details a:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

/* Contact Messengers Styling */
.contact-messengers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.messenger-group {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.messenger-group strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.messenger-group a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.messenger-group a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
    transform: translateX(5px);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
        text-align: center;
    }

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #2d3748;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b6b;
    background: #fff5f5;
}

.contact-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn {
    min-width: 200px;
    padding: 1.2rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.contact-cta .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.contact-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 3rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
    }
    
    .contact-cta {
        padding: 2rem 1rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-messengers {
        gap: 0.8rem;
    }
    
    .messenger-group {
        padding: 0.6rem;
    }
    
    .messenger-group strong {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .messenger-group a {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        background: #ffffff;
        color: #2d3748;
        border: 2px solid #e2e8f0;
    }
    
    .contact-cta {
        padding: 1.5rem 1rem;
    }
    
    .contact-cta h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta p {
        font-size: 0.9rem;
    }
    
    .contact-form .btn {
        width: 100%;
    }
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="partnersGrad1" cx="30%" cy="20%"><stop offset="0%" stop-color="rgba(102,126,234,0.05)"/><stop offset="100%" stop-color="rgba(102,126,234,0)"/></radialGradient><radialGradient id="partnersGrad2" cx="70%" cy="80%"><stop offset="0%" stop-color="rgba(118,75,162,0.05)"/><stop offset="100%" stop-color="rgba(118,75,162,0)"/></radialGradient></defs><circle cx="300" cy="200" r="400" fill="url(%23partnersGrad1)"/><circle cx="700" cy="800" r="350" fill="url(%23partnersGrad2)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.6;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-content {
    margin-top: 3rem;
}

.partners-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.partner-card {
    max-width: 600px;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.partner-card.featured {
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.partner-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.partner-info {
    margin-bottom: 2.5rem;
}

.partner-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 1rem;
}

.partner-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: #555;
}

.partner-action {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-action .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 1rem;
    min-width: 250px;
}

.partner-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Partners responsive design */
@media (max-width: 768px) {
    .partner-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .partner-action {
        padding-top: 1.5rem;
    }
    
    .partner-action .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .partner-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .benefit-icon {
        font-size: 1.1rem;
    }
    
    .partner-action {
        padding-top: 1rem;
    }
    
    .partner-action .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .partner-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Enhanced Specialties Section */
.specialties {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.specialties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>') repeat;
    pointer-events: none;
}

.specialties .container {
    position: relative;
    z-index: 1;
}

.specialties h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.specialties h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.specialty-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.specialty-item:hover .specialty-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.specialty-item:hover .specialty-icon i {
    color: white !important;
}

.specialty-icon i {
    transition: all 0.3s ease;
}

.specialty-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.specialty-item:hover h3 {
    color: #667eea;
}

/* Responsive Design for Specialties */
@media (max-width: 1024px) {
    .specialties {
        padding: 80px 0;
    }
    
    .specialties h2 {
        font-size: 2.2rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 50px;
    }
    
    .specialty-item {
        padding: 30px 20px;
    }
    
    .specialty-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .specialty-icon i {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .specialties {
        padding: 70px 0;
    }
    
    .specialties h2 {
        font-size: 2rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .specialty-item {
        padding: 25px 15px;
    }
    
    .specialty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .specialty-icon i {
        font-size: 1.6rem !important;
    }
    
    .specialty-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .specialties {
        padding: 60px 0;
    }
    
    .specialties h2 {
        font-size: 1.8rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .specialty-item {
        padding: 20px 12px;
    }
    
    .specialty-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .specialty-icon i {
        font-size: 1.4rem !important;
    }
    
    .specialty-item h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}



/* Vacancies CTA Section */
.vacancies-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    text-align: center;
}

.vacancies-cta-section .section-header {
    margin-bottom: 40px;
}

.vacancies-cta-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vacancies-cta-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Новые стили для кнопок в CTA секции */
.vacancies-cta-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 375px;
    height: 54px;
    color: white;
}

/* Убираем все псевдоэлементы */
.vacancies-cta-section .btn::before {
    display: none !important;
}

/* Кнопка Viber */
.vacancies-cta-section .viber-btn {
    background: linear-gradient(135deg, #7360DF 0%, #665CAC 100%);
    box-shadow: 0 4px 15px rgba(115, 96, 223, 0.25);
}

.vacancies-cta-section .viber-btn:hover {
    background: linear-gradient(135deg, #8A7CE8 0%, #7B6BB8 100%);
    box-shadow: 0 6px 20px rgba(115, 96, 223, 0.35);
    transform: translateY(-1px);
}

/* Кнопка Telegram */
.vacancies-cta-section .telegram-btn {
    background: linear-gradient(135deg, #2BA6E0 0%, #229ED9 100%);
    box-shadow: 0 4px 15px rgba(43, 166, 224, 0.25);
}

.vacancies-cta-section .telegram-btn:hover {
    background: linear-gradient(135deg, #40B5E8 0%, #2BA6E0 100%);
    box-shadow: 0 6px 20px rgba(43, 166, 224, 0.35);
    transform: translateY(-1px);
}

/* Statistics in CTA */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    text-align: center;
}

.cta-stat-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
    display: block;
}

.cta-stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.cta-stat-label {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
}

.btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive for Vacancies CTA Section */
@media (max-width: 1024px) {
    .vacancies-cta-section {
        padding: 60px 0;
    }
    
    .vacancies-cta-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 350px;
        margin: 20px auto 0;
        padding-top: 15px;
    }
    
    .cta-stat-icon {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .cta-stat-number {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .cta-stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .vacancies-cta-section {
        padding: 50px 0;
    }
    
    .vacancies-cta-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .vacancies-cta-section .section-header p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .vacancies-cta-section .btn {
        width: 345px;
        padding: 14px 20px;
        font-size: 15px;
        height: 50px;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 300px;
        margin: 20px auto 0;
        padding-top: 15px;
    }
    
    .cta-stat-icon {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .cta-stat-number {
        font-size: 1.1rem;
        margin-bottom: 1px;
    }
    
    .cta-stat-label {
        font-size: 0.55rem;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .vacancies-cta-section {
        padding: 40px 0;
    }
    
    .vacancies-cta-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .vacancies-cta-section .section-header p {
        font-size: 0.95rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 250px;
        margin: 15px auto 0;
        padding-top: 12px;
    }
    
    .cta-stat-icon {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .cta-stat-number {
        font-size: 1rem;
        margin-bottom: 1px;
    }
    
    .cta-stat-label {
        font-size: 0.5rem;
    }
    
    .vacancies-cta-section .btn {
        width: 320px;
        padding: 12px 18px;
        font-size: 14px;
        height: 46px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
    }
}

.specialties-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.specialties-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.specialties-cta .btn {
    position: relative;
    z-index: 1;
    border: 2px solid white;
    background: white;
    color: #4F46E5;
    padding: 15px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-width: 280px;
    width: auto;
    flex: 0 0 auto;
}



.btn-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    filter: brightness(1.1) contrast(1.1);
    position: relative;
    z-index: 1;
}

.vacancies-cta-section .btn {
    position: relative;
    z-index: 1;
}

.vacancies-cta-section .btn * {
    position: relative;
    z-index: 2;
}

/* Специальные стили для иконок */
.viber-btn .btn-icon {
    filter: brightness(1.2) contrast(1.2) saturate(1.1);
}

.telegram-btn .btn-icon {
    filter: brightness(1.2) contrast(1.2) saturate(1.1);
}

.specialties-cta .btn:hover .btn-icon {
    transform: scale(1.05);
}

.specialties-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.specialties-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.specialties-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #4F46E5;
    border-color: white;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* Специальные стили для Viber и Telegram кнопок */
.specialties-cta .btn.viber-btn {
    background: linear-gradient(135deg, #665CAC 0%, #7360DF 100%);
    border-color: #665CAC;
    color: white;
}

.specialties-cta .btn.viber-btn:hover {
    box-shadow: 0 8px 25px rgba(102, 92, 172, 0.3);
    transform: translateY(-2px);
}

.specialties-cta .btn.telegram-btn {
    background: linear-gradient(135deg, #229ED9 0%, #0088CC 100%);
    border-color: #229ED9;
    color: white;
}

.specialties-cta .btn.telegram-btn:hover {
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specialties-categories {
        gap: 40px;
    }
    
    .specialty-category {
        padding: 30px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .specialties-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 25px;
        max-width: 500px;
    }
    
    .specialties-stat:nth-child(2)::after {
        display: none;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .cta-stat-icon {
        font-size: 1.6rem;
    }
    
    .cta-stat-number {
        font-size: 1.8rem;
    }
    
    .specialties-cta {
        max-width: 700px;
        margin: 50px auto 0 auto;
        padding: 40px 30px;
    }
    
    .specialties-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .specialties {
        padding: 80px 0;
    }
    
    .specialties-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .specialties-categories {
        gap: 30px;
    }
    
    .specialty-category {
        padding: 25px;
        border-radius: 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .specialty-card {
        padding: 25px 20px;
    }
    
    .specialty-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .specialty-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .specialties-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 320px;
        padding: 18px 20px;
        margin: 30px auto 0 auto;
    }
    
    .specialties-stat:not(:last-child)::after {
        display: none;
    }
    
    .specialties-stat-number {
        font-size: 1.8rem;
    }
    
    .specialties-stat-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .specialties-stat-label {
        font-size: 0.75rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cta-stat-icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .cta-stat-number {
        font-size: 1.6rem;
    }
    
    .cta-stat-label {
        font-size: 0.7rem;
    }
    
    .specialties-cta {
        max-width: 100%;
        margin: 40px 15px 0 15px;
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .specialties-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .specialties-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .specialties-cta .btn {
        min-width: 300px;
        width: 300px;
        padding: 16px 24px;
        justify-content: center;
        border-radius: 50px;
        font-size: 1rem;
    }
    
    .btn-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .specialties {
        padding: 60px 0;
    }
    
    .specialty-category {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .specialty-card {
        padding: 20px 15px;
    }
    
    .specialty-icon {
        font-size: 1.8rem;
    }
    
    .specialty-card h4 {
        font-size: 1rem;
    }
    
    .specialty-salary {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .specialty-demand {
        font-size: 0.8rem;
    }
    
    .specialties-cta {
        padding: 30px 20px;
    }
    
    .specialties-cta h3 {
        font-size: 1.4rem;
    }
    
    .specialties-cta p {
        font-size: 0.95rem;
    }
}

/* Employers Section */
.employers {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.employers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    pointer-events: none;
}

.employers .container {
    position: relative;
    z-index: 2;
}

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

.employers .section-header h2 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.employers .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.employers .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.employers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.employer-logo {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.employer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.employer-logo:hover::before {
    opacity: 1;
}

.employer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
}

.employer-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.employer-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.employers-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.employers-stat {
    text-align: center;
    position: relative;
}

.employers-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.employers-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.employers-stat-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .employers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .employer-logo {
        height: 100px;
        padding: 15px;
    }
    
    .employer-logo img {
        max-height: 60px;
    }
    
    .employers-stats {
        gap: 40px;
    }
    
    .employers-stat:not(:last-child)::after {
        right: -20px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .employers {
        padding: 60px 0;
    }
    
    .employers .section-header {
        margin-bottom: 40px;
    }
    
    .employers .section-header h2 {
        font-size: 2rem;
    }
    
    .employers .section-header p {
        font-size: 1rem;
    }
    
    .employers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .employer-logo {
        height: 90px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .employer-logo img {
        max-height: 50px;
    }
    
    .employers-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .employers-stat:not(:last-child)::after {
        display: none;
    }
    
    .employers-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .employers {
        padding: 40px 0;
    }
    
    .employers .section-header h2 {
        font-size: 1.8rem;
    }
    
    .employers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .employer-logo {
        height: 80px;
        padding: 10px;
        border-radius: 10px;
    }
    
    .employer-logo img {
        max-height: 40px;
    }
    
    .employers-stat-number {
        font-size: 1.8rem;
    }
    
    .employers-stat-label {
        font-size: 0.9rem;
    }
}

/* More Reviews Section */
.more-reviews-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px 0;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.more-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    pointer-events: none;
}

.more-reviews-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.more-reviews-content h3 {
    color: #1a202c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.more-reviews-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.more-reviews-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.more-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.more-reviews-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.more-reviews-btn:hover::before {
    left: 0;
}

.more-reviews-btn:hover {
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.telegram-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.more-reviews-btn:hover .telegram-icon {
    transform: scale(1.1);
}

.external-link-icon {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.more-reviews-btn:hover .external-link-icon {
    opacity: 1;
    transform: translateX(2px) translateY(-2px);
}

.more-reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 1rem;
}

.more-reviews-stats .stat-item {
    text-align: center;
    position: relative;
}

.more-reviews-stats .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.more-reviews-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.more-reviews-stats .stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .more-reviews-section {
        padding: 40px 0;
        margin: 30px 0;
        border-radius: 15px;
    }
    
    .more-reviews-content {
        padding: 0 15px;
    }
    
    .more-reviews-content h3 {
        font-size: 1.6rem;
    }
    
    .more-reviews-content p {
        font-size: 1rem;
    }
    
    .more-reviews-btn {
        padding: 14px 28px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .more-reviews-stats {
        gap: 30px;
    }
    
    .more-reviews-stats .stat-item:not(:last-child)::after {
        right: -15px;
        height: 25px;
    }
    
    .more-reviews-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .more-reviews-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .more-reviews-section {
        padding: 30px 0;
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .more-reviews-content h3 {
        font-size: 1.4rem;
    }
    
    .more-reviews-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .more-reviews-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .more-reviews-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .more-reviews-stats .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .more-reviews-stats .stat-number {
        font-size: 1.3rem;
    }
}

