@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
    --soft-mint: #F0FDF4;
    --light-aqua: #E0F2FE;
    --deep-teal: #0D4F6C;
    --flow-emerald: #10B981;
    --crystal-sky: #0EA5E9;
    --steel-gray: #475569;
    --muted-mint: #6EE7B7;
    --pure-white: #FFFFFF;
    --shadow-color: rgba(13,79,108,0.06);
    --shadow-strong: rgba(13,79,108,0.08);
    --glass-bg: rgba(255,255,255,0.98);
    --radius-sm: 16px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-xxl: 32px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--steel-gray);
    background-color: var(--soft-mint);
    overflow-x: hidden;
}
strong, p, span {
    color: inherit;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.pure-g {
    display: flex;
    flex-wrap: wrap;
}
.pure-u-1, .pure-u-1-1 { width: 100%; }
.pure-u-1-2, .pure-u-2-4 { width: 50%; }
.pure-u-1-3 { width: 33.3333%; }
.pure-u-2-3 { width: 66.6666%; }
.pure-u-1-4 { width: 25%; }
.pure-u-3-4 { width: 75%; }
@media (min-width: 768px) {
    .pure-u-md-1-2 { width: 50%; }
    .pure-u-md-1-3 { width: 33.3333%; }
    .pure-u-md-2-3 { width: 66.6666%; }
    .pure-u-md-1-4 { width: 25%; }
    .pure-u-md-3-4 { width: 75%; }
}
@media (min-width: 1024px) {
    .pure-u-lg-1-2 { width: 50%; }
    .pure-u-lg-1-3 { width: 33.3333%; }
    .pure-u-lg-2-3 { width: 66.6666%; }
    .pure-u-lg-1-4 { width: 25%; }
    .pure-u-lg-3-4 { width: 75%; }
}
.vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 64px;
    height: 100vh;
    background: rgba(240,253,244,0.99);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(16,185,129,0.12);
    box-shadow: -8px 0 48px rgba(13,79,108,0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
    transition: width var(--transition-slow);
    overflow: hidden;
}
.vertical-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24 Q12 20, 24 24 T48 24' stroke='rgba(16,185,129,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}
.vertical-nav:hover {
    width: 280px;
}
.nav-logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(16,185,129,0.25);
    flex-shrink: 0;
}
.nav-logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}
.nav-logo-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--deep-teal);
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: opacity var(--transition-medium), max-width var(--transition-medium);
}
.vertical-nav:hover .nav-logo-text {
    opacity: 1;
    max-width: 150px;
}
.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}
.nav-item:hover {
    background: rgba(16,185,129,0.08);
    transform: translateX(4px);
}
.nav-item svg {
    width: 22px;
    height: 22px;
    stroke: rgba(71,85,105,0.5);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}
