/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1A;
    color: #FAFAFA;
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

/* Text Selection */
::selection {
    background-color: rgba(0, 0, 0, 0.8);
    color: #FAFAFA;
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0.8);
    color: #FAFAFA;
}

/* Lenis required styles */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.btn--primary {
    background-color: #FAFAFA;
    color: #1A1A1A;
    border: 1px solid #FAFAFA;
}

.btn--primary:hover {
    background-color: #E8E8E8;
    border-color: #E8E8E8;
}

.btn--outline {
    background-color: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
}

.btn--outline:hover {
    background-color: #1A1A1A;
    color: #FAFAFA;
}

.btn--full {
    width: 100%;
    margin-top: 8px;
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(250, 250, 250, 0.4);
    text-align: center;
    margin-top: 24px;
    line-height: 1.5;
}

.form-disclaimer a {
    color: rgba(250, 250, 250, 0.6);
    text-decoration: underline;
}

.form-disclaimer a:hover {
    color: #FAFAFA;
}

/* ========================================
   MODAL (PRIVACY POLICY)
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.4s;
}

.modal--open {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    margin: 20px;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal--open .modal__container {
    transform: translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #E0E0E0;
}

.modal__title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    color: #666666;
    transition: all 0.3s ease;
}

.modal__close:hover {
    border-color: #1A1A1A;
    color: #1A1A1A;
}

.modal__content {
    padding: 32px;
    overflow-y: scroll;
    max-height: calc(90vh - 80px);
    -webkit-overflow-scrolling: touch;
}

.modal__content::-webkit-scrollbar {
    width: 6px;
}

.modal__content::-webkit-scrollbar-track {
    background: #E0E0E0;
}

.modal__content::-webkit-scrollbar-thumb {
    background: #1A1A1A;
}

.modal__content::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

.modal__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
}

.modal__content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 24px 0 16px 0;
}

.modal__content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 12px;
}

.modal__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.modal__content li {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.modal__content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1A1A1A;
}

@media (max-width: 768px) {
    .modal__container {
        margin: 0;
        max-width: 100%;
        max-height: 100vh;
    }
    
    .modal__header {
        padding: 20px 24px;
    }
    
    .modal__content {
        padding: 24px;
        max-height: calc(100vh - 70px);
    }
    
    .modal__title {
        font-size: 20px;
    }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.preloader__logo {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    color: #1A1A1A;
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderLogoAppear 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.2s;
}

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

.preloader__progress {
    width: 200px;
    height: 1px;
    background-color: #E0E0E0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: preloaderProgressAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.4s;
}

@keyframes preloaderProgressAppear {
    to {
        opacity: 1;
    }
}

.preloader__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #1A1A1A;
    transition: width 0.1s ease;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 40px;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    transition: background-color 0.3s ease,
                border-bottom-color 0.3s ease,
                padding 0.3s ease;
}

.header--scrolled {
    padding: 12px 40px;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1A1A1A;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    gap: 48px;
}

.header__menu-link {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    position: relative;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1A1A1A;
    transition: width 0.3s ease;
}

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

.header__contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__phone {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.header__phone-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1A1A1A;
}

.header__phone-dropdown:hover {
    border-color: #1A1A1A;
    background-color: #F5F5F5;
}

.header__phone-dropdown svg {
    transition: transform 0.3s ease;
}

.header__phone-wrapper--open .header__phone-dropdown svg {
    transform: rotate(180deg);
}

.header__phone-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
}

.header__phone-wrapper--open .header__phone-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__phone-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header__phone-menu-item:hover {
    background-color: #F5F5F5;
}

.header__phone-menu-item svg {
    flex-shrink: 0;
}

.header__btn {
    padding: 12px 24px;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

/* Скрываем крестик на десктопе */
.header__nav-close {
    display: none;
}

/* Бургер виден только на мобильных */
@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }

    /* Мобильное меню */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #FAFAFA;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .header__nav--open {
        right: 0;
    }

    .header__nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1A1A1A;
        transition: all 0.3s ease;
    }

    .header__nav-close:hover {
        background-color: #F5F5F5;
        border-color: #1A1A1A;
    }

    .header__menu {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .header__menu-link {
        font-size: 24px;
        font-weight: 500;
    }

    .header__contacts {
        display: none;
    }

    /* Анимация бургера */
    .header__burger--active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger--active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger--active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.burger-line {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
}

.hero__media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    will-change: transform;
}

.hero__tooltip-panel {
    position: absolute;
    bottom: 80px;
    right: 80px;
    transform: translateX(20px);
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: auto;
    max-width: 380px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 10;
}

.hero__tooltip-panel--active {
    opacity: 1;
    transform: translateX(0);
    animation: tooltipPulse 3s ease-in-out infinite;
}

@keyframes tooltipPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(250, 250, 250, 0);
    }
}

