/* Font Face Definitions */
@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter/Inter-VariableFont.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter/Inter-Italic-Variable-Font.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Geist Mono';
    src: url('./fonts/geist-mono/GeistMonoVariable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Caveat';
    src: url('./fonts/handwritten/Caveat/Caveat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gochi Hand';
    src: url('./fonts/handwritten/Gochi_Hand/GochiHand-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/*

@font-face {
    font-family: 'Grape Nuts';
    src: url('./fonts/handwritten/Grape_Nuts/GrapeNuts-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Schoolbell';
    src: url('./fonts/handwritten/Schoolbell/Schoolbell-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shadows Into Light';
    src: url('./fonts/handwritten/Shadows_Into_Light/ShadowsIntoLight-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Swanky and Moo Moo';
    src: url('./fonts/handwritten/Swanky_and_Moo_Moo/SwankyandMooMoo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*/

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

:root {
    --beige: #f5f4f2;
    --beige-dark: #efeee9;
    --beige-light: #faf9f7;
    --green: rgb(91, 136, 63);
    --green-dark: #4a5a40;
    --green-light: #7c9885;
    --gray-900: #0f0f0f;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #4a4a4a;
    --gray-500: #6a6a6a;
    --gray-400: #9a9a9a;
    --gray-300: #c5c5c5;
    --gray-200: #e0e0e0;
    --gray-100: #f0f0f0;
    
    --line-width: 1px;
    --section-padding: 80px;
    
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    background: var(--beige);
    color: var(--gray-600);
    line-height: 1.4;
    overflow-x: hidden;
    height: 100svh;
    scroll-behavior: smooth;
}

/* Selection Color */
body ::selection {
    background: var(--green);
    color: white;
}

body ::-moz-selection {
    background: var(--green);
    color: white;
}

.wrapper {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* für iOS smooth scroll */
    scroll-behavior: smooth;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: clamp(1rem, 4vw, 2rem);
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 1000;
    width: 100%;
    max-width: 600px;
    background: rgba(245, 244, 242, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: slideInFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.logo {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-700);;
    text-decoration: none;
    letter-spacing: 0px /*-0.02em;*/
}

.header-status {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--green);
    animation: pulse 2s infinite;
}

.header-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.availability-indicator {
    width: 8px;
    height: 8px;
    background: var(--green);
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s ease-out 0s forwards;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--gray-300) var(--line-width), transparent var(--line-width)),
        linear-gradient(90deg, var(--gray-300) var(--line-width), transparent var(--line-width));
    background-size: 32px 32px;
    opacity: 0.27;
    pointer-events: none;
}

/* Glowing Spots */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-spot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(116 184 73) 0%, transparent 70%);
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: glowSpotFadeIn 1.5s ease-out 0s forwards;
}

.glow-spot-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 12%;
    animation: float-1 12s ease-in-out infinite;
}

.glow-spot-2 {
    max-width: 360px;
    max-height: 360px;
    width: 55vw;
    height: 55vw;
    bottom: 8%;
    right: 11%;
    animation: float-2 15s ease-in-out infinite;
}

.glow-spot-3 {
    max-width: 300px;
    max-height: 300px;
    width: 50vw;
    height: 50vw;
    bottom: 25%;
    left: 15%;
    animation: float-3 18s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroContentFadeIn 1s ease-out 0s forwards;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroElementFadeIn 0.8s ease-out 0.2s forwards;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroElementFadeIn 0.8s ease-out 0.4s forwards;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    padding: 0 1rem;
    transform: translateY(25px);
    animation: heroElementFadeIn 0.8s ease-out 0.6s forwards;
}

.hero-btn {
    background: var(--green);
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: heroButtonFadeIn 0.8s ease-out 0.8s forwards;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 107, 79, 0.3);
}

.hero-btn:hover::before {
    left: 100%;
}

.scroll-indicator-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroElementFadeIn 0.8s ease-out 1.4s forwards;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: var(--line-width);
    background: var(--green);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--green);
}

