/* 
 * 🎨 Simo Bilişim Yazılım Teknolojileri — Kurumsal Web Portalı Stilleri
 * "Bismillahirrahmanirrahim" — İn-house, saf ve üstün kaliteli tasarım dili.
 */

/* ----------------------------------------------------
 * 1. Global Resetler ve Temel Kurallar
 * ---------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Temel Renk Sistemi */
    --bg-color: #070913;
    --bg-radial: radial-gradient(circle at 50% 50%, #111530 0%, #060812 100%);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Premium Glassmorphism Değişkenleri */
    --glass-bg: rgba(13, 17, 34, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --backdrop-blur: blur(16px);
    
    /* Neon Glow Renk Kodları */
    --neon-simotaksi: #facc15;      /* Canlı Sarı */
    --neon-simomail: #22d3ee;       /* Turkuaz */
    --neon-alsatgo: #34d399;        /* Su Yeşili */
    --neon-gokesfet: #c084fc;       /* Mor/Eflatun */
    --neon-giydikce: #f43f5e;       /* Sıcak Mercan/Rose Gold */
    --neon-hosting: #f8fafc;        /* Kristal Beyaz */
    --neon-simodernek: #fb923c;      /* Canlı Turuncu */
    --neon-simoai: #3b82f6;          /* Premium Parlak Mavi */
    
    /* Font Tanımları */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Grid/Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-radial);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----------------------------------------------------
 * 2. Arka Plan Canvas Parçacıkları
 * ---------------------------------------------------- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ----------------------------------------------------
 * 3. Header / Navbar
 * ---------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 9, 19, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(7, 9, 19, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.logo-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--neon-simomail);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-simomail);
    animation: pulseGlow 2s infinite ease-in-out;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-simomail);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--neon-simomail);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ----------------------------------------------------
 * 4. Hero Section
 * ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--neon-simomail) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(34, 211, 238, 0.2));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin-bottom: 40px;
    font-weight: 350;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

/* ----------------------------------------------------
 * 5. Brand Showcase Section (Grid)
 * ---------------------------------------------------- */
.brand-section {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 350;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.brand-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    overflow: hidden;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.brand-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: inline-block;
}

.brand-short-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 350;
    margin-bottom: 25px;
    line-height: 1.6;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-card-action {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* ----------------------------------------------------
 * Brand Specific Glass & Neon Customizations
 * ---------------------------------------------------- */

/* SimoTaksi */
.card-simotaksi:hover {
    border-color: rgba(250, 204, 21, 0.4);
    box-shadow: 0 15px 30px -10px rgba(250, 204, 21, 0.15), 0 0 1px rgba(250, 204, 21, 0.4);
}
.card-simotaksi:hover .brand-icon {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}
.card-simotaksi .btn-card-action:hover {
    background: var(--neon-simotaksi);
    border-color: var(--neon-simotaksi);
    color: #000000;
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

/* SimoMail */
.card-simomail:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 15px 30px -10px rgba(34, 211, 238, 0.15), 0 0 1px rgba(34, 211, 238, 0.4);
}
.card-simomail:hover .brand-icon {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}
.card-simomail .btn-card-action:hover {
    background: var(--neon-simomail);
    border-color: var(--neon-simomail);
    color: #000000;
    box-shadow: 0 5px 15px rgba(34, 211, 238, 0.4);
}

/* AlSatGo */
.card-alsatgo:hover {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 15px 30px -10px rgba(52, 211, 153, 0.15), 0 0 1px rgba(52, 211, 153, 0.4);
}
.card-alsatgo:hover .brand-icon {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.2);
}
.card-alsatgo .btn-card-action:hover {
    background: var(--neon-alsatgo);
    border-color: var(--neon-alsatgo);
    color: #000000;
    box-shadow: 0 5px 15px rgba(52, 211, 153, 0.4);
}

/* GoKeşfet */
.card-gokesfet:hover {
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 15px 30px -10px rgba(192, 132, 252, 0.15), 0 0 1px rgba(192, 132, 252, 0.4);
}
.card-gokesfet:hover .brand-icon {
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(192, 132, 252, 0.3);
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}
.card-gokesfet .btn-card-action:hover {
    background: var(--neon-gokesfet);
    border-color: var(--neon-gokesfet);
    color: #000000;
    box-shadow: 0 5px 15px rgba(192, 132, 252, 0.4);
}

