@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');
:root {
    --misty-aqua: #F0F7F9;
    --clean-foam: #FAFCFD;
    --deep-aqua: #0077B6;
    --fresh-mint: #00C49A;
    --clean-teal: #0096A8;
    --deep-navy: #1B3A4B;
    --aqua-charcoal: #3A5A6A;
    --mist-gray: #8BA8B8;
    --light-gray: #A0B0C0;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-soft: 0 4px 24px rgba(0, 119, 182, 0.06);
    --shadow-medium: 0 12px 40px rgba(0, 119, 182, 0.08);
    --shadow-heavy: 0 24px 64px rgba(0, 119, 182, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease-out;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
strong, p, b, em {
    color: inherit;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--aqua-charcoal);
    background-color: var(--clean-foam);
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--misty-aqua);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--deep-aqua), var(--fresh-mint));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep-navy);
}
a {
    color: var(--deep-aqua);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--fresh-mint);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--deep-aqua), var(--clean-teal));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 8px 28px rgba(0, 119, 182, 0.3);
    white-space: nowrap;
    min-height: 52px;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.4);
    color: var(--white);
}
.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--deep-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: 2px solid var(--deep-navy);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    min-height: 52px;
}
.btn-secondary:hover {
    border-color: var(--deep-aqua);
    color: var(--deep-aqua);
    transform: translateY(-2px);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 247, 249, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-soft);
    padding: 20px 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.header.scrolled {
    padding: 12px 32px;
    height: 60px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    transition: var(--transition-smooth);
}
.header-nav.hidden {
    opacity: 0;
    pointer-events: none;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: var(--deep-navy);
    line-height: 1.2;
}
.logo-subtitle {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    color: var(--mist-gray);
    text-transform: uppercase;
}
.header-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--aqua-charcoal);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}
.header-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-aqua);
    transition: var(--transition-fast);
}
.header-link:hover::after {
    width: 100%;
}
.header-link:hover {
    color: var(--deep-aqua);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--fresh-mint);
    text-decoration: none;
}
.header-phone:hover {
    color: var(--deep-aqua);
}
.command-palette-btn {
    width: 48px;
    height: 48px;
    background: rgba(0, 119, 182, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 119, 182, 0.12);
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.command-palette-btn:hover {
    background: rgba(0, 119, 182, 0.15);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.2);
}
.command-palette-btn svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
}
.command-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: 0 32px 80px rgba(0, 119, 182, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.command-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.command-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(240, 247, 249, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.command-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.command-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 119, 182, 0.08);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.command-close:hover {
    background: rgba(0, 119, 182, 0.15);
}
.command-close svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
}
.command-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}
.command-item {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.command-item:hover {
    background: rgba(0, 119, 182, 0.06);
    padding-left: 32px;
}
.command-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(0, 119, 182, 0.4);
}
.command-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-navy);
}
.command-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.command-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--fresh-mint);
}
.hero-section {
    min-height: 100vh;
    background: var(--clean-foam);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 119, 182, 0.06) 0%, rgba(0, 196, 154, 0.03) 40%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-drop {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.92;
    color: var(--deep-navy);
    max-width: 520px;
    animation: heroReveal 0.7s ease-out forwards;
}
@keyframes heroReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}
.hero-subtitle {
    font-size: 17px;
    color: var(--aqua-charcoal);
    line-height: 1.75;
    max-width: 480px;
    margin-top: 20px;
    animation: fadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    animation: scaleIn 0.4s ease-out 0.2s forwards;
    opacity: 0;
}
@keyframes scaleIn {
    to {
        opacity: 1;
    }
}
.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--deep-aqua);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 119, 182, 0.25));
}
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    animation: scaleIn 0.6s ease-out 0.6s forwards;
    opacity: 0;
}
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.hero-visual {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 119, 182, 0.12);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: var(--shadow-medium);
    animation: cardFloat 0.6s ease-out forwards;
    opacity: 0;
}
.hero-card:nth-child(1) {
    top: 20px;
    right: 0;
    animation-delay: 0.2s;
}
.hero-card:nth-child(2) {
    top: 15%;
    right: 60px;
    transform: translateY(-50%);
    animation-delay: 0.4s;
}
.hero-card:nth-child(3) {
    bottom: 40px;
    right: 20px;
    animation-delay: 0.6s;
}
@keyframes cardFloat {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
    }
}
.hero-card:nth-child(2) {
    animation-name: cardFloatCenter;
}
@keyframes cardFloatCenter {
    from {
        opacity: 0;
        transform: translateY(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}
.card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-navy);
}
.card-value {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--deep-aqua);
    margin-top: 4px;
}
.hero-pipe-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.3;
}
.section {
    padding: 100px 80px;
    position: relative;
}
.section-misty {
    background: var(--misty-aqua);
}
.section-foam {
    background: var(--clean-foam);
}
.section-dark {
    background: var(--deep-aqua);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--deep-aqua);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-dark .section-label {
    color: rgba(255, 255, 255, 0.7);
}
.section-title {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--deep-navy);
    margin-bottom: 16px;
}
.section-dark .section-title {
    color: var(--white);
}
.section-desc {
    font-size: 17px;
    color: var(--aqua-charcoal);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.8);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 119, 182, 0.1);
    padding: 28px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.service-card:nth-child(even) {
    align-self: end;
    margin-top: 24px;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 119, 182, 0.2);
}
.service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.service-icon svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
    fill: none;
}
.service-content {
    flex: 1;
}
.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--deep-navy);
    margin-bottom: 8px;
}
.service-text {
    font-size: 15px;
    color: var(--aqua-charcoal);
    line-height: 1.6;
}
.service-price {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--fresh-mint);
    margin-top: 12px;
}
.service-expand {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.service-expand svg {
    stroke: var(--mist-gray);
    stroke-width: 2;
}
.service-card.active .service-expand {
    transform: rotate(45deg);
}
.service-card.active .service-expand svg {
    stroke: var(--deep-aqua);
}
.marquee {
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    margin-top: 60px;
}
.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
}
.marquee-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--deep-navy);
}
.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--deep-aqua);
    border-radius: 50%;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    filter: saturate(1.05);
    height: 100%;
    min-height: 400px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-icon {
    margin-bottom: 24px;
}
.about-title {
    font-size: 28px;
    margin-bottom: 20px;
}
.about-text {
    font-size: 16px;
    color: var(--aqua-charcoal);
    line-height: 1.8;
}
.about-text p {
    margin-bottom: 16px;
}
.about-dot {
    width: 4px;
    height: 4px;
    background: var(--deep-aqua);
    border-radius: 50%;
    margin: 16px auto;
}
.process-container {
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process-center {
    width: 180px;
    height: 180px;
    background: rgba(0, 119, 182, 0.08);
    border: 2px solid var(--deep-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.process-center svg {
    width: 72px;
    height: 72px;
    stroke: var(--deep-aqua);
    stroke-width: 2;
    fill: none;
}
.process-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 119, 182, 0.1);
    padding: 24px 28px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    width: 220px;
}
.process-node:hover {
    transform: scale(1.08);
    border-color: rgba(0, 119, 182, 0.25);
    box-shadow: var(--shadow-heavy);
    z-index: 10;
}
.process-node:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.process-node:nth-child(2):hover {
    transform: translateX(-50%) scale(1.08);
}
.process-node:nth-child(3) {
    top: 20%;
    right: 0;
}
.process-node:nth-child(4) {
    bottom: 20%;
    right: 0;
}
.process-node:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.process-node:nth-child(5):hover {
    transform: translateX(-50%) scale(1.08);
}
.process-node:nth-child(6) {
    bottom: 20%;
    left: 0;
}
.process-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: rgba(0, 119, 182, 0.5);
    line-height: 1;
}
.process-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-navy);
    margin: 8px 0 4px;
}
.process-text {
    font-size: 13px;
    color: var(--aqua-charcoal);
    line-height: 1.5;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}
