/* ============================================
   INVENTUM - Main Stylesheet
   Modern & Beautiful Design
   Mobile-First Approach
   ============================================ */

/* ========================================
   CUSTOM FONTS
   ======================================== */

@font-face {
    font-family: 'Bebas Neue Cyrillic';
    src: url('../fonts/bebasneuecyrillic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   CSS RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--md-sys-typescale-font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--md-sys-color-on-surface);
    background-color: var(--md-sys-color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

input, textarea {
    font-family: inherit;
    font-size: 16px; /* Prevents zoom on iOS */
}


/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section {
    padding: 48px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.section--gray {
    background-color: #FAFAF8;
}

.section__title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

@media (min-width: 768px) {
    .section__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
}

.section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--md-sys-color-primary), #F08A55);
    margin: 12px auto 0;
    border-radius: 2px;
}


/* ========================================
   BUTTONS - Mobile Optimized
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 48px; /* Touch target */
}

.btn .material-icons {
    font-size: 20px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, #F08A55 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(226, 106, 53, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 106, 53, 0.45);
}

.btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.btn--outline {
    background-color: transparent;
    color: var(--md-sys-color-primary);
    border: 2px solid var(--md-sys-color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--outline:hover {
    background-color: var(--md-sys-color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline:active {
    transform: translateY(0);
}

.btn--white {
    background-color: #fff;
    color: var(--md-sys-color-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn--outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn--large {
    padding: 16px 28px;
    font-size: 15px;
    width: 100%;
}

@media (min-width: 480px) {
    .btn--large {
        width: auto;
        padding: 18px 32px;
    }
}


/* ========================================
   HEADER - Mobile First
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

/* Top Bar - Hidden on mobile */
.header__topbar {
    display: none;
    background-color: #2D2D2D;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .header__topbar {
        display: block;
    }
}

.header__topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header__info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.header__info-item .material-icons {
    font-size: 16px;
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.header__social-link .material-icons {
    font-size: 16px;
}

.header__social-link--labeled {
    width: auto;
    border-radius: 16px;
    padding: 0 12px;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

/* Main Header */
.header__main {
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header__main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header__logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--md-sys-color-primary), #F08A55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.header__logo:hover .logo-text {
    filter: brightness(1.1);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 28px;
    }
}

/* Navigation - Desktop only */
.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    color: var(--md-sys-color-on-surface);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--md-sys-color-primary), #F08A55);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav__link:hover {
    color: var(--md-sys-color-primary);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--md-sys-color-primary);
    background-color: var(--md-sys-color-primary-container);
    border-radius: 50%;
}

.header__phone .material-icons {
    font-size: 22px;
}

.header__phone-text {
    display: none;
}

@media (min-width: 992px) {
    .header__phone {
        width: auto;
        height: auto;
        padding: 10px 16px;
        border-radius: 8px;
        background: transparent;
        gap: 8px;
        font-weight: 600;
        font-size: 15px;
        color: var(--md-sys-color-on-surface);
    }

    .header__phone .material-icons {
        color: var(--md-sys-color-primary);
    }

    .header__phone-text {
        display: inline;
    }
}

.header__cta {
    display: none;
    padding: 12px 20px;
}

@media (min-width: 768px) {
    .header__cta {
        display: inline-flex;
    }
}

/* Burger Menu */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 8px;
}

.burger:active {
    background-color: #F5F5F5;
}

@media (min-width: 992px) {
    .burger {
        display: none;
    }
}

.burger__line {
    width: 100%;
    height: 2px;
    background-color: var(--md-sys-color-on-surface);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.is-active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    padding: 20px 16px;
    z-index: 999;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}

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

.nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.nav.is-open .nav__link {
    font-size: 17px;
    padding: 16px;
    border-radius: 12px;
    background-color: #F8FAFC;
}

.nav.is-open .nav__link:active {
    background-color: #EEEEEE;
}


/* ========================================
   HERO SECTION - Full Screen
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding-top: 100px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .hero__container {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: center;
        min-height: 100vh;
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 768px) {
    .hero__content {
        grid-column: 2;
        width: 100%;
        padding-left: 120px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .hero__content {
        padding-left: 180px;
        padding-right: 60px;
    }
}

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

/* Заголовок */
.hero__title {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out both;
}

.hero__title-main {
    display: block;
}

.hero__title-highlight {
    display: block;
    color: #E26A35;
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 42px;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 48px;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 56px;
    }
}

@media (min-width: 1400px) {
    .hero__title {
        font-size: 64px;
    }
}

/* Подзаголовок */
.hero__subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 32px auto;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .hero__subtitle {
        font-size: 17px;
        max-width: 550px;
    }
}

/* Кнопки */
.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 576px) {
    .hero__buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

/* Стили кнопок Hero */
.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero__btn--primary {
    background: linear-gradient(135deg, #E26A35 0%, #F08A55 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(226, 106, 53, 0.4);
}

.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 106, 53, 0.5);
}

.hero__btn--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}


/* ========================================
   ABOUT SECTION
   ======================================== */

.about__content {
    max-width: 900px;
    margin: 0 auto;
}