/* Giydikçe */
.card-giydikce:hover {
    border-color: rgba(244, 63, 94, 0.4);
    box-shadow: 0 15px 30px -10px rgba(244, 63, 94, 0.15), 0 0 1px rgba(244, 63, 94, 0.4);
}
.card-giydikce:hover .brand-icon {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);
}
.card-giydikce .btn-card-action:hover {
    background: var(--neon-giydikce);
    border-color: var(--neon-giydikce);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(244, 63, 94, 0.4);
}

/* Hosting */
.card-hosting:hover {
    border-color: rgba(248, 250, 252, 0.4);
    box-shadow: 0 15px 30px -10px rgba(248, 250, 252, 0.15), 0 0 1px rgba(248, 250, 252, 0.4);
}
.card-hosting:hover .brand-icon {
    background: rgba(248, 250, 252, 0.15);
    border-color: rgba(248, 250, 252, 0.3);
    box-shadow: 0 0 15px rgba(248, 250, 252, 0.2);
}
.card-hosting .btn-card-action:hover {
    background: var(--neon-hosting);
    border-color: var(--neon-hosting);
    color: #000000;
    box-shadow: 0 5px 15px rgba(248, 250, 252, 0.4);
}

/* SimoDernek */
.card-simodernek:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 15px 30px -10px rgba(251, 146, 60, 0.15), 0 0 1px rgba(251, 146, 60, 0.4);
}
.card-simodernek:hover .brand-icon {
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 0 15px rgba(251, 146, 60, 0.2);
}
.card-simodernek .btn-card-action:hover {
    background: var(--neon-simodernek);
    border-color: var(--neon-simodernek);
    color: #000000;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.4);
}

/* Simo AI */
.card-simoai:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15), 0 0 1px rgba(59, 130, 246, 0.4);
}
.card-simoai:hover .brand-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
.card-simoai .btn-card-action:hover {
    background: var(--neon-simoai);
    border-color: var(--neon-simoai);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* ----------------------------------------------------
 * 6. Karargah Live Monitor Section
 * ---------------------------------------------------- */
.monitor-section {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cursor Glow Tracker */
#cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, rgba(34, 211, 238, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    mix-blend-mode: screen;
}

/* Shield Savunma Paneli Stilleri */
.shield-panel {
    border-color: rgba(244, 63, 94, 0.1);
}
.shield-panel:hover {
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 15px 30px -10px rgba(244, 63, 94, 0.1);
}
.shield-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 10px;
}
.shield-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.shield-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.shield-mini-chart {
    margin-top: 20px;
    margin-bottom: 20px;
}
.traffic-speed-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}
.traffic-speed-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-giydikce) 0%, var(--neon-simotaksi) 100%);
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.4);
}
.shield-stats-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}
.shield-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-out;
}

.pulse-indicator.online {
    background-color: var(--neon-alsatgo);
}
.pulse-indicator.online::after {
    border: 2px solid var(--neon-alsatgo);
}

.panel-body {
    padding: 30px 25px;
}

.stat-progress-item {
    margin-bottom: 25px;
}

.stat-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-simomail) 0%, var(--neon-alsatgo) 100%);
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.stat-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cell-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.cell-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

