/* AJANS MATRUSKA - Ana Stil */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4d03f;
    --red: #c41e3a;
    --black: #1a1a1a;
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-soft: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
    overflow-x: hidden;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a {
    color: var(--black);
    text-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.nav-logo i {
    font-size: 24px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 100px 30px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(26, 26, 26, 0.8) 70%);
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content > div:first-child h1 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content > div:first-child h1 .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

.hero-content > div:first-child p {
    font-size: 19px;
    color: white;
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    font-weight: 600;
    background: rgba(26, 26, 26, 0.4);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    background: rgba(26, 26, 26, 0.6);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    margin-bottom: 5px;
}

.stat span {
    font-size: 14px;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.8);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-card {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.hero-card i {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.hero-card p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-card span {
    font-size: 11px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 10px;
    margin-left: auto;
    font-weight: 700;
}

/* SECTIONS */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

/* UYGULAMALAR */
.uygulamalar {
    background: #f9fafb;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.app-card.featured {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.app-icon.linky { background: linear-gradient(135deg, #d4af37, #f4d03f); }
.app-icon.tanchat { background: linear-gradient(135deg, #c41e3a, #e63946); }
.app-icon.timo { background: linear-gradient(135deg, #b8941f, #d4af37); }

.active-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.app-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.app-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.app-features {
    list-style: none;
    margin-bottom: 25px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.app-features li i {
    color: var(--gold);
    font-size: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.app-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* NEDEN BİZ */
.neden {
    background: var(--black);
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.neden-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.neden-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.neden-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--black);
    margin: 0 auto 20px;
}

.neden-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.neden-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

/* EKİBİMİZ */
.ekip {
    background: #f9fafb;
    padding: 80px 30px;
}

.ekip-image {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HAKKIMIZDA */
.hakkimizda {
    background: var(--black);
    padding: 80px 30px;
}

.hakkimizda-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hakkimizda-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hakkimizda-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hakkimizda-item h3 {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hakkimizda-item h3 i {
    font-size: 24px;
}

.hakkimizda-item p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
}

/* HİZMETLER */
.hizmetler {
    background: #f9fafb;
    padding: 80px 30px;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hizmet-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hizmet-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.hizmet-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--black);
    margin: 0 auto 20px;
}

.hizmet-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.hizmet-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* İLETİŞİM BİLGİLERİ */
.iletisim-bilgileri {
    background: var(--black);
    padding: 80px 30px;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.iletisim-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.iletisim-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.iletisim-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.iletisim-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.iletisim-card a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    word-break: break-all;
}

.iletisim-card a:hover {
    color: var(--gold);
}

/* FOOTER */
.footer {
    background: #111827;
    padding: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

/* POLICY MODAL */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.policy-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.policy-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-close:hover {
    color: var(--gold);
}

.policy-content h2 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 20px;
}

.policy-content h3 {
    color: #1f2937;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.policy-content p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-content ul li {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* YORUMLAR */
.yorumlar {
    background: #f9fafb;
}

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.yorum-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.yorum-card:hover {
    transform: translateY(-5px);
}

.yorum-card.featured-yorum {
    background: var(--gradient);
    color: white;
}

.yorum-stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.yorum-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

.yorum-card.featured-yorum p {
    color: rgba(255,255,255,0.9);
}

.yorum-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.yorum-card.featured-yorum .author-avatar {
    background: rgba(255,255,255,0.3);
}

.yorum-author strong {
    display: block;
    font-size: 15px;
    color: #1f2937;
}

.yorum-card.featured-yorum .yorum-author strong {
    color: white;
}

.yorum-author span {
    font-size: 12px;
    color: #9ca3af;
}

.yorum-card.featured-yorum .yorum-author span {
    color: rgba(255,255,255,0.7);
}

/* İLETİŞİM */
.iletisim {
    background: var(--gradient-soft);
    padding: 80px 30px;
}

.iletisim-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.iletisim-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
}

.iletisim-content h2 .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iletisim-content p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 30px;
}

.iletisim-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.iletisim-features div {
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iletisim-features i {
    color: var(--gold-light);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* FOOTER */
.footer {
    background: #111827;
    padding: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.footer p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.telegram-float {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-telegram 2s infinite;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
}

@keyframes pulse-telegram {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

@media (max-width: 768px) {
    .telegram-float {
        bottom: 150px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .telegram-float {
        bottom: 145px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > div:first-child h1 {
        font-size: 42px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-card:hover {
        transform: translateY(-5px);
    }

    .apps-grid,
    .neden-grid,
    .yorumlar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    * {
        word-break: break-word;
    }

    body {
        overflow-x: hidden;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: white;
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-whatsapp {
        display: none;
    }

    .hero {
        padding: 80px 15px 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-content > div:first-child h1 {
        font-size: 28px;
    }

    .hero-content > div:first-child p {
        font-size: 15px !important;
        padding: 12px !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
        justify-content: center;
    }

    .hero-visual {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-card {
        padding: 12px 15px;
    }

    .hero-card p {
        font-size: 13px;
    }

    .hero-card span {
        font-size: 10px;
        padding: 2px 8px;
        white-space: nowrap;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }

    .section-container {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .apps-grid,
    .neden-grid,
    .yorumlar-grid,
    .hakkimizda-content,
    .hizmetler-grid {
        grid-template-columns: 1fr;
    }

    .iletisim-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .iletisim-card a {
        font-size: 12px;
    }

    .iletisim-content h2 {
        font-size: 26px;
    }

    .iletisim-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .whatsapp-btn {
        font-size: 15px;
        padding: 14px 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .policy-content {
        margin: 5% 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content > div:first-child h1 {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .stat strong {
        font-size: 22px;
    }

    .stat span {
        font-size: 11px;
    }

    .neden-grid {
        grid-template-columns: 1fr;
    }

    .iletisim-grid {
        grid-template-columns: 1fr;
    }

    .app-card {
        padding: 20px 15px;
    }

    .hakkimizda-item {
        padding: 20px 15px;
    }

    .hizmet-card {
        padding: 25px 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .whatsapp-float {
        bottom: 85px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}
