:root { 
    --black: #050505; 
    --white: #ffffff; 
    --silver: #444; 
    --gold: #c5a059; 
    --glass: rgba(255,255,255,0.02); 
}

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

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

body { 
    background-color: var(--black); 
    color: var(--white); 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased; 
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
}

#cursor { 
    position: fixed; 
    width: 10px; 
    height: 10px; 
    background: var(--white); 
    border-radius: 50%; 
    pointer-events: none; 
    z-index: 9999; 
    mix-blend-mode: difference; 
    transform: translate(-50%, -50%);
}

#webgl-canvas { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    z-index: 0; 
    pointer-events: none; 
    max-width: 100%;
    overflow: hidden;
}

section { 
    position: relative; 
    z-index: 10; 
    padding: 120px 6%; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    pointer-events: none; 
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.interactive-el { 
    pointer-events: auto; 
}

/* Hero */
.hero h2 {
    font-family: 'Syne', sans-serif; 
    font-size: 0.7rem; 
    letter-spacing: 15px; 
    margin-bottom: 30px; 
    opacity: 0.4;
}

.hero {
    overflow: hidden;
}

.hero h1 { 
    font-family: 'Syne', sans-serif; 
    font-size: clamp(2rem, 8vw, 8.5rem); 
    line-height: 0.85; 
    text-transform: uppercase; 
    font-weight: 800; 
    letter-spacing: -3px; 
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    white-space: normal;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero h1 br {
    display: block;
}

.hero h1 span {
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero h1 {
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }
}

.hero p { 
    margin-top: 2.5rem; 
    font-size: 1.2rem; 
    max-width: 750px; 
    line-height: 1.6; 
    opacity: 0.8; 
    font-weight: 300; 
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reveal-el { 
    opacity: 0; 
    transform: translateY(40px); 
}

/* Hakkımızda */
.about-section { 
    max-width: 1000px; 
    border-left: 2px solid var(--white); 
    padding-left: 50px; 
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.about-section h2 { 
    font-family: 'Syne'; 
    font-size: 3.5rem; 
    margin-bottom: 30px; 
}

.about-section p { 
    font-size: 1.3rem; 
    line-height: 1.8; 
    opacity: 0.7; 
    margin-bottom: 25px; 
}

/* Tech Stack */
.stack-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 20px; 
    width: 100%; 
    margin-top: 40px; 
}

.stack-item { 
    background: var(--glass); 
    border: 1px solid rgba(255,255,255,0.08); 
    padding: 40px; 
    backdrop-filter: blur(10px); 
}

.stack-item h4 { 
    font-family: 'Syne'; 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
}

.stack-item p { 
    font-size: 0.85rem; 
    opacity: 0.5; 
}

/* Pricing Grid: 1 Row, 4 Columns */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    width: 100%; 
    max-width: 100%;
    margin-top: 60px; 
    box-sizing: border-box;
}

.price-card { 
    background: var(--glass); 
    border: 1px solid rgba(255,255,255,0.08); 
    padding: 50px 25px; 
    backdrop-filter: blur(20px); 
    transition: 0.5s; 
    display: flex; 
    flex-direction: column; 
}

.price-card:hover { 
    border-color: var(--white); 
    transform: translateY(-10px); 
}

.price-card.special { 
    border: 1px solid var(--gold); 
}

.price-card.special .special-meta {
    color: white;
    margin-bottom: 10px;
}

.price-card.special .special-title {
    color: var(--gold);
    height: 3rem;
    margin-bottom: 20px;
}

.price-card.special .special-description {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0;
    margin-bottom: 30px;
    min-height: 100px;
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
    /* Amount yüksekliğini telafi et (2.2rem + KDV kısmı ≈ 3rem) */
    padding-top: 3rem;
}

.price-card.special .special-btn {
    opacity: 1;
    transform: none;
    display: block;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.price-card h3 { 
    font-family: 'Syne'; 
    font-size: 1rem; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    height: 3rem; 
}

.amount { 
    font-family: 'Syne'; 
    font-size: 2.2rem; 
    font-weight: 800; 
    display: block; 
}

.package-meta { 
    font-size: 0.6rem; 
    color: var(--gold); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
    font-weight: 700; 
}

.features { 
    list-style: none; 
    margin: 30px 0; 
    font-size: 0.8rem; 
    opacity: 0.5; 
    flex-grow: 1; 
    min-height: 100px;
}

.features li { 
    margin-bottom: 12px; 
    border-bottom: 1px solid #111; 
    padding-bottom: 8px; 
}

.maintenance { 
    font-size: 0.75rem; 
    color: var(--silver); 
    padding-top: 20px; 
    border-top: 1px solid #222; 
    margin-top: 15px; 
}

.btn-incele { 
    background: var(--white); 
    color: var(--black); 
    padding: 18px; 
    text-align: center; 
    text-decoration: none; 
    font-family: 'Syne'; 
    font-weight: 800; 
    font-size: 0.8rem; 
    transition: 0.3s; 
    margin-top: 20px; 
}

.btn-incele:hover { 
    background: #25D366; 
    color: white; 
}

/* WhatsApp Floating Button */
.wa-floating-btn { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 9999; 
    width: 65px; 
    height: 65px; 
    background: rgba(37, 211, 102, 0.15); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(37, 211, 102, 0.5); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    pointer-events: auto !important; 
}

.wa-floating-btn:hover { 
    transform: scale(1.1) translateY(-5px); 
    background: rgba(37, 211, 102, 0.9); 
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); 
}

.wa-floating-btn svg { 
    width: 35px; 
    height: 35px; 
    fill: #25D366; 
    transition: 0.3s; 
}

.wa-floating-btn:hover svg { 
    fill: white; 
}

footer { 
    padding: 100px 6% 60px; 
    border-top: 1px solid #111; 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 60px; 
    font-size: 0.85rem; 
    background: #000; 
    position: relative; 
    z-index: 10; 
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

footer h4 {
    font-family: 'Syne'; 
    margin-bottom: 30px; 
    letter-spacing: 5px; 
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: center;
}

.footer-separator {
    margin: 0 0.5em;
}

@media (max-width: 1250px) { 
    .pricing-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}

@media (max-width: 768px) { 
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-grid { 
        grid-template-columns: 1fr; 
    } 
    
    footer { 
        grid-template-columns: 1fr; 
        padding: 60px 4% 40px !important;
        gap: 40px;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
    
    footer > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    footer > div:last-child {
        text-align: left !important;
        margin-top: 20px;
        align-self: flex-start !important;
    }
    
    .footer-separator {
        display: none;
    }
    
    footer p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3em;
    }
    
footer p a {
    display: block;
    width: 100%;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.street-address {
    display: block;
    white-space: nowrap;
}

.address-location {
    display: block;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .address-info {
        flex-direction: row;
        gap: 0.5em;
    }
    
    .street-address::after {
        content: ", ";
    }
}
    
    .hero {
        overflow: hidden;
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .hero h1 { 
        font-size: clamp(2.2rem, 9vw, 4rem); 
        max-width: 100%;
        width: 100%;
        word-wrap: normal;
        overflow-wrap: normal;
        word-break: keep-all;
        white-space: normal;
        box-sizing: border-box;
        overflow: hidden;
        letter-spacing: -2px;
        padding: 0;
        margin: 0;
    }
    
    .hero h1 br {
        display: block;
    }
    
    .hero h1 span {
        max-width: 100%;
        display: inline-block;
        box-sizing: border-box;
    } 
    
    section {
        padding: 80px 4%;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .about-section {
        padding-left: 20px;
        border-left-width: 1px;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .about-section p {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .stack-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .stack-item {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .price-card {
        padding: 40px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-grid {
        width: 100%;
        max-width: 100%;
        gap: 20px;
        box-sizing: border-box;
    }
    
    .hero p {
        max-width: 100%;
        word-wrap: break-word;
    }
}

