/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.logo {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 120px;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
}

.hero-title {
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 50px;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    margin-bottom: 70px;
    max-width: 550px;
}

.cta-circle {
    width: 140px;
    height: 140px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.cta-circle:hover::before {
    width: 100%;
    height: 100%;
}

.cta-circle:hover {
    transform: scale(1.08) rotate(10deg);
}

.cta-circle span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-text {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 4px;
    line-height: 2.5;
    text-transform: uppercase;
}

.floating-text span {
    display: block;
    margin-bottom: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.floating-text span:hover {
    opacity: 1;
}

/* Section Cards */
.section-cards {
    padding: 160px 0;
    background: #fff;
}

.section-title {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -3px;
    color: #000;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #000;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 40px;
}

.card {
    text-align: center;
    padding: 60px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover .card-icon {
    background: #000;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    border-color: #000;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    letter-spacing: -0.5px;
}

.card-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 320px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    padding: 160px 0;
    background: #fafafa;
}

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

.team-member {
    text-align: center;
    padding: 50px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-radius: 4px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.member-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 35px;
    border-radius: 50%;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover .member-avatar {
    background: #000;
    color: #fff;
    transform: scale(1.05);
    border-color: #000;
}

.avatar-placeholder {
    font-size: 54px;
    font-weight: 800;
    color: #000;
    transition: color 0.4s ease;
}

.team-member:hover .avatar-placeholder {
    color: #fff;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.5px;
}

.member-role {
    font-size: 11px;
    color: #999;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.member-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 160px 0;
    background: #fff;
}

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

.service-item {
    text-align: center;
    padding: 50px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover .service-icon {
    background: #000;
    color: #fff;
    transform: scale(1.1);
    border-color: #000;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Magazin Section */
.magazin-section {
    padding: 160px 0;
    background: #fafafa;
}

.magazin-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 120px;
    align-items: center;
}

.magazin-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #000;
    letter-spacing: -2px;
    line-height: 1.1;
}

.magazin-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.magazin-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    color: #555;
}

.feature-icon {
    width: 26px;
    height: 26px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.magazin-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazin-placeholder {
    width: 240px;
    height: 320px;
    background: #fff;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.05);
}

.magazin-placeholder:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0 rgba(0, 0, 0, 0.08);
}

/* Values Section */
.values {
    padding: 160px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 120px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.value-item:hover {
    background: #fafafa;
    transform: translateX(10px);
}

.value-number {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    min-width: 100px;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.value-item:hover .value-number {
    opacity: 0.25;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    letter-spacing: -0.5px;
}

.value-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
    margin-top: 80px;
}

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

.footer-text {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-info p:first-child {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
}

.contact-info p:last-child {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .header .container {
        padding: 30px 40px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .header .container {
        padding: 25px 30px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
    }
    
    .floating-text {
        display: none;
    }
    
    .section-cards,
    .team-section,
    .services-section,
    .magazin-section,
    .values {
        padding: 100px 0;
    }
    
    .section-title {
        margin-bottom: 60px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .magazin-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .value-item:hover {
        transform: translateX(0) translateY(-5px);
    }
    
    .value-number {
        min-width: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        padding: 20px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .section-cards,
    .team-section,
    .services-section,
    .magazin-section,
    .values {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .cta-circle {
        width: 120px;
        height: 120px;
    }
    
    .cta-circle span {
        font-size: 12px;
    }
    
    .card,
    .team-member,
    .service-item {
        padding: 40px 20px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.value-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.1s ease;
}
