/* ROOTIX.NET - PREMIUM SOFTWARE STUDIO STYLE 
    Design Inspired by 10clouds & Linear
*/

:root {
    --primary: #4F46E5;        /* Elektrik Moru / Indigo */
    --secondary: #06B6D4;      /* Turkuaz / Cyan */
    --dark: #0A0B10;           /* Derin Siyah */
    --text-main: #111827;      /* Ana Metin Rengi */
    --text-muted: #4B5563;     /* Yardımcı Metin Rengi */
    --light-bg: #F9FAFB;       /* Açık Gri Arkaplan */
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --bg-subtle: #F8FAFF; /* Çok uçuk indigo gri */
    --bg-gradient: radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.03) 0px, transparent 50%), 
                   radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.03) 0px, transparent 50%);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

.container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 40px; 
}

/* --- Navigasyon --- */
.navbar { 
    height: 90px; 
    display: flex; 
    align-items: center; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent; 
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    height: 70px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo { 
    font-size: 26px; 
    font-weight: 800; 
    text-decoration: none; 
    color: #ffffff;
    letter-spacing: -1px; 
    transition: var(--transition);
}

.logo span { 
    color: var(--primary); 
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu > a,
.menu a,
.dropdown-trigger {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    margin-left: 0;
}

.navbar.scrolled .menu > a,
.navbar.scrolled .menu a,
.navbar.scrolled .dropdown-trigger {
    color: var(--text-main);
}

.menu a:hover,
.dropdown-trigger:hover {
    color: var(--primary);
}

.nav-btn { 
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    padding: 12px 28px; 
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.22);
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Scroll olunca buton siyaha dönsün */
.navbar.scrolled .nav-btn {
    background: var(--dark);
    color: var(--white) !important;
    border-color: transparent;
}

.navbar.scrolled .nav-btn:hover {
    background: var(--primary);
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* --- Hero Section & Video Background --- */
.hero { 
    position: relative;
    height: 100vh; 
    display: flex; 
    align-items: center; 
    margin-top: 0; /* Header'ın altına değil, en tepeye yasla */
    padding-top: 0; 
}

.hero-section {
    min-height: 100vh !important; /* Ekranın tamamını kaplamaya zorla */
    display: flex;
    position: relative;
    align-items: center;
    z-index: 1; /* Hero'nun temel katmanı */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0 !important;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Videonun ekranı tam kaplamasını sağlar */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Videoyu beyaz zemine yumuşakça bağlayan 10clouds tarzı degrade */
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, var(--white) 90%);
    z-index: -1 !important;
}

.hero-content {
    position: relative;
    z-index: 2 !important; /* Yazılar en üstte */
}

.tagline { 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 13px; 
    letter-spacing: 3px; 
    display: block; 
    margin-bottom: 24px; 
}

h1 { 
    font-size: clamp(52px, 8vw, 96px); /* Daha da büyüttük */
    font-weight: 900; /* Ekstra kalınlaştırdık */
    line-height: 0.9; /* Satır arasını daralttık, daha kompakt durur */
    letter-spacing: -5px; /* Harfleri iyice yaklaştırdık (Premium Ajans stili) */
    margin-bottom: 35px; 
    color: var(--dark);
}

.accent { 
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { 
    font-size: 22px; 
    color: var(--text-muted); 
    max-width: 700px; /* Genişliği biraz artırdık ki yeni metin sığsın */
    margin-bottom: 50px; 
    font-weight: 500;
}

.btn-main { 
    background: var(--primary); 
    color: white; 
    text-decoration: none; 
    padding: 18px 38px; 
    border-radius: 12px; 
    font-weight: 700; 
    display: inline-block; 
    box-shadow: 0 20px 30px rgba(79, 70, 229, 0.15); 
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px rgba(79, 70, 229, 0.25);
}

.btn-link { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 700; 
    margin-left: 30px; 
    font-size: 16px;
    transition: var(--transition);
}

.btn-link:hover { color: var(--primary); }

/* --- Services Section --- */
.services-v3 {
    padding: 140px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 80px;
    max-width: 600px;
}

.num-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 15px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Net 3 sütun */
    gap: 30px;
}

.service-card {
    background: var(--bg-subtle); /* Belirlediğimiz hafif ton */
    padding: 60px 45px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.card-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    opacity: 0.6;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 30px;
}

.card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card-tags span {
    background: rgba(0,0,0,0.03);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

/* Featured Card (Startup Destek için Özel) */
.service-card.featured {
    background: var(--dark);
    color: var(--white);
}

.service-card.wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
}

.service-card.featured .card-tags span {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.service-card.featured p {
    color: rgba(255,255,255,0.7);
}

.glow-point {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 60px;
}

.num { 
    font-size: 16px; 
    color: var(--primary); 
    font-weight: 800; 
    display: block; 
    margin-bottom: 15px; 
}

.service-text h2 { 
    font-size: 52px; 
    font-weight: 800; 
    letter-spacing: -2px; 
    margin-bottom: 25px; 
    line-height: 1.1;
}

.service-text p { 
    font-size: 19px; 
    color: var(--text-muted); 
    max-width: 480px; 
}

.service-image {
    position: relative;
}

.abstract-shape { 
    width: 450px; 
    height: 450px; 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    border-radius: 43% 57% 64% 36% / 40% 41% 59% 60%; 
    filter: blur(60px);
    opacity: 0.12;
    animation: blobify 10s infinite alternate;
}
.trust-bar {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.01), inset 0 -20px 40px rgba(0,0,0,0.01);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.trust-text {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.logo-track {
    display: flex;
    gap: 80px;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.logo-track span {
    font-size: 24px;
    font-weight: 800;
    color: #E5E7EB; /* Pasif, şık gri tonu */
    transition: var(--transition);
    cursor: default;
}

.logo-track span:hover {
    color: var(--primary);
}
.brand-manifesto {
    padding: 140px 0;
    position: relative;
    background-color: var(--bg-subtle); /* Saf beyaz değil, hafif tonlu */
    background-image: var(--bg-gradient); /* Köşelerden gelen çok hafif renk hüzmeleri */
    overflow: hidden;
}

.brand-manifesto::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
}

.brand-manifesto::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#E5E7EB 0.8px, transparent 0.8px);
    background-size: 30px 30px;
    opacity: 0.2; /* Neredeyse görünmez */
    z-index: 0;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1; /* İçeriğin glow'un üstünde kalması için */
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.display-title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
}

.manifesto-right p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.manifesto-right strong {
    color: var(--dark);
    font-weight: 700;
}

/* --- Services Image Cards --- */
.service-card.image-card {
    min-height: 550px; /* Tüm kartları bu yükseklikte sabitler */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: flex-start;
}

.service-card.image-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.card-image {
    width: 100%;
    height: 250px; /* Belirlediğimiz sabit yükseklik */
    background: #f3f4f6;
    display: block; /* Flex yerine block yaparak taşmaları önleriz */
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* İŞTE KRİTİK NOKTA: Resmi boşluk kalmayacak şekilde yayar */
    object-position: center; /* Resmi ortalar */
    display: block;
}

.service-card.image-card:hover .card-image img {
    transform: scale(1.05) translateY(-5px); /* Hoverda hafif büyüme ve yükselme */
}

.card-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.4s ease;
}

/* Featured Image Card (NFC için) */
.service-card.featured-image {
    grid-column: span 1 !important; 
    flex-direction: column !important; 
    align-items: flex-start !important;
}

.service-card.featured-image .card-image,
.service-card.featured-image .card-content {
    width: 100% !important; /* Genişliği diğer kartlarla eşitledik */
}

/* --- Final CTA Section --- */
.final-cta {
    padding: 100px 0;
    background: #ffffff; /* Temiz bir geçiş için beyaz zemin */
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    padding: 80px 40px;
    border-radius: 40px;
    color: white;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-action .nav-btn.dark {
    background: #111;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-content i {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 20px;
}

.cta-action .nav-btn.dark:hover {
    background: #4f46e5;
    transform: scale(1.05);
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-box .btn-primary {
    background: white;
    color: #4f46e5;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-box .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Modern Footer --- */
.main-footer {
    background: #0a0b10;
    color: #ffffff;
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Logo alanı daha geniş */
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Logonu beyaza çevirmek için */
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #f8fafc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4f46e5;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.main-footer.dark-footer {
    background: #020305; /* Çok koyu, 10Clouds tarzı arka plan */
    color: #f8fafc;
    padding: 100px 0 60px 0;
    font-family: 'Inter', sans-serif; /* İnce ve modern yazı tipi */
}

/* Üst Sıra: Logo ve Sosyal Medya */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 36px;
    filter: brightness(0) invert(1); /* Logoyu beyaza çevirmek için */
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-social ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social ul li a:hover {
    color: #4f46e5; /* Rootix moru */
}

/* İnce Ayırıcı Çizgiler */
.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.05); /* Çok silik çizgi */
    margin: 60px 0;
}

/* Ana Grid (4 Sütun) */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Sol sütun daha geniş */
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #f8fafc;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: capitalize; /* Sadece baş harfler büyük */
}

/* Link Sütunları (2, 3, 4) */
.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.links-column ul li a:hover {
    color: #f8fafc;
}

/* Sol Sütun (Bilgiler) */
.info-column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-block {
    margin-bottom: 30px;
}

/* Ana Menü Elemanları */
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Net iki sütun */
    column-gap: 40px; /* Sütunlar arası yatay boşluk */
    row-gap: 32px;    /* Satırlar arası dikey boşluk */
}

.dropdown-content.mega-menu {
    min-width: 650px; /* Genişliği biraz daha artıralım, metinler sıkışmasın */
    padding: 40px; /* İçeriden geniş boşluk (10Clouds tarzı) */
    background: #ffffff;
    border-radius: 24px; /* Daha yumuşak köşeler */
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

.dropdown-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 12px;
    padding: 10px; /* Hover alanı için */
    margin: -10px; /* Padding'i dengelemek için */
}

.dropdown-item a:hover {
    background: #f8faff !important;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.item-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    display: block;
}

/* Hover'da başlık rengini değiştir */
.dropdown-item a:hover .item-title {
    color: #4f46e5;
}

.dropdown-trigger {
    text-decoration: none;
    color: #ffffff; /* Arka planın koyu olduğunu varsayıyorum */
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* Metnin kırılmasını engeller */
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Dropdown Penceresi (Gizli Hal) */
.dropdown-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dropdown İçindeki Linkler */
.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: #2d3436 !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8faff;
    color: #4f46e5 !important;
    padding-left: 30px;
}

/* Hover Durumu (Açılış) */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg); /* Ok işareti ters döner */
}


