/* ============================================
   DESKTOP ONLY STYLES
   Только десктопная версия без адаптивности
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    width: 0;
    max-width: 1400px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: expandFromCenter 1.5s ease-out 0.2s forwards;
}

@keyframes expandFromCenter {
    from {
        width: 0;
        opacity: 0.8;
    }
    to {
        width: 95%;
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    min-width: 0;
    opacity: 0;
    animation: fadeInContent 0.8s ease-out 1.7s forwards;
}

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

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInContent 0.8s ease-out 1.7s forwards;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}


.nav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    opacity: 0;
    animation: fadeInContent 0.8s ease-out forwards;
}

.nav-links li:nth-child(1) { animation-delay: 1.8s; }
.nav-links li:nth-child(2) { animation-delay: 1.9s; }
.nav-links li:nth-child(3) { animation-delay: 2.0s; }
.nav-links li:nth-child(4) { animation-delay: 2.1s; }
.nav-links li:nth-child(5) { animation-delay: 2.2s; }
.nav-links li:nth-child(6) { animation-delay: 2.3s; }

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.phone-btn {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s;
    white-space: nowrap;
}

.phone-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.calculator-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid #000;
    transition: all 0.3s;
    white-space: nowrap;
}

.calculator-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MAIN SECTION
   ============================================ */

.main-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    padding-top: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
}

.main-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1100px;
    line-height: 1.3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
    padding: 0 40px;
}

.consultation-btn {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #000;
    padding: 22px 70px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.consultation-btn:hover::before {
    width: 300px;
    height: 300px;
}

.consultation-btn:hover {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    border-color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3);
}

.stats-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 60px;
    color: #fff;
    z-index: 3;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0;
    min-width: 140px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 3;
    font-weight: 600;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    min-height: 100vh;
    background: #000;
    padding: 120px 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(255, 255, 255, 0.05),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        rgba(255, 255, 255, 0.4) 100%
    );
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 
            0 0 10px rgba(255, 255, 255, 0.2),
            0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        opacity: 0.8;
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.services-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.services-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 32px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:last-child {
    border-bottom: none;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

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

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.service-card:hover {
    transform: translateX(8px);
    padding-left: 16px;
}

.service-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-right {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1200px;
    width: 100%;
}

.video-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.video-gallery {
    display: flex;
    gap: 8px;
    padding: 40px 0;
    will-change: transform;
    transform-style: preserve-3d;
    justify-content: center;
}

.gallery-video {
    width: 350px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) opacity(0.85);
    transform: scale(0.8) translateZ(-150px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    will-change: transform, filter, width, height;
}

.gallery-video.active {
    width: 450px;
    height: 700px;
    filter: brightness(1.1) opacity(1);
    transform: scale(1) translateZ(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-video.prev,
.gallery-video.next {
    filter: brightness(1) opacity(0.9);
    transform: scale(0.85) translateZ(-80px);
}

.gallery-video.prev-prev,
.gallery-video.next-next {
    filter: brightness(0.95) opacity(0.8);
    transform: scale(0.75) translateZ(-150px);
}

/* ============================================
   CASES SECTION
   ============================================ */

.cases-section {
    min-height: 100vh;
    background: #fff;
    padding: 120px 60px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cases-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.cases-title {
    font-size: 72px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.cases-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 80px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
}

.case-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 280px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.case-tag {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-year {
    font-size: 14px;
    font-weight: 600;
    color: #999;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 62px;
}

.case-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

.case-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.case-button {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.case-button:hover {
    background-color: #000;
    color: #fff;
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */

.how-we-work-section {
    min-height: 100vh;
    background: #fff;
    padding: 120px 60px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-we-work-container {
    max-width: 1400px;
    width: 100%;
}

.how-we-work-title {
    font-size: 72px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.workflow-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.roadmap-card {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.roadmap-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.roadmap-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.roadmap-step-number {
    font-size: 120px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.roadmap-step-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.roadmap-step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.roadmap-progress {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.roadmap-progress span {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
}

.step-card.visible {
    animation: slideInRight 0.6s ease forwards;
}

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

.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.step-card:hover::before,
.step-card.active::before {
    width: 4px;
}

.step-card:hover {
    border-color: #000;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card.active {
    border-color: #000;
    background: #fafafa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    min-width: 50px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.step-card:hover .step-number,
.step-card.active .step-number {
    color: #000;
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.step-card:hover .step-title,
.step-card.active .step-title {
    color: #000;
}

.step-card:hover .step-description,
.step-card.active .step-description {
    color: #333;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    min-height: 100vh;
    background: #000;
    padding: 120px 60px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reviews-container {
    max-width: 1400px;
    width: 100%;
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.reviews-title {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.reviews-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.review-card:hover::before {
    transform: translateX(100%);
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.review-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-rating .star {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.review-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    min-height: 100vh;
    background: #fff;
    padding: 120px 60px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 72px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.info-text {
    margin-bottom: 40px;
}

.info-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #000;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e5e5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-submit {
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: auto;
}

.form-submit:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-submit:active {
    transform: translateY(0);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    min-height: 100vh;
    background: #fff;
    padding: 120px 60px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-container {
    max-width: 1400px;
    width: 100%;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title {
    font-size: 72px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.blog-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.read-more-icon {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.article-card:hover .read-more-icon {
    transform: translateX(0);
}

.article-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.article-category {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 62px;
}

.article-card:hover .article-title {
    color: #333;
}

.article-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

.article-link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 20px;
}

.article-link:hover {
    color: #333;
    gap: 12px;
}

.article-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.article-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #000;
    padding: 80px 60px 40px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.loading {
    text-align: center;
    padding: 100px 20px;
    font-size: 18px;
    color: #666;
}