.nav-item-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--steel-gray);
    opacity: 0;
    max-width: 0;
    transition: opacity var(--transition-medium), max-width var(--transition-medium);
}
.vertical-nav:hover .nav-item-text {
    opacity: 1;
    max-width: 150px;
}
.nav-item:hover .nav-item-text {
    color: var(--flow-emerald);
}
.nav-item:hover svg {
    stroke: var(--flow-emerald);
}
.nav-cta {
    display: none;
    padding: 0 24px;
    width: 100%;
}
.nav-cta-btn {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--flow-emerald), #059669);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16,185,129,0.25);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.nav-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(16,185,129,0.35);
    transform: translateY(-2px);
}
.nav-phone {
    display: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--flow-emerald);
    letter-spacing: 0.02em;
    padding: 0 24px;
    width: 100%;
    white-space: nowrap;
}
.vertical-nav:hover .nav-cta,
.vertical-nav:hover .nav-phone {
    display: block;
}
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(240,253,244,0.99);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(16,185,129,0.08);
}
.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-logo-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
}
.mobile-logo-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--deep-teal);
}
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    background: rgba(16,185,129,0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--flow-emerald);
    fill: none;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(240,253,244,0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding-top: 100px;
    padding-left: 40px;
}
.mobile-overlay.active {
    display: flex;
}
.mobile-overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-overlay-item {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-teal);
    position: relative;
    padding-left: 0;
    transition: all var(--transition-fast);
}
.mobile-overlay-item::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0%;
    transform: translateY(-50%);
    height: 2px;
    width: 60px;
    background: var(--flow-emerald);
}
.mobile-overlay-item:hover {
    color: var(--flow-emerald);
}
.mobile-overlay-contact {
    margin-top: auto;
    padding-bottom: 48px;
}
.mobile-overlay-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--flow-emerald);
    margin-bottom: 8px;
}
.mobile-overlay-address {
    font-size: 12px;
    color: var(--steel-gray);
}
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--flow-emerald);
    fill: none;
}
.mesh-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}
.mesh-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, rgba(14,165,233,0.04) 50%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: blobFloat1 45s ease-in-out infinite alternate;
}
.mesh-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251,191,36,0.05) 0%, transparent 70%);
    bottom: 20%;
    left: -50px;
    animation: blobFloat2 50s ease-in-out infinite alternate;
}
.mesh-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(14,165,233,0.04) 0%, transparent 70%);
    top: 40%;
    right: -100px;
    animation: blobFloat3 55s ease-in-out infinite alternate;
}
.mesh-blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16,185,129,0.03) 0%, transparent 70%);
    bottom: -50px;
    left: 30%;
    animation: blobFloat4 48s ease-in-out infinite alternate;
}
@keyframes blobFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.08); }
}
@keyframes blobFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 50px) scale(0.92); }
}
@keyframes blobFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, -40px) scale(1.05); }
}
@keyframes blobFloat4 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(0.95); }
}
.organic-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    filter: blur(40px);
}
.organic-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q20 35, 40 40 T80 40' stroke='rgba(16,185,129,0.04)' stroke-width='1' fill='none'/%3E%3Cpath d='M40 0 Q35 20, 40 40 T40 80' stroke='rgba(16,185,129,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    animation: gridFloat 25s ease-in-out infinite alternate;
}
@keyframes gridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}
main {
    position: relative;
    z-index: 2;
    margin-left: 64px;
}
.hero-section {
    min-height: 100vh;
    background: var(--soft-mint);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 80px 140px 80px;
}
.hero-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}
.hero-text {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-decor {
    margin-bottom: 28px;
}
.hero-decor svg {
    width: 56px;
    height: 56px;
    stroke: rgba(16,185,129,0.4);
    fill: none;
    stroke-width: 2;
}
.hero-title-main {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.78;
    color: var(--deep-teal);
    max-width: 520px;
}
.hero-title-sub {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 0.85;
    color: var(--flow-emerald);
    margin-top: 8px;
}
.hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(71,85,105,0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
}
.hero-description {
    font-size: 17px;
    color: var(--steel-gray);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 20px;
}
.hero-markers {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.hero-marker {
    width: 24px;
    height: 10px;
    background: var(--flow-emerald);
    border-radius: 5px;
    filter: drop-shadow(0 4px 12px rgba(16,185,129,0.2));
}
.hero-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 2px;
    margin-top: 16px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 24px 52px;
    background: linear-gradient(135deg, var(--flow-emerald), #059669);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(16,185,129,0.3);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(16,185,129,0.4);
    transform: translateY(-2px);
}
.btn-secondary {
    padding: 22px 44px;
    background: transparent;
    border: 2px solid var(--deep-teal);
    color: var(--deep-teal);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: var(--flow-emerald);
    box-shadow: 0 6px 20px rgba(16,185,129,0.15);
}
.hero-visual {
    grid-column: span 6;
    position: relative;
    height: 520px;
}
.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    position: relative;
}
.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-1 {
    grid-column: span 1;
    grid-row: span 2;
    border-radius: var(--radius-xxl);
    margin-top: -16px;
    margin-left: -16px;
    box-shadow: 0 32px 96px rgba(13,79,108,0.08);
    z-index: 3;
}
.hero-img-1:hover {
    z-index: 10;
    transform: scale(1.02);
}
.hero-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.08);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 24px 72px var(--shadow-color);
    z-index: 5;
}
.hero-card-1 {
    top: 40px;
    right: 24px;
}
.hero-card-2 {
    bottom: 40px;
    right: 24px;
}
.hero-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--deep-teal);
}
.hero-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--flow-emerald);
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.sticky-section {
    position: sticky;
    top: 0;
    height: 100vh;
    margin-top: -20vh;
    z-index: 10;
}
.section {
    padding: 100px 80px;
    position: relative;
}
.section-aqua {
    background: var(--light-aqua);
}
.section-mint {
    background: var(--soft-mint);
}
.section-teal {
    background: var(--deep-teal);
    color: white;
}
.section-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}
.section-decor {
    margin-bottom: 24px;
}
.section-decor svg {
    width: 48px;
    height: 48px;
    stroke: rgba(16,185,129,0.5);
    fill: none;
    stroke-width: 2;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--deep-teal);
    margin-bottom: 16px;
}
.section-teal .section-title {
    color: white;
}
.section-subtitle {
    font-size: 16px;
    color: var(--steel-gray);
    max-width: 600px;
}
.section-teal .section-subtitle {
    color: rgba(255,255,255,0.7);
}
.marquee-wrapper {
    overflow: hidden;
    height: 48px;
    background: linear-gradient(90deg, var(--deep-teal), #1E5F7A);
    display: flex;
    align-items: center;
}
.marquee-content {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}
.marquee-text {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    padding: 0 40px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 24px 72px var(--shadow-color);
    transition: all var(--transition-medium);
}
.glass-card:hover {
    box-shadow: 0 40px 120px rgba(16,185,129,0.08);
    transform: translateY(-2px);
    border-color: rgba(16,185,129,0.12);
}
.service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-icon {
    width: 40px;
    height: 40px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
}
.service-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
}
.service-text {
    font-size: 13px;
    color: var(--steel-gray) !important;
    margin-top: 4px;
}
.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--flow-emerald);
    margin-top: 8px;
}
.service-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}
.service-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--flow-emerald);
}
.service-image {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-cta-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
}
.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.about-image-decor svg {
    width: 56px;
    height: 56px;
    stroke: rgba(16,185,129,0.3);
    fill: none;
    stroke-width: 2;
}
.about-image-block {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 120px;
    height: 80px;
    background: rgba(16,185,129,0.04);
    border-radius: var(--radius-md);
    z-index: 10;
}
.about-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-content-decor {
    margin-bottom: 24px;
}
.about-content-decor svg {
    width: 48px;
    height: 48px;
    stroke: rgba(16,185,129,0.4);
    fill: none;
    stroke-width: 2;
}
.about-text {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.75;
}
.about-divider {
    height: 2px;
    width: 40px;
    background: rgba(16,185,129,0.1);
    margin: 20px 0;
}
.timeline-section {
    position: relative;
    padding: 100px 80px;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--flow-emerald), var(--crystal-sky), var(--flow-emerald));
    transform: translateX(-50%);
}
.timeline-item {
    width: calc(50% - 60px);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid rgba(16,185,129,0.08);
    box-shadow: 0 24px 72px var(--shadow-color);
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}
.timeline-item:nth-child(odd) {
    margin-right: auto;
}
.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-top: 72px;
}
.timeline-icon {
    width: 48px;
    height: 48px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
    margin-bottom: 12px;
}
.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
}
.timeline-text {
    font-size: 14px;
    color: var(--steel-gray);
    margin-top: 6px;
    line-height: 1.6;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--flow-emerald);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--flow-emerald);
}
.masonry-grid {
    columns: 3;
    column-gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
}
.masonry-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 72px var(--shadow-color);
    transition: all var(--transition-medium);
}
.masonry-card:hover {
    transform: scale(1.03);
    border-color: rgba(16,185,129,0.15);
    box-shadow: 0 40px 120px rgba(16,185,129,0.08);
    z-index: 10;
}
.masonry-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.masonry-content {
    padding: 20px 22px 22px;
}
.masonry-category {
    font-size: 11px;
    color: var(--flow-emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.masonry-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-top: 8px;
}
.masonry-text {
    font-size: 14px;
    color: var(--steel-gray);
    margin-top: 8px;
    line-height: 1.6;
}
.masonry-accent {
    height: 4px;
    width: 40px;
    background: linear-gradient(90deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 2px;
    margin-top: 16px;
}
.carousel-section {
    padding: 100px 80px;
    position: relative;
}
.carousel-container {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    margin-top: 48px;
}
.carousel-track {
    position: relative;
    width: 300px;
    height: 100%;
    transform-style: preserve-3d;
}
.testimonial-card {
    position: absolute;
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 72px var(--shadow-color);
    overflow: hidden;
    transition: all var(--transition-medium);
    transform: rotateY(var(--rotate)) translateZ(320px);
}
.testimonial-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.testimonial-content {
    padding: 24px;
}
.testimonial-icon {
    width: 40px;
    height: 40px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
    margin-bottom: 12px;
}
.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
}
.testimonial-role {
    font-size: 12px;
    color: var(--muted-mint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.testimonial-text {
    font-size: 13px;
    color: var(--steel-gray);
    margin-top: 8px;
    line-height: 1.5;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--flow-emerald);
}
.testimonial-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--flow-emerald), var(--crystal-sky));
}
.carousel-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 20;
}
.carousel-nav:hover {
    background: var(--flow-emerald);
}
.carousel-nav:hover svg {
    stroke: white;
}
.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--flow-emerald);
    fill: none;
}
.carousel-prev {
    left: 20%;
}
.carousel-next {
    right: 20%;
}
.accordion-section {
    padding: 100px 80px;
}
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16,185,129,0.08);
    box-shadow: 0 24px 72px var(--shadow-color);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}