.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--fresh-mint);
    box-shadow: var(--shadow-heavy);
    padding: 32px;
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-left: -40px;
}
.advantage-card:hover {
    transform: translateY(-16px) scale(1.05);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    background: var(--white);
}
.advantage-card:hover .advantage-icon svg {
    stroke: var(--fresh-mint);
}
.advantage-icon {
    margin-bottom: 20px;
}
.advantage-icon svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
    fill: none;
    transition: var(--transition-fast);
}
.advantage-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-navy);
    margin-bottom: 8px;
}
.advantage-text {
    font-size: 14px;
    color: var(--mist-gray);
    line-height: 1.65;
}
.achievements-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.achievement-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-medium);
    margin-bottom: -80px;
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
}
.achievement-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-4px);
    z-index: 10;
}
.achievement-border {
    height: 4px;
    background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint), var(--clean-teal));
    border-radius: 4px;
}
.achievement-icon {
    margin: 32px;
    flex-shrink: 0;
}
.achievement-icon svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
    fill: none;
}
.achievement-content {
    padding: 32px 48px 32px 0;
}
.achievement-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--deep-navy);
}
.achievement-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 52px;
    color: var(--deep-aqua);
    line-height: 1;
}
.achievement-note {
    font-size: 14px;
    color: var(--mist-gray);
    margin-top: 4px;
}
.team-masonry {
    columns: 3;
    column-gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    padding: 24px;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: var(--transition-fast);
}
.team-card:hover {
    transform: scale(1.03);
    border-color: rgba(0, 119, 182, 0.15);
    box-shadow: var(--shadow-heavy);
    z-index: 10;
}
.team-photo {
    width: calc(100% + 48px);
    height: 180px;
    margin: -24px -24px 20px -24px;
    border-radius: 20px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.team-icon {
    margin-bottom: 16px;
}
.team-icon svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
    fill: none;
}
.team-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-navy);
}
.team-role {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--deep-aqua);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.team-spec {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mist-gray);
    margin-top: 8px;
}
.team-decor {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
    border-radius: 2px;
    margin-top: 16px;
}
.faq-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}
.faq-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--deep-aqua), var(--fresh-mint), var(--clean-teal));
    border-radius: 3px;
}
.faq-item {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding-left: 56px;
}
.faq-dot {
    position: absolute;
    left: -7px;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--deep-aqua);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--deep-aqua);
}
.faq-connector {
    position: absolute;
    left: 7px;
    top: 35px;
    width: 40px;
    height: 3px;
    background: var(--deep-aqua);
    border-radius: 3px;
}
.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    padding: 28px 32px;
    box-shadow: var(--shadow-medium);
}
.faq-number {
    width: 56px;
    height: 56px;
    background: rgba(0, 119, 182, 0.1);
    border: 2px solid var(--deep-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-aqua);
    margin-bottom: 12px;
}
.faq-question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-navy);
    margin-bottom: 8px;
}
.faq-answer {
    font-size: 14px;
    color: var(--mist-gray);
    line-height: 1.7;
}
.testimonials-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}
.carousel-track {
    position: relative;
    width: 320px;
    height: 100%;
    transform-style: preserve-3d;
}
.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.testimonial-card.active {
    z-index: 100;
    transform: scale(1.08);
    box-shadow: var(--shadow-heavy);
}
.testimonial-photo {
    height: 120px;
    overflow: hidden;
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.testimonial-content {
    padding: 24px;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
.testimonial-stars svg {
    fill: var(--fresh-mint);
}
.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--aqua-charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--deep-aqua);
}
.author-info {
    flex: 1;
}
.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-navy);
}
.author-company {
    font-size: 12px;
    color: var(--mist-gray);
}
.testimonial-decor {
    height: 4px;
    background: linear-gradient(90deg, var(--deep-aqua), var(--fresh-mint));
    border-radius: 4px;
    margin-top: 16px;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(0, 119, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 101;
}
.carousel-nav:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}
.carousel-nav svg {
    stroke: var(--deep-aqua);
    stroke-width: 2;
}
.carousel-prev {
    left: calc(50% - 220px);
}
.carousel-next {
    right: calc(50% - 220px);
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}
.contact-form {
    padding: 80px 60px;
}
.contact-title {
    font-size: 32px;
    color: var(--deep-navy);
    margin-bottom: 8px;
}
.contact-subtitle {
    font-size: 14px;
    color: var(--mist-gray);
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 28px;
}
.form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--light-gray);
    margin-bottom: 8px;
    display: block;
}
.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(27, 58, 75, 0.12);
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--deep-navy);
    transition: var(--transition-fast);
    border-radius: 0;
}
.form-input:focus {
    outline: none;
    border-bottom-color: var(--deep-aqua);
}
.form-input:focus + .form-label,
.form-group:focus-within .form-label {
    color: var(--deep-aqua);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-info {
    padding: 80px 48px;
    border-left: 1px solid rgba(0, 119, 182, 0.1);
}
.contact-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
}
.contact-block:last-of-type {
    border-bottom: none;
}
.contact-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.contact-icon svg {
    stroke: var(--deep-aqua);
    stroke-width: 1.5;
    fill: none;
}
.contact-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-value {
    font-size: 16px;
    color: var(--aqua-charcoal);
    margin-top: 4px;
}
.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    filter: grayscale(100%);
    box-shadow: var(--shadow-soft);
}
.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}
.footer {
    background: var(--deep-navy);
    padding: 80px 80px 40px;
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-logo-icon {
    width: 40px;
    height: 40px;
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}
.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
.footer-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--fresh-mint);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item svg {
    stroke: var(--fresh-mint);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--fresh-mint);
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    padding: 24px 28px;
    max-width: 420px;
    z-index: 9999;
    display: none;
}
.cookie-banner.visible {
    display: block;
}
.cookie-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-navy);
    margin-bottom: 8px;
}
.cookie-text {
    font-size: 14px;
    color: var(--aqua-charcoal);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}