/* PM2 / CLI Console Simulator */
.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dots span:nth-child(1) { background-color: #ff5f56; }
.terminal-dots span:nth-child(2) { background-color: #ffbd2e; }
.terminal-dots span:nth-child(3) { background-color: #27c93f; }

.console-body {
    height: 300px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    overflow-y: auto;
    padding: 20px;
    background: rgba(4, 6, 15, 0.6);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Scrollbar for console and modal */
.console-body::-webkit-scrollbar, .modal-container::-webkit-scrollbar {
    width: 6px;
}
.console-body::-webkit-scrollbar-track, .modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.console-body::-webkit-scrollbar-thumb, .modal-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.log-line {
    color: #e2e8f0;
    line-height: 1.5;
    word-break: break-all;
}

.log-process {
    color: var(--neon-simomail);
    font-weight: bold;
}

.text-info { color: #38bdf8; }
.text-success { color: #34d399; }
.text-warning { color: #fbbf24; }

/* ----------------------------------------------------
 * 7. Manifesto Section
 * ---------------------------------------------------- */
.manifesto-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.manifesto-card {
    padding: 60px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(13, 17, 34, 0.6) 0%, rgba(7, 9, 19, 0.4) 100%);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 7500;
    letter-spacing: 1.5px;
    background: rgba(244, 63, 94, 0.1);
    color: var(--neon-giydikce);
    border: 1px solid rgba(244, 63, 94, 0.2);
    margin-bottom: 25px;
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.manifesto-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.manifesto-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
    line-height: 1;
}

.manifesto-item strong {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.manifesto-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 350;
}

/* ----------------------------------------------------
 * 8. Modal Overlay & Container
 * ---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(4, 6, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 28px;
    background: rgba(13, 17, 34, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    overflow-y: auto;
    padding: 50px;
}

.modal-overlay.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal Content Styles */
.modal-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 35px;
}

.modal-brand-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-head-titles h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.modal-head-titles span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.modal-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    border-left: 3px solid var(--neon-simomail);
    padding-left: 12px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.tech-spec-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tech-spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 12px;
}

.tech-spec-item strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.tech-spec-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.metric-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.metric-card span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 5px;
}

.metric-card h5 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.vision-card {
    background: rgba(34, 211, 238, 0.02);
    border: 1px dashed rgba(34, 211, 238, 0.2);
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
}

.vision-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: #e2e8f0;
}

/* ----------------------------------------------------
 * 9. Footer
 * ---------------------------------------------------- */
.main-footer {
    position: relative;
    padding: 80px 0;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(4, 6, 15, 0.8);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-creds h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--neon-simomail);
}

.düstur-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
 * 10. Keyframes / Animasyonlar
 * ---------------------------------------------------- */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--neon-simomail);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 20px var(--neon-simomail), 0 0 30px rgba(34, 211, 238, 0.3);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 14px;
        opacity: 0.4;
    }
    100% {
        top: 6px;
        opacity: 1;
    }
}

/* Yüklenme Slayt Efektleri */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-fade-in-delayed-more {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------
 * 5.1. Ecosystem Synergy Section Stilleri
 * ---------------------------------------------------- */
.synergy-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.synergy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
}

.synergy-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.synergy-svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    overflow: visible;
}

/* Connector Lines Styling */
.connector-line {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    transition: stroke 0.4s ease, stroke-width 0.4s ease, stroke-dasharray 0.4s ease;
}

.connector-line.active {
    stroke-dasharray: none;
    stroke-width: 3.5;
}