/* Section Base */
.section {
    padding: var(--section-padding) 0;
    border-top: var(--line-width) solid var(--gray-200);
}

.section-alt {
    background: var(--beige-dark);
}

.section-header {
    margin-bottom: 60px;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Process Grid */
.process-content {
    display: grid;
    grid-template-columns: 300px var(--line-width) 1fr;
    gap: 60px;
    align-items: start;
}

.process-divider {
    background: var(--gray-200);
    height: 400px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--line-width);
    background: var(--gray-200);
}

.process-step {
    background: white;
    padding: 40px 30px;
    transition: all 0.2s ease;
    position: relative;
}

.process-step:hover {
    background: var(--green);
    color: white;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.process-step:hover .step-number {
    color: white;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.process-step:hover .step-desc {
    color: rgba(255,255,255,0.9);
}

/* Services Grid */
.services-content {
    display: grid;
    grid-template-columns: 300px var(--line-width) 1fr;
    gap: 60px;
    align-items: start;
}

.services-divider {
    background: var(--gray-200);
    height: 500px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr var(--line-width) 1fr;
    gap: 0;
}

.services-line-v {
    background: var(--gray-200);
}

.service-item {
    background: var(--beige-light);
    padding: 40px 30px;
    border-bottom: var(--line-width) solid var(--gray-200);
    transition: all 0.3s ease-in-out;
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto auto;
    height: 600px;
}

.service-item:hover {
    background: white;
}

.service-content {
    display: grid;
    grid-template-rows: auto auto 1.2fr 1fr;
    gap: 16px;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.service-topics {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 15px;
}

.service-topic {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.service-line-h {
    display: none;
    width: 100%;
    height: var(--line-width);
    background: var(--gray-200);
    margin: 20px 0 15px 0;
}

.service-status {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    align-self: start;
}

/* Stats Grid */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--line-width);
    background: var(--gray-200);
}

.stat-item {
    background: white;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: var(--green);
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
}

.stat-item:hover .stat-label {
    color: rgba(255,255,255,0.8);
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--green);
}

.stat-item:hover .stat-unit {
    color: white;
}

/* Cases Grid */
.cases-content {
    display: grid;
    grid-template-columns: 300px var(--line-width) 1fr;
    gap: 60px;
    align-items: start;
}

.cases-divider {
    background: var(--gray-200);
    height: 400px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--line-width);
    background: var(--gray-200);
}