.cookie-accept {
    background: linear-gradient(135deg, var(--deep-aqua), var(--clean-teal));
    color: var(--white);
}
.cookie-accept:hover {
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
}
.cookie-decline {
    background: transparent;
    color: var(--aqua-charcoal);
    border: 1px solid rgba(0, 119, 182, 0.2);
}
.cookie-decline:hover {
    border-color: var(--deep-aqua);
    color: var(--deep-aqua);
}
.page-hero {
    padding: 160px 80px 80px;
    background: var(--misty-aqua);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 119, 182, 0.04) 0%, transparent 70%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}
.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--light-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs a {
    color: var(--mist-gray);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--deep-aqua);
}
.breadcrumb-sep {
    color: var(--light-gray);
}
.page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-title-dot {
    width: 8px;
    height: 8px;
    background: var(--deep-aqua);
    border-radius: 50%;
    animation: scaleIn 0.3s ease-out forwards;
}
.page-title {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--deep-navy);
}
.page-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.page-marker {
    width: 6px;
    height: 6px;
    background: var(--deep-aqua);
    border-radius: 50%;
}
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clean-foam);
    position: relative;
    overflow: hidden;
}
.thank-you-content {
    text-align: center;
    padding: 80px;
    max-width: 600px;
}
.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: rgba(0, 196, 154, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-icon svg {
    stroke: var(--fresh-mint);
    stroke-width: 2;
    fill: none;
}
.thank-you-title {
    font-size: 36px;
    color: var(--deep-navy);
    margin-bottom: 16px;
}
.thank-you-text {
    font-size: 17px;
    color: var(--aqua-charcoal);
    line-height: 1.75;
    margin-bottom: 32px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 80px 80px;
}
.legal-title {
    font-size: 32px;
    color: var(--deep-navy);
    margin-bottom: 32px;
}
.legal-section {
    margin-bottom: 32px;
}
.legal-section h2 {
    font-size: 20px;
    color: var(--deep-navy);
    margin-bottom: 12px;
}
.legal-section p {
    font-size: 15px;
    color: var(--aqua-charcoal);
    line-height: 1.8;
}
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-medium);
    padding: 32px;
}
.service-detail-section {
    padding: 80px;
}
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.detail-content h2 {
    font-size: 28px;
    color: var(--deep-navy);
    margin-bottom: 20px;
}
.detail-content p {
    font-size: 16px;
    color: var(--aqua-charcoal);
    line-height: 1.8;
    margin-bottom: 20px;
}
.detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}
.detail-content li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--aqua-charcoal);
}
.detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--deep-aqua);
    border-radius: 50%;
}
.detail-sidebar {
    position: sticky;
    top: 100px;
}
.detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: var(--shadow-medium);
    padding: 32px;
    margin-bottom: 24px;
}
.detail-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-navy);
    margin-bottom: 16px;
}
.detail-price {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--deep-aqua);
    margin-bottom: 8px;
}
.detail-price-note {
    font-size: 13px;
    color: var(--mist-gray);
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-heavy);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}
.reveal-aqua {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
}
.reveal-fade.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-aqua.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 1024px) {
    .header {
        padding: 16px 20px;
    }
    .header-nav {
        display: none;
    }
    .header-phone {
        display: none;
    }
    .command-palette-btn {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 40px 60px;
    }
    .hero-right {
        min-height: 400px;
    }
    .section {
        padding: 80px 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card:nth-child(even) {
        margin-top: 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .process-container {
        flex-direction: column;
        gap: 24px;
    }
    .process-node {
        position: relative;
        width: 100%;
        max-width: 400px;
    }
    .process-node:nth-child(2),
    .process-node:nth-child(5) {
        transform: none;
    }
    .process-node:nth-child(2):hover,
    .process-node:nth-child(5):hover {
        transform: scale(1.08);
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .advantage-card {
        margin-left: 0;
    }
    .team-masonry {
        columns: 1;
    }
    .faq-timeline {
        padding-left: 40px;
    }
    .faq-timeline::before {
        left: 16px;
    }
    .faq-item {
        padding-left: 48px;
    }
    .faq-dot {
        left: -7px;
    }
    .faq-connector {
        left: 7px;
    }
    .contact-split {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-left: none;
        border-top: 1px solid rgba(0, 119, 182, 0.1);
    }
    .footer {
        padding: 60px 40px 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .page-hero {
        padding: 120px 40px 60px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: static;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}
@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-card {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .legal-content {
        padding: 120px 24px 60px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-carousel {
        height: auto;
    }
    .carousel-track {
        position: relative;
        transform: none !important;
    }
    .testimonial-card {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
    }
    .carousel-nav {
        display: none;
    }
}