
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0A0A0A;
    --white: #FAFAFA;
    --gray: #999;
    --light-gray: #E5E5E5;
    --accent: #ff4545;
    --dark-bg: #1a1a1a;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Animated Background Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    pointer-events: none;
}

.bg-element-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: -300px;
    right: -300px;
    animation: float 20s ease-in-out infinite;
}

.bg-element-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
}

.cursor.hover {
    transform: scale(1.8);
    border-width: 1px;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.05s ease;
    opacity: 0;
}

.cursor-dot.active {
    opacity: 1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    padding: 28px 70px;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header.scrolled .logo {
    color: var(--black);
    text-shadow: none;
}

.logo:hover {
    letter-spacing: 4px;
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header-cta-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: var(--accent);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.menu-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

header.scrolled .menu-btn {
    border-color: var(--black);
}

header.scrolled .menu-btn span{
    background: var(--black);
}

header.scrolled .menu-btn::before {
    background: var(--black);
}

.menu-btn:hover::before {
    width: 120%;
    height: 120%;
}

.menu-btn:hover {
    transform: rotate(90deg);
}

.menu-btn:hover span {
    background: var(--white);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 69, 0.1), transparent);
    transition: left 3s ease;
}

.nav-overlay.active::before {
    left: 100%;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 70px;
    width: 56px;
    height: 56px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    overflow: hidden;
}

.nav-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.nav-close:hover::before {
    width: 120%;
    height: 120%;
}

.nav-close:hover {
    border-color: var(--accent);
    transform: rotate(90deg);
}

.nav-menu {
    list-style: none;
    text-align: center;
}

.nav-menu li {
    margin: 35px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active .nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

.nav-menu a {
    font-size: clamp(48px, 8vw, 62px);
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent);
    transform: translateX(30px);
}

/* Vertical Text */
.vertical-text {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 6px;
    z-index: 100;
    color: var(--gray);
    font-weight: 600;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.vertical-text:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 70px;
    background: var(--black);
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.08) 0%, transparent 70%);
    animation: rotate 35s linear infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.05) 0%, transparent 70%);
    animation: rotate 40s linear infinite reverse;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(60px, 11vw, 160px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -6px;
    margin-bottom: 30px;
    text-transform: uppercase;
    overflow: hidden;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(120%);
    animation: slideUpHero 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) { 
    animation-delay: 0.7s; 
    color: var(--accent);
}

@keyframes slideUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: 300;
    letter-spacing: -0.3px;
    max-width: 850px;
    margin-bottom: 50px;
    line-height: 1.6;
    color: var(--gray);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

@keyframes fadeInUp {
    to { 
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.6s;
}

.cta-button {
    padding: 28px 60px;
    font-size: 16px;
    font-weight: 700;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button span {
    position: relative;
    z-index: 1;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover span {
    color: var(--black);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 69, 69, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2s;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--gray);
}

.scroll-line {
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: var(--accent);
    animation: scrollMove 2.5s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateY(-35px); }
    50% { transform: translateY(70px); }
}

/* Philosophy Section */
.philosophy {
    padding: 220px 70px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(60px, 9vw, 140px);
    font-weight: 900;
    letter-spacing: -4px;
    margin-bottom: 120px;
    line-height: 0.95;
    text-transform: uppercase;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 70px;
}

.philosophy-item {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.philosophy-item:nth-child(1) {
    background-image: linear-gradient(135deg, rgba(250, 250, 250, 0.92) 0%, rgba(250, 250, 250, 0.95) 100%), url('../img/IMG_0654.JPG');
}

.philosophy-item:nth-child(2) {
    background-image: linear-gradient(135deg, rgba(250, 250, 250, 0.92) 0%, rgba(250, 250, 250, 0.95) 100%), url('../img/IMG_0655.JPG');
}

.philosophy-item:nth-child(3) {
    background-image: linear-gradient(135deg, rgba(250, 250, 250, 0.92) 0%, rgba(250, 250, 250, 0.95) 100%), url('../img/IMG_0666.JPG');
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 69, 0.03), transparent);
    transition: left 0.8s ease;
}

.philosophy-item:hover::before {
    left: 100%;
}

.philosophy-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.philosophy-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}

