:root {
    --bg-dark: #030508;
    --accent: #00f2fe;
    --accent-glow: rgba(0, 242, 254, 0.35);
    --text-main: #ffffff;
    --text-muted: #8a99ad;
    --card-bg: rgba(255, 255, 255, 0.015);
    --card-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', "Segoe UI", sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.bg-glow-1 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.bg-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.15) translate(3%, 5%); opacity: 1; }
}

.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 24px 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(3, 5, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

.main-header.hide {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1800px;
    margin: auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
}

.logo-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: all 0.4s ease;
}

.logo:hover .logo-box {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent);
    transform: translateY(-2px);
}

.nav-menu { 
    display: flex; 
    gap: 4px; 
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-self: center;
    max-width: fit-content;
    margin-right: 18%;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu a.active { 
    color: #000; 
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.header-contacts { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    text-align: right; 
}

.header-contacts a { 
    color: rgba(255, 255, 255, 0.5); 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    transition: all 0.3s ease; 
    white-space: nowrap;
}

.header-contacts a:hover { 
    color: var(--accent); 
    transform: translateX(-3px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-container {
    max-width: 1800px;
    width: 100%;
    margin: auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
}

.hero-content { 
    width: 50%; 
    z-index: 5; 
    padding-right: 60px; 
    will-change: transform;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.hero-subtitle::before {
    content: ""; 
    width: 24px; 
    height: 2px; 
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.hero-title { 
    font-size: 70px; 
    line-height: 1.1; 
    margin-bottom: 28px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
}

.accent-text { 
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.2);
}

.hero-description { 
    max-width: 540px; 
    color: var(--text-muted); 
    font-size: 16.5px; 
    line-height: 1.65; 
    margin-bottom: 44px; 
}

.hero-stats { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 48px; 
}

.stat-box { 
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon { 
    color: var(--accent); 
    margin-bottom: 16px; 
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.15);
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.stat-number { 
    font-size: 34px; 
    font-weight: 700; 
    color: #fff; 
    line-height: 1;
}

.stat-label { 
    color: var(--text-muted); 
    font-size: 13px; 
    margin-top: 10px; 
    font-weight: 500;
}

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

.btn-primary, .btn-secondary {
    padding: 16px 34px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: 14px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary { 
    background-color: var(--accent); 
    color: #000000; 
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-primary:hover { 
    background-color: #00e5f2;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.5);
}

.btn-secondary { 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #ffffff; 
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover { 
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-primary .btn-icon {
    border: 1px solid #000;
    border-radius: 50%;
    padding: 3px;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-image-wrap {
    width: 50%; 
    height: 100vh; 
    position: absolute; 
    right: 0; 
    top: 0; 
    z-index: 1;
}

.hero-image-clip {
    width: 100%; 
    height: 100%; 
    overflow: hidden;
}

.hero-image-clip img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    will-change: transform;
}

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

.portfolio-section-wrap {
    position: relative;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 140px;
    z-index: 3;
}

.portfolio-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 5;
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.portfolio-mini-text {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.portfolio-section-title {
    position: relative;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    padding-left: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.portfolio-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 90%;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.8);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.view-all-link .link-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.view-all-link:hover .link-arrow {
    transform: translateX(4px);
}

input[type="radio"] {
    display: none;
}

.filter-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 11px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.filter-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

#all:checked ~ .filter-controls .btn-all,
#exteriors:checked ~ .filter-controls .btn-exteriors,
#interiors:checked ~ .filter-controls .btn-interiors,
#video:checked ~ .filter-controls .btn-video {
    background: #ffffff;
    color: #030508;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    perspective: 1000px;
}

.portfolio-item {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
    transform-style: preserve-3d;
}

#all:checked ~ .portfolio-grid .portfolio-item,
#exteriors:checked ~ .portfolio-grid .cat-exteriors,
#interiors:checked ~ .portfolio-grid .cat-interiors,
#video:checked ~ .portfolio-grid .cat-video {
    display: block;
}

.card-content {
    position: relative;
    height: 310px;
    overflow: hidden;
    border-radius: 20px;
    background: #060a12;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(0);
}

.card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 5, 8, 0.95) 0%, rgba(3, 5, 8, 0.3) 55%, transparent 100%);
    z-index: 2;
}

.card-info {
    position: absolute;
    left: 26px;
    bottom: 26px;
    right: 80px;
    z-index: 3;
    transform: translateZ(30px);
    transition: transform 0.5s ease;
}

.card-info h3 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.25;
}

.project-type {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-arrow {
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 3;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateZ(20px);
}

.card-content:hover {
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.card-content:hover img {
    transform: scale(1.04);
}

.card-content:hover .card-arrow {
    background: #ffffff;
    border-color: #ffffff;
    color: #030508;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1600px) {
    .nav-menu { margin-right: 25%; }
}

@media (max-width: 1440px) {
    .hero-title { font-size: 56px; }
    .header-container, .hero-container, .portfolio-container { padding: 0 40px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 1024px) {
    .header-container { grid-template-columns: 1fr; gap: 20px; justify-items: center; }
    .header-contacts { text-align: center; justify-content: center; }
    .nav-menu { margin-right: 0; }
    .hero-container { flex-direction: column; padding-top: 140px; }
    .hero-content, .hero-image-wrap { width: 100%; padding-right: 0; }
    .hero-image-wrap { position: relative; height: 50vh; margin-top: 40px; }
    .portfolio-section-wrap { padding-top: 80px; }
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .filter-controls { flex-wrap: wrap; }
}




.process-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: transparent;
}

.process-section .container {
    position: relative;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

.process-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}


.flow-item {
    flex: 1;
    min-width: 220px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-item.active {
    opacity: 1;
    transform: translateY(0);
}

.flow-card {
    position: relative;
    padding: 30px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.flow-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(0, 242, 254, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.flow-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.flow-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}


.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    color: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.flow-arrow.active {
    opacity: 1;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
    animation: pulseArrow 2s infinite ease-in-out;
}


.flow-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.flow-card:hover h3 {
    color: var(--accent);
}


@keyframes pulseArrow {
    0% {
        transform: translateX(-4px);
        color: rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translateX(4px);
        color: var(--accent);
        filter: drop-shadow(0 0 8px var(--accent));
    }
    100% {
        transform: translateX(-4px);
        color: rgba(255, 255, 255, 0.1);
    }
}


@media (max-width: 1200px) {
    .process-flow-container {
        flex-direction: column;
        gap: 20px;
    }
    .flow-item {
        width: 100%;
        max-width: 500px;
    }
    .flow-arrow {
        transform: rotate(90deg);
    }
    @keyframes pulseArrow {
        0% { transform: rotate(90deg) translateX(-4px); color: rgba(255, 255, 255, 0.1); }
        50% { transform: rotate(90deg) translateX(4px); color: var(--accent); }
        100% { transform: rotate(90deg) translateX(-4px); color: rgba(255, 255, 255, 0.1); }
    }
}



.business-section {
    position: relative;
    padding: 140px 0;
    background: transparent;
    overflow: hidden;
}

.business-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}


.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    perspective: 1000px; 
}

.business-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}


.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(0, 242, 254, 0.1),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}


.business-card::after {
    content: "✦";
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 24px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}


.card-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(79, 70, 229, 0.1));
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.2);
    transition: all 0.4s ease;
    transform: translateZ(20px); 
}

.card-icon svg {
    width: 30px;
    height: 30px;
}


.card-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 18px;
    transition: color 0.33s ease;
    transform: translateZ(25px); 
}

.card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #8ea0bf;
    margin: 0;
    transform: translateZ(15px);
}