.case-item {
    background: var(--beige-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.case-item:hover {
    background: var(--green);
    color: white;
    box-shadow: 0 8px 25px rgba(90, 107, 79, 0.2);
}

.case-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.case-item:hover .case-status {
    color: white;
}

.case-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.case-problem {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.4;
    flex: 1;
    margin-bottom: 30px;
}

.case-item:hover .case-problem {
    color: rgba(255,255,255,0.8);
}

.case-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.case-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.case-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 3px 6px;
    background: var(--gray-100);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-item:hover .case-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.case-link-hint {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.case-item:hover .case-link-hint {
    color: rgba(255,255,255,0.9);
}

/* Cases Grid Swiper Alternative */
.cases-grid-swiper {
    position: relative;
    overflow: hidden;
    padding: var(--line-width);
}

.cases-swiper {
    width: 100%;
    height: auto;
    overflow: visible;
}

.cases-swiper .swiper-wrapper {
    align-items: stretch;
}

.cases-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.cases-swiper .case-item {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Custom Square Pagination */
.cases-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    bottom: auto;
}

.cases-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--gray-300);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cases-swiper .swiper-pagination-bullet-active {
    background: var(--green);
    transform: scale(1.2);
}

.cases-swiper .swiper-pagination-bullet:hover {
    background: var(--green-light);
    transform: scale(1.1);
}

/* Navigation Arrows - Clean design without labels */
.cases-swiper .swiper-button-next,
.cases-swiper .swiper-button-prev {
    color: var(--green);
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    z-index: 10;
    display: none;
}

.cases-swiper .swiper-button-next {
    right: -80px;
}

.cases-swiper .swiper-button-prev {
    left: -80px;
}

.cases-swiper .swiper-button-next:hover,
.cases-swiper .swiper-button-prev:hover {
    color: var(--green-dark);
    transform: scale(1.2);
}

.cases-swiper .swiper-button-next::after,
.cases-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

.cases-swiper .swiper-button-next::after {
    content: '→';
}

.cases-swiper .swiper-button-prev::after {
    content: '←';
}

/* Responsive Swiper */
@media (max-width: 1024px) {
    .cases-swiper .swiper-button-next,
    .cases-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    .cases-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Testimonials Grid */
.testimonials-content {
    display: grid;
    grid-template-columns: 300px var(--line-width) 1fr;
    gap: 60px;
    align-items: start;
}

.testimonials-divider {
    background: var(--gray-200);
    height: 500px;
}

/* Testimonials Grid Swiper */
.testimonials-grid-swiper {
    position: relative;
    overflow: hidden;
    padding: var(--line-width);
}

.testimonials-swiper {
    width: 100%;
    height: auto;
    overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-swiper .testimonial-item {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials-swiper .testimonial-item:hover {
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--gray-700);
    flex: 1;
}

.testimonial-author {
    display: grid;
    grid-template-columns: auto var(--line-width) 1fr;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-line {
    background: var(--gray-200);
    height: 50px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

/* Custom Pagination for Testimonials */
.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    bottom: auto;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--gray-300);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--green);
    transform: scale(1.2);
}

.testimonials-swiper .swiper-pagination-bullet:hover {
    background: var(--green-light);
    transform: scale(1.1);
}

/* Navigation Arrows for Testimonials */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--green);
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    z-index: 10;
    display: none;
}

.testimonials-swiper .swiper-button-next {
    right: -80px;
}

.testimonials-swiper .swiper-button-prev {
    left: -80px;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    color: var(--green-dark);
    transform: scale(1.2);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

.testimonials-swiper .swiper-button-next::after {
    content: '→';
}

.testimonials-swiper .swiper-button-prev::after {
    content: '←';
}

/* CTA Section */
.cta {
    background: var(--green);
    color: white;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr var(--line-width) 1fr;
    gap: 60px;
    align-items: center;
}

.cta-divider {
    background: rgba(255,255,255,0.2);
    height: 120px;
}

.cta-main {
    padding: 0 1vw;
}

.cta-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-btn-white {
    background: white;
    color: var(--green);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn-white:hover {
    background: var(--beige);
    transform: translateY(-2px);
}

.cta-side {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.cta-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cta-data-label {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.cta-data-value {
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--beige);
    color: var(--gray-600);
    padding: 1.5rem 0;
    border-top: var(--line-width) solid var(--gray-200);
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.footer-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

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

.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Navigation */
/* Removed floating navigation */

/* Responsive */
@media (max-width: 1024px) {
    .process-content,
    .services-content,
    .cases-content,
    .testimonials-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-divider,
    .services-divider,
    .cases-divider,
    .testimonials-divider,
    .cta-divider {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials Responsive */
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }

    .service-content {
        grid-template-rows: auto auto auto auto;
        row-gap: 12px;
    }
    .service-item {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    
    /* Cases Mobile */
    .cases-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cases-divider {
        display: none;
    }
    
    .cases-grid-swiper {
        padding: 0;
    }
    
    .cases-swiper .case-item {
        padding: 30px 20px;
        min-height: 200px;
    }
    
    .case-title {
        font-size: 1.1rem;
    }
    
    .case-description {
        font-size: 0.9rem;
    }
    
    .case-tech {
        font-size: 0.7rem;
    }
    
    .cases-swiper .swiper-button-next,
    .cases-swiper .swiper-button-prev {
        display: none;
    }
    
    .cases-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    /* Testimonials Mobile */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-divider {
        display: none;
    }
    
    .testimonials-grid-swiper {
        padding: 0;
    }
    
    .testimonials-swiper .testimonial-item {
        padding: 30px 20px;
        min-height: 220px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-line {
        height: 40px;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    .testimonial-role {
        font-size: 0.7rem;
    }
    
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }
    
    .testimonials-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    .section-number {
        text-align: center;
    }
    .section-title {
        text-align: center;
    }
    .section-subtitle {
        text-align: center;
    }
}

@media (max-width: 568px) {
    .footer-content {
        flex-direction: column;
        row-gap: 1rem;
    }
    .logo {
        font-size: 18px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.7;
    }
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -40px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-25px, 15px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-40px, 25px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        transform: translate(20px, -30px) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    20% {
        transform: translate(25px, 35px) scale(0.9);
        opacity: 0.4;
    }
    40% {
        transform: translate(-30px, -25px) scale(1.15);
        opacity: 0.9;
    }
    60% {
        transform: translate(40px, 10px) scale(0.95);
        opacity: 0.6;
    }
    80% {
        transform: translate(-20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Fade-In Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/* Header Slide-In Animation */
@keyframes slideInFromTop {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Legal Pages - Simple Text Design */
.legal-page {
    padding: 120px 0 80px 0;
    background: var(--beige);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.legal-section:first-child h2 {
    margin-top: 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--gray-900);
    font-weight: 500;
}

/* Responsive Design für Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 100px 0 60px 0;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.125rem;
    }
}

/* Scroll-triggered animations for tile elements */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease-out, transform 0.5s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid elements */
.scroll-fade-in:nth-child(1) { transition-delay: 0ms; }
.scroll-fade-in:nth-child(2) { transition-delay: 100ms; }
.scroll-fade-in:nth-child(3) { transition-delay: 200ms; }
.scroll-fade-in:nth-child(4) { transition-delay: 300ms; }
.scroll-fade-in:nth-child(5) { transition-delay: 400ms; }
.scroll-fade-in:nth-child(6) { transition-delay: 500ms; }
.scroll-fade-in:nth-child(7) { transition-delay: 600ms; }
.scroll-fade-in:nth-child(8) { transition-delay: 700ms; }

/* Touch Trail Effect Styles */
.touch-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    z-index: 9999;
    overflow: hidden;
    touch-action: none;
}

.touch-trail-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    background: var(--green);
    box-shadow: 0 0 6px rgba(105, 138, 84, 0.3);
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Touch Trail Varianten für verschiedene Bereiche */
.hero .touch-trail-dot {
    background: radial-gradient(circle, var(--green) 0%, rgba(105, 138, 84, 0.6) 70%, transparent 100%);
    box-shadow: 0 0 8px rgba(105, 138, 84, 0.4);
}

.section-alt .touch-trail-dot {
    background: radial-gradient(circle, var(--green-light) 0%, rgba(124, 152, 133, 0.6) 70%, transparent 100%);
    box-shadow: 0 0 6px rgba(124, 152, 133, 0.3);
}

.cta .touch-trail-dot {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 70%, transparent 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Touch Trail Animation Enhancements */
@keyframes trailPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.touch-trail-dot.pulse {
    animation: trailPulse 1s ease-in-out infinite;
}

/* Responsive Touch Trail */
@media (max-width: 768px) {
    .touch-trail-dot {
        width: 6px !important;
        height: 6px !important;
        filter: blur(0.5px) !important;
    }
}

@media (max-width: 480px) {
    .touch-trail-dot {
        width: 4px !important;
        height: 4px !important;
        filter: blur(0.3px) !important;
    }
}

/* Performance Optimierungen */
@media (prefers-reduced-motion: reduce) {
    .touch-trail-container {
        display: none !important;
    }
}

/* Touch Trail für verschiedene Hover-States */
.hero-btn:hover ~ .touch-trail-container .touch-trail-dot,
.cta-btn-white:hover ~ .touch-trail-container .touch-trail-dot {
    background: radial-gradient(circle, var(--green-light) 0%, rgba(124, 152, 133, 0.8) 70%, transparent 100%);
    box-shadow: 0 0 12px rgba(124, 152, 133, 0.5);
}