@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&family=Mulish:wght@400;500;600&family=Roboto+Mono:wght@400;500&display=swap');

:root {
    --arctic-mist: #F0F8FF;
    --crystal-wave: #E6F2FF;
    --deep-current: #006994;
    --aqua-surge: #00A8CC;
    --hydraulic-red: #CC3300;
    --pressure-black: #1A1A2E;
    --mist-gray: #64748B;
    --light-gray: #94A3B8;
    --success-green: #10B981;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(0, 105, 148, 0.12);
    --glass-shadow: 0 20px 60px rgba(0, 105, 148, 0.08), 0 40px 100px rgba(0, 168, 204, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--pressure-black);
    background: var(--arctic-mist);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.header-pill {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1000px;
    width: calc(100% - 48px);
    background: rgba(240, 248, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 105, 148, 0.12);
    border-radius: 60px;
    box-shadow: 0 12px 48px rgba(0, 105, 148, 0.1), 0 32px 80px rgba(0, 168, 204, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-pill.scrolled {
    padding: 12px 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo svg {
    width: 40px;
    height: 40px;
}

.header-logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--pressure-black);
}

.header-logo-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    color: var(--mist-gray);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--mist-gray);
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aqua-surge);
    transition: width 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--deep-current);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: var(--deep-current);
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 105, 148, 0.25);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(0, 168, 204, 0.35);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--pressure-black);
    color: var(--pressure-black);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    padding: 18px 36px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: var(--deep-current);
    color: var(--deep-current);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(0, 105, 148, 0.1);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg {
    stroke: var(--deep-current);
    stroke-width: 2px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(240, 248, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-overlay-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    z-index: 1;
}

.mobile-nav-item {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.active .mobile-nav-item {
    animation: slideUp 0.4s ease forwards;
}

.mobile-overlay.active .mobile-nav-item:nth-child(1) { animation-delay: 0.07s; }
.mobile-overlay.active .mobile-nav-item:nth-child(2) { animation-delay: 0.14s; }
.mobile-overlay.active .mobile-nav-item:nth-child(3) { animation-delay: 0.21s; }
.mobile-overlay.active .mobile-nav-item:nth-child(4) { animation-delay: 0.28s; }
.mobile-overlay.active .mobile-nav-item:nth-child(5) { animation-delay: 0.35s; }
.mobile-overlay.active .mobile-nav-item:nth-child(6) { animation-delay: 0.42s; }
.mobile-overlay.active .mobile-nav-item:nth-child(7) { animation-delay: 0.49s; }

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

.mobile-nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--pressure-black);
    transition: color 0.25s ease;
}

.mobile-nav-link:hover {
    color: var(--deep-current);
}

.mobile-nav-dot {
    width: 8px;
    height: 8px;
    background: var(--aqua-surge);
    border-radius: 50%;
    margin: 24px auto;
}

.mobile-contact-info {
    margin-top: 48px;
    text-align: center;
    z-index: 1;
}

.mobile-contact-phone {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: var(--deep-current);
    margin-bottom: 8px;
}

.mobile-contact-address {
    font-size: 14px;
    color: var(--mist-gray);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(0, 105, 148, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mobile-close svg {
    stroke: var(--deep-current);
    stroke-width: 2px;
}

.hero-section {
    min-height: 100vh;
    background: var(--crystal-wave);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 80px 80px;
}

.hero-blob-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.12) 0%, rgba(0, 105, 148, 0.06) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.7;
    animation: blobFloat1 25s ease-in-out infinite alternate;
}

.hero-blob-2 {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 105, 148, 0.1) 0%, rgba(0, 168, 204, 0.05) 50%, transparent 80%);
    filter: blur(100px);
    border-radius: 60%;
    opacity: 0.7;
    animation: blobFloat2 30s ease-in-out infinite alternate;
}

@keyframes blobFloat1 {
    0% { transform: scale(0.95) translate(0, 0); }
    100% { transform: scale(1.05) translate(-30px, 20px); }
}

@keyframes blobFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-drop-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    line-height: 0.9;
    color: var(--pressure-black);
    max-width: 480px;
    margin-bottom: 20px;
    animation: clipReveal 0.7s ease-out;
}

@keyframes clipReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--mist-gray);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease 0.4s both;
}

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

.hero-markers {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--aqua-surge);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 168, 204, 0.3));
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 20px 44px;
    font-size: 16px;
}

