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

/* Responsive Variables */
:root {
    --base-width: 375px;
    --min-width: 300px;
    --max-width: 480px;
    
    /* Responsive scale function: clamp(min, preferred, max) */
    /* Formula: value * viewport_width / 375 */
}

body {
    background: #FFFFFD;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile Frame Container - Responsive (300px - 480px) */
.mobile-frame {
    width: clamp(300px, 100vw, 480px);
    min-height: 100vh;
    margin: 0 auto;
    background: #FFFFFD;
    position: relative;
    overflow-x: hidden;
}

/* Header Section - Responsive */
.header-section {
    position: absolute;
    width: clamp(252px, calc(315 * 100vw / 375), 403px);
    height: clamp(26px, calc(32 * 100vw / 375), 41px);
    top: clamp(10px, calc(13 * 100vw / 375), 17px);
    left: clamp(24px, calc(30 * 100vw / 375), 38px);
    background: transparent;
    z-index: 1000;
}

.header-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(97px, calc(121 * 100vw / 375), 155px);
    height: clamp(26px, calc(32 * 100vw / 375), 41px);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(19px, calc(24 * 100vw / 375), 31px);
    letter-spacing: clamp(-1.15px, calc(-1.44 * 100vw / 375), -1.84px);
    line-height: clamp(26px, calc(32 * 100vw / 375), 41px);
}

