/* --- KOCYIGIT NEW HERO (SPLIT LAYOUT) --- */
.kocyigit-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background);
    color: var(--text);
    padding: 120px 24px 40px; /* Reduced padding */
    overflow: hidden;
}

/* Background Glow Effects */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    animation: driftGlow 8s ease-in-out infinite alternate;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-secondary);
    top: -200px;
    right: -100px;
}
.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--brand-primary);
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Slightly wider left side */
    gap: 40px; /* Reduced gap */
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* LEFT SIDE - CONTENT */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow-wrapper {
    margin-bottom: 24px;
}
.pulse-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(243, 178, 60, 0.15);
    color: var(--brand-secondary);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(243, 178, 60, 0.3);
}

.hero-typewriter {
    font-size: clamp(36px, 5vw, 64px); /* Reduced font size */
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    font-weight: 900;
    color: var(--text);
}

.hero-desc {
    font-size: 18px; /* Reduced font size */
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-primary-btn {
    background: linear-gradient(135deg, var(--brand-primary), color-mix(in srgb, var(--brand-primary) 80%, black));
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}
.hero-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

.hero-secondary-btn {
    background: color-mix(in srgb, var(--text) 5%, transparent);
    color: var(--text);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.hero-secondary-btn:hover {
    background: color-mix(in srgb, var(--text) 10%, transparent);
    transform: translateY(-3px);
}

.hero-proof {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    width: 100%;
}

.proof-pill {
    display: flex;
    flex-direction: column;
}
.proof-pill strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.proof-pill span {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RIGHT SIDE - VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* Made it square instead of 4/5 tall */
    max-height: 65vh; /* Ensure it never gets taller than 65% of viewport */
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
}

.hero-image-wrapper picture,
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--text) 10%, transparent) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 32px;
    border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: color-mix(in srgb, var(--card) 60%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: floatBadge 6s ease-in-out infinite;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}
.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    background-color: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.badge-text {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
}
/* --- 1. MANIFESTO (INTRO) --- */
.manifesto-section {
    padding: 120px 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.manifesto-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 24px 0;
    background: linear-gradient(135deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.manifesto-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
}

/* --- 2. BENTO GRID (SERVICES) --- */
.service-band {
    padding: 80px 0;
    background: var(--surface-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 24px;
}
.bento-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(243, 178, 60, 0.3);
}
.bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(243, 178, 60, 0.1);
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 32px;
}
.bento-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text);
}
.bento-content p {
    color: var(--muted);
    line-height: 1.6;
}
.bento-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.bento-card:hover .bento-glow-border {
    opacity: 1;
}

/* --- 3. MASONRY GALLERY --- */
.masonry-section {
    padding: 120px 24px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}
.masonry-sticky-sidebar {
    position: sticky;
    top: 120px;
}
.masonry-sticky-sidebar h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 20px 0;
}
.masonry-sticky-sidebar p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    grid-auto-flow: dense;
}
.masonry-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.masonry-item.large {
    grid-row: span 2;
}
.masonry-item picture, .masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.masonry-item:hover img {
    transform: scale(1.05);
}

/* --- 4. INFINITE MARQUEE --- */
.marquee-band {
    background: rgba(243, 178, 60, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(243, 178, 60, 0.25);
    border-bottom: 1px solid rgba(243, 178, 60, 0.25);
    padding: 60px 0 40px;
    overflow: hidden;
    position: relative;
}
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollMarquee 40s linear infinite;
}
.marquee-item {
    font-size: 42px;
    font-weight: 900;
    color: rgba(243, 178, 60, 0.7);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    transition: color 0.3s ease;
}
.marquee-item:hover {
    color: var(--brand-secondary);
}
.marquee-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-secondary);
}

/* --- 5. RADIAL CTA --- */
.radial-cta-section {
    padding: 60px 24px;
}
.radial-cta-content {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px 30px;
    text-align: center;
    overflow: hidden;
}
.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.radial-cta-content > *:not(.radial-glow) {
    position: relative;
    z-index: 1;
}
.radial-cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.2;
}
.radial-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 20px;
}
.pulse-button {
    animation: buttonPulse 2s infinite;
}

/* --- 6. MAGAZINE BLOG --- */
.magazine-section {
    padding: 80px 24px;
}
.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.magazine-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
}
.magazine-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.magazine-card.featured {
    grid-column: 1 / -1;
}
.magazine-card.featured .magazine-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.magazine-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 250px;
}
.magazine-card.featured .magazine-img-wrapper {
    height: 400px;
}
.magazine-img-wrapper picture, .magazine-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.magazine-content {
    padding: 32px;
}
.magazine-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.3;
}
.magazine-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.read-more {
    font-weight: 700;
    color: var(--brand-secondary);
}

/* --- 7. MINIMALIST FAQ --- */
.faq-modern-section {
    padding: 80px 24px 120px;
    max-width: 800px;
    margin: 0 auto;
}
.modern-details {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.modern-details summary {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}
.modern-details summary::-webkit-details-marker {
    display: none;
}
.modern-details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.modern-details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.details-content {
    padding-top: 16px;
    color: var(--muted);
    line-height: 1.7;
}

/* --- ANIMATIONS & RESPONSIVE --- */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
@keyframes typeIn{to{opacity:1;transform:translateY(0)}}
@keyframes driftGlow{from{transform:translate(0, 0) scale(1)}to{transform:translate(30px, -30px) scale(1.1)}}
@keyframes floatBadge{0%, 100%{transform:translateY(0)}50%{transform:translateY(-15px)}}
@keyframes pulseGlow{0%{transform:scale(1);opacity:1}100%{transform:scale(2.5);opacity:0}}

@media(max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    .kocyigit-hero {
        padding-top: 120px;
        align-items: flex-start;
    }
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    .hero-image-wrapper {
        aspect-ratio: 16/10;
        transform: none;
        max-height: 50vh;
    }
    .hero-image-wrapper:hover {
        transform: translateY(-5px);
    }
    .hero-typewriter {
        font-size: clamp(40px, 8vw, 56px);
    }
    .masonry-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .masonry-sticky-sidebar {
        position: relative;
        top: 0;
    }
}
@media(max-width:900px){
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .magazine-grid {
        grid-template-columns: 1fr;
    }
    .magazine-card.featured .magazine-link {
        grid-template-columns: 1fr;
    }
    .radial-cta-content {
        padding: 60px 24px;
    }
}