.accordion-item:hover {
    z-index: 10;
    transform: translateY(-4px);
}
.accordion-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}
.accordion-icon {
    width: 48px;
    height: 48px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
    margin-right: 16px;
    flex-shrink: 0;
}
.accordion-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
    flex: 1;
}
.accordion-chevron {
    width: 24px;
    height: 24px;
    stroke: var(--muted-mint);
    fill: none;
    transition: transform var(--transition-medium);
}
.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    stroke: var(--flow-emerald);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}
.accordion-item.active .accordion-content {
    max-height: 500px;
}
.accordion-body {
    padding: 0 24px 24px;
}
.accordion-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--flow-emerald), var(--crystal-sky));
    margin-bottom: 16px;
    border-radius: 2px;
}
.accordion-text {
    font-size: 14px;
    color: var(--steel-gray);
    line-height: 1.6;
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.achievement-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-medium);
}
.achievement-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(16,185,129,0.2);
}
.achievement-icon {
    width: 48px;
    height: 48px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 12px;
}
.achievement-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--flow-emerald);
}
.achievement-label {
    font-size: 11px;
    color: var(--muted-mint);
    margin-top: 4px;
}
.achievement-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    line-height: 1.6;
}
.team-network {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.team-center {
    width: 160px;
    height: 160px;
    background: rgba(16,185,129,0.08);
    border: 3px solid var(--flow-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 24px 72px rgba(13,79,108,0.2);
}
.team-center svg {
    width: 64px;
    height: 64px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}
.team-center::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(14,165,233,0.2);
    border-radius: 50%;
}
.team-center::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(16,185,129,0.08);
    border-radius: 50%;
}
.team-nodes {
    position: absolute;
    inset: 0;
}
.team-node {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16,185,129,0.08);
    padding: 18px 20px;
    box-shadow: 0 24px 72px var(--shadow-color);
    width: 180px;
    transition: all var(--transition-medium);
}
.team-node:hover {
    z-index: 20;
    transform: scale(1.06);
}
.team-node-img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}
.team-node-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
}
.team-node-role {
    font-size: 12px;
    color: var(--steel-gray);
    margin-top: 4px;
    line-height: 1.5;
}
.team-connection {
    position: absolute;
    stroke: rgba(16,185,129,0.12);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 8 4;
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16,185,129,0.08);
    box-shadow: 0 24px 72px var(--shadow-color);
    overflow: hidden;
}
.contact-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.contact-header:hover {
    border-color: rgba(16,185,129,0.15);
}
.contact-icon {
    width: 44px;
    height: 44px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
    margin-right: 16px;
}
.contact-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
    flex: 1;
}
.contact-chevron {
    width: 24px;
    height: 24px;
    stroke: var(--muted-mint);
    fill: none;
    transition: transform var(--transition-medium);
}
.contact-card.active .contact-chevron {
    transform: rotate(180deg);
    stroke: var(--flow-emerald);
}
.contact-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}
.contact-card.active .contact-body {
    max-height: 400px;
}
.contact-detail {
    padding: 0 24px 24px;
}
.contact-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--flow-emerald), var(--crystal-sky));
    margin-bottom: 16px;
    border-radius: 2px;
}
.contact-text {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.75;
    margin-top: 12px;
}
footer {
    background: var(--deep-teal);
    color: white;
    padding: 80px 80px 40px;
    margin-left: 64px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}