.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #4f46e5;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.card {
    background: #111; /* Koyu tema kartı */
    color: #fff;
    padding: 50px;
    border-radius: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #4f46e5;
}

.icon-box {
    font-size: 35px;
    color: #4f46e5;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: #10b981; /* Başarı Yeşili */
    margin-right: 10px;
}

.cta-gradient-card {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 40px; /* Görseldeki gibi geniş yuvarlama */
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-gradient-card h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-gradient-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #000; /* Görseldeki siyah buton */
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.finance-bg {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('../img/finance-pattern.png'); /* Opsiyonel: Hafif bir veri grafiği dokusu */
    background-size: cover;
}

.sector-details {
    padding: 80px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.detail-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.05);
}

.detail-card i {
    font-size: 35px;
    color: #4f46e5;
    margin-bottom: 20px;
    display: block;
}

.detail-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.detail-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun yan yana */
    gap: 30px;
    margin: 60px 0;
}

.f-card {
    background: #fbfbfb;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.f-card:hover {
    transform: translateY(-10px);
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.f-card i {
    font-size: 30px;
    color: #4f46e5;
    margin-bottom: 20px;
    display: block;
}

.sector-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.sector-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    line-height: 1.6;
}

/* Hero Düzenlemesi */
.finance-hero-v2 {
    padding: 200px 0 120px; /* Üst boşluğu artırdık, Navbar artık üzerine binmez */
    background: #ffffff;
}

