/* ==========================================
   Kolay Bilişim - Ana Stil Dosyası
   /assets/css/main.css
   ========================================== */

:root {
    --primary: #0a4d8c;
    --primary-dark: #063561;
    --secondary: #00b4d8;
    --accent: #f4a01c;
    --green: #00b87c;
    --text: #1a2332;
    --text-light: #5a6a7e;
    --bg: #f7f9fc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(10,77,140,0.10);
    --shadow-lg: 0 8px 48px rgba(10,77,140,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,77,140,0.25); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #d88c14; transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-wp { background: #25d366; color: var(--white); }
.btn-wp:hover { background: #128c5e; transform: translateY(-2px); }
.btn-wp-footer { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); padding: 10px 20px; border-radius: 8px; font-weight: 600; margin-top: 16px; font-size: 14px; transition: var(--transition); }
.btn-wp-footer:hover { background: #128c5e; }

/* ---- TOPBAR ---- */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar a:hover { color: var(--accent); }
.wp-topbar { background: #25d366; color: white !important; padding: 4px 12px; border-radius: 20px; font-weight: 600; }
.wp-topbar:hover { background: #128c5e !important; color: white !important; }

/* ---- HEADER ---- */
.main-header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
.main-header.scrolled { box-shadow: 0 4px 30px rgba(10,77,140,0.12); }
.main-header .container { display: flex; align-items: center; gap: 32px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-family: var(--font); font-size: 24px; font-weight: 800; flex-shrink: 0; letter-spacing: -0.5px; }
.logo-kolay { color: var(--primary); }
.logo-bilisim { color: var(--secondary); }

/* Navigation */
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-weight: 500; font-size: 15px; color: var(--text); border-radius: 8px; transition: var(--transition); cursor: pointer; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--primary); background: rgba(10,77,140,0.06); }
.main-nav ul li a i.fa-chevron-down { font-size: 11px; transition: transform 0.3s; }
.main-nav ul li:hover a i.fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    display: none !important; /* Dış etkenlerden açık gelmesini kesin olarak engeller */
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    border: 1px solid var(--border);
    overflow: hidden;
    animation: fadeDown 0.2s ease;
    z-index: 1000;
}
.has-dropdown:hover .dropdown, 
.has-dropdown.active .dropdown { 
    display: block !important; 
}
.dropdown li a { padding: 12px 18px; border-radius: 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a i { color: var(--primary); width: 20px; }

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-whatsapp-header { display: flex; align-items: center; gap: 8px; background: #25d366; color: white; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; flex-shrink: 0; transition: var(--transition); white-space: nowrap; }
.btn-whatsapp-header:hover { background: #128c5e; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--primary); border-radius: 3px; transition: var(--transition); }

/* ---- HERO SECTION ---- */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a6bc7 100%); color: var(--white); padding: 100px 0 80px; position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; background: rgba(0,180,216,0.08); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); position: relative; }
.hero-desc { font-size: 18px; opacity: 0.85; margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.hero-stat span { font-size: 14px; opacity: 0.75; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 380px; }
.hero-card-title { font-size: 13px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.hero-product-list { list-style: none; }
.hero-product-list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 500; }
.hero-product-list li:last-child { border-bottom: none; }
.hero-product-list li i { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.hero-cta-mini { display: block; text-align: center; margin-top: 20px; background: var(--accent); color: var(--white); padding: 12px; border-radius: 8px; font-weight: 700; transition: var(--transition); }
.hero-cta-mini:hover { background: #d88c14; transform: translateY(-1px); }

/* ---- SECTION HEADERS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; background: rgba(10,77,140,0.08); color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ---- PRODUCTS ---- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--card-color, var(--primary)); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; background: rgba(10,77,140,0.08); color: var(--primary); }
.product-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.product-card p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.product-features { list-style: none; margin-bottom: 32px; }
.product-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text); }
.product-features li i { color: var(--green); width: 16px; flex-shrink: 0; }

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.why-card { text-align: center; padding: 36px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.why-card i { font-size: 36px; color: var(--primary); margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: var(--white); padding: 20px 24px; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background 0.2s; }
.faq-question:hover { background: var(--bg); }
.faq-question i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; font-size: 15px; }
.faq-item.open .faq-answer { display: block; }

/* ---- CTA BAND ---- */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-band p { font-size: 18px; opacity: 0.85; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { width: 48px; height: 48px; background: rgba(10,77,140,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item-text a { color: var(--primary); }
.wp-contact-box { background: linear-gradient(135deg, #25d366, #128c5e); color: white; border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 24px; }
.wp-contact-box i { font-size: 36px; margin-bottom: 12px; }
.wp-contact-box p { font-size: 15px; margin-bottom: 16px; opacity: 0.9; }
.wp-contact-box a { background: white; color: #25d366; padding: 10px 24px; border-radius: 8px; font-weight: 700; display: inline-block; transition: var(--transition); }
.wp-contact-box a:hover { transform: translateY(-1px); }

/* Contact Form */
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 15px; color: var(--text); background: var(--white); transition: border-color 0.2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,77,140,0.1); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: #d4edda; color: #155724; padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; display: none; align-items: center; gap: 10px; }
.form-error { background: #f8d7da; color: #721c24; padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; display: none; align-items: center; gap: 10px; }

/* ---- BLOG CARDS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 48px; color: rgba(255,255,255,0.4); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-card-cat { background: rgba(10,77,140,0.08); color: var(--primary); padding: 2px 10px; border-radius: 12px; font-weight: 600; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.blog-card a.read-more { font-size: 14px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ---- FOOTER ---- */
.main-footer { background: var(--text); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.footer-logo .logo-kolay { color: var(--secondary); }
.footer-logo .logo-bilisim { color: var(--accent); }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; opacity: 0.75; }
.footer-col h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-col ul li a i { font-size: 11px; color: var(--secondary); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8) !important; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white !important; }
.footer-contact li { display: flex !important; align-items: flex-start !important; gap: 10px; margin-bottom: 12px !important; }
.footer-contact li i { color: var(--secondary); margin-top: 3px; }
.footer-contact li a { color: rgba(255,255,255,0.75) !important; font-size: 14px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { opacity: 0.6; }
.footer-seo-text { opacity: 0.4 !important; }
.footer-seo-text a { color: inherit; margin: 0 2px; }
.footer-seo-text a:hover { opacity: 0.8; }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float { position: fixed; bottom: 88px; right: 24px; background: #25d366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wp-tooltip { position: absolute; right: 64px; background: var(--text); color: white; padding: 6px 12px; border-radius: 8px; font-size: 12px; white-space: nowrap; font-family: var(--font); font-weight: 500; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.whatsapp-float:hover .wp-tooltip { opacity: 1; }

.phone-float { position: fixed; bottom: 24px; right: 24px; background: var(--primary); color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 20px rgba(10,77,140,0.35); z-index: 999; transition: var(--transition); }
.phone-float:hover { transform: scale(1.1); background: var(--primary-dark); }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; padding: 72px 0; text-align: center; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 18px; opacity: 0.85; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 14px; opacity: 0.75; flex-wrap: wrap; }
.breadcrumb a { color: white; }
.breadcrumb i { font-size: 10px; }

/* ---- ALERT ---- */
.alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; font-size: 15px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .main-nav, .btn-whatsapp-header { display: none; }
    .hamburger { display: flex; }
    
    .main-nav.open { display: flex !important; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 2000; flex-direction: column; align-items: center; justify-content: center; }
    .main-nav.open ul { flex-direction: column; align-items: center; gap: 8px; }
    .main-nav.open ul li a { font-size: 20px; padding: 14px 24px; }
    
    .dropdown { position: static !important; box-shadow: none !important; border: none !important; padding-top: 10px !important; animation: none !important; }
    .dropdown li a { font-size: 16px; padding: 10px 24px; text-align: center; }
    
    /* Mobil'de sadece .active sınıfı eklendiğinde açılması için */
    .has-dropdown:hover .dropdown { display: none !important; }
    .has-dropdown.active .dropdown { display: block !important; }
    .has-dropdown.active a i.fa-chevron-down { transform: rotate(180deg); }
    
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .topbar { display: none; }
    .hero { padding: 60px 0; }
    .section { padding: 56px 0; }
    
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 20px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; }
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider { position: relative; overflow: hidden; background: var(--primary-dark); }
.slider-track { display: flex; transition: none; }
.slide { min-width: 100%; min-height: 580px; display: flex; align-items: center; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a6bc7 100%); background-size: cover; background-position: center; color: white; position: relative; transition: opacity 0.6s ease; opacity: 0; pointer-events: none; position: absolute; top: 0; left: 0; width: 100%; }
.slide.active { opacity: 1; pointer-events: auto; position: relative; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,53,97,0.92) 0%, rgba(10,77,140,0.75) 60%, rgba(26,107,199,0.6) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 0; }
.slide-content .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.slide-content h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.slide-content h1 span { color: var(--accent); }
.slide-content .hero-desc { font-size: 18px; opacity: 0.88; margin-bottom: 36px; line-height: 1.7; }
.slide-content .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-content .hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.slide-content .hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.slide-content .hero-stat span { font-size: 14px; opacity: 0.75; }

/* Slider Arrows */
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 10; transition: var(--transition); backdrop-filter: blur(6px); }
.slider-arrow:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.05); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Slider Dots */
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.slider-dot.active { background: white; width: 28px; border-radius: 5px; }

@media (max-width: 768px) {
    .slide { min-height: 500px; }
    .slide-content { padding: 60px 0; }
    .slider-arrow { display: none; }
    .slide-content .hero-stats { gap: 20px; }
    .slide-content h1 { font-size: 1.9rem; }
}