@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --mint-vapor: #E8FFF0;
    --foam-white: #F4FFFC;
    --emerald-flow: #059669;
    --teal-pulse: #0D9488;
    --lime-strike: #84CC16;
    --deep-forest: #134E4A;
    --cool-jade: #64748B;
    --light-mint: rgba(5, 150, 105, 0.08);
    --glass-white: rgba(255, 255, 255, 0.95);
    --shadow-emerald: rgba(5, 150, 105, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--foam-white);
    color: var(--deep-forest);
    line-height: 1.75;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--deep-forest);
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

.section-padding {
    padding-top: 120px;
    padding-bottom: 100px;
}

.section-padding-sm {
    padding-top: 80px;
    padding-bottom: 60px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald-flow), var(--teal-pulse));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--emerald-flow), var(--teal-pulse));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.06em;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
    transition: all 0.25s ease-out;
    white-space: nowrap;
    min-height: 54px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.4);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--deep-forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.06em;
    border-radius: 32px;
    border: 2px solid var(--deep-forest);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    min-height: 54px;
}

.btn-secondary:hover {
    border-color: var(--emerald-flow);
    color: var(--emerald-flow);
}

.card {
    background: var(--glass-white);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 16px 56px rgba(5, 150, 105, 0.06);
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 72px rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.12);
}

.organic-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.15);
    border: 2px solid var(--emerald-flow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lime-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-strike);
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(232, 255, 240, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.12);
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    height: 56px;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

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

.logo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--deep-forest);
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--cool-jade);
    text-transform: uppercase;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(5, 150, 105, 0.2);
    transform: scale(1.05);
}

.menu-toggle svg {
    stroke: var(--emerald-flow);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(244, 255, 252, 0.95);
    z-index: 9999;
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.12);
    box-shadow: 0 24px 80px rgba(5, 150, 105, 0.12);
    padding: 48px;
    opacity: 0;
    transition: all 0.35s ease;
}

.menu-overlay.active .menu-modal {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.menu-close:hover {
    background: rgba(5, 150, 105, 0.15);
    transform: scale(1.05);
}

.menu-close svg {
    stroke: var(--cool-jade);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.menu-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.menu-intro p {
    font-size: 14px;
    color: var(--cool-jade);
    line-height: 1.7;
}

.menu-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.menu-link:hover {
    background: rgba(5, 150, 105, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
}

.menu-link svg {
    stroke: var(--emerald-flow);
    flex-shrink: 0;
}

.menu-link-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--deep-forest);
    margin-bottom: 2px;
}

.menu-link-text span {
    font-size: 11px;
    color: var(--cool-jade);
}

.menu-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.menu-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    color: var(--emerald-flow);
    text-decoration: none;
}

.hero {
    min-height: 100vh;
    background: var(--foam-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, rgba(13, 148, 136, 0.08) 40%, transparent 70%);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    filter: blur(80px);
    animation: float1 35s ease-in-out infinite alternate;
}

.blob-2 {
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, rgba(5, 150, 105, 0.06) 50%, transparent 80%);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    filter: blur(100px);
    animation: float2 40s ease-in-out infinite alternate;
}

.blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    opacity: 0.7;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(60px, 60px) scale(1.1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -40px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 0.92;
    margin-bottom: 20px;
    animation: slideIn 0.7s ease-out;
}

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

.hero-markers {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    animation: scaleIn 0.3s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-3d-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--emerald-flow), var(--teal-pulse));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate3d 25s ease-in-out infinite, breathe 8s ease-in-out infinite alternate;
    box-shadow: 0 40px 100px rgba(5, 150, 105, 0.2);
}

@keyframes rotate3d {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
    animation: floatCard 0.6s ease-out both;
}

.float-card:nth-child(2) { top: 60px; right: 0; animation-delay: 0.15s; }
.float-card:nth-child(3) { top: 50%; right: 20px; animation-delay: 0.3s; }
.float-card:nth-child(4) { bottom: 60px; right: 40px; animation-delay: 0.45s; }

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

.float-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--deep-forest);
    margin-bottom: 4px;
}

.float-card span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--emerald-flow);
}

.services-section {
    background: var(--mint-vapor);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--mint-vapor));
    z-index: 2;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--cool-jade);
}

.stacking-cards {
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 16px 56px rgba(5, 150, 105, 0.06);
    margin-bottom: -80px;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 24px 72px rgba(5, 150, 105, 0.1);
    transform: translateY(-4px);
    z-index: 10;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-flow), var(--teal-pulse), var(--emerald-flow));
    border-radius: 4px 4px 0 0;
}