.footer-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: white;
}
.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-mint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}
.footer-link:hover {
    color: var(--flow-emerald);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--flow-emerald);
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 24px 72px var(--shadow-strong);
    z-index: 9999;
    max-width: 400px;
    display: block;
}
.cookie-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
}
.cookie-text {
    font-size: 13px;
    color: var(--steel-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
}
.cookie-btn {
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.cookie-accept {
    background: linear-gradient(135deg, var(--flow-emerald), #059669);
    color: white;
    border: none;
}
.cookie-accept:hover {
    box-shadow: 0 4px 16px rgba(16,185,129,0.25);
}
.cookie-decline {
    background: transparent;
    border: 1px solid var(--steel-gray);
    color: var(--steel-gray);
}
.cookie-decline:hover {
    border-color: var(--flow-emerald);
    color: var(--flow-emerald);
}
.page-hero {
    background: var(--soft-mint);
    padding: 140px 80px 60px;
    position: relative;
}
.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #64748B;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.page-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep-teal);
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--flow-emerald);
    fill: none;
    stroke-width: 2;
}
.page-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.page-marker {
    width: 12px;
    height: 6px;
    background: var(--flow-emerald);
    border-radius: 3px;
}
.form-section {
    padding: 100px 80px;
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
}
.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16,185,129,0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 24px 72px var(--shadow-color);
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 8px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--steel-gray);
    background: white;
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--flow-emerald);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form-textarea {
    min-height: 150px;
    resize: vertical;
}
.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--flow-emerald), #059669);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(16,185,129,0.3);
    transition: all var(--transition-fast);
}
.form-submit:hover {
    box-shadow: 0 12px 40px rgba(16,185,129,0.4);
    transform: translateY(-2px);
}
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    text-align: center;
}
.thankyou-content {
    max-width: 600px;
}
.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--flow-emerald), var(--crystal-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}
.thankyou-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
}
.thankyou-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 16px;
}
.thankyou-text {
    font-size: 18px;
    color: var(--steel-gray);
    line-height: 1.7;
}
.thankyou-btn {
    margin-top: 32px;
}
.legal-section {
    padding: 100px 80px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 24px;
}
.legal-text {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 72px var(--shadow-color);
    margin-top: 40px;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}