.business-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 242, 254, 0.02);
}

.business-card:hover::before {
    opacity: 1; 
}

.business-card:hover::after {
    color: #00f2fe;
    transform: rotate(90deg) scale(1.2);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

.business-card:hover .card-title {
    color: #00f2fe;
}

.business-card:hover .card-icon {
    transform: translateZ(30px) scale(1.05) rotate(-4deg);
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}


@media(max-width: 1200px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media(max-width: 768px) {
    .business-section {
        padding: 100px 0;
    }
    .business-container {
        padding: 0 20px;
    }
    .business-grid {
        grid-template-columns: 1fr;
    }
}



.price-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-center-container {
    width: 100%;
    max-width: 1150px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.premium-price-panel {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.008);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.01);
    overflow: hidden;
    margin-top: 40px;
}

.panel-header {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    padding: 24px 40px 18px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.panel-row {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.panel-row-content {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    align-items: center;
    padding: 32px 40px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-col {
    display: flex;
    align-items: center;
}

.text-left { justify-content: flex-start; }
.text-center { justify-content: center; }
.text-right { justify-content: flex-end; }

.service-info {
    gap: 24px;
}

.service-text-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
    transition: color 0.35s ease;
}

.service-detail {
    font-size: 0.88rem;
    color: #6d7f99;
    margin: 0;
    opacity: 0.65;
    transition: all 0.35s ease;
}

.service-glow-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.duration-tag {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.3s ease;
}

.italic-tag {
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
}

.price-tag {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.price-tag span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-left: 8px;
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.panel-row:hover {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.025) 0%, rgba(255, 255, 255, 0.002) 100%);
}

.panel-row:hover .panel-row-content {
    transform: translateX(10px);
}

.panel-row:hover .service-text-block h3 {
    color: #00e5ff;
}

.panel-row:hover .service-detail {
    opacity: 1;
    color: #8da0bf;
}

.panel-row:hover .duration-tag {
    color: #ffffff;
}

.panel-row:hover .service-glow-dot {
    background: #00e5ff;
    box-shadow: 
        0 0 10px #00e5ff,
        0 0 20px rgba(0, 229, 255, 0.8);
    transform: scale(1.4);
}

.panel-row:hover .price-tag span {
    color: #00e5ff;
    transform: scale(1.06);
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.panel-row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00e5ff 20%, #00e5ff 80%, transparent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.panel-row:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 900px) {
    .price-center-container {
        padding: 0 20px;
    }
    
    .panel-header {
        display: none;
    }
    
    .premium-price-panel {
        padding: 5px;
        border-radius: 24px;
    }

    .panel-row-content {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 24px;
    }
    
    .panel-row:hover .panel-row-content {
        transform: translateX(0);
    }

    .text-center, .text-right {
        justify-content: flex-start;
    }
    
    .service-info {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding-bottom: 14px;
    }
    
    .duration-tag::before {
        content: "Термін: ";
        color: rgba(255, 255, 255, 0.25);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-right: 8px;
    }
    
    .price-tag {
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        padding-top: 14px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .price-tag::before {
        content: "Вартість:";
        color: rgba(0, 229, 255, 0.5);
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .price-tag span {
        font-size: 1.6rem;
    }
}


.faq-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-center-container {
    width: 100%;
    max-width: 1150px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
}

.header-decor-line {
    width: 4px;
    height: 28px;
    background: #00f2fe;
    box-shadow: 0 0 15px #00f2fe;
    border-radius: 50px;
}

.faq-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    perspective: 1200px;
}

.faq-card {
    position: relative;
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        background 0.4s ease;
}

.faq-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: -0.2px;
    transition: color 0.35s ease;
}

.faq-card p {
    font-size: 0.95rem;
    color: #8da0bf;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.accent-glow {
    color: #00f2fe;
    font-weight: 600;
    transition: text-shadow 0.35s ease;
}

.faq-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(255, 255, 255, 0.015);
}

.faq-card:hover h3 {
    color: #00f2fe;
}

.faq-card:hover .accent-glow {
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

.faq-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f2fe 20%, #00f2fe 80%, transparent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 968px) {
    .faq-section {
        padding: 100px 0;
    }

    .faq-center-container {
        padding: 0 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .faq-header h1 {
        font-size: 1.5rem;
    }
}



.cta-section {
    position: relative;
    width: 100%;
    padding: 140px 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-center-container {
    width: 100%;
    max-width: 1150px;
    padding: 0 30px;
}

.premium-cta-panel {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cyan-text {
    color: #00f2fe;
    text-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6d7f99;
    margin: 0 0 60px 0;
    font-weight: 400;
}


.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    perspective: 1000px;
}


.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    text-decoration: none;
    transform-style: preserve-3d;
    transition: 
        border-color 0.4s ease, 
        background 0.4s ease, 
        box-shadow 0.4s ease;
}

.icon-wrapper {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateZ(15px);
}

.card-label {
    font-size: 0.78rem;
    color: #6d7f99;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-link {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}


.contact-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card:hover .icon-wrapper {
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transform: translateZ(30px) scale(1.05);
}

.contact-card:hover .contact-link {
    color: #00f2fe;
}


.contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f2fe, transparent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover::after {
    width: 80%;
    left: 10%;
}


@media (max-width: 992px) {
    .premium-cta-panel {
        padding: 60px 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.7rem;
    }
    .contact-card {
        padding: 28px 20px;
    }
    .contact-link {
        font-size: 0.95rem;
    }
}