.service-icon {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px;
    flex-shrink: 0;
}

.service-icon svg {
    stroke: var(--emerald-flow);
}

.service-content {
    padding: 40px 48px 40px 0;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--cool-jade);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 16px;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--emerald-flow);
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-flow);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-flow);
    transition: width 0.25s ease;
}

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

.about-section {
    background: var(--foam-white);
    padding: 120px 0;
}

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

.about-image {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

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

.about-text .organic-marker {
    margin-bottom: 24px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.lime-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald-flow);
    margin: 16px auto;
}

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.marquee-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--deep-forest);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime-strike);
    margin: 0 40px;
    flex-shrink: 0;
}

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

.process-section {
    background: var(--mint-vapor);
    padding: 120px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg, var(--emerald-flow), var(--teal-pulse), var(--emerald-flow));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 56px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 56px);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 12px 48px rgba(5, 150, 105, 0.06);
    padding: 28px 32px;
    max-width: 380px;
    position: relative;
}

.timeline-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    border: 2px solid var(--emerald-flow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--emerald-flow);
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -96px;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -96px;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--emerald-flow);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--emerald-flow);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -38px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -38px;
}

.timeline-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--cool-jade);
    line-height: 1.7;
}

.advantages-section {
    background: var(--emerald-flow);
    padding: 120px 0;
    position: relative;
}

.advantages-section .section-header h2,
.advantages-section .section-header p {
    color: white;
}

.advantages-section .section-header p {
    opacity: 0.85;
}

.overlapping-cards {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.advantage-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    padding: 32px;
    margin-left: -40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.advantage-card:first-child {
    margin-left: 0;
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.05);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.advantage-card svg {
    stroke: var(--emerald-flow);
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--cool-jade);
    line-height: 1.65;
}

.achievements-section {
    background: var(--foam-white);
    padding: 120px 0;
}

.flex-grow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    height: 420px;
}

.achievement-card {
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.1);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.achievement-card:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 72px rgba(5, 150, 105, 0.12);
    z-index: 10;
}

.achievement-card:hover ~ .achievement-card {
    transform: scale(0.95);
    opacity: 0.85;
}

.achievement-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--deep-forest);
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cool-jade);
}

.achievement-decor {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
}

.team-section {
    background: var(--mint-vapor);
    padding: 120px 0;
    overflow: hidden;
}

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

.team-marquee {
    display: flex;
    animation: teamMarquee 35s linear infinite;
}

.team-marquee:hover {
    animation-play-state: paused;
}

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

.team-card {
    width: 280px;
    margin-right: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 16px 48px rgba(5, 150, 105, 0.06);
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald-flow);
    box-shadow: 0 24px 72px rgba(5, 150, 105, 0.12);
}

.team-card-image {
    height: 180px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.team-card-content {
    padding: 20px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .position {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cool-jade);
    margin-bottom: 8px;
}

.team-card .specialty {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--emerald-flow);
}

.team-card-footer {
    display: flex;
    justify-content: center;
    padding: 12px;
}

.faq-section {
    background: var(--foam-white);
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.faq-item.active {
    grid-column: span 2;
    background: rgba(5, 150, 105, 0.04);
    border-left: 4px solid var(--emerald-flow);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 17px;
    padding-right: 16px;
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--cool-jade);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--emerald-flow);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

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

.faq-answer-content {
    padding: 0 32px 28px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--cool-jade);
    line-height: 1.75;
}

.testimonials-section {
    background: var(--mint-vapor);
    padding: 120px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.carousel {
    position: relative;
    width: 340px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 16px 56px rgba(5, 150, 105, 0.08);
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 100;
    border-color: var(--emerald-flow);
}

.testimonial-card:hover {
    box-shadow: 0 24px 72px rgba(5, 150, 105, 0.12);
}

.testimonial-image {
    height: 180px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.testimonial-content {
    padding: 28px;
}

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

.stars svg {
    fill: var(--lime-strike);
}

.testimonial-content blockquote {
    font-size: 17px;
    font-style: italic;
    color: var(--cool-jade);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
}

.testimonial-source {
    font-size: 12px;
    color: var(--cool-jade);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(5, 150, 105, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 200;
}

.carousel-arrow:hover {
    background: var(--emerald-flow);
}

.carousel-arrow:hover svg {
    stroke: white;
}

.carousel-arrow svg {
    stroke: var(--emerald-flow);
}

.carousel-arrow.prev {
    left: 80px;
}

.carousel-arrow.next {
    right: 80px;
}

.contact-section {
    background: var(--foam-white);
    padding: 120px 0;
}

.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 16px 56px rgba(5, 150, 105, 0.06);
    overflow: hidden;
}

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

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(19, 78, 74, 0.1);
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: var(--deep-forest);
    transition: border-color 0.25s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--emerald-flow);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--emerald-flow);
}

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