.about__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about__text {
        font-size: 17px;
    }
}

.about__text strong {
    color: var(--md-sys-color-primary);
    font-weight: 600;
}

/* Статистика компании */
.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 8px;
}

@media (max-width: 575px) {
    .about__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.stat-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(226, 106, 53, 0.18);
    border-color: rgba(226, 106, 53, 0.2);
}

.stat-card__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stat-card__icon {
    font-size: 28px;
    color: var(--md-sys-color-primary);
}

@media (min-width: 768px) {
    .stat-card__icon {
        font-size: 32px;
    }
}

.stat-card__number {
    font-size: 36px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-card__number {
        font-size: 44px;
    }
}

.stat-card__label {
    display: block;
    font-size: 13px;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stat-card__label {
        font-size: 14px;
    }
}

.about__benefits {
    margin-top: 24px;
    padding: 20px;
    background-color: #FFFAF7;
    border-radius: 16px;
    border: 1px solid rgba(212, 101, 42, 0.1);
}

@media (min-width: 768px) {
    .about__benefits {
        margin-top: 32px;
        padding: 32px;
    }
}

.about__benefits-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--md-sys-color-on-surface);
}

@media (min-width: 768px) {
    .about__benefits-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--md-sys-color-on-surface);
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.benefits-list__item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(226, 106, 53, 0.12);
}

@media (min-width: 768px) {
    .benefits-list__item {
        font-size: 15px;
        padding: 16px;
    }
}

.benefits-list__item .material-icons {
    color: var(--md-sys-color-primary);
    font-size: 20px;
    flex-shrink: 0;
}


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

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.service-card:hover .service-card__icon .material-icons {
    color: #fff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--md-sys-color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:active::before,
.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--md-sys-color-primary-container);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, #F08A55 100%);
}

@media (min-width: 768px) {
    .service-card__icon {
        width: 72px;
        height: 72px;
    }
}

.service-card__icon .material-icons {
    font-size: 28px;
    color: var(--md-sys-color-primary);
    transition: color 0.4s ease;
}

@media (min-width: 768px) {
    .service-card__icon .material-icons {
        font-size: 32px;
    }
}

.service-card__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 8px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .service-card__title {
        font-size: 16px;
    }
}

.service-card__description {
    font-size: 13px;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .service-card__description {
        font-size: 14px;
    }
}

.services__more {
    text-align: center;
    margin-top: 24px;
}


/* ========================================
   WORKS / PORTFOLIO SECTION
   ======================================== */

.works__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .works__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.work-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.work-card:hover .work-card__image img {
    transform: scale(1.05);
}

.work-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.work-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--md-sys-color-on-surface-variant);
}

.work-card__placeholder .material-icons {
    font-size: 40px;
    opacity: 0.5;
}

.work-card__content {
    padding: 20px;
}

.work-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 4px;
}

.work-card__description {
    font-size: 14px;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: 12px;
}

.work-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--md-sys-color-primary);
}


/* ========================================
   CLIENTS SECTION
   ======================================== */

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