.hero__tooltip-panel--inactive {
    opacity: 0;
    transform: translateX(20px);
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__zones-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Zone icons appear on hover */
.zone-icon {
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.zone-icon circle {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero__line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, #FAFAFA, transparent);
    z-index: 3;
    animation: heroLinePulse 3s ease-in-out infinite;
}

@keyframes heroLinePulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* ========================================
   HERO INTERACTIVE ZONES
   ======================================== */
.zones-container {
    pointer-events: all;
}

.zone {
    fill: rgba(255, 255, 255, 0);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zone:hover {
    fill: rgba(255, 255, 255, 0.60);
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3;
}

.hero__tooltip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    color: #FAFAFA;
    align-self: flex-start;
}

.hero__tooltip-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__tooltip-title {
    font-size: 15px;
    font-weight: 500;
    color: #FAFAFA;
    line-height: 1.3;
}

.hero__tooltip-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.4;
}

.hero__tooltip-panel {
    padding: 12px 16px;
}

/* Hero content should not block zones */
.hero__container {
    position: relative;
    z-index: 4;
    pointer-events: none;
}

.hero__content {
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .hero__zones-svg {
        display: none;
    }
    
    .hero__tooltip-panel {
        display: none;
    }
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero__content {
    max-width: 800px;
    text-align: left;
}

.hero__features {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.hero__title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

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

.hero__subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroSubtitleFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.9s;
}

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

.hero__features-item {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    padding-left: 28px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: heroFeaturesItemFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__features-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: featuresItemPulse 2s ease-in-out infinite;
}

@keyframes featuresItemPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.hero__features-item:nth-child(1) {
    animation-delay: 1.1s;
}

.hero__features-item:nth-child(2) {
    animation-delay: 1.25s;
}

.hero__features-item:nth-child(3) {
    animation-delay: 1.4s;
}

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

.hero__btn {
    padding: 20px 40px;
    font-size: 14px;
    background-color: #FAFAFA;
    color: #1A1A1A;
    border: 1px solid #FAFAFA;
}

.hero__btn:hover {
    background-color: #E8E8E8;
    border-color: #E8E8E8;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    position: relative;
    padding: 120px 0;
}

.about__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.about__image-wrapper {
    position: relative;
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1600px) {
    .about__image {
        aspect-ratio: auto;
    }
}

@media (max-width: 1366px) {
    .about__image {
        aspect-ratio: auto;
    }
}

/* Mobile - показываем всё фото без обрезки */
@media (max-width: 768px) {
    .about__image {
        aspect-ratio: auto;
        height: auto;
        object-position: top;
    }
}

.about__image-wrapper:hover .about__image {
    filter: grayscale(0%);
}

.about__image-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__experience {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__experience-num {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about__experience-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    opacity: 0.7;
}

.about__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999999;
    margin-bottom: 16px;
}

.about__text {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 24px;
}

.about__text:last-child {
    margin-bottom: 0;
}

.about__quote {
    margin: 0 0 32px 0;
    padding: 0;
    border: none;
}

.about__quote p {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #1A1A1A;
    padding-left: 24px;
    border-left: 2px solid #1A1A1A;
    margin: 0;
}

.about__signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about__signature-name {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.about__signature-role {
    font-size: 14px;
    color: #666666;
}

.about__btn {
    margin-top: 32px;
    padding: 16px 32px;
    align-self: flex-start;
}

/* Mobile - кнопка на всю ширину */
@media (max-width: 768px) {
    .about__btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    position: relative;
    padding: 120px 0;
    background-color: #FAFAFA;
}

.team__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.team__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.team__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
    margin-bottom: 64px;
}

.team__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 48px;
    background-color: #1A1A1A;
    border-radius: 16px;
    margin-bottom: 64px;
}

.team__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.team__stat-value {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.team__stat-label {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.4;
    max-width: 180px;
}

.team__competencies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #E0E0E0;
}

.team__competency {
    padding: 40px 32px;
    border-right: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

.team__competency:last-child {
    border-right: none;
}

.team__competency:hover {
    background-color: #F5F5F5;
}

.team__competency-num {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 16px;
    display: block;
}

.team__competency-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.team__competency-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* ========================================
   PRINCIPLES SECTION
   ======================================== */
.principles {
    position: relative;
    padding: 120px 0;
    background-color: #1A1A1A;
}

.principles__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.principles__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin-bottom: 48px;
}

.principles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    margin: 0 -32px;
}

.principle-card {
    padding: 48px 32px;
    border-right: 1px solid rgba(250, 250, 250, 0.1);
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
    transition: background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.principle-card__inner {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.principle-card:hover {
    background-color: rgba(250, 250, 250, 0.05);
}

.principle-card:hover .principle-card__inner {
    transform: translateX(8px);
}

.principle-card__number {
    font-size: 14px;
    font-weight: 500;
    color: rgba(250, 250, 250, 0.5);
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.principle-card:hover .principle-card__number {
    color: #FAFAFA;
}

.principle-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FAFAFA;
}

.principle-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.7);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects {
    padding: 120px 0;
}

.projects__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.projects__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.projects__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 48px;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    margin: 0 -32px;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.project-card-link:hover {
    transform: translateY(-4px);
}

.project-card--large {
    grid-column: auto;
    grid-row: auto;
}

.project-card__image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transform: translateZ(0);
    aspect-ratio: 16 / 9;
}

.project-card__image {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-card__image {
    transform: scale(1.03);
}

.project-card__content {
    flex-grow: 1;
    transform: translateZ(20px);
}

.project-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.project-card:hover .project-card__title {
    color: #333333;
}

.project-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #666666;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card__meta {
    opacity: 1;
}

.project-card__meta-divider {
    width: 40px;
    height: 1px;
    background-color: #E0E0E0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.project-card:hover .project-card__meta-divider {
    width: 60px;
    background-color: #1A1A1A;
}

