:root {
    --color-bg-dark: #0B0E14;
    --color-bg-card: #1a1d26;
    --color-accent: #A5F3FC;
    --color-accent-gold: #C5B358;
    --color-white: #FFFFFF;
    --color-text-body: #F3F4F6;
    --color-text-light: #A1A1AA;
    --color-accent-dark: #22D3EE;
    --color-btn-bg: rgba(165, 243, 252, 0.1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 70px;
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-base: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-base: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-body);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

h1 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(32px, 4.5vw, 42px);
    line-height: 1.35;
    letter-spacing: 0.05em;
}

h3 {
    font-family: var(--font-primary);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: var(--color-white);
}

.small-text {
    font-size: 15px;
    line-height: 1.5;
}

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

.header {
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(70, 130, 180, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: 0.08em;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--color-text-body);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.header-cta {
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.05em;
    height: fit-content;
    white-space: nowrap;
    background: transparent !important;
}

.header-cta::after {
    background: var(--color-white);
}

.header-cta svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #A5F3FC;
}

.header-cta:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(165, 243, 252, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary {
    background: #0B0E14;
    color: var(--color-white);
}

.btn-primary.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
    isolation: isolate;
}

.btn-primary.btn-lg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 320deg,
        #A5F3FC 360deg
    );
    animation: borderBeam 3s linear infinite;
    transform: translate(-50%, -50%);
    z-index: -2;
    filter: blur(1px);
}

.btn-primary.btn-lg::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #15181E;
    border-radius: 0;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-primary.btn-lg:hover::after {
    background: #1A1D23;
}

.btn-primary.btn-lg:hover {
    color: #A5F3FC;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5),
                0 0 15px rgba(165, 243, 252, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-body);
    border: 1px solid rgba(165, 243, 252, 0.3);
}

.btn-outline:hover {
    background: rgba(165, 243, 252, 0.05);
    color: #A5F3FC;
    border-color: #A5F3FC;
}