.form-submit {
    margin-top: 16px;
}

.contact-info {
    background: var(--mint-vapor);
    padding: 80px 48px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(5, 150, 105, 0.06), rgba(13, 148, 136, 0.04), transparent);
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.contact-block:first-child {
    padding-top: 0;
}

.contact-block svg {
    stroke: var(--emerald-flow);
    flex-shrink: 0;
}

.contact-block h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-block p {
    font-size: 16px;
    color: var(--cool-jade);
}

.contact-block a {
    color: var(--emerald-flow);
    text-decoration: none;
}

.contact-map {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
    filter: grayscale(100%);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

footer {
    background: var(--deep-forest);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo-title {
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--lime-strike);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--lime-strike);
}

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

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.4s ease;
}

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

.cookie-banner h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-banner p {
    font-size: 13px;
    color: var(--cool-jade);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

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

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

.cookie-category span {
    font-size: 12px;
    color: var(--cool-jade);
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--emerald-flow), var(--teal-pulse));
    color: white;
}

.cookie-btn.decline {
    background: rgba(5, 150, 105, 0.1);
    color: var(--deep-forest);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.cookie-links a {
    font-size: 12px;
    color: var(--emerald-flow);
    text-decoration: none;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}

.reveal.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(-28px);
    transition: all 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.reveal-organic.visible {
    opacity: 1;
    transform: scale(1);
}

.page-hero {
    min-height: 280px;
    background: var(--mint-vapor);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--cool-jade);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--cool-jade);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--emerald-flow);
}

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero h1 {
    font-size: 48px;
    max-width: 560px;
}

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

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 150, 105, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--foam-white);
    position: relative;
    overflow: hidden;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.thank-you-content .organic-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.thank-you-content .checkmark {
    width: 40px;
    height: 40px;
    stroke: var(--emerald-flow);
}

.thank-you-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--cool-jade);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--cool-jade);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 15px;
    color: var(--cool-jade);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        height: 350px;
    }
    
    .hero-left h1 {
        font-size: 48px;
        max-width: 100%;
    }
    
    .hero-left .subtitle {
        max-width: 100%;
    }
    
    .hero-markers {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .overlapping-cards {
        flex-wrap: wrap;
        padding: 0 24px;
    }
    
    .advantage-card {
        margin-left: 0;
        width: calc(50% - 12px);
    }
    
    .advantage-card:nth-child(3) {
        margin-top: 24px;
    }
    
    .flex-grow-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .achievement-card {
        min-height: 200px;
    }
    
    .timeline {
        padding: 0 24px;
    }
    
    .timeline::before {
        left: 24px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 72px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
        left: 0;
        right: auto;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 17px;
        right: auto;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .split-screen {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-top: 1px solid rgba(5, 150, 105, 0.08);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
    
    .faq-item.active {
        grid-column: span 1;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 40px !important;
    }
    
    h2 {
        font-size: 36px !important;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 80px 16px 60px;
    }
    
    .hero-3d-object {
        width: 250px;
        height: 250px;
    }
    
    .hero-right {
        height: 280px;
    }
    
    .float-card {
        display: none;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        width: 100%;
        margin: 24px 24px 0;
        justify-content: flex-start;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .advantage-card {
        width: 100%;
        margin-left: 0;
    }
    
    .flex-grow-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 56px;
    }
    
    .team-card {
        width: 260px;
    }
    
    .contact-form {
        padding: 40px 24px;
    }
    
    .contact-info {
        padding: 40px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .hero-markers {
        gap: 4px;
    }
    
    .stacking-cards {
        padding: 0 16px;
    }
    
    .menu-modal {
        width: calc(100% - 32px);
        max-width: none;
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .menu-grid {
        gap: 24px;
    }
    
    .menu-intro h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .menu-intro p {
        font-size: 13px;
    }
    
    .menu-links {
        gap: 12px;
    }
    
    .menu-link {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .menu-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--emerald-flow), var(--teal-pulse));
    border-radius: 4px;
}

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

* {
    -webkit-tap-highlight-color: transparent;
}

input, textarea, button {
    font-family: inherit;
}

a {
    color: inherit;
}

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

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