.projects__cta {
    text-align: center;
    margin-top: 40px;
}

.projects__cta .btn {
    padding: 20px 48px;
}

/* ========================================
   PROJECTS PAGE (projects.html)
   ======================================== */
.page-header {
    padding: 120px 0 80px;
    background-color: #FAFAFA;
    text-align: center;
}

.page-header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.page-header__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.page-header__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
}

.all-projects {
    padding: 80px 0 120px;
    background-color: #FFFFFF;
}

.all-projects__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.all-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.project-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0C0C0B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Empty Projects State */
.empty-projects-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.empty-projects-state__text {
    font-size: 18px;
    max-width: 400px;
}

/* Fade-in animation for dynamically loaded cards */
@keyframes project-card-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.all-projects__grid .project-card-link {
    animation: project-card-fade-in 0.5s ease forwards;
    opacity: 0;
}

.all-projects__grid .project-card-link:nth-child(1) { animation-delay: 0.05s; }
.all-projects__grid .project-card-link:nth-child(2) { animation-delay: 0.1s; }
.all-projects__grid .project-card-link:nth-child(3) { animation-delay: 0.15s; }
.all-projects__grid .project-card-link:nth-child(4) { animation-delay: 0.2s; }
.all-projects__grid .project-card-link:nth-child(5) { animation-delay: 0.25s; }
.all-projects__grid .project-card-link:nth-child(6) { animation-delay: 0.3s; }
.all-projects__grid .project-card-link:nth-child(7) { animation-delay: 0.35s; }
.all-projects__grid .project-card-link:nth-child(8) { animation-delay: 0.4s; }
.all-projects__grid .project-card-link:nth-child(9) { animation-delay: 0.45s; }
.all-projects__grid .project-card-link:nth-child(10) { animation-delay: 0.5s; }
.all-projects__grid .project-card-link:nth-child(n+11) { animation-delay: 0.55s; }

/* Featured projects (homepage) fade-in */
.projects__grid .project-card-link {
    animation: project-card-fade-in 0.5s ease forwards;
    opacity: 0;
}

.projects__grid .project-card-link:nth-child(1) { animation-delay: 0.1s; }
.projects__grid .project-card-link:nth-child(2) { animation-delay: 0.2s; }
.projects__grid .project-card-link:nth-child(3) { animation-delay: 0.3s; }
.projects__grid .project-card-link:nth-child(n+4) { animation-delay: 0.4s; }

.all-projects__cta {
    text-align: center;
    padding: 80px 40px;
    background-color: #1A1A1A;
    border-radius: 16px;
}

.all-projects__cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: #FAFAFA;
    margin-bottom: 16px;
}

.all-projects__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.all-projects__cta .btn {
    padding: 20px 48px;
}

/* Projects Filter */
.projects-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.projects-filter__btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-filter__btn:hover {
    border-color: #1A1A1A;
    color: #1A1A1A;
}

.projects-filter__btn.active {
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-color: #1A1A1A;
}

/* Project Status Badge */
.project-card__status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    z-index: 2;
    pointer-events: none;
}

.project-card__status--completed {
    background-color: rgba(76, 175, 80, 0.95);
    color: #FFFFFF;
}

.project-card__status--in-progress {
    background-color: rgba(255, 152, 0, 0.95);
    color: #FFFFFF;
}

/* ========================================
   PROJECT DETAIL PAGE (project-detail.html)
   ======================================== */
.project-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E5E5E5;
}

.project-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.project-hero__image--loading {
    opacity: 0;
}

.project-hero__image--loaded {
    opacity: 1;
}

.project-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.project-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.project-hero__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 16px;
    padding: 6px 16px;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.project-hero__title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin-bottom: 40px;
}

.project-hero__meta {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.project-hero__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.project-hero__meta-value {
    font-size: 32px;
    font-weight: 700;
    color: #FAFAFA;
}

.project-hero__meta-label {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-info {
    padding: 120px 0;
    background-color: #FAFAFA;
}

.project-info__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.project-info__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-info__back:hover {
    color: #1A1A1A;
}

.project-info__back svg {
    transition: transform 0.3s ease;
}

.project-info__back:hover svg {
    transform: translateX(-4px);
}

.project-info__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.project-info__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.project-info__text {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 24px;
}

.project-info__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
}

.project-info__feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-info__feature strong {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.project-info__feature span {
    font-size: 14px;
    color: #666666;
}

.project-specs {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.project-specs__title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 24px;
}

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

.project-specs__item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #F5F5F5;
}

.project-specs__item:last-child {
    border-bottom: none;
}

.project-specs__label {
    font-size: 14px;
    color: #999999;
}

.project-specs__value {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    text-align: right;
}

.project-specs__cta {
    width: 100%;
    border: 1px solid #1A1A1A;
}

.project-specs__cta:hover {
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-color: #1A1A1A;
}

.project-gallery {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.project-gallery__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.project-gallery__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 48px;
    text-align: center;
}

.project-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.project-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-gallery__image--loading {
    opacity: 0;
}

.project-gallery__image--loaded {
    opacity: 1;
}

.project-gallery__item {
    background-color: #E5E5E5;
}

.project-gallery__item:hover .project-gallery__image {
    transform: scale(1.05);
}

.project-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #FAFAFA;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-gallery__item:hover .project-gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

.project-note {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.project-note__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.project-note__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.project-note__image {
    position: relative;
}

.project-note__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.project-note__header {
    margin-bottom: 32px;
}

.project-note__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.project-note__role {
    font-size: 14px;
    color: #999999;
}

.project-note__quote {
    margin: 0 0 32px 0;
    padding: 0;
    border: none;
}

.project-note__quote p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #1A1A1A;
    padding-left: 24px;
    border-left: 3px solid #1A1A1A;
}

.project-note__text {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

.project-note__text p {
    margin-bottom: 16px;
}

.project-note__signature {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
}

.project-note__name {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'Manrope', cursive;
}

.project-reviews {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.project-reviews__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.project-reviews__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 48px;
    text-align: center;
}

.project-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #D0D0D0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-card__name {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.review-card__date {
    font-size: 13px;
    color: #999999;
    line-height: 1.3;
}

.review-card__rating {
    display: flex;
    gap: 0;
}

.review-card__star {
    width: 24px;
    height: 24px;
    color: #FFB800;
}

.review-card__star--empty {
    color: #E0E0E0;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    position: relative;
    z-index: 1;
}

.project-cta {
    padding: 120px 0;
    background-color: #1A1A1A;
}

.project-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.project-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: #FAFAFA;
    margin-bottom: 16px;
}