@keyframes borderBeam {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-card-featured {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    z-index: 0;
    height: 400px;
}

.service-card-featured::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 280deg,
        var(--color-accent) 360deg
    );
    animation: borderBeam 4s linear infinite;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.service-card-featured::after {
    content: '';
    position: absolute;
    inset: 1px;
    background-image: linear-gradient(to bottom, rgba(18, 18, 18, 0.2), rgba(18, 18, 18, 0.4)),
                      url(images/room.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    z-index: -1;
}

.service-card-featured > * {
    position: relative;
    z-index: 2;
    color: white;
}

section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(70, 130, 180, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(70, 130, 180, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 24px;
    color: var(--color-white);
}

.section-text {
    color: var(--color-text-body);
    font-size: 18px;
    line-height: 1.8;
}

.section-title-with-brush-orange {
    position: relative;
}

.section-title-text {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.section-title-brush {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 420px;
    z-index: 1;
    pointer-events: none;
}

.section-title-brush img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.7;
}

.hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;;
    background: linear-gradient(rgba(11, 14, 20, 0.522), rgba(11, 14, 20, 0.527)),
                url('images/hero2.jpg') center center / cover no-repeat;
}

.hero-inner {
    display: block;
    padding-bottom: 50px;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    margin-bottom: 32px;
    color: var(--color-white);
}

.hero-title-highlight {
    display: block;
    position: relative;
    color: var(--color-accent);
}

.brush-stroke {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: auto;
    z-index: -1;
    opacity: 0.7;
}

.hero-text {
    font-size: 19px;
    color: var(--color-text-body);
    margin-bottom: 48px;
    line-height: 1.9;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.services {
    background: var(--color-bg-dark);
}

.services .container {
    max-width: 1400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(70, 130, 180, 0.1);
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(1) {
    background: linear-gradient(rgba(11, 14, 20, 0.02), rgba(11, 14, 20, 0.4)),
                url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(2) {
    background: linear-gradient(rgba(11, 14, 20, 0.003), rgba(11, 14, 20, 0.4)),
                url('https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(3) {
    background: linear-gradient(rgba(11, 14, 20, 0.004), rgba(11, 14, 20, 0.4)),
                url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 1;
    min-height: 180px;
    background: transparent;
    border: none;
    border-left: 0.5px solid rgba(70, 130, 180, 0.3);
    padding-left: 32px;
    box-shadow: none;
}

.service-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.service-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-card:nth-child(4):hover,
.service-card:nth-child(5):hover {
    transform: translateX(8px);
    box-shadow: none;
    border-left-color: var(--color-accent);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 130, 180, 0.1);
    border-radius: 50%;
    color: var(--color-accent);
    border: 1px solid rgba(70, 130, 180, 0.2);
}

.service-icon svg {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.service-icon.draw-icon svg {
    animation: drawStroke 1.5s ease-out forwards;
}

.service-title {
    margin-bottom: 16px;
    color: var(--color-white);
}

.service-text {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.about {
    background: rgba(26, 29, 38, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 60px 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-image img {
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.benefit {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-accent);
    box-shadow: none;
}

.benefit-1 { grid-column: 1; grid-row: 1; }
.benefit-2 { grid-column: 1; grid-row: 2; }
.benefit-3 { grid-column: 3; grid-row: 1; }
.benefit-4 { grid-column: 3; grid-row: 2; }

.benefit-icon svg {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.benefit-icon.draw-icon svg {
    animation: drawStroke 1.5s ease-out forwards;
}

@keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

.benefit-title {
    font-size: 19px;
    color: var(--color-white);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.gallery {
    background: var(--color-bg-dark);
}

.gallery .section-header {
    margin-bottom: 60px;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.before-after {
    position: relative;
}

.before-after-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 10;
}

.before-img,
.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-img {
    clip-path: inset(0 0 0 50%);
}

.before-after-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    cursor: ew-resize;
    z-index: 10;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--color-blue);
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding: 0 24px;
}

.gallery-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid rgba(70, 130, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-body);
    transition: color var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.4s ease-out;
    z-index: -1;
    border-radius: 50%;
}

.gallery-arrow:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.gallery-arrow:hover::after {
    width: 100%;
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(70, 130, 180, 0.3);
    border: none;
    transition: all var(--transition-fast);
}

.gallery-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(70, 130, 180, 0.5);
}

.pricing {
    background: rgba(26, 29, 38, 0.5);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(70, 130, 180, 0.2);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    border-bottom: 1px solid rgba(70, 130, 180, 0.1);
    color: var(--color-text-body);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.2) 0%, rgba(70, 130, 180, 0.05) 100%);
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.price {
    font-weight: 600;
    color: var(--color-accent-gold);
    font-size: 17px;
}

.pricing-note {
    max-width: 800px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.faq {
    background: var(--color-bg-dark);
}

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

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(70, 130, 180, 0.15);
    border-radius: 0;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(70, 130, 180, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    letter-spacing: 0.02em;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.faq-item[open] .faq-icon::before {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 32px 28px;
    color: var(--color-text-body);
    line-height: 1.8;
    font-size: 16px;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.15) 0%, rgba(26, 29, 38, 0.8) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 100px 0;
}

.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-title {
    color: var(--color-white);
    margin-bottom: 24px;
}

.contact-cta-text {
    font-size: 19px;
    color: var(--color-text-body);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-cta .btn-primary {
    background: var(--color-accent);
    color: #000000;
    border-color: var(--color-accent);
}

.contact-cta .btn-primary::after {
    background: var(--color-white);
}

.contact-cta .btn-primary svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #000000;
}

.contact-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-cta .btn-primary:hover svg {
    animation: phoneRing 0.6s ease-in-out;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
}

.footer {
    background: #080a0f;
    color: var(--color-white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(70, 130, 180, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer .logo-name {
    color: var(--color-white);
}

.footer .logo-subtitle {
    color: var(--color-text-body);
}

.footer-desc {
    margin-top: 20px;
    font-size: 15px;
    color: var(--color-text-body);
    max-width: 340px;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: var(--color-white);
}

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

.footer-links a,
.footer-links span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-body);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(70, 130, 180, 0.1);
    text-align: center;
    font-size: 13px;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

body.menu-open {
    overflow: hidden;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.15s;
}

.fade-in-delay-2 {
    animation-delay: 0.3s;
}

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

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

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

@keyframes paintRoll {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.paint-roll {
    clip-path: inset(0 0 0 0);
}

.paint-roll.ready:not(.reveal) {
    clip-path: inset(0 0 100% 0);
}

.paint-roll.reveal {
    animation: paintRoll 1.2s ease-out forwards;
}

@media (max-width: 1100px) {
    .services-grid {
        gap: 16px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 70px;
    }

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

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image img {
        margin: 0 auto;
        max-width: 400px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(11, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        z-index: 10000;
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation: mobileMenuFadeIn 0.3s ease;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(165, 243, 252, 0.1);
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 20px;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        min-height: 320px;
    }

    .service-card:nth-child(3) {
        grid-column: span 2;
    }

    .service-card:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .service-card:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        border-left: none;
        border-top: 0.5px solid rgba(70, 130, 180, 0.3);
        padding-left: 24px;
        padding-top: 24px;
        min-height: 160px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
    }

    .about-image {
        grid-column: 1 / 3;
        grid-row: 1;
        max-width: 350px;
        margin: 0 auto 20px;
    }

    .benefit {
        text-align: center;
        padding: 30px 0;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .benefit-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .benefit-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .benefit-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .benefit-4 {
        grid-column: 2;
        grid-row: 3;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

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

@media (max-width: 768px) {
    .top-bar-text {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .header-cta {
        display: inline-flex;
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-cta svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        gap: 12px;
    }

    .logo img {
        width: 180px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        gap: 20px;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        min-height: 280px;
        grid-column: 1;
    }

    .service-card:nth-child(3) {
        grid-column: 1;
    }

    .service-card:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }

    .service-card:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        min-height: 140px;
        border-left: none;
        border-top: 0.5px solid rgba(70, 130, 180, 0.3);
        padding-left: 20px;
        padding-top: 20px;
    }

    .section-title-brush {
        max-width: 260px;
    }

    .about-image {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .benefit-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .benefit-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .benefit-3 {
        grid-column: 1;
        grid-row: 2;
    }

    .benefit-4 {
        grid-column: 2;
        grid-row: 2;
    }

    .benefit {
        text-align: center;
        padding: 24px 16px;
        border-top: none;
        background: var(--color-bg-card);
        border: 1px solid rgba(70, 130, 180, 0.15);
        border-radius: var(--radius-base);
    }

    .benefit-icon {
        margin: 0 auto 16px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .benefit-text {
        font-size: 14px;
    }

    .gallery-nav {
        gap: 16px;
    }

    .gallery-arrow {
        width: 48px;
        height: 48px;
    }

    .pricing-row {
        padding: 20px 24px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 24px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        padding: 12px 0;
    }

    .header-inner {
        gap: 8px;
    }

    .logo img {
        width: 150px;
    }

    .header-cta {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .header-cta svg {
        width: 14px;
        height: 14px;
    }

    @media (max-width: 380px) {
        .header-cta {
            padding: 8px;
        }

        .header-cta svg + * {
            display: none;
        }
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-text {
        font-size: 16px;
    }

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

    .service-card {
        padding: 24px;
        width: 100%;
        max-width: 100%;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        min-height: 240px;
        grid-column: 1;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1;
        min-height: 120px;
    }

    .about-grid {
        gap: 12px;
    }

    .benefit {
        padding: 16px 12px;
        min-height: 0;
        height: auto;
    }

    .benefit-4 .benefit-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .benefit-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .benefit-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .before-after-container {
        aspect-ratio: 4 / 3;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }

    .pricing-row {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .pricing-header {
        flex-direction: row;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 16px;
        font-size: 14px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta-title {
        font-size: 22px;
    }

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

    .footer {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-desc {
        font-size: 14px;
    }

    .section-title-brush {
        max-width: 200px;
    }
}

@media (max-width: 402px) {
    .benefit {
        padding: 12px 10px;
    }

    .benefit-title {
        font-size: 13px;
    }

    .benefit-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .benefit-4 .benefit-text,
    .benefit .benefit-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