.hero-btn-secondary {
    padding: 18px 36px;
    font-size: 16px;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.pump-3d-container {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.pump-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: pumpRotate 25s ease-in-out infinite;
}

@keyframes pumpRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.pump-silhouette {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.15), rgba(0, 168, 204, 0.1));
    border: 2px solid rgba(0, 168, 204, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.pump-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    border-radius: 50%;
    opacity: 0.3;
    animation: pumpBreath 8s ease-in-out infinite alternate;
}

@keyframes pumpBreath {
    0% { transform: translate(-50%, -50%) scale(0.98); }
    100% { transform: translate(-50%, -50%) scale(1.02); }
}

.water-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--aqua-surge);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleSpiral 8s linear infinite;
}

@keyframes particleSpiral {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); opacity: 0; }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 105, 148, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.08);
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 80px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 40px;
    right: -10px;
    margin-top: 40px;
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-2 {
    animation: cardFloat2 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

.card-label {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--pressure-black);
    margin-bottom: 4px;
}

.card-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: var(--deep-current);
}

.section {
    padding: 120px 0 100px;
    position: relative;
}

.section-alt {
    background: var(--crystal-wave);
}

.section-dark {
    background: var(--deep-current);
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .card-stat-number,
.section-dark .card-stat-label {
    color: white;
}

.section-dark .card-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

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

.section-drop-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 48px;
    color: var(--pressure-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--mist-gray);
    line-height: 1.7;
}

.section-markers {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.section-marker {
    width: 6px;
    height: 6px;
    background: var(--aqua-surge);
    border-radius: 50%;
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 168, 204, 0.12);
    border-color: rgba(0, 168, 204, 0.2);
}

.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--crystal-wave), var(--arctic-mist));
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 22px;
    color: var(--pressure-black);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 15px;
    color: var(--mist-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-price {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-current);
    margin-bottom: 20px;
}

.service-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--mist-gray);
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.service-card-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.25);
    transform: translateY(-2px);
}

.process-node-container {
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(0, 168, 204, 0.08);
    border: 2px solid var(--aqua-surge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-center-icon {
    width: 72px;
    height: 72px;
    stroke: var(--deep-current);
    stroke-width: 1.5;
    fill: none;
}

.process-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 105, 148, 0.08);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 16px 48px rgba(0, 105, 148, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 240px;
}

.process-node:hover {
    transform: scale(1.08);
    border-color: var(--aqua-surge);
    box-shadow: 0 24px 64px rgba(0, 168, 204, 0.12);
    z-index: 10;
}

.process-node-number {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: rgba(0, 168, 204, 0.25);
    margin-bottom: 8px;
}

.process-node-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--pressure-black);
    margin-bottom: 8px;
}

.process-node-desc {
    font-size: 13px;
    color: var(--mist-gray);
    line-height: 1.5;
}

.process-node-1 { top: 0%; left: 25%; transform: translateX(0%); }
.process-node-2 { top: 0%; right: 25%; }
.process-node-3 { bottom: 0%; right: 25%; }
.process-node-4 { bottom: 0%; left: 25%; transform: translateX(0%); }

.process-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: -1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(0, 168, 204, 0.1);
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 72px rgba(0, 168, 204, 0.12);
    border-color: rgba(0, 168, 204, 0.2);
}

.advantage-stat {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: var(--pressure-black);
    line-height: 1;
    margin-bottom: 8px;
}

.advantage-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mist-gray);
}

.advantage-decor {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 50%;
}

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

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--crystal-wave), var(--arctic-mist));
}

.about-content {
    padding: 20px 0;
}

.about-drop-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.about-title {
    font-size: 32px;
    color: var(--pressure-black);
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--mist-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 24px;
    transition: all 0.25s ease;
}

.about-cta:hover {
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.25);
    transform: translateY(-2px);
}

.team-list {
    border-top: 1px solid rgba(0, 105, 148, 0.1);
}

.team-member {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 105, 148, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
}

.team-member:hover {
    background: rgba(0, 168, 204, 0.02);
}

.team-member-icon {
    width: 48px;
    height: 48px;
    stroke: rgba(0, 168, 204, 0.4);
    stroke-width: 2;
    fill: none;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--pressure-black);
    transition: color 0.25s ease;
}

.team-member:hover .team-member-name {
    color: var(--deep-current);
}

.team-member-role {
    font-size: 14px;
    color: var(--mist-gray);
    margin-top: 4px;
}

.team-member-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(0, 168, 204, 0.3);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.25s ease;
}