.project-cta__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 40px;
}

.project-cta .btn {
    padding: 20px 48px;
    border: 1px solid #FAFAFA;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn--top {
    background-color: #1A1A1A;
    color: #FAFAFA;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-btn--top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn--top:hover {
    background-color: #333333;
}

.floating-btn-text {
    position: absolute;
    right: 70px;
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.floating-btn--whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.floating-btn--whatsapp:hover {
    background-color: #128C7E;
}

.floating-btn--call {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.floating-btn--call:hover {
    background-color: #333333;
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
}

/* ========================================
   ABOUT PAGE (about.html)
   ======================================== */
.about-page {
    padding: 120px 0;
    background-color: #FAFAFA;
}

.about-page__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-page__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.about-page__image {
    position: relative;
}

.about-page__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.about-page__experience {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-page__experience-num {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.about-page__experience-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    opacity: 0.7;
}

.about-page__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.about-page__quote {
    margin: 0 0 32px 0;
    padding: 0;
    border: none;
}

.about-page__quote p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #1A1A1A;
    padding-left: 24px;
    border-left: 3px solid #1A1A1A;
}

.about-page__text {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 24px;
}

.about-page__signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-page__signature-name {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.about-page__signature-role {
    font-size: 14px;
    color: #666666;
}

.about-mission {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.about-mission__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-mission__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-align: center;
}

.about-mission__text {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

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

.about-mission__value {
    text-align: center;
    padding: 32px;
    background-color: #FAFAFA;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-mission__value:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-mission__value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-radius: 12px;
}

.about-mission__value h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.about-mission__value p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.about-team {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.about-team__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.about-team__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 16px;
    text-align: center;
}

.about-team__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-team__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 48px;
    background-color: #1A1A1A;
    border-radius: 16px;
    margin-bottom: 48px;
}

.about-team__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.about-team__stat-value {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.about-team__stat-label {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.4;
}

.about-team__btn {
    display: inline-flex;
    margin: 0 auto;
    text-align: center;
}

.about-cta {
    padding: 120px 0;
    background-color: #1A1A1A;
}

.about-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.about-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: #FAFAFA;
    margin-bottom: 16px;
}

.about-cta__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 40px;
}

.about-cta .btn {
    padding: 20px 48px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    position: relative;
    padding: 120px 0;
    background-color: #FAFAFA;
}

.faq__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.faq__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.faq__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
    margin-bottom: 48px;
}

.faq__search {
    margin-bottom: 48px;
}

.faq__search-wrapper {
    position: relative;
    max-width: 480px;
}

.faq__search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
}

.faq__search-input {
    width: 100%;
    padding: 18px 44px 18px 52px;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__search-input:focus {
    border-color: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.faq__search-input::placeholder {
    color: #999999;
}

.faq__search-clear {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq__search-clear:hover {
    color: #1A1A1A;
    background-color: #F5F5F5;
    border-radius: 50%;
}

.faq__search-input:not(:placeholder-shown) ~ .faq__search-clear,
.faq__search-input:focus ~ .faq__search-clear {
    opacity: 1;
    visibility: visible;
}

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

.faq__grid--searching {
    grid-template-columns: 1fr;
}

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

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #CCCCCC;
}

.faq-item--active {
    border-color: #1A1A1A;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item__trigger:hover {
    color: #333333;
}

.faq-item--active .faq-item__trigger {
    color: #1A1A1A;
}

.faq-item__icon {
    flex-shrink: 0;
    color: #999999;
    transition: transform 0.3s ease;
}

.faq-item--active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.faq-item__answer {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */
.calculator {
    position: relative;
    padding: 120px 0;
    background-color: #1A1A1A;
    color: #FAFAFA;
}

.calculator__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}

.calculator__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.calculator__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.6);
    max-width: 600px;
    margin-bottom: 64px;
}

.calculator__form {
    background-color: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 16px;
    padding: 48px;
}

.calculator__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

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