.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.reveal-fade.visible {
    opacity: 1;
}
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.65s ease-out;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s ease-out;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--flow-emerald), #059669);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
@media (max-width: 1024px) {
    .vertical-nav {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    main {
        margin-left: 0;
        padding-top: 64px;
    }
    footer {
        margin-left: 0;
    }
    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    .hero-section {
        padding: 60px 24px 80px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-text {
        grid-column: span 1;
    }
    .hero-visual {
        grid-column: span 1;
        height: 400px;
    }
    .section {
        padding: 80px 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 300px;
    }
    .about-content {
        padding: 40px 24px;
    }
    .timeline-section {
        padding: 80px 24px;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 40px !important;
        margin-right: 0 !important;
    }
    .timeline-item:nth-child(even) {
        margin-top: 0;
    }
    .timeline-dot {
        left: 20px;
        transform: translate(-50%, -50%);
    }
    .masonry-grid {
        columns: 1;
    }
    .carousel-section {
        padding: 80px 24px;
    }
    .carousel-nav {
        display: none;
    }
    .testimonial-card {
        position: relative;
        transform: none;
        width: 100%;
        margin-bottom: 24px;
    }
    .carousel-container {
        height: auto;
    }
    .carousel-track {
        height: auto;
        transform: none;
    }
    .accordion-section {
        padding: 80px 24px;
    }
    .accordion-item {
        margin-bottom: 16px;
    }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-network {
        min-height: auto;
        flex-direction: column;
        gap: 24px;
    }
    .team-nodes {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .team-node {
        position: relative;
        width: 100%;
    }
    .team-center {
        position: relative;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .page-hero {
        padding: 120px 24px 40px;
    }
    .page-title {
        font-size: 32px;
    }
    .form-section {
        padding: 80px 24px;
    }
    .form-card {
        padding: 24px;
    }
    .thankyou-section {
        padding: 80px 24px;
    }
    .legal-section {
        padding: 80px 24px;
    }
}
@media (max-width: 640px) {
    .hero-title-main {
        font-size: 40px;
    }
    .hero-title-sub {
        font-size: 24px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .hero-grid {
        display: none;
    }
    .hero-visual {
        height: 300px;
        background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(14,165,233,0.05));
        border-radius: var(--radius-lg);
    }
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
}