.team-member:hover .team-member-arrow {
    stroke: var(--deep-current);
    transform: translateX(4px);
}

.team-member-photo {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 320px;
    height: 200px;
    border-radius: 20px;
    border: 2px solid var(--aqua-surge);
    object-fit: cover;
    opacity: 0;
    transform: translateX(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.team-member:hover .team-member-photo {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonials-marquee {
    overflow: hidden;
    padding: 60px 0;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: marqueeScroll 35s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 400px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 105, 148, 0.08);
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 12px 48px rgba(0, 105, 148, 0.06);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--deep-current);
    box-shadow: 0 20px 56px rgba(0, 168, 204, 0.12);
}

.testimonial-quote {
    width: 28px;
    height: 28px;
    stroke: var(--aqua-surge);
    stroke-width: 2;
    fill: none;
    margin-bottom: 12px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-star {
    width: 16px;
    height: 16px;
    fill: var(--aqua-surge);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--mist-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--aqua-surge);
}

.testimonial-name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--pressure-black);
}

.testimonial-company {
    font-size: 12px;
    color: var(--mist-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 80px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 105, 148, 0.08);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 8px 32px rgba(0, 105, 148, 0.04);
    transition: all 0.3s ease;
}

.faq-item:nth-child(odd) {
    align-self: start;
}

.faq-item:nth-child(even) {
    align-self: end;
    margin-top: 24px;
}

.faq-item.active {
    background: rgba(0, 168, 204, 0.04);
    border-left: 4px solid var(--deep-current);
}

.faq-question {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--pressure-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--mist-gray);
    stroke-width: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    stroke: var(--aqua-surge);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 28px 0 0;
    font-size: 15px;
    color: var(--mist-gray);
    line-height: 1.7;
    margin-top: 16px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-form-section {
    padding: 80px 60px;
}

.contact-form-title {
    font-size: 32px;
    color: var(--pressure-black);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--mist-gray);
    margin-bottom: 32px;
}

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

.form-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--light-gray);
    margin-bottom: 8px;
    display: block;
    transition: color 0.25s ease;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(26, 26, 46, 0.1);
    padding: 14px 0;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    color: var(--pressure-black);
    background: transparent;
    transition: border-color 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--deep-current);
}

.form-input:focus + .form-label,
.form-group:focus-within .form-label {
    color: var(--deep-current);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.contact-form-btn {
    padding: 20px 48px;
    width: 100%;
    font-size: 16px;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 80px 48px;
    border: 1px solid rgba(0, 105, 148, 0.08);
    box-shadow: 0 16px 56px rgba(0, 105, 148, 0.06);
}

.contact-info-block {
    padding: 24px 0;
}

.contact-info-divider {
    height: 1px;
    background: rgba(0, 168, 204, 0.1);
    margin: 20px 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    stroke: var(--deep-current);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 16px;
    color: var(--mist-gray);
}

.contact-map {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    filter: grayscale(100%);
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.06);
    margin-top: 24px;
}

.footer {
    background: var(--pressure-black);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--aqua-surge);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s ease;
}

.footer-legal-link:hover {
    color: var(--aqua-surge);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--pressure-black);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    color: var(--mist-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-categories {
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 105, 148, 0.08);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-name {
    font-size: 13px;
    color: var(--pressure-black);
}

.cookie-category-desc {
    font-size: 11px;
    color: var(--mist-gray);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    color: white;
}

.cookie-btn-accept:hover {
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.25);
}

.cookie-btn-decline {
    background: transparent;
    border: 2px solid var(--mist-gray);
    color: var(--mist-gray);
}

.cookie-btn-decline:hover {
    border-color: var(--deep-current);
    color: var(--deep-current);
}

.hero-compact {
    min-height: 280px;
    background: var(--arctic-mist);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 80px;
}

.hero-compact-content {
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.hero-breadcrumbs {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: var(--light-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.hero-compact-title {
    font-size: 48px;
    color: var(--pressure-black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-compact-drop {
    width: 24px;
    height: 24px;
    background: rgba(0, 168, 204, 0.2);
    border: 2px solid var(--aqua-surge);
    border-radius: 50%;
    display: inline-block;
}

.hero-compact-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.hero-compact-marker {
    width: 6px;
    height: 6px;
    background: var(--aqua-surge);
    border-radius: 50%;
}

.marquee-section {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 105, 148, 0.08);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--pressure-black);
    letter-spacing: 0.06em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--aqua-surge);
    border-radius: 50%;
}

.achievements-grid {
    columns: 3;
    column-gap: 24px;
}

.achievement-card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 105, 148, 0.08);
    transition: all 0.25s ease;
}