.calculator__label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 250, 250, 0.5);
}

.calculator__toggle {
    display: flex;
    gap: 8px;
}

.calculator__toggle-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(250, 250, 250, 0.7);
    background-color: transparent;
    border: 1px solid rgba(250, 250, 250, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator__toggle-btn:hover {
    border-color: rgba(250, 250, 250, 0.4);
    color: #FAFAFA;
}

.calculator__toggle-btn.active {
    background-color: #FAFAFA;
    color: #1A1A1A;
    border-color: #FAFAFA;
}

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

.calculator__slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(250, 250, 250, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #FAFAFA;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.calculator__slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calculator__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FAFAFA;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}

.calculator__slider::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.calculator__range-value {
    font-size: 32px;
    font-weight: 600;
    color: #FAFAFA;
    letter-spacing: -0.02em;
}

.calculator__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.calculator__result-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calculator__result-label {
    font-size: 12px;
    color: rgba(250, 250, 250, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calculator__result-note {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    margin-top: 8px;
    display: block;
}

.calculator__result-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.calculator__result-currency {
    font-size: 24px;
    font-weight: 600;
    color: #FAFAFA;
}

.calculator__result-value {
    font-size: 48px;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.02em;
    line-height: 1;
}

.calculator__btn {
    min-width: 280px;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form {
    position: relative;
    padding: 120px 0;
    background-color: #1A1A1A;
    color: #FAFAFA;
}

.contact-form__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-form__content {
    padding-top: 8px;
}

.contact-form__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 250, 250, 0.5);
    margin-bottom: 16px;
}

.contact-form__title {
    color: #FAFAFA;
}

.contact-form__text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 40px;
}

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

.contact-form__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-form__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: #FAFAFA;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form__feature:hover .contact-form__feature-icon {
    background-color: rgba(250, 250, 250, 0.1);
    border-color: rgba(250, 250, 250, 0.2);
    transform: translateY(-4px);
}

.contact-form__feature-icon svg {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form__feature:hover .contact-form__feature-icon svg {
    transform: scale(1.1);
}

.contact-form__feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form__feature-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #FAFAFA;
}

.contact-form__feature-text span {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
}

.contact-form__form {
    max-width: 480px;
    margin-left: auto;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 18px 44px 18px 20px;
    font-size: 16px;
    color: #FAFAFA;
    background-color: rgba(250, 250, 250, 0.08);
    border: 1px solid rgba(250, 250, 250, 0.2);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
    color: transparent;
}

.form-input:focus {
    background-color: rgba(250, 250, 250, 0.12);
    border-color: rgba(250, 250, 250, 0.4);
}

.form-input-clear {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(250, 250, 250, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.form-input-clear:hover {
    color: #FAFAFA;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 50%;
}

.form-input:not(:placeholder-shown) ~ .form-input-clear,
.form-input:focus ~ .form-input-clear {
    opacity: 1;
    visibility: visible;
}

.form-label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 15px;
    color: rgba(250, 250, 250, 0.5);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 12px;
    font-size: 11px;
    color: rgba(250, 250, 250, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: #1A1A1A;
    padding: 0 6px;
}

.file-upload {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background-color: rgba(250, 250, 250, 0.08);
    border: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    background-color: rgba(250, 250, 250, 0.12);
    border-color: rgba(250, 250, 250, 0.3);
}

.file-upload__text {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.5);
}

.file-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background-color: #FAFAFA;
    border-top: 1px solid #E0E0E0;
}

.footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1A1A1A;
    display: block;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.footer__heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #1A1A1A;
}

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

.footer__menu-link {
    font-size: 14px;
    color: #666666;
    transition: color 0.3s ease;
}

.footer__menu-link:hover {
    color: #1A1A1A;
}

