.page[name='home'] > .menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.98); z-index: 9999; padding: 30px;
    backdrop-filter: blur(10px);
}
.page[name='home'] > .menu > .header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 20px;
}
.page[name='home'] > .menu > .header > .logo {
    font-size: 24px; font-weight: 900; color: #38bdf8;
}
.page[name='home'] > .menu > .content > .button {
    font-size: 24px; margin-bottom: 25px; color: #e2e8f0; font-weight: 300;
    cursor: pointer; transition: 0.3s; text-decoration: none; display: block;
}
.page[name='home'] > .menu > .content > .button:hover { color: #38bdf8; padding-left: 10px; }

/* HEADER - MOBİL (Görünür) */
.page[name='home'] > .header.mobile {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px; background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky; top: 0; z-index: 100;
}
.page[name='home'] > .header.mobile > .logo {
    font-weight: 800; font-size: 20px; color: #ffffff;
}
.page[name='home'] > .header.mobile > .logo > img {
    width: 200px;
}
@media (min-width: 769px) { .page[name='home'] > .header.mobile { display: none; } }

/* HEADER - DESKTOP */
.page[name='home'] > .header.desktop {
    display: none; position: fixed; top: 0; width: 100%; height: 90px;
    background-color: rgba(15, 23, 42, 0.7); /* Transparan */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000; justify-content: center; transition: 0.3s;
}
@media (min-width: 769px) { .page[name='home'] > .header.desktop { display: flex; } }

.page[name='home'] > .header.desktop > .container {
    width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}
.page[name='home'] > .header.desktop > .container > .logo {
    display: flex; align-items: center; font-size: 26px; font-weight: 900; color: #ffffff;
}
.page[name='home'] > .header.desktop > .container > .logo {
    width: 200px;
}
.page[name='home'] > .header.desktop > .container > .items { display: flex; align-items: center; gap: 40px; }

.page[name='home'] > .header.desktop > .container > .items > .button {
    text-decoration: none; color: #cbd5e1; font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; cursor: pointer;
    font-weight: bold;
}
.page[name='home'] > .header.desktop > .container > .items > .button:hover {
    color: #38bdf8; text-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}
/* CTA Button */
.page[name='home'] > .header.desktop > .container > .items > .button.cta {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    padding: 10px 24px; border-radius: 30px; color: #fff; font-weight: 700;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}
.page[name='home'] > .header.desktop > .container > .items > .button.cta:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

/* CONTENT WRAPPER */
.page[name='home'] > .content { padding-top: 0; }

/* HERO SECTION */
.page[name='home'] > .content > .hero {
    min-height: 100vh; display: flex; align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1), transparent 50%);
    padding-top: 90px; /* Header payı */
}
.page[name='home'] > .content > .hero > .container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.page[name='home'] > .content > .hero > .container > .side:nth-child(1) { flex: 1; min-width: 350px; padding-right: 50px; }
.page[name='home'] > .content > .hero > .container > .side:nth-child(1) > .label {
    display: inline-block; padding: 8px 16px; background: rgba(56, 189, 248, 0.1);
    color: #38bdf8; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 20px; border: 1px solid rgba(56, 189, 248, 0.2);
}
.page[name='home'] > .content > .hero > .container > .side:nth-child(1) > .title {
    font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page[name='home'] > .content > .hero > .container > .side:nth-child(1) > .description {
    font-size: 18px; color: #94a3b8; margin-bottom: 40px; max-width: 550px;
}
.page[name='home'] > .content > .hero > .container > .side:nth-child(2) { flex: 1; min-width: 350px; position: relative; }
.page[name='home'] > .content > .hero > .container > .side:nth-child(2) > img {
    border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

/* SERVICES SECTION */
/* scroll-margin-top: Headerın üzerine binmesini engeller */
.page[name='home'] > .content > .services-section {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 120px 20px; scroll-margin-top: 80px;
}
.page[name='home'] > .content > .services-section > .header-box { text-align: center; margin-bottom: 60px; }
.page[name='home'] > .content > .services-section > .header-box > .main-title { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.page[name='home'] > .content > .services-section > .header-box > .sub-text { color: #64748b; }

.page[name='home'] > .content > .services-section > .features {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
}
.page[name='home'] > .content > .services-section > .features > .feature {
    background: rgba(30, 41, 59, 0.5); padding: 40px; border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease;
}
.page[name='home'] > .content > .services-section > .features > .feature:hover {
    transform: translateY(-10px); background: rgba(30, 41, 59, 0.8); border-color: rgba(56, 189, 248, 0.4);
}
.page[name='home'] > .content > .services-section > .features > .feature > .icon {
    width: 60px; height: 60px; background: #0f172a; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; border: 1px solid rgba(56, 189, 248, 0.3);
}
.page[name='home'] > .content > .services-section > .features > .feature > .icon img { width: 30px; filter: invert(1); }
.page[name='home'] > .content > .services-section > .features > .feature > .title { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #fff; }
.page[name='home'] > .content > .services-section > .features > .feature > .description { color: #94a3b8; font-size: 15px; }

/* ABOUT & MISSION SECTION */
.page[name='home'] > .content > .about-section {
    background-color: #0b1120; padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.05); scroll-margin-top: 80px;
}
.page[name='home'] > .content > .about-section > .container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: flex-start; gap: 60px;
}
@media (max-width: 900px) { .page[name='home'] > .content > .about-section > .container { flex-direction: column; } }

.page[name='home'] > .content > .about-section > .container > .text-box { flex: 1.2; }
.page[name='home'] > .content > .about-section > .container > .text-box > .small-title {
    color: #38bdf8; font-weight: 700; font-size: 14px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}
.page[name='home'] > .content > .about-section > .container > .text-box > .main-title {
    font-size: 40px; font-weight: 800; margin-bottom: 25px; line-height: 1.2;
}
.page[name='home'] > .content > .about-section > .container > .text-box > .paragraph {
    color: #94a3b8; margin-bottom: 20px; font-size: 16px;
}

/* Misyon Vizyon Kutuları */
.page[name='home'] > .content > .about-section > .container > .text-box > .mv-grid {
    display: flex; gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) { .page[name='home'] > .content > .about-section > .container > .text-box > .mv-grid { flex-direction: column; } }

.page[name='home'] > .content > .about-section > .container > .text-box > .mv-grid > .box {
    flex: 1; background: rgba(255,255,255,0.03); padding: 25px; border-radius: 15px; border-left: 3px solid #38bdf8;
}
.page[name='home'] > .content > .about-section > .container > .text-box > .mv-grid > .box > .head {
    font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.page[name='home'] > .content > .about-section > .container > .text-box > .mv-grid > .box > .desc {
    font-size: 14px; color: #64748b;
}

.page[name='home'] > .content > .about-section > .container > .image-box { flex: 0.8; position: relative; }
.page[name='home'] > .content > .about-section > .container > .image-box > img {
    border-radius: 20px; width: 100%; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* COMPANY INFO SECTION (Firma Bilgileri) */
.page[name='home'] > .content > .company-section {
    padding: 80px 0; background: #0f172a; border-top: 1px solid rgba(255,255,255,0.05); scroll-margin-top: 80px;
}
.page[name='home'] > .content > .company-section > .container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.page[name='home'] > .content > .company-section > .container > .title {
    text-align: center; font-size: 24px; font-weight: 700; margin-bottom: 40px; color: #fff;
}
.page[name='home'] > .content > .company-section > .container > .info-grid {
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
}
.page[name='home'] > .content > .company-section > .container > .info-grid > .card {
    flex: 1; min-width: 250px; background: #1e293b; padding: 30px; border-radius: 12px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.page[name='home'] > .content > .company-section > .container > .info-grid > .card > .label {
    color: #38bdf8; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px;
}
.page[name='home'] > .content > .company-section > .container > .info-grid > .card > .value {
    color: #cbd5e1; font-size: 15px; font-weight: 500;
}


/* FOOTER */
.page[name='home'] > .content > .footer {
    background-color: #020617; border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 60px 0 30px; scroll-margin-top: 80px;
}
.page[name='home'] > .content > .footer > .top {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px 50px;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px;
}

.page[name='home'] > .content > .footer > .top > .brand-col { flex: 1.5; min-width: 300px; }
.page[name='home'] > .content > .footer > .top > .brand-col > .logo { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.page[name='home'] > .content > .footer > .top > .brand-col > .text { color: #64748b; font-size: 14px; max-width: 350px; }

.page[name='home'] > .content > .footer > .top > .link-col { flex: 1; min-width: 150px; }
.page[name='home'] > .content > .footer > .top > .link-col > .title { color: #fff; font-weight: 700; margin-bottom: 20px; }
.page[name='home'] > .content > .footer > .top > .link-col > div:not(.title) { display: block; color: #94a3b8; margin-bottom: 10px; text-decoration: none; font-size: 14px; transition: 0.3s; }
.page[name='home'] > .content > .footer > .top > .link-col > div:not(.title):hover { color: #38bdf8; }

.page[name='home'] > .content > .footer > .bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px;
    text-align: center; color: #475569; font-size: 13px;
}