.header-menu {
    position: absolute;
    width: clamp(24px, calc(30 * 100vw / 375), 38px);
    height: clamp(24px, calc(30 * 100vw / 375), 38px);
    top: clamp(1px, calc(1 * 100vw / 375), 1px);
    left: clamp(228px, calc(285 * 100vw / 375), 365px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide desktop navigation on mobile */
.desktop-nav {
    display: none;
}

/* Mobile styles removed - handled by mobile.css */


/* Hero Section - Responsive */
.hero-section {
    position: absolute;
    width: 100%;
    height: clamp(592px, calc(740 * 100vw / 375), 947px);
    top: clamp(48px, calc(60 * 100vw / 375), 77px);
    left: 0;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.hero-bg-container {
    position: absolute;
    width: clamp(511px, calc(639 * 100vw / 375), 818px);
    height: clamp(592px, calc(740 * 100vw / 375), 947px);
    top: 0;
    left: clamp(-86px, calc(-108 * 100vw / 375), -138px);
}

.hero-bg-image {
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-left: 6%;
    animation: scaleIn 1.2s ease-out 0.2s both;
}

.hero-content {
    position: absolute;
    top: clamp(26px, calc(32 * 100vw / 375), 41px);
    left: clamp(24px, calc(30 * 100vw / 375), 38px);
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: clamp(38px, calc(48 * 100vw / 375), 61px);
    letter-spacing: clamp(-1.54px, calc(-1.92 * 100vw / 375), -2.46px);
    line-height: clamp(38px, calc(48 * 100vw / 375), 61px);
    height: clamp(77px, calc(96 * 100vw / 375), 123px);
    margin-bottom: clamp(26px, calc(33 * 100vw / 375), 42px);
    animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-description {
    width: clamp(263px, calc(329 * 100vw / 375), 421px);
    font-weight: 400;
    color: #FFFFFF;
    font-size: clamp(12px, calc(15 * 100vw / 375), 19px);
    letter-spacing: 0;
    line-height: clamp(19px, calc(24 * 100vw / 375), 31px);
    animation: slideInLeft 1s ease-out 0.7s both;
}


.hero-overlay {
    position: absolute;
    width: 100%;
    height: clamp(82px, calc(102 * 100vw / 375), 131px);
    top: clamp(489px, calc(611 * 100vw / 375), 782px);
    left: 0;
    background: linear-gradient(180deg, rgba(20, 13, 12, 0) 0%, rgba(20, 13, 12, 0.7) 100%);
}

.consultation-btn {
    position: absolute;
    width: clamp(252px, calc(315 * 100vw / 375), 403px);
    height: clamp(40px, calc(50 * 100vw / 375), 64px);
    top: clamp(514px, calc(642 * 100vw / 375), 822px);
    left: clamp(24px, calc(30 * 100vw / 375), 38px);
    background-color: #FFFFFF;
    border: none;
    cursor: pointer;
    z-index: 3;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    color: #B91414;
    font-size: clamp(12px, calc(15 * 100vw / 375), 19px);
    letter-spacing: clamp(-0.24px, calc(-0.30 * 100vw / 375), -0.38px);
    line-height: normal;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.9s both;
}

.consultation-btn:hover {
    transform: scale(1.05);
    background-color: #f5f5f5;
}

/* Statistics Section - Responsive */
.statistics-background {
    position: absolute;
    width: clamp(300px, 100vw, 480px);
    height: clamp(119px, calc(149 * 100vw / 375), 191px);
    top: clamp(618px, calc(773 * 100vw / 375), 989px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #B91414;
    z-index: 1;
}

.statistics-section {
    position: absolute;
    width: clamp(300px, 100vw, 480px);
    height: clamp(73px, calc(91 * 100vw / 375), 116px);
    top: clamp(634px, calc(793 * 100vw / 375), 1015px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    overflow: hidden;
}

.statistics-slider {
    display: flex;
    align-items: center;
    gap: 0;
    animation: slideStats 16s infinite ease-in-out;
    width: calc(clamp(300px, 100vw, 480px) * 8);
}

.stat-item {
    display: flex;
    flex-direction: column;
    width: clamp(300px, 100vw, 480px);
    align-items: center;
    justify-content: center;
    gap: clamp(4px, calc(5 * 100vw / 375), 6px);
    flex-shrink: 0;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: clamp(38px, calc(48 * 100vw / 375), 61px);
    text-align: center;
    letter-spacing: clamp(-1.54px, calc(-1.92 * 100vw / 375), -2.46px);
    line-height: clamp(51px, calc(64 * 100vw / 375), 82px);
    height: clamp(51px, calc(64 * 100vw / 375), 82px);
}

.stat-text {
    font-weight: 400;
    color: #FFFFFF;
    font-size: clamp(13px, calc(16 * 100vw / 375), 20px);
    text-align: center;
    letter-spacing: clamp(-0.26px, calc(-0.32 * 100vw / 375), -0.41px);
    line-height: clamp(18px, calc(22.2 * 100vw / 375), 28px);
    height: clamp(18px, calc(22 * 100vw / 375), 28px);
}

@keyframes slideStats {
    0%, 12.5% { transform: translateX(0); }
    18.75%, 31.25% { transform: translateX(calc(-1 * clamp(300px, 100vw, 480px))); }
    37.5%, 50% { transform: translateX(calc(-2 * clamp(300px, 100vw, 480px))); }
    56.25%, 68.75% { transform: translateX(calc(-3 * clamp(300px, 100vw, 480px))); }
    75%, 87.5% { transform: translateX(calc(-4 * clamp(300px, 100vw, 480px))); }
    93.75%, 100% { transform: translateX(calc(-5 * clamp(300px, 100vw, 480px))); }
}


/* Directions Section - Responsive */
.directions-section {
    position: absolute;
    width: clamp(284px, calc(355 * 100vw / 375), 454px);
    height: clamp(877px, calc(1096 * 100vw / 375), 1403px);
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px);
    left: clamp(8px, calc(10 * 100vw / 375), 13px);
}

.section-title {
    position: absolute;
    width: clamp(206px, calc(257 * 100vw / 375), 329px);
    top: 0;
    left: clamp(16px, calc(20 * 100vw / 375), 26px);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(24px, calc(30 * 100vw / 375), 38px);
    letter-spacing: clamp(-0.96px, calc(-1.20 * 100vw / 375), -1.54px);
    line-height: clamp(29px, calc(36 * 100vw / 375), 46px);
}

.direction-card {
    position: absolute;
    width: clamp(284px, calc(355 * 100vw / 375), 454px);
    height: clamp(258px, calc(323 * 100vw / 375), 413px);
    left: 0;
    overflow: hidden;
    border-radius: 8px;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.direction-card:nth-child(2) { /* First card */
    top: clamp(82px, calc(103 * 100vw / 375), 132px);
}

.direction-card:nth-child(3) { /* Second card */
    top: clamp(350px, calc(438 * 100vw / 375), 561px);
}

.direction-card:nth-child(4) { /* Third card */
    top: clamp(618px, calc(773 * 100vw / 375), 989px);
}

.card-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(57, 7, 7, 0.02);
}

.card-icon {
    position: absolute;
    width: clamp(280px, calc(358 * 100vw / 375), 358px);
    height: clamp(280px, calc(358 * 100vw / 375), 358px);
    top: clamp(-15px, calc(-19 * 100vw / 375), -19px);
    right: clamp(-95px, calc(-122 * 100vw / 375), -122px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.direction-card:nth-child(2) .card-icon {
    background-image: url('/directions/frame-4-1.png');
}

.direction-card:nth-child(3) .card-icon {
    background-image: url('/directions/frame-4-2.png');
}

.direction-card:nth-child(4) .card-icon {
    background-image: url('/directions/frame-4-3.png');
}

.card-title {
    position: absolute;
    width: 237px;
    top: 19px;
    left: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #251A1F;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 28.4px;
    z-index: 2;
}

.card-description {
    position: absolute;
    width: 315px;
    top: 125px;
    left: 20px;
    font-weight: 500;
    color: rgba(37, 26, 31, 0.71);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 22.4px;
}

.card-link {
    position: absolute;
    top: 284px;
    left: 20px;
    font-weight: 500;
    color: #B91414;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 22.4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #8a1010;
    transform: translateX(5px);
}

/* About Section (y: 2138, height: 1249px) - Responsive */
.about-section {
    position: absolute;
    width: 100%;
    height: 1249px;
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px);
    left: 0;
}

.about-section .section-title {
    position: absolute;
    top: 0;
    left: clamp(16px, calc(20 * 100vw / 375), 26px);
    width: clamp(132px, calc(165 * 100vw / 375), 211px);
    white-space: nowrap;
}

.about-content {
    position: absolute;
    width: clamp(372px, calc(465 * 100vw / 375), 465px);
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.about-photo {
    position: absolute;
    width: clamp(252px, calc(315 * 100vw / 375), 315px);
    height: clamp(292px, calc(365 * 100vw / 375), 365px);
    top: clamp(51px, calc(64 * 100vw / 375), 64px);
    left: calc(50% - clamp(126px, calc(157.5 * 100vw / 375), 157.5px));
    object-fit: cover;
    z-index: 10;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.about-quote-block {
    position: absolute;
    width: clamp(300px, 100vw, 480px);
    height: auto;
    min-height: clamp(388px, calc(388 * 100vw / 375), 388px);
    padding: clamp(50px, calc(50 * 100vw / 375), 50px) 0;
    top: clamp(322px, calc(402 * 100vw / 375), 402px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #B91414;
    overflow: hidden;
    z-index: 5;
    box-sizing: border-box;
}

.quote-mark-left {
    position: absolute;
    width: 207px;
    height: 661px;
    top: -309px;
    left: calc(50% - clamp(187px, calc(234 * 100vw / 375), 300px));
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    font-size: 413.3px;
    letter-spacing: -12.40px;
    line-height: 661.3px;
}

.quote-mark-right {
    position: absolute;
    width: 207px;
    height: 661px;
    bottom: -200px;
    right: clamp(-84px, calc(-105 * 100vw / 375), -134px);
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    font-size: 413.3px;
    letter-spacing: -12.40px;
    line-height: 661.3px;
}

.about-text {
    position: relative;
    width: clamp(227px, calc(284 * 100vw / 375), 284px);
    height: auto;
    margin: 0 auto;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: clamp(-0.24px, calc(-0.30 * 100vw / 375), -0.30px);
    line-height: clamp(19px, calc(24 * 100vw / 375), 24px);
    z-index: 2;
}

.about-features {
    position: absolute;
    top: clamp(900px, calc(830 * 100vw / 375), 830px);
    left: clamp(71px, calc(89 * 100vw / 375), 89px);
    width: clamp(280px, calc(350 * 100vw / 375), 350px);
}

.feature-item {
    position: relative;
}

.feature-item:nth-child(1) {
    margin-bottom: 50px;
}

.feature-item:nth-child(2) {
    margin-bottom: 50px;
}

.feature-item:nth-child(3) {
    margin-bottom: 50px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #160816;
    font-size: 21px;
    letter-spacing: -0.42px;
    line-height: 25px;
    margin-bottom: 10px;
    width: 100%;
    white-space: nowrap;
}

.feature-subtitle {
    font-weight: 500;
    color: rgba(22, 8, 22, 0.7);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 26px;
}

/* Cases Section (y: 3475, height: 461px) */
.cases-section {
    position: absolute;
    width: clamp(284px, calc(355 * 100vw / 375), 355px);
    height: 461px;
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px + 1249px + 138px);
    left: 50%;
    transform: translateX(-50%);
}

.cases-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.cases-section .section-title {
    position: absolute;
    top: 0;
    left: clamp(16px, calc(20 * 100vw / 375), 20px);
}

.view-all-link {
    position: absolute;
    top: clamp(6px, calc(7 * 100vw / 375), 9px);
    left: clamp(98px, calc(123 * 100vw / 375), 157px);
    font-weight: 500;
    color: #B91414;
    font-size: clamp(11px, calc(14 * 100vw / 375), 18px);
    letter-spacing: clamp(-0.22px, calc(-0.28 * 100vw / 375), -0.36px);
    line-height: clamp(18px, calc(22.4 * 100vw / 375), 29px);
    text-decoration: none;
}

.cases-slider {
    position: absolute;
    width: 355px;
    height: 383px;
    top: 56px;
    left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.cases-slider::-webkit-scrollbar {
    display: none;
}

.cases-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.case-card {
    position: relative;
    width: 355px;
    height: 383px;
    background-color: #FBF8F6;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.case-title {
    position: absolute;
    width: 267px;
    top: 20px;
    left: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #160816;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 28.4px;
}

.case-charge {
    position: absolute;
    top: 86px;
    left: 20px;
    font-weight: 400;
    color: #160816;
    font-size: 15px;
    letter-spacing: -0.30px;
    line-height: 24px;
}

.case-actions {
    position: absolute;
    top: 153px;
    left: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #160816;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 20.6px;
}

.case-description {
    position: absolute;
    width: 316px;
    top: 184px;
    left: 20px;
    font-weight: 400;
    color: #160816;
    font-size: 15px;
    letter-spacing: -0.30px;
    line-height: 24px;
}

.case-result {
    position: absolute;
    width: 355px;
    height: 94px;
    bottom: 0;
    left: 0;
    background-color: #F6E6E4;
}

.result-label {
    position: absolute;
    top: 19px;
    left: 24px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #B91414;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 20.6px;
}

.result-text {
    position: absolute;
    top: 52px;
    left: 24px;
    font-weight: 400;
    color: #160816;
    font-size: 15px;
    letter-spacing: -0.30px;
    line-height: 24px;
}

/* Blog Section (y: 5106, height: 423px) */
.blog-section {
    position: absolute;
    width: clamp(284px, calc(355 * 100vw / 375), 355px);
    height: 423px;
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px + 1249px + 138px + 461px + 60px + 1050px + 60px);
    left: 50%;
    transform: translateX(-50%);
}

.blog-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.blog-section .section-title {
    position: absolute;
    top: 0;
    left: 20px;
}

.read-link {
    position: absolute;
    top: clamp(6px, calc(7 * 100vw / 375), 9px);
    left: clamp(179px, calc(224 * 100vw / 375), 287px);
    font-weight: 500;
    color: #B91414;
    font-size: clamp(11px, calc(14 * 100vw / 375), 18px);
    letter-spacing: clamp(-0.22px, calc(-0.28 * 100vw / 375), -0.36px);
    line-height: clamp(18px, calc(22.4 * 100vw / 375), 29px);
    text-decoration: none;
}

.blog-slider {
    position: absolute;
    width: 355px;
    height: 335px;
    top: 66px;
    left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.blog-card {
    position: relative;
    width: 355px;
    height: 335px;
    background: rgba(57, 7, 7, 0.02);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.blog-image {
    position: absolute;
    width: 355px;
    height: 208px;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-title {
    position: absolute;
    width: 315px;
    top: 222px;
    left: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    color: #160816;
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 28.4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-weight: 500;
    color: rgba(22, 8, 22, 0.5);
    font-size: 13px;
    letter-spacing: -0.26px;
    line-height: 20.8px;
}

.blog-more {
    font-weight: 500;
    color: #B91414;
    font-size: 13px;
    letter-spacing: -0.26px;
    line-height: 20.8px;
    text-decoration: none;
}

/* Consultation Section (y: 3996, height: 1050px) */
.consultation-section {
    position: absolute;
    width: clamp(284px, calc(355 * 100vw / 375), 355px);
    height: 1050px;
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px + 1249px + 138px + 461px + 60px);
    left: 50%;
    transform: translateX(-50%);
}

.consultation-bg {
    position: absolute;
    width: 100%;
    height: clamp(261px, calc(326 * 100vw / 375), 326px);
    top: 0;
    left: 0;
    object-fit: cover;
    animation: scaleIn 1.2s ease-out 0.5s both;
}

.consultation-content {
    position: relative;
    z-index: 2;
}

.consultation-title {
    position: absolute;
    width: clamp(228px, calc(285 * 100vw / 375), 285px);
    top: clamp(285px, calc(356 * 100vw / 375), 356px);
    left: clamp(16px, calc(20 * 100vw / 375), 20px);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(24px, calc(30 * 100vw / 375), 30px);
    letter-spacing: clamp(-0.96px, calc(-1.20 * 100vw / 375), -1.20px);
    line-height: clamp(29px, calc(36 * 100vw / 375), 36px);
}

.consultation-description {
    position: absolute;
    width: clamp(256px, calc(320 * 100vw / 375), 320px);
    top: clamp(358px, calc(448 * 100vw / 375), 448px);
    left: clamp(16px, calc(20 * 100vw / 375), 20px);
    font-weight: 400;
    color: #160816;
    font-size: clamp(12px, calc(15 * 100vw / 375), 15px);
    letter-spacing: clamp(-0.24px, calc(-0.30 * 100vw / 375), -0.30px);
    line-height: clamp(18px, calc(23 * 100vw / 375), 23px);
}

.consultation-form {
    position: absolute;
    top: 541px;
    left: 0;
}

.form-input,
.form-textarea {
    width: 355px;
    height: 53px;
    background-color: #FBFAF8;
    border: none;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    color: rgba(22, 8, 22, 0.29);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 22.4px;
    outline: none;
}

.form-textarea {
    height: 197px;
    resize: none;
    padding-top: 15px;
}

.form-submit {
    width: 355px;
    height: 48px;
    background-color: #B91414;
    border: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 22.4px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #a01212;
    transform: translateY(-2px);
}

.form-disclaimer {
    position: absolute;
    width: 355px;
    top: 1009px;
    left: 20px;
    font-weight: 500;
    color: rgba(22, 8, 22, 0.6);
    font-size: 14px;
    letter-spacing: -0.04px;
    line-height: 19.6px;
}

.disclaimer-link {
    color: #B91414;
    text-decoration: none;
    letter-spacing: -0.04px;
}

/* Footer Section (y: 5589, height: 1112px) */
.footer-section {
    position: absolute;
    width: clamp(300px, 100vw, 480px);
    height: 1112px;
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px + 1249px + 138px + 461px + 60px + 1050px + 60px + 423px + 60px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #B91414;
    color: #FFFFFF;
}

.footer-logo {
    position: absolute;
    top: 24px;
    left: 29px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 32px;
    letter-spacing: -1.28px;
    line-height: normal;
}

/* Контакты секция */
.contact-group .contact-heading {
    position: absolute;
    top: 114px;
    left: 29px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.contact-group .contact-phone {
    position: absolute;
    top: 114px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

.contact-group .contact-email {
    position: absolute;
    top: 175px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

.contact-group .contact-city {
    position: absolute;
    top: 236px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

/* Услуги секция */
.services-group .services-heading {
    position: absolute;
    top: 328px;
    left: 29px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.services-group .footer-service:nth-child(2) {
    position: absolute;
    top: 328px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    width: clamp(140px, calc(175 * 100vw / 375), 175px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-align: left;
}

.services-group .footer-service:nth-child(3) {
    position: absolute;
    top: 410px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    width: clamp(140px, calc(175 * 100vw / 375), 175px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-align: left;
}

.services-group .footer-service:nth-child(4) {
    position: absolute;
    top: 492px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    width: clamp(140px, calc(175 * 100vw / 375), 175px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-align: left;
}

/* Адвокат секция */
.lawyer-info .info-heading {
    position: absolute;
    top: 611px;
    left: 29px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.lawyer-info .lawyer-name {
    position: absolute;
    top: 611px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.lawyer-info .lawyer-chamber {
    position: absolute;
    top: 693px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.lawyer-info .lawyer-registry {
    position: absolute;
    top: 775px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

/* Меню секция */
.footer-menu .menu-heading {
    position: absolute;
    top: 865px;
    left: 29px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
}

.footer-menu .menu-item:nth-child(2) {
    position: absolute;
    top: 865px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

.footer-menu .menu-item:nth-child(3) {
    position: absolute;
    top: 926px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

.footer-menu .menu-item:nth-child(4) {
    position: absolute;
    top: 987px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

.footer-menu .menu-item:nth-child(5) {
    position: absolute;
    top: 1048px;
    left: clamp(147px, calc(171 * 100vw / 375), 219px);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 20.8px;
    text-decoration: none;
}

/* Copyright Section (y: 6746, height: 122px) */
.copyright-section {
    position: absolute;
    width: clamp(244px, calc(305 * 100vw / 375), 390px);
    height: clamp(98px, calc(122 * 100vw / 375), 156px);
    top: calc(clamp(618px, calc(773 * 100vw / 375), 989px) + clamp(119px, calc(149 * 100vw / 375), 191px) + 60px + clamp(877px, calc(1096 * 100vw / 375), 1403px) + 60px + 1249px + 138px + 461px + 60px + 1050px + 60px + 423px + 60px + 1112px + 45px);
    left: clamp(24px, calc(30 * 100vw / 375), 38px);
}

.copyright-text {
    position: absolute;
    top: 0;
    left: clamp(1px, calc(1 * 100vw / 375), 1px);
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(13px, calc(16 * 100vw / 375), 20px);
    letter-spacing: clamp(-0.51px, calc(-0.64 * 100vw / 375), -0.82px);
    line-height: clamp(17px, calc(21 * 100vw / 375), 27px);
}

.copyright-info {
    position: absolute;
    top: clamp(34px, calc(42 * 100vw / 375), 54px);
    left: clamp(1px, calc(1 * 100vw / 375), 1px);
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(13px, calc(16 * 100vw / 375), 20px);
    letter-spacing: clamp(-0.51px, calc(-0.64 * 100vw / 375), -0.82px);
    line-height: clamp(17px, calc(21 * 100vw / 375), 27px);
    width: clamp(233px, calc(291 * 100vw / 375), 373px);
}

.copyright-year {
    position: absolute;
    top: clamp(81px, calc(101 * 100vw / 375), 129px);
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.copyright-year span {
    font-weight: 500;
    color: rgba(37, 26, 31, 0.5);
    font-size: clamp(13px, calc(16 * 100vw / 375), 20px);
    letter-spacing: clamp(-0.51px, calc(-0.64 * 100vw / 375), -0.82px);
    line-height: clamp(17px, calc(21 * 100vw / 375), 27px);
}

.privacy-policy-link {
    position: absolute;
    top: clamp(112px, calc(140 * 100vw / 375), 179px);
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: #B91414;
    font-size: clamp(12px, calc(14 * 100vw / 375), 18px);
    letter-spacing: clamp(-0.22px, calc(-0.28 * 100vw / 375), -0.36px);
    line-height: clamp(15px, calc(18.2 * 100vw / 375), 23px);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.privacy-policy-link:hover {
    opacity: 1;
}

/* Slider Dots */
/* Cases Slider Dots - positioned 20px after case cards */
.cases-section .slider-dots {
    position: absolute;
    top: 459px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.cases-section .dot {
    width: 14px;
    height: 2px;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.cases-section .dot.active {
    width: 32px;
    background-color: #787878;
}

/* Blog Slider Dots */
.blog-section .slider-dots {
    position: absolute;
    top: 421px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.blog-section .dot {
    width: 14px;
    height: 2px;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.blog-section .dot.active {
    width: 32px;
    background-color: #787878;
}

/* Responsive Design for 375px exact width */
@media (max-width: 375px) {
    .mobile-frame {
        width: 100%;
        max-width: 375px;
    }
    
    .header-section,
    .footer-section {
        width: 100%;
        max-width: 375px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    width: clamp(300px, 100vw, 480px);
    height: 100vh;
    max-height: 100vh;
    margin: 0 auto;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    position: relative;
    width: auto;
    height: clamp(26px, calc(32 * 100vw / 375), 41px);
    margin-top: clamp(10px, calc(13 * 100vw / 375), 17px);
    margin-left: clamp(24px, calc(30 * 100vw / 375), 38px);
    margin-right: clamp(24px, calc(30 * 100vw / 375), 38px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #251A1F;
    font-size: clamp(19px, calc(24 * 100vw / 375), 31px);
    letter-spacing: clamp(-1.15px, calc(-1.44 * 100vw / 375), -1.84px);
    line-height: clamp(26px, calc(32 * 100vw / 375), 41px);
}

.mobile-menu-close {
    width: clamp(25px, calc(31 * 100vw / 375), 40px);
    height: clamp(24px, calc(30 * 100vw / 375), 38px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-content {
    position: relative;
    margin-top: clamp(64px, calc(80 * 100vw / 375), 102px);
    padding-left: clamp(24px, calc(30 * 100vw / 375), 38px);
    padding-right: clamp(24px, calc(30 * 100vw / 375), 38px);
    padding-bottom: clamp(24px, calc(30 * 100vw / 375), 38px);
    overflow-y: auto;
    flex: 1;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    color: #251A1F;
    font-size: clamp(14px, calc(18 * 100vw / 375), 23px);
    letter-spacing: clamp(-0.58px, calc(-0.72 * 100vw / 375), -0.92px);
    line-height: clamp(19px, calc(23.3 * 100vw / 375), 30px);
    text-decoration: none;
    padding: clamp(10px, calc(12 * 100vw / 375), 15px) 0;
    margin-bottom: clamp(16px, calc(20 * 100vw / 375), 26px);
}

.mobile-menu-item.active {
    color: #B91414;
}

.mobile-menu-subitems {
    margin-left: clamp(12px, calc(15 * 100vw / 375), 19px);
    margin-bottom: clamp(16px, calc(20 * 100vw / 375), 26px);
}

.mobile-menu-subitem {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    color: #251A1F;
    font-size: clamp(14px, calc(18 * 100vw / 375), 23px);
    letter-spacing: clamp(-0.58px, calc(-0.72 * 100vw / 375), -0.92px);
    line-height: clamp(19px, calc(23.3 * 100vw / 375), 30px);
    text-decoration: none;
    display: block;
    padding: clamp(6px, calc(8 * 100vw / 375), 10px) 0;
    margin-bottom: clamp(6px, calc(8 * 100vw / 375), 10px);
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Loader стили удалены - используется универсальный лоадер из base.css */

/* Loader logo стили удалены - используется универсальный лоадер из base.css */

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Ensure exact positioning matches Figma */
@media (min-width: 481px) {
    body {
        display: flex;
        justify-content: center;
        background-color: #f5f5f5;
    }
    
    .mobile-frame {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-overlay {
        display: flex;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    /* .loader-container стили удалены - используется универсальный лоадер */
}

/* Tablet and Desktop Styles - Based on Desktop Figma Design */
@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        background-color: #f5f5f5;
    }
    
    .mobile-frame {
        width: 100%;
        max-width: 1920px;
        min-height: 7833px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        background: #FFFFFD;
        margin: 0 auto;
    }
    
    /* Header Desktop */
    .header-section {
        width: 100%;
        max-width: 1920px;
        height: 120px;
        top: 0;
        left: 0;
        transform: none;
        background: #FFFFFD;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 120px;
        z-index: 1000;
    }
    
    .header-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: normal;
    }
    
    .header-menu {
        display: none; /* Hide mobile menu button */
    }
    
    /* Desktop Navigation */
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    
    .nav-item {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: 500;
        color: #251A1F;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 31px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-item:hover {
        color: #B91414;
    }
    
    .nav-phone {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: 600;
        color: #B91414;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 31px;
        text-decoration: none;
    }
    
    /* Hero Section Desktop */
    .hero-section {
        width: 100%;
        height: 1010px;
        top: 120px;
        left: 0;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 120px;
    }
    
    .hero-bg-container {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .hero-bg-image {
        width: 100%;
        height: 100%;
        margin-left: 0;
        object-fit: cover;
        object-position: center right;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: 2;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 80px;
        letter-spacing: -4.8px;
        line-height: 80px;
        margin-bottom: 40px;
    }
    
    .hero-description {
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: 32px;
        margin-bottom: 60px;
        max-width: 500px;
    }
    
    .consultation-btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        padding: 20px 40px;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 31px;
    }
    
    /* Statistics Section Desktop */
    .statistics-background {
        display: none;
    }
    
    .statistics-section {
        position: absolute;
        width: 100%;
        height: 200px;
        top: 1130px;
        left: 0;
        transform: none;
        background: #B91414;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 120px;
    }
    
    .statistics-slider {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        gap: 80px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: auto;
        min-width: auto;
        flex: 1;
        animation: none;
    }
    
    .stat-number {
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: 38px;
        margin-bottom: 16px;
    }
    
    .stat-text {
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 26px;
    }
    
    /* Directions Section Desktop */
    .directions-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 1476px;
        left: 0;
        transform: none;
        padding: 100px 120px;
    }
    
    .directions-section .section-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 60px;
        letter-spacing: -3.6px;
        line-height: 60px;
        margin-bottom: 80px;
    }
    
    .directions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        width: 100%;
    }
    
    .direction-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        height: 400px;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px;
    }
    
    /* Hide mobile navigation on desktop */
    .desktop-nav {
        display: flex;
    }
    
    .header-menu {
        display: none;
    }
    
    /* About Section Desktop */
    .about-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 2412px;
        left: 0;
        transform: none;
        padding: 100px 120px;
        display: flex;
        align-items: center;
        gap: 120px;
    }
    
    .about-section .section-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 60px;
        letter-spacing: -3.6px;
        line-height: 60px;
        margin: 0;
        flex-shrink: 0;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
    
    .about-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        gap: 80px;
        align-items: flex-start;
        flex: 1;
    }
    
    .about-photo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 400px;
        height: 500px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .about-quote-block {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 400px;
        height: 300px;
        background-color: #B91414;
        flex-shrink: 0;
    }
    
    .about-features {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }
    
    /* Cases Section Desktop */
    .cases-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 3653px;
        left: 0;
        transform: none;
        padding: 100px 120px;
    }
    
    .cases-section .section-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 60px;
        letter-spacing: -3.6px;
        line-height: 60px;
        margin-bottom: 80px;
        display: inline-block;
    }
    
    .view-all-link {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-left: 40px;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 31px;
    }
    
    .cases-slider {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .case-card {
        position: relative;
        width: auto;
        height: 400px;
        scroll-snap-align: none;
    }
    
    .cases-section .slider-dots {
        display: none;
    }
    
    /* Blog Section Desktop */
    .blog-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 4800px;
        left: 0;
        transform: none;
        padding: 100px 120px;
    }
    
    .blog-section .section-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 60px;
        letter-spacing: -3.6px;
        line-height: 60px;
        margin-bottom: 80px;
        display: inline-block;
    }
    
    .read-link {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-left: 40px;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 31px;
    }
    
    .blog-slider {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .blog-card {
        position: relative;
        width: auto;
        height: 350px;
        scroll-snap-align: none;
    }
    
    .blog-section .slider-dots {
        display: none;
    }
    
    /* Consultation Section Desktop */
    .consultation-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 5500px;
        left: 0;
        transform: none;
        padding: 100px 120px;
        display: flex;
        align-items: center;
        gap: 120px;
    }
    
    .consultation-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 500px;
        height: 600px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .consultation-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex: 1;
        max-width: 600px;
    }
    
    .consultation-title {
        font-size: 48px;
        letter-spacing: -2.88px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    
    .consultation-description {
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: 32px;
        margin-bottom: 60px;
    }
    
    .consultation-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .consultation-form .form-textarea {
        grid-column: 1 / -1;
    }
    
    .consultation-form .form-submit {
        grid-column: 1 / -1;
        justify-self: start;
        padding: 20px 40px;
        font-size: 18px;
    }
    
    /* Footer Desktop */
    .footer-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 6800px;
        left: 0;
        transform: none;
        padding: 80px 120px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 80px;
        align-items: start;
    }
    
    .footer-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 32px;
        letter-spacing: -1.28px;
        line-height: normal;
        margin-bottom: 40px;
        grid-column: 1;
    }
    
    .footer-contacts,
    .services-group,
    .footer-info {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .contact-group,
    .services-group,
    .lawyer-info,
    .footer-menu {
        position: relative;
    }
    
    .contact-heading,
    .services-heading,
    .info-heading,
    .menu-heading {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
        font-size: 18px;
    }
    
    .contact-phone,
    .contact-email,
    .contact-city,
    .footer-service,
    .lawyer-name,
    .lawyer-chamber,
    .lawyer-registry,
    .menu-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        display: block;
        margin-bottom: 20px;
        font-size: 16px;
        text-align: left;
        width: auto;
    }
    
    /* Copyright Desktop */
    .copyright-section {
        position: absolute;
        width: 100%;
        height: auto;
        top: 7600px;
        left: 0;
        transform: none;
        padding: 40px 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(37, 26, 31, 0.1);
    }
    
    .copyright-text,
    .copyright-info {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 16px;
    }
    
    .copyright-year {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        gap: 40px;
    }
    
    .privacy-policy-link {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        font-size: 14px;
        margin-left: 40px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .mobile-frame {
        max-width: 1920px;
    }
    
    .header-section,
    .hero-section,
    .statistics-section,
    .directions-section {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #251A1F;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-settings {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #B91414;
    color: #FFFFFF;
    flex: 1;
}

.cookie-accept:hover {
    background-color: #9A1111;
    transform: translateY(-1px);
}

.cookie-settings {
    background-color: #F5F5F5;
    color: #251A1F;
}

.cookie-settings:hover {
    background-color: #E8E8E8;
}

/* Mobile Cookie Banner */
@media (max-width: 767px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }
    
    .cookie-text {
        font-size: 13px;
        line-height: 19px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-accept,
    .cookie-settings {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* Desktop Block Banner */
.desktop-block-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #B91414 0%, #8B1010 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.desktop-block-banner.show {
    display: flex;
}

.block-banner-content {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.8s ease-out;
    position: relative;
}

@keyframes slideInUp {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.block-banner-icon {
    margin-bottom: 32px;
}

.block-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #251A1F;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.block-banner-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.block-banner-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background-color: #F8F9FA;
    border-radius: 20px;
    border: 3px solid #E8E8E8;
    margin-bottom: 40px;
}

.block-banner-qr img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.block-banner-qr span {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.block-banner-footer {
    border-top: 2px solid #F0F0F0;
    padding-top: 30px;
    margin-top: 20px;
}

.block-banner-footer p {
    margin: 0;
    font-family: 'SF Pro Display', sans-serif;
    color: #888;
}

.block-banner-footer p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #B91414;
    margin-bottom: 8px;
}

.block-banner-footer p:last-child {
    font-size: 14px;
}

/* Hide banner on mobile */
@media (max-width: 480px) {
    .desktop-block-banner {
        display: none !important;
    }
}

/* Hide main content on desktop */
@media (min-width: 481px) {
    .mobile-frame {
        display: none;
    }
}

/* Responsive adjustments for tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .block-banner-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .block-banner-title {
        font-size: 28px;
    }
    
    .block-banner-text {
        font-size: 18px;
    }
    
    .block-banner-qr {
        padding: 30px;
    }
    
    .block-banner-qr img {
        width: 160px;
        height: 160px;
    }
}