.footer__phone,
.footer__email {
    display: block;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.footer__address {
    font-size: 14px;
    color: #666666;
    font-style: normal;
    line-height: 1.6;
}

.footer__hours {
    font-size: 14px;
    color: #666666;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__icon {
    color: #999999;
}

.footer__rating {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__rating-stars {
    color: #FFB800;
    font-size: 16px;
}

.footer__rating-text {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.footer__legal-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 13px;
    color: #999999;
}

.footer__credit {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

.footer__credit-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__credit-link {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__credit-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer__privacy {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

.footer__privacy a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__privacy a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ========================================
   DESIGN PAGE (design.html)
   ======================================== */
.design-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FAFAFA;
    text-align: center;
}

.design-hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.design-hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.design-hero__subtitle {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.8);
    max-width: 800px;
    margin: 0 auto 48px;
}

.design-hero__features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.design-hero__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.design-hero__feature svg {
    color: #FAFAFA;
}

.design-hero__feature span {
    font-size: 14px;
    font-weight: 500;
}

.design-included {
    padding: 120px 0;
    background-color: #FAFAFA;
}

.design-included__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.design-included__title {
    text-align: center;
    margin-bottom: 64px;
}

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

.design-included__item {
    padding: 32px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.design-included__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.design-included__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-radius: 12px;
    margin-bottom: 24px;
}

.design-included__item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.design-included__item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.design-pricing {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.design-pricing__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.design-pricing__title {
    text-align: center;
    margin-bottom: 16px;
}

.design-pricing__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    margin-bottom: 64px;
}

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

.design-pricing__card {
    padding: 40px 32px;
    background-color: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.design-pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.design-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.design-pricing__card--popular {
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-color: #1A1A1A;
}

.design-pricing__card--popular h3,
.design-pricing__card--popular .design-pricing__amount,
.design-pricing__card--popular .design-pricing__unit {
    color: #FAFAFA;
}

.design-pricing__card--popular .design-pricing__features li {
    color: rgba(250, 250, 250, 0.9);
}

.design-pricing__card--popular .design-pricing__features svg {
    color: #FFB800;
}

.design-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFB800;
    color: #1A1A1A;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.design-pricing__header {
    text-align: center;
    margin-bottom: 32px;
}

.design-pricing__header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.design-pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.design-pricing__amount {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
}

.design-pricing__unit {
    font-size: 18px;
    color: #666666;
}

.design-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.design-pricing__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #666666;
    border-bottom: 1px solid #E0E0E0;
}

.design-pricing__features li:last-child {
    border-bottom: none;
}

.design-pricing__features svg {
    flex-shrink: 0;
    color: #4CAF50;
}

.design-pricing__card .btn--full {
    width: 100%;
    margin-top: 24px;
}

.design-process {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.design-process__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.design-process__title {
    text-align: center;
    margin-bottom: 64px;
}

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

.design-process__step {
    position: relative;
    padding: 32px;
    background-color: #FFFFFF;
    border-radius: 12px;
}

.design-process__number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.design-process__step h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0 12px;
    color: #1A1A1A;
}

.design-process__step p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.design-cta {
    padding: 120px 0;
    background-color: #1A1A1A;
    text-align: center;
}

.design-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.design-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: #FAFAFA;
    margin-bottom: 16px;
}

.design-cta__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 40px;
}

.header__menu-link--active {
    color: #1A1A1A;
    font-weight: 600;
    position: relative;
}

.header__menu-link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1A1A1A;
}

/* ========================================
   HOME DESIGN SECTION (index.html)
   ======================================== */
.home-design {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.home-design__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.home-design__title {
    text-align: center;
    margin-bottom: 16px;
}

.home-design__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    margin-bottom: 64px;
}

.home-design__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.home-design__card {
    padding: 40px 32px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.home-design__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.home-design__card--popular {
    background-color: #1A1A1A;
    color: #FAFAFA;
    border-color: #1A1A1A;
}

.home-design__card--popular .home-design__card-title,
.home-design__card--popular .home-design__amount,
.home-design__card--popular .home-design__unit {
    color: #FAFAFA;
}

.home-design__card--popular .home-design__features li {
    color: rgba(250, 250, 250, 0.9);
    border-bottom-color: rgba(250, 250, 250, 0.1);
}

.home-design__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFB800;
    color: #1A1A1A;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-design__card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    color: #1A1A1A;
}

.home-design__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.home-design__amount {
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
}

.home-design__unit {
    font-size: 18px;
    color: #666666;
}

.home-design__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.home-design__features li {
    padding: 12px 0;
    font-size: 15px;
    color: #666666;
    border-bottom: 1px solid #E0E0E0;
    text-align: center;
}

.home-design__features li:last-child {
    border-bottom: none;
}

.home-design__card .btn--full {
    width: 100%;
    margin-top: 24px;
}

.home-design__cta {
    text-align: center;
}

.home-design__cta .btn--primary {
    border: 1px solid #1A1A1A;
}

/* ========================================
   NOTIFICATIONS (SUCCESS/ERROR)
   ======================================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification--error {
    background-color: #FFFBFB;
    border-color: #FF4444;
}

.notification--error .notification__icon {
    color: #FF4444;
}

.notification--error .notification__title {
    color: #FF4444;
}

.notification__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4CAF50;
}

.notification__content {
    flex: 1;
}

.notification__title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.notification__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.notification__close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999999;
    transition: color 0.3s ease;
}

.notification__close:hover {
    color: #1A1A1A;
}

@media (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(400px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    background-color: #1A1A1A;
    color: #FAFAFA;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner__container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(250, 250, 250, 0.8);
    max-width: 800px;
}

.cookie-banner__btn {
    padding: 14px 32px;
    flex-shrink: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Scroll line divider */
.scroll-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #E0E0E0;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #1A1A1A;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-line--animated::after {
    width: 100%;
}

/* Vertical architectural lines */
.arch-line {
    position: fixed;
    top: 0;
    width: 1px;
    height: 100vh;
    background-color: rgba(224, 224, 224, 0.3);
    z-index: -1;
    pointer-events: none;
}

.arch-line--left {
    left: 80px;
}

.arch-line--right {
    right: 80px;
}

/* Horizontal section dividers */
.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(224, 224, 224, 0.4);
}

.section-divider--top {
    top: 0;
}

.section-divider--bottom {
    bottom: 0;
}