.philosophy-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* Partners Intro Section */
.partners-intro-section {
    padding: 220px 70px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partners-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 30%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.partners-intro-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.partners-intro-title {
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 900;
    margin-bottom: 70px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.partners-intro-subtitle {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--gray);
}

.partners-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.partner-feature {
    font-size: clamp(22px, 2.5vw, 30px);
    padding-left: 50px;
    position: relative;
    line-height: 1.5;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.partner-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.partner-feature:hover::before {
    width: 35px;
}

/* Why Nuvell Section */
.why-nuvell {
    padding: 220px 70px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-nuvell::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-left h2 {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.why-logo {
    font-size: clamp(70px, 11vw, 140px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin: 25px 0;
    letter-spacing: -3px;
    font-family: 'Space Mono', monospace;
}

.why-list {
    list-style: none;
    margin-top: 50px;
}

.why-list li {
    font-size: 19px;
    line-height: 1.8;
    margin: 28px 0;
    padding-left: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.why-list li:hover::before {
    width: 38px;
}

/* Russia Section */
.russia-section {
    padding: 220px 70px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.russia-title {
    font-size: clamp(50px, 7vw, 95px);
    font-weight: 900;
    margin-bottom: 50px;
    line-height: 1.15;
    letter-spacing: -2px;
}

.russia-title .accent {
    color: var(--accent);
}

.russia-description {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.7;
    max-width: 950px;
    margin-bottom: 80px;
    color: var(--gray);
    font-weight: 300;
}

.russia-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.russia-benefit {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px;
    background: var(--white);
    border-left: 6px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.russia-benefit.visible {
    opacity: 1;
    transform: translateY(0);
}

.russia-benefit:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.russia-benefit h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* One Stop Section */
.one-stop {
    padding: 220px 70px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.one-stop::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.08) 0%, transparent 70%);
    animation: pulse 12s ease-in-out infinite;
}

.one-stop-description {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.8;
    margin-bottom: 80px;
    color: var(--gray);
    max-width: 1000px;
    font-weight: 300;
}

/* One Stop Process - Diagonal Flow */
.one-stop-process {
    background: transparent;
    padding: 0;
    border: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.process-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px;
    border-left: 6px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.process-card:hover::before {
    transform: scale(1.5);
}

.process-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 40px rgba(255, 69, 69, 0.2);
}

.card-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 48px;
    color: rgba(255, 69, 69, 0.3);
    transition: all 0.3s ease;
}

.process-card:hover .card-arrow {
    color: var(--accent);
    transform: translateX(10px);
}

/* Tablet */
@media (max-width: 1024px) {
    .one-stop-process {
        gap: 30px;
        margin-top: 60px;
    }

    .process-card {
        padding: 50px;
    }

    .card-title {
        font-size: clamp(28px, 4.5vw, 40px);
    }

    .card-arrow {
        font-size: 40px;
        bottom: 25px;
        right: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .one-stop-process {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .process-card {
        padding: 40px;
    }

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 69, 69, 0.2);
    }

    .card-number {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 10px;
    }

    .card-arrow {
        font-size: 36px;
        bottom: 20px;
        right: 20px;
    }

    .process-card::before {
        width: 150px;
        height: 150px;
    }
    .partners-carousel {
        gap: 20px;
        animation-duration: 20s;
    }

    .partner-card {
        min-width: 200px;
        padding: 40px 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .partners-carousel {
        animation-duration: 15s;
    }
    .one-stop-process {
        gap: 20px;
        margin-top: 40px;
    }

    .process-card {
        padding: 30px;
        border-left-width: 4px;
    }

    .card-number {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
    }

    .card-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .card-arrow {
        font-size: 32px;
        bottom: 15px;
        right: 15px;
    }
    .partner-card {
        min-width: 160px;
        padding: 30px 20px;
    }

    .partner-logo {
        font-size: 16px;
    }
}

.process-title .accent {
    color: var(--accent);
}

.process-steps-text {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.process-arrow {
    color: var(--accent);
    margin: 0 20px;
    font-weight: 300;
    font-size: clamp(30px, 4vw, 48px);
}

/* Facts Section */
.facts {
    padding: 220px 70px;
    background: var(--white);
}

.fact-item {
    margin: 120px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.fact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fact-number {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 700;
}

.fact-title {
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 35px;
    letter-spacing: -3px;
}

.fact-description {
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    color: var(--gray);
    font-weight: 300;
}

/* Work With Us Section */
.work-with-us {
    padding: 220px 70px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.work-with-us::before {
    content: '';
    position: absolute;
    bottom: -400px;
    left: -400px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 100px;
    background: #222;
    position: relative;
}

.benefit-card {
    background: var(--black);
    padding: 65px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    opacity: 0;
    transform: scale(0.95);
}

.benefit-card.visible {
    opacity: 1;
    transform: scale(1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 69, 0.12), transparent);
    transition: left 0.7s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::after {
    width: 100%;
}

.benefit-card:hover {
    background: #0a0a0a;
    transform: translateY(-12px) scale(1);
}

.benefit-number {
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: 25px;
    right: 25px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Mono', monospace;
}

.benefit-card:hover .benefit-number {
    opacity: 0.15;
    transform: scale(1.15) rotate(-5deg);
}

.benefit-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.benefit-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.benefit-highlight {
    color: var(--accent);
    font-weight: 900;
}

/* Partners Section */
.partners {
    padding: 220px 70px;
    background: var(--white);
    overflow: hidden;
}

.partners-carousel-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 100px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.partners-carousel {
    display: inline-flex;
    gap: 30px;
    padding-right: 30px;
}


.partners-carousel:active {
    cursor: grabbing;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partners-carousel.dragging {
    animation-play-state: paused;
    cursor: grabbing;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.partners-carousel-wrapper:active {
    cursor: grabbing;
}

.partners-intro {
    text-align: center;
    font-size: 22px;
    margin-bottom: 100px;
    color: var(--gray);
    font-weight: 300;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    background: #222;
    position: relative;
}
.partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.partner-card.visible {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover::before {
    width: 500px;
    height: 500px;
}

.partner-card:hover {
    background: #0a0a0a;
    transform: scale(1.08) translateY(-8px);
    z-index: 10;
}

.partner-logo {
    font-size: 24px;
    font-weight: 900;
    color: #c9a870;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
}

.partner-card:hover .partner-logo {
    color: var(--white);
    transform: scale(1.12);
}

/* Projects Gallery Section */
.projects-gallery {
    padding: 70px 70px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 20px;
    margin-top: 100px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 20px;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* Bento-style расположение */
.gallery-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.gallery-item:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
}

.gallery-item:nth-child(5) {
    grid-column: 5 / 7;
    grid-row: 3 / 5;
}

.gallery-item:nth-child(6) {
    grid-column: 1 / 7;
    grid-row: 5 / 7;
}

/* Адаптив */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 180px);
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 3 / 5; grid-row: 1 / 3; }
    .gallery-item:nth-child(3) { grid-column: 1 / 3; grid-row: 3 / 5; }
    .gallery-item:nth-child(4) { grid-column: 3 / 5; grid-row: 3 / 5; }
    .gallery-item:nth-child(5) { grid-column: 1 / 5; grid-row: 5 / 6; }
    .gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 6 / 7; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .gallery-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        border-radius: 12px;
    }
    
    .gallery-item .gallery-image {
        aspect-ratio: 16/10;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    letter-spacing: -0.5px;
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-description {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gallery-item:hover .gallery-description {
    transform: translateY(0);
}

/* Stats Section */
.stats {
    padding: 70px 70px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    color: var(--black);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: 'NUVELL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(150px, 20vw, 350px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: -10px;
    pointer-events: none;
    z-index: 0;
}

.stat-item {
    text-align: center;
    padding: 60px;
    border: 3px solid var(--black);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--black);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.stat-item:hover::before {
    width: 100%;
}

.stat-item:hover {
    color: var(--white);
    transform: scale(1.05) translateY(0);
}

.stat-number {
    font-size: clamp(70px, 9vw, 110px);
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    letter-spacing: -2px;
}

.stat-item:hover .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 25px;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 220px 70px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 69, 69, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.contact h2 {
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 900;
    margin-bottom: 80px;
    line-height: 1.1;
    text-align: left;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 50px 0;
}

.contact-info h3 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.info-item {
    margin: 32px 0;
    font-size: 17px;
    color: var(--gray);
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.info-item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item a:hover::after {
    width: 100%;
}

.info-item a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.contact-form {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form.visible {
    opacity: 1;
    transform: translateX(0);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 22px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 600;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
    padding: 10px;
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin: 35px 0;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 120px 70px 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 70px;
    margin-bottom: 100px;
}

.footer-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 35px;
    font-family: 'Space Mono', monospace;
    letter-spacing: -0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-style: italic;
    font-weight: 300;
}

.partners-intro-section .section-title,
.partners-intro-section .partner-features {
    position: relative;
    z-index: 2;
}

.mobile-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 69, 69, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-call 2s ease-in-out infinite;
}

.mobile-call-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 69, 69, 0.6);
}

.mobile-call-btn:active {
    transform: scale(0.95);
}

.mobile-call-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 69, 69, 0.4), 0 0 0 0 rgba(255, 69, 69, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 69, 69, 0.4), 0 0 0 15px rgba(255, 69, 69, 0);
    }
}

@media(max-width: 1400px) {
    .nav-menu a{
        font-size: 40px;
    }
    header{
        padding: 20px 70px;
    }
    .nav-close{
        top: 20px;
        right: 70px;
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    header {
        padding: 35px 50px;
    }
    .nav-close{
        top: 35px;
        right: 50px;
    }

    header.scrolled {
        padding: 25px 50px;
    }

    .hero,
    .philosophy,
    .partners-intro-section,
    .why-nuvell,
    .russia-section,
    .one-stop,
    .facts,
    .work-with-us,
    .partners,
    .stats,
    .contact {
        padding: 150px 50px;
    }

    .partners{
        padding-bottom: 0 !important ;
    } 

    .section-title {
        font-size: 80px;
        margin-bottom: 80px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .russia-benefits {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large,
    .gallery-item-tall,
    .gallery-item-medium {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nav-menu a {
        font-size: 56px;
    }

    .vertical-text {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 25px 35px;
    }
    .nav-close{
        top: 25px;
        right: 35px;
    }

    header.scrolled {
        padding: 20px 35px;
    }

    .header-cta-btn {
        display: none;
    }

    .hero,
    .philosophy,
    .partners-intro-section,
    .why-nuvell,
    .russia-section,
    .one-stop,
    .facts,
    .work-with-us,
    .partners,
    .stats,
    .contact {
        padding: 120px 35px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .section-title {
        font-size: 60px;
        margin-bottom: 60px;
    }

    .benefits-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 42px;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    .one-stop-process {
        padding: 40px 30px;
    }

    .process-arrow {
        display: block;
        margin: 12px 0;
    }
    .mobile-call-btn {
        display: flex;
    }
}
@media(max-width: 1900px) {
    .hero-title{
        font-size: 150px;
    }
    .hero-text{
        font-size: 25px;
    }
}

@media(max-width: 1200px) {
    .hero-title {
        font-size: 120px;
    }
}
@media(max-width: 992px) {
    .hero-title {
        font-size: 100px;
    }
    .hero-text{
        margin-bottom: 35px;
    }
}
    @media(max-width: 768px) {
    .hero-title {
        font-size: 80px;
    }
    .hero-text {
        font-size: 20px;
    }
    .scroll-indicator{
        bottom: 50px;
    }
}
@media(max-width: 576px) {
    .hero-title {
        font-size: 50px;
    }
    .hero-text {
        font-size: 16px;
    }
    .cta-button {
        padding: 20px 30px;
    }    
    .scroll-indicator {
        bottom: 10px;
        transform: translateX(-50%) !important;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 60px;
    }
    .philosophy-item{
        padding: 20px;
    }
    .philosophy-title{
        font-size: 30px;
    }
    .partners-intro-title{
        font-size: 40px;
    }
    .projects-gallery{
        padding: 35px;
    }
    .contact h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {

  html { font-size: 90%; }      
  body { font-size: 16px; }     

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  header { padding: 14px 20px; }
  .logo { font-size: 20px; }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .nav-close{
    width: 44px;
    height: 44px;
    top: 14px;
    right: 20px;
  }

  .hero { padding: 0 20px; }

  .hero-title {
    font-size: clamp(42px, 11vw, 60px);
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .cta-button {
    padding: 18px 28px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: clamp(38px, 10vw, 56px);
    margin-bottom: 60px;
    letter-spacing: -2px;
  }

  .philosophy { padding-top: 120px; padding-bottom: 120px; }
  .philosophy-grid { gap: 24px; }
  .philosophy-item { padding: 28px; }

  .philosophy-title { font-size: 22px; margin-bottom: 14px; }
  .philosophy-text { font-size: 14px; line-height: 1.6; }

  input, select {
    font-size: 14px;
    padding: 14px 16px;
  }
  .mobile-call-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .mobile-call-btn svg {
        width: 22px;
        height: 22px;
    }
}



.partner-card a{
    text-decoration: none !important;
}

.partner-feature{
    color: var(--white) !important;
    position: relative;
    z-index: 2;
}

.partners-intro-subtitle{
    color: var(--white) !important;
    position: relative;
    z-index: 2;
}

.header-cta-btn{
    background: none;
    background-color: none;
}

header.scrolled .header-cta-btn {
    color: #000;
}

.form-checkbox-group {
    margin: 35px 0;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: relative;
    min-width: 24px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-right: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-checkbox:hover .checkbox-checkmark {
    border-color: var(--accent);
}

.custom-checkbox input:checked ~ .checkbox-checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkbox-checkmark::after {
    display: block;
}

.checkbox-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.custom-checkbox:hover .checkbox-label {
    color: var(--accent);
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.checkbox-label a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.checkbox-label a:hover::after {
    width: 100%;
}

.custom-checkbox input:required:invalid ~ .checkbox-checkmark {
    border-color: rgba(255, 255, 255, 0.15);
}

.custom-checkbox input:required:invalid:not(:focus):not(:hover) ~ .checkbox-checkmark {
    border-color: rgba(255, 100, 100, 0.5);
}

.custom-checkbox input:required:checked ~ .checkbox-checkmark {
    animation: checkboxPulse 0.4s ease;
}

@keyframes checkboxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}