.finance-hero-v2 h1 {
    font-size: clamp(3rem, 8vw, 5rem); /* Ekran boyutuna göre değişen devasa font */
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* İstatistikler */
.finance-stats {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item strong {
    font-size: 36px;
    font-weight: 900;
    display: block;
    color: #0f172a;
}

.stat-item span {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

/* Hizmet Kartları (Daha modern) */
.services-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-box {
    padding: 60px;
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    transition: 0.4s;
}

.service-box.active {
    background: #4f46e5;
    color: #fff;
}

.finance-interactive-grid {
    padding: 80px 0;
    background: #fbfbfb;
}

.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: #fff;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sütunlu yapı */
    grid-auto-rows: 200px; /* Satır yüksekliği sabit */
    gap: 20px;
    margin-top: 50px;
}

.bento-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.card-icon { font-size: 45px; color: #4f46e5; margin-bottom: 20px; transition: 0.4s; }
.card-title { font-size: 22px; font-weight: 800; color: #0f172a; transition: 0.4s; }

.card-description {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    background: #4f46e5; /* Arka planla aynı renk */
    transition: 0.4s ease;
}

.card-description p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}



/* --- Hover Durumu --- */
.bento-card:hover .card-icon,
.bento-card:hover .card-title {
    color: #ffffff !important;
}

.bento-card:hover .card-description {
    bottom: 20px; /* Metin aşağıdan yukarı çıkar */
    opacity: 1;
    transform: translateY(0);
}

.bento-card:hover .card-content {
    opacity: 0;
}

.bento-card:hover {
    background: #4f46e5;
    transform: scale(1.02); /* Hafif büyüme etkisi */
    border-color: #4f46e5;
    z-index: 2;
}

.bento-card:hover .card-description {
    opacity: 1;
    transform: translateY(-20px);
}

/* Mobilde tek sütuna düşür */
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* Mobil */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; }
}

/* Mobil Uyumluluk */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

@keyframes blobify {
    from { border-radius: 43% 57% 64% 36% / 40% 41% 59% 60%; }
    to { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .stat-number {
        font-size: 24px;
    }
    .nav-btn.large {
        width: 100%; /* Butonu tam genişlik yapıyoruz */
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-card.featured-image {
        grid-column: span 1;
        flex-direction: column !important;
    }
    .featured-image .card-image { width: 100%; height: 250px; }
    .menu {
        overflow-x: auto; /* Sağa kaydırmayı açar */
        white-space: nowrap; /* Elemanların alt alta binmesini engeller */
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch; /* Akıcı kaydırma */
    }
    
    .dropdown-content.mega-menu {
        display: none; /* Mobilde mega-menüleri şimdilik devre dışı bırakalım, ekranı kaplar */
    }

    /* Izometrik Görsel ve Metin Alanı */
    .grid-2 {
        grid-template-columns: 1fr; /* Yan yana olan her şeyi alt alta getiriyoruz */
        text-align: center;
        padding: 50px 0;
    }

    .image-side {
        order: -1; /* Görseli mobilde metnin üstüne taşıyoruz */
        padding: 20px;
    }
    
    .image-side::before {
        width: 100%; /* Arkaplandaki gri bloğu tam genişlik yapıyoruz */
        height: 80%;
    }

    .check-list {
        display: inline-block; /* Listeyi ortalamak için */
        text-align: left;
    }


    /* Navbar Mobilde Sıkışmasın */
    .menu {
        display: none; /* Mobilde burger menü yapılmalı, şimdilik gizliyoruz */
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .cta-action { margin-top: 30px; }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}
@media (max-width: 992px) {
    .service-row { flex-direction: column; text-align: center; }
    .service-text p { margin: 0 auto; }
    .abstract-shape { width: 300px; height: 300px; }
    h1 { font-size: 54px; letter-spacing: -2px; }
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .service-card.wide {
        grid-column: span 1;
        flex-direction: column;
    }
    .service-card.featured-image {
        grid-column: span 1;
        flex-direction: column;
    }
    .service-card.featured-image .card-image,
    .service-card.featured-image .card-content {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Mobilde 2x2 düzen */
        gap: 40px;
    }
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured-image { grid-column: span 1; flex-direction: column; }
    .featured-image .card-image { width: 100%; }
    .container {
        padding: 0 5%;
    }
    .grid-2 {
        gap: 40px;
    }
}