/* Decorative grid for white sections */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(224, 224, 224, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 224, 224, 0.15) 1px, transparent 1px);
    background-size: 200px 200px;
    background-position: center top;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .arch-line,
    .bg-grid {
        display: none;
    }

    .about__image {
        aspect-ratio: 1 / 1;
    }

    /* Header Tablet - скрываем меню на планшетах */
    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #FAFAFA;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .header__nav--open {
        display: flex;
        right: 0;
    }

    .header__nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1A1A1A;
        transition: all 0.3s ease;
    }

    .header__nav-close:hover {
        background-color: #F5F5F5;
        border-color: #1A1A1A;
    }

    .header__menu {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .header__menu-link {
        font-size: 24px;
        font-weight: 500;
    }

    .header__contacts {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    /* Анимация бургера */
    .header__burger--active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger--active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger--active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* About & Principles Tablet */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .principles__grid {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .principle-card {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }

    /* Team Tablet */
    .team__competencies {
        grid-template-columns: 1fr;
    }

    .team__competency {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
}

/* 2K+ screens: min-width 2560px */
@media (min-width: 2560px) {
    .header__container,
    .hero__container,
    .about__container,
    .team__container,
    .principles__container,
    .projects__container,
    .contact-form__container,
    .faq__container,
    .calculator__container,
    .footer__container {
        max-width: 1680px;
    }
}

/* Counter animation for numbers */
.counter {
    display: inline-block;
}

/* Custom cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #1A1A1A;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor--active {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 26, 26, 0.1);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #1A1A1A;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet: max-width 1024px */
@media (max-width: 1024px) {
    .header {
        padding: 20px 24px;
    }

    .header__menu {
        gap: 32px;
    }

    .hero__container,
    .about__container,
    .team__container,
    .principles__container,
    .projects__container,
    .contact-form__container,
    .faq__container,
    .calculator__container,
    .footer__container,
    .project-info__container,
    .project-gallery__container,
    .project-note__container,
    .project-reviews__container,
    .project-cta__container,
    .page-header__container,
    .about-page__container,
    .about-team__container,
    .about-mission__container,
    .design-pricing__container,
    .design-included__container,
    .design-process__container,
    .design-cta__container,
    .home-design__container {
        padding: 0 24px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image-frame {
        padding: 16px 24px;
    }

    .about__experience-num {
        font-size: 36px;
    }

    .about__quote p {
        font-size: 20px;
        padding-left: 16px;
    }

    .about__signature {
        margin-top: 32px;
        padding-top: 24px;
    }

    .principles__grid {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .principle-card {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
        padding: 32px 20px;
    }

    .team__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 32px;
    }

    .team__competencies {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .team__competency {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
        padding: 32px 20px;
    }

    .design-included__grid {
        grid-template-columns: 1fr;
    }

    .design-pricing__grid {
        grid-template-columns: 1fr;
    }

    .design-pricing__card--popular {
        order: -1;
    }

    .design-process__timeline {
        grid-template-columns: 1fr;
    }

    .home-design {
        padding: 80px 0;
    }

    .home-design__grid {
        grid-template-columns: 1fr;
    }

    .home-design__card--popular {
        order: -1;
    }

    .projects__grid {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .all-projects__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calculator__form {
        padding: 40px 32px;
    }

    .calculator__row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .calculator__result {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .calculator__result-value {
        font-size: 40px;
    }

    .calculator__btn {
        min-width: 240px;
    }

    .contact-form__grid {
        gap: 60px;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cookie-banner__container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
    /* Уменьшаем падинги всех секций до 60px */
    .hero,
    .about,
    .team,
    .principles,
    .projects,
    .home-design,
    .calculator,
    .faq,
    .contact-form,
    .all-projects,
    .about-page,
    .about-team,
    .about-mission,
    .design-hero,
    .design-included,
    .design-pricing,
    .design-process,
    .design-cta,
    .project-info,
    .project-gallery,
    .project-note,
    .project-reviews,
    .project-cta {
        padding: 60px 0;
    }

    .header {
        padding: 16px 20px;
    }

    .hero__container,
    .about__container,
    .team__container,
    .principles__container,
    .projects__container,
    .contact-form__container,
    .faq__container,
    .calculator__container,
    .footer__container,
    .project-info__container,
    .project-gallery__container,
    .project-note__container,
    .project-reviews__container,
    .project-cta__container,
    .page-header__container,
    .about-page__container,
    .about-team__container,
    .about-mission__container,
    .design-hero__container,
    .design-included__container,
    .design-pricing__container,
    .design-process__container,
    .design-cta__container,
    .home-design__container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero__title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .hero__features {
        gap: 14px;
        margin-bottom: 40px;
    }

    .hero__features-item {
        font-size: 14px;
        line-height: 1.4;
        padding-left: 0;
        position: relative;
    }

    /* Полностью убираем пульсирующие точки на мобильных */
    .hero__features-item::before {
        display: none !important;
    }

    .hero__btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Page Header */
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header__title {
        font-size: 36px;
    }

    .page-header__subtitle {
        font-size: 18px;
    }

    /* Project Hero */
    .project-hero {
        height: 50vh;
        min-height: 400px;
    }

    .project-hero__meta {
        gap: 24px;
        flex-wrap: wrap;
    }

    .project-hero__meta-value {
        font-size: 24px;
    }

    .project-hero__meta-label {
        font-size: 12px;
    }

    /* Project Info */
    .project-info {
        padding: 80px 0;
    }

    .project-info__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-info__title {
        font-size: 28px;
    }

    .project-specs {
        margin-top: 32px;
    }

    /* Project Gallery */
    .project-gallery {
        padding: 80px 0;
    }

    .project-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .project-gallery__item--large {
        grid-column: span 1;
        grid-row: auto;
    }

    .project-gallery__item {
        height: 250px;
    }

    .project-gallery__title {
        font-size: 28px;
    }

    /* Project Note */
    .project-note {
        padding: 80px 0;
    }

    .project-note__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-note__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .project-note__quote p {
        font-size: 20px;
        padding-left: 16px;
    }

    .project-note__title {
        font-size: 28px;
    }

    /* Project Reviews */
    .project-reviews {
        padding: 80px 0;
    }

    .project-reviews__grid {
        grid-template-columns: 1fr;
    }

    .project-reviews__title {
        font-size: 28px;
    }

    /* Project CTA */
    .project-cta {
        padding: 80px 0;
    }

    .project-cta__title {
        font-size: 28px;
    }

    .project-cta__text {
        font-size: 16px;
    }

    /* About Page */
    .about-page {
        padding: 80px 0;
    }

    .about-page__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-page__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-page__experience {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        margin-top: -30px;
    }

    .about-page__title {
        font-size: 28px;
    }

    /* About Team */
    .about-team {
        padding: 80px 0;
    }

    .about-team__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
        gap: 24px;
    }

    .about-team__stat-value {
        font-size: 40px;
    }

    /* About Mission */
    .about-mission {
        padding: 80px 0;
    }

    .about-mission__values {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Design Hero */
    .design-hero {
        padding: 80px 0;
    }

    .design-hero__title {
        font-size: 36px;
    }

    .design-hero__subtitle {
        font-size: 18px;
    }

    .design-hero__features {
        flex-direction: column;
        gap: 24px;
    }

    /* Design Included */
    .design-included {
        padding: 80px 0;
    }

    .design-included__grid {
        grid-template-columns: 1fr;
    }

    .design-included__title {
        font-size: 28px;
    }

    /* Design Pricing */
    .design-pricing {
        padding: 80px 0;
    }

    .design-pricing__grid {
        grid-template-columns: 1fr;
    }

    .design-pricing__card--popular {
        order: -1;
    }

    .design-pricing__title {
        font-size: 28px;
    }

    /* Design Process */
    .design-process {
        padding: 80px 0;
    }

    .design-process__timeline {
        grid-template-columns: 1fr;
    }

    .design-process__title {
        font-size: 28px;
    }

    /* Design CTA */
    .design-cta {
        padding: 80px 0;
    }

    .design-cta__title {
        font-size: 28px;
    }

    /* Home Design */
    .home-design {
        padding: 80px 0;
    }

    .home-design__grid {
        grid-template-columns: 1fr;
    }

    .home-design__card--popular {
        order: -1;
    }

    .home-design__title {
        font-size: 28px;
    }

    /* All Projects */
    .all-projects {
        padding: 80px 0;
    }

    .all-projects__grid {
        grid-template-columns: 1fr;
    }

    .all-projects__cta {
        padding: 60px 32px;
    }

    .all-projects__cta-title {
        font-size: 28px;
    }

    /* FAQ */
    .faq {
        padding: 80px 0;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__search-input {
        font-size: 16px;
    }

    /* Calculator */
    .calculator {
        padding: 80px 0;
    }

    .calculator__form {
        padding: 32px 24px;
    }

    .calculator__row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .calculator__result {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .calculator__result-amount {
        justify-content: center;
    }

    .calculator__result-value {
        font-size: 36px;
    }

    .calculator__btn {
        min-width: auto;
        width: 100%;
    }

    .calculator__title {
        font-size: 28px;
    }

    /* Contact Form */
    .contact-form {
        padding: 80px 0;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form__form {
        margin-left: 0;
        max-width: 100%;
    }

    .contact-form__title {
        font-size: 28px;
    }

    .contact-form__features {
        gap: 20px;
    }

    .contact-form__feature-icon {
        width: 44px;
        height: 44px;
    }

    .contact-form__feature-text strong {
        font-size: 16px;
    }

    .contact-form__feature-text span {
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 80px 0 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .floating-btn-text {
        display: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    body {
        font-size: 12pt;
    }

    .header,
    .footer,
    .floating-buttons,
    .scroll-to-top,
    .floating-btn--top,
    .cookie-banner {
        display: none !important;
    }
}

/* Small Mobile: max-width 480px */
@media (max-width: 480px) {
    .header__logo {
        font-size: 14px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .about__text {
        font-size: 16px;
    }

    .project-card__title {
        font-size: 20px;
    }
}

/* Large screens: min-width 1920px */
@media (min-width: 1920px) {
    html {
        font-size: 14px;
    }
    
    .hero__title {
        font-size: clamp(42px, 4.5vw, 64px);
    }
    
    .hero__subtitle {
        font-size: clamp(18px, 2vw, 28px);
    }
    
    .hero__features-item {
        font-size: 18px;
    }
    
    .section-title {
        font-size: clamp(32px, 3.5vw, 42px);
    }
    
    .about__text {
        font-size: 16px;
    }
    
    .about__quote p {
        font-size: 20px;
    }
    
    .principle-card__title {
        font-size: 18px;
    }
    
    .principle-card__text {
        font-size: 14px;
    }
    
    .project-card__title {
        font-size: 22px;
    }
    
    .contact-form__text {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* ========================================
   ACCESSIBILITY: REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero__image,
    .hero__zones-svg,
    .project-card__image,
    .faq-item__content {
        transition: none;
    }
}