.line-simotaksi.active { stroke: var(--neon-simotaksi); filter: url(#glow-simotaksi); }
.line-simomail.active { stroke: var(--neon-simomail); filter: url(#glow-simomail); }
.line-simodernek.active { stroke: var(--neon-simodernek); filter: url(#glow-simodernek); }
.line-alsatgo.active { stroke: var(--neon-alsatgo); filter: url(#glow-alsatgo); }
.line-gokesfet.active { stroke: var(--neon-gokesfet); filter: url(#glow-gokesfet); }
.line-hosting.active { stroke: var(--neon-hosting); filter: url(#glow-hosting); }
.line-giydikce.active { stroke: var(--neon-giydikce); filter: url(#glow-giydikce); }

/* Core Center Node Styling */
.node-core {
    cursor: pointer;
}
.core-outer-pulse {
    fill: rgba(34, 211, 238, 0.03);
    stroke: rgba(34, 211, 238, 0.15);
    stroke-width: 1;
    transform-origin: 250px 250px;
    animation: coreRipple 4s infinite ease-out;
}
.core-inner {
    fill: rgba(13, 17, 34, 0.85);
    stroke: var(--neon-simomail);
    stroke-width: 2.5;
    filter: url(#glow-core);
    transition: stroke 0.4s ease;
}
.node-core:hover .core-inner {
    stroke: #ffffff;
}
.core-text {
    fill: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    text-anchor: middle;
    letter-spacing: 2px;
}
.core-subtext {
    fill: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 600;
    text-anchor: middle;
    letter-spacing: 1px;
}

/* Brand Nodes Styling */
.brand-node {
    cursor: pointer;
}
.brand-node circle {
    fill: rgba(13, 17, 34, 0.9);
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1.5;
    transition: stroke 0.4s ease, fill 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* CSS specific origin handling for Brand nodes */
.node-simotaksi circle { transform-origin: 250px 70px; }
.node-simomail circle { transform-origin: 420px 190px; }
.node-simodernek circle { transform-origin: 400px 280px; }
.node-alsatgo circle { transform-origin: 350px 380px; }
.node-gokesfet circle { transform-origin: 150px 380px; }
.node-hosting circle { transform-origin: 100px 280px; }
.node-giydikce circle { transform-origin: 80px 190px; }

.brand-node:hover circle, .brand-node.active circle {
    fill: rgba(255, 255, 255, 0.02);
    stroke-width: 2.5;
    transform: scale(1.15);
}

.node-simotaksi:hover circle, .node-simotaksi.active circle { stroke: var(--neon-simotaksi); filter: url(#glow-simotaksi); }
.node-simomail:hover circle, .node-simomail.active circle { stroke: var(--neon-simomail); filter: url(#glow-simomail); }
.node-simodernek:hover circle, .node-simodernek.active circle { stroke: var(--neon-simodernek); filter: url(#glow-simodernek); }
.node-alsatgo:hover circle, .node-alsatgo.active circle { stroke: var(--neon-alsatgo); filter: url(#glow-alsatgo); }
.node-gokesfet:hover circle, .node-gokesfet.active circle { stroke: var(--neon-gokesfet); filter: url(#glow-gokesfet); }
.node-hosting:hover circle, .node-hosting.active circle { stroke: var(--neon-hosting); filter: url(#glow-hosting); }
.node-giydikce:hover circle, .node-giydikce.active circle { stroke: var(--neon-giydikce); filter: url(#glow-giydikce); }

.node-emoji {
    font-size: 20px;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.node-simotaksi:hover .node-emoji, .node-simotaksi.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 250px 70px; }
.node-simomail:hover .node-emoji, .node-simomail.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 420px 190px; }
.node-simodernek:hover .node-emoji, .node-simodernek.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 400px 280px; }
.node-alsatgo:hover .node-emoji, .node-alsatgo.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 350px 380px; }
.node-gokesfet:hover .node-emoji, .node-gokesfet.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 150px 380px; }
.node-hosting:hover .node-emoji, .node-hosting.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 100px 280px; }
.node-giydikce:hover .node-emoji, .node-giydikce.active .node-emoji { transform: translate(0, -2px) scale(1.15); transform-origin: 80px 190px; }

/* Synergy Info Panel Styling */
.synergy-info {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.synergy-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(34, 211, 238, 0.08);
    color: var(--neon-simomail);
    border: 1px solid rgba(34, 211, 238, 0.15);
    margin-bottom: 20px;
    width: fit-content;
}

.synergy-default-view h3, .synergy-detail-view h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.synergy-default-view p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.synergy-pulse-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pulse-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neon-simomail);
    box-shadow: 0 0 10px var(--neon-simomail);
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--neon-simomail);
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-out;
}

/* Detail View */
.detail-brand-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.detail-emoji {
    font-size: 2.2rem;
}

.detail-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.synergy-flow-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-step {
    display: flex;
    gap: 15px;
    align-items: center;
}

.flow-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

@keyframes coreRipple {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.2; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* ----------------------------------------------------
 * 7.1. FAQ Accordion Section
 * ---------------------------------------------------- */
.faq-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--neon-simomail);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before {
    content: '▼';
    font-size: 0.75rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon::before {
    transform: rotate(-180deg);
    color: var(--neon-simomail);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 30px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 15px 0 0 0;
}

}

/* ----------------------------------------------------
 * 8.1. Contact & Integration Form Section Stilleri
 * ---------------------------------------------------- */
.contact-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.01);
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--neon-simomail);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.08);
}

.form-group select option {
    background: #0d1122;
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Submission Terminal Simulator */
.form-terminal {
    background: #070913;
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.05);
    animation: fadeIn 0.4s ease-out forwards;
}

.form-terminal .terminal-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-terminal .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.form-terminal .dot.red { background: #ef4444; }
.form-terminal .dot.yellow { background: #eab308; }
.form-terminal .dot.green { background: #22c55e; }

.form-terminal .terminal-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 10px;
}

.form-terminal .terminal-body {
    padding: 20px;
    min-height: 220px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.form-terminal .log-success {
    color: #4ade80;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
    border: 1px dashed rgba(74, 222, 128, 0.3);
    padding: 15px;
    border-radius: 6px;
    background: rgba(74, 222, 128, 0.03);
    animation: pulseGlow 2s infinite;
}

.terminal-log-line {
    margin-bottom: 8px;
}

/* ----------------------------------------------------
 * 11. Responsive Uyumluluk (Mobil & Tablet)
 * ---------------------------------------------------- */
@media (max-width: 1024px) {
    .monitor-grid {
        grid-template-columns: 1fr;
    }
    .synergy-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-creds {
        grid-column: span 2;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(7, 9, 19, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 99;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hamburger Animasyonu */
    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-head {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .manifesto-card {
        padding: 30px 20px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .btn {
        width: 100%;
    }
}