@media (min-width: 768px) {
    .clients__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

.client-logo {
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo__placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--md-sys-color-on-surface-variant);
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


/* ========================================
   CTA BANNER SECTION
   ======================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, #F08A55 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(15deg);
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 64px 0;
    }
}

.cta-banner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-banner__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

@media (min-width: 768px) {
    .cta-banner__content {
        text-align: left;
        max-width: 60%;
    }
}

.cta-banner__title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .cta-banner__title {
        font-size: 28px;
    }
}

.cta-banner__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .cta-banner__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .cta-banner__buttons {
        justify-content: flex-start;
    }
}

.cta-banner__image {
    display: none;
}

@media (min-width: 768px) {
    .cta-banner__image {
        display: block;
    }
}

.cta-banner__placeholder {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner__placeholder .material-icons {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.9);
}


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

.reviews__rating {
    text-align: center;
    margin-bottom: 24px;
}

.reviews__score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background-color: #FFFAF7;
    border-radius: 16px;
    border: 1px solid rgba(212, 101, 42, 0.12);
}

.reviews__score-value {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--md-sys-color-primary), #F08A55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@media (min-width: 768px) {
    .reviews__score-value {
        font-size: 56px;
    }
}

.reviews__stars {
    display: flex;
    gap: 2px;
}

.reviews__stars .material-icons {
    font-size: 24px;
    color: #FFB300;
}

.reviews__count {
    font-size: 13px;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.review-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 20px;
}

.review-card__placeholder {
    text-align: center;
    color: var(--md-sys-color-on-surface-variant);
    padding: 24px;
    font-size: 14px;
}

.reviews__more {
    text-align: center;
    margin-top: 24px;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.is-open {
    box-shadow: 0 8px 30px rgba(226, 106, 53, 0.12);
    border: 1px solid rgba(226, 106, 53, 0.2);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
    text-align: left;
}

@media (min-width: 768px) {
    .faq-item__question {
        padding: 20px 24px;
        font-size: 16px;
    }
}

.faq-item__icon {
    font-size: 24px;
    color: var(--md-sys-color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .faq-item__answer p {
        padding: 0 24px 24px;
        font-size: 15px;
    }
}


/* ========================================
   TEAM SECTION
   ======================================== */

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

@media (min-width: 768px) {
    .team__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.team-card {
    text-align: center;
    padding: 20px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(226, 106, 53, 0.12);
}

.team-card:hover .team-card__image {
    border-color: var(--md-sys-color-primary);
}

.team-card__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F8FAFC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .team-card__image {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__placeholder .material-icons {
    font-size: 32px;
    color: var(--md-sys-color-on-surface-variant);
    opacity: 0.5;
}

@media (min-width: 768px) {
    .team-card__placeholder .material-icons {
        font-size: 48px;
    }
}

.team-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .team-card__name {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.team-card__position {
    font-size: 12px;
    color: var(--md-sys-color-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .team-card__position {
        font-size: 14px;
    }
}

.team-card__description {
    display: none;
}

@media (min-width: 768px) {
    .team-card__description {
        display: block;
        font-size: 13px;
        color: var(--md-sys-color-on-surface-variant);
        line-height: 1.5;
    }
}


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

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

@media (min-width: 768px) {
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(226, 106, 53, 0.12);
}

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

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__avatar .material-icons {
    font-size: 24px;
    color: var(--md-sys-color-on-surface-variant);
    opacity: 0.6;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 4px;
}

.review-card__rating {
    display: flex;
    gap: 2px;
}

.review-card__rating .material-icons {
    font-size: 16px;
    color: #FFB800;
}

.review-card__text {
    font-size: 14px;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.7;
    font-style: italic;
}

@media (min-width: 768px) {
    .review-card__text {
        font-size: 15px;
    }
}

/* Review card footer */
.review-card__footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card__service {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--md-sys-color-primary);
    background: rgba(226, 106, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.review-card__date {
    display: block;
    font-size: 12px;
    color: var(--md-sys-color-on-surface-variant);
    opacity: 0.7;
    margin-bottom: 4px;
}

/* Avatar colors */
.review-card__avatar--green {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.review-card__avatar--blue {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.review-card__avatar--orange {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* Reviews rating block */
.reviews__rating-block {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__score-big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reviews__score-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    line-height: 1;
}

.reviews__stars-row {
    display: flex;
    gap: 4px;
}

.reviews__stars-row .material-icons {
    font-size: 28px;
    color: #FFB800;
}

.reviews__score-label {
    font-size: 14px;
    color: var(--md-sys-color-on-surface-variant);
    margin-top: 4px;
}

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

.reviews__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reviews__cta .btn .material-icons {
    font-size: 20px;
}


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

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

.contact-form {
    background: #fff;
    padding: 24px 20px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    color: var(--md-sys-color-on-surface);
    background-color: #F8FAFC;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    background-color: #fff;
    border-color: var(--md-sys-color-primary);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #9CA3AF;
}

.contact-form__input.is-error,
.contact-form__textarea.is-error {
    border-color: var(--md-sys-color-error);
    background-color: #FFF5F5;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__error {
    display: block;
    font-size: 12px;
    color: var(--md-sys-color-error);
    margin-top: 6px;
    min-height: 16px;
}

.contact-form__consent {
    margin-bottom: 20px;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox__mark {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox input:checked + .checkbox__mark {
    background-color: var(--md-sys-color-primary);
    border-color: var(--md-sys-color-primary);
}

.checkbox input:checked + .checkbox__mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox__text {
    font-size: 13px;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.5;
}

.contact-form__submit {
    width: 100%;
}


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

.footer {
    background-color: #2D2D2D;
    color: #fff;
    padding: 40px 0 24px;
}

@media (min-width: 768px) {
    .footer {
        padding: 64px 0 24px;
    }
}

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

@media (min-width: 576px) {
    .footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer__main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer__logo .logo-text {
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--md-sys-color-primary);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__list a:active {
    color: #fff;
}

.footer__list .material-icons {
    font-size: 18px;
    color: var(--md-sys-color-primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links__item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-links__item:hover {
    background: var(--md-sys-color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.social-links__item .material-icons {
    font-size: 20px;
}

.social-links__item--labeled {
    width: auto;
    padding: 0 16px;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer Bottom */
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}


/* ========================================
   SCROLL OFFSET FOR FIXED HEADER
   ======================================== */

section[id] {
    scroll-margin-top: 80px;
}

@media (min-width: 768px) {
    section[id] {
        scroll-margin-top: 120px;
    }
}


/* ========================================
   MOBILE BOTTOM CTA BAR
   ======================================== */

.mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 12px;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta__phone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background-color: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
}

.mobile-cta__phone .material-icons {
    font-size: 20px;
}

.mobile-cta__btn {
    flex: 1;
}

/* Add padding to body for mobile CTA */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}


/* SVG icons in service cards */
.service-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--md-sys-color-primary);
    transition: fill 0.4s ease;
}

@media (min-width: 768px) {
    .service-card__icon svg {
        width: 32px;
        height: 32px;
    }
}

.service-card:hover .service-card__icon svg {
    fill: #fff;
}