.achievement-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(0, 168, 204, 0.12);
    z-index: 10;
    position: relative;
}

.achievement-card-gradient {
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.9), rgba(0, 105, 148, 0.9));
}

.achievement-card-gradient .achievement-number,
.achievement-card-gradient .achievement-title,
.achievement-card-gradient .achievement-text {
    color: white;
}

.achievement-card-gradient .achievement-text {
    color: rgba(255, 255, 255, 0.9);
}

.achievement-icon {
    width: 52px;
    height: 52px;
    stroke: var(--deep-current);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 20px;
}

.achievement-number {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: var(--pressure-black);
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--pressure-black);
    margin-bottom: 8px;
}

.achievement-text {
    font-size: 14px;
    color: var(--mist-gray);
    line-height: 1.65;
}

.achievement-decor {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 50%;
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--crystal-wave), var(--arctic-mist));
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-title {
    font-size: 32px;
    color: var(--pressure-black);
    margin-bottom: 20px;
}

.service-detail-text {
    font-size: 16px;
    color: var(--mist-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    margin: 32px 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 105, 148, 0.08);
}

.service-feature-icon {
    width: 24px;
    height: 24px;
    stroke: var(--aqua-surge);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-feature-text {
    font-size: 15px;
    color: var(--pressure-black);
}

.service-price-box {
    background: var(--crystal-wave);
    border-radius: 20px;
    padding: 24px;
    margin-top: 32px;
}

.service-price-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mist-gray);
    margin-bottom: 8px;
}

.service-price-value {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-current);
}

.service-price-note {
    font-size: 13px;
    color: var(--mist-gray);
    margin-top: 8px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--success-green);
    stroke-width: 2;
    fill: none;
}

.thank-you-title {
    font-size: 48px;
    color: var(--pressure-black);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--mist-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--deep-current), var(--aqua-surge));
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.thank-you-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 105, 148, 0.25);
    transform: translateY(-2px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-title {
    font-size: 36px;
    color: var(--pressure-black);
    margin-bottom: 32px;
}

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

.legal-section-title {
    font-size: 20px;
    color: var(--pressure-black);
    margin-bottom: 16px;
}

.legal-text {
    font-size: 15px;
    color: var(--mist-gray);
    line-height: 1.8;
}

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

.privacy-feature {
    text-align: center;
    padding: 24px;
}

.privacy-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    stroke: var(--deep-current);
    stroke-width: 1.5;
    fill: none;
}

.privacy-feature-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--pressure-black);
    margin-bottom: 8px;
}

.privacy-feature-text {
    font-size: 14px;
    color: var(--mist-gray);
}

.service-area-map {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    filter: grayscale(100%);
    box-shadow: 0 20px 60px rgba(0, 105, 148, 0.08);
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-area-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 168, 204, 0.12);
}

.service-area-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    stroke: var(--deep-current);
    stroke-width: 1.5;
    fill: none;
}

.service-area-name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--pressure-black);
    margin-bottom: 4px;
}

.service-area-distance {
    font-size: 13px;
    color: var(--mist-gray);
}

.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 {
    transform: scale(0.96);
    transition: transform 0.6s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}

.reveal-water {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.7s ease-out;
}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-water.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

@media (max-width: 1024px) {
    .header-pill {
        padding: 12px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-right {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }
    
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
    
    .process-node-container {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
    }
    
    .process-center-node {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .process-node {
        position: relative;
        transform: none;
        max-width: 100%;
    }

    .process-node-1 { top: 10%; left: 0; transform: translateX(0%); }
    .process-node-2 { top: 35%; right: 0; }
    .process-node-3 { bottom: 35%; right: 0; }
    .process-node-4 { bottom: 10%; left: 0; transform: translateX(0%); }
    
    .process-node:hover {
        transform: translateY(-4px);
    }
    
    .process-connection {
        display: none;
    }
    
    .achievements-grid {
        columns: 2;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .section {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-section {
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }
    
    .testimonial-card {
        width: 320px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .achievements-grid {
        columns: 1;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-compact {
        padding: 60px 24px;
    }
    
    .hero-compact-title {
        font-size: 32px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 105, 148, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--deep-current), var(--aqua-surge));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
