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

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --text: #ffffff;
    --text-muted: #8b8b9e;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

body { font-family: 'Poppins', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* Animated BG */
.bg-animation { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-animation::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}
@keyframes bgMove { 0%,100%{transform:translate(0,0)} 50%{transform:translate(2%,2%)} }

/* Particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.particle { position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0.4; animation: float 20s infinite; }
.particle:nth-child(1){left:10%;animation-delay:0s} .particle:nth-child(2){left:25%;animation-delay:3s}
.particle:nth-child(3){left:40%;animation-delay:1s} .particle:nth-child(4){left:55%;animation-delay:4s}
.particle:nth-child(5){left:70%;animation-delay:2s} .particle:nth-child(6){left:85%;animation-delay:5s}
@keyframes float { 0%{transform:translateY(100vh);opacity:0} 10%{opacity:0.4} 90%{opacity:0.4} 100%{transform:translateY(-100vh);opacity:0} }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,15,0.9); backdrop-filter: blur(30px); border-bottom: 1px solid rgba(212,175,55,0.15); transition: all 0.4s ease; }
.header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent); }
.header.scrolled { background: rgba(10,10,15,0.98); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 18px 50px; display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; transition: transform 0.3s; }
.logo:hover { transform: scale(1.05); }
.logo-icon { width: 44px; height: 44px; background: var(--gradient-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--dark); box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.logo-text { font-size: 22px; font-weight: 700; background: linear-gradient(135deg, #fff 0%, #d4af37 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Nav */
.nav { display: flex; gap: 45px; }
.nav > a, .nav-item > a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding: 8px 0; transition: color 0.3s; }
.nav > a:hover, .nav-item > a:hover { color: var(--gold); }

/* Nav Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-item > a svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-item:hover > a svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-10px); margin-top: 15px; background: rgba(18,18,26,0.98); backdrop-filter: blur(20px); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 12px 8px; min-width: 180px; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 15px 40px rgba(0,0,0,0.4); z-index: 1001; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 12px 16px; color: var(--gold); font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 8px; transition: all 0.2s; text-transform: none; letter-spacing: 0; }
.nav-dropdown a:hover { background: rgba(212,175,55,0.15); }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 25px; position: relative; z-index: 10; }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; background: transparent; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; }
.lang-dropdown-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); }
.lang-dropdown-btn svg { transition: transform 0.3s; }
.lang-dropdown:hover .lang-dropdown-btn svg { transform: rotate(180deg); }
.lang-dropdown-menu { position: absolute; top: 100%; right: 0; margin-top: 8px; background: rgba(18,18,26,0.98); backdrop-filter: blur(20px); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 8px; min-width: 80px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; box-shadow: 0 15px 40px rgba(0,0,0,0.4); z-index: 1001; }
.lang-dropdown.open .lang-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown.open .lang-dropdown-btn svg { transform: rotate(180deg); }
.lang-dropdown-menu a { display: block; padding: 10px 16px; border-radius: 8px; color: var(--text-muted); font-size: 12px; font-weight: 700; text-decoration: none; letter-spacing: 1px; transition: all 0.2s; text-align: center; }
.lang-dropdown-menu a:hover { background: rgba(212,175,55,0.15); color: var(--gold); }
.lang-dropdown-menu a.active { background: var(--gradient-gold); color: var(--dark); }

/* Cart Button */
.cart-btn { position: relative; width: 46px; height: 46px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: all 0.3s; }
.cart-btn:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.5); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-badge { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; background: var(--gradient-gold); border-radius: 50%; font-size: 11px; font-weight: 700; color: var(--dark); display: flex; align-items: center; justify-content: center; padding: 0 4px; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }

/* CTA Button */
.contact-btn { background: var(--gradient-gold); color: var(--dark); padding: 12px 26px; border-radius: 50px; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: all 0.4s; box-shadow: 0 4px 15px rgba(212,175,55,0.25); position: relative; overflow: hidden; }
.contact-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.5s; }
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.35); }
.contact-btn:hover::before { left: 100%; }

/* Hero */
.hero { min-height: 100vh; position: relative; overflow: hidden; }
.slider-container { position: relative; width: 100%; height: 100vh; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,15,0.95) 0%, rgba(26,16,37,0.85) 50%, rgba(10,10,15,0.92) 100%); }
.hero-overlay::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E"); }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; margin: 0 auto; padding: 0 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }

/* Hero Badge */
.hero-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); padding: 14px 28px; border-radius: 50px; margin-bottom: 35px; animation: fadeInDown 1s ease; }
.hero-badge-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 20px rgba(212,175,55,0.6); }
.hero-badge span { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }

.hero-content h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; animation: fadeInUp 1s ease 0.2s both; }
.hero-content h1 .highlight { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; position: relative; display: inline-block; }
.hero-content h1 .highlight::after { content: ''; position: absolute; bottom: 8px; left: 0; right: 0; height: 4px; background: var(--gradient-gold); border-radius: 2px; opacity: 0.6; }
.hero-content p { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); margin-bottom: 40px; max-width: 650px; line-height: 1.6; animation: fadeInUp 1s ease 0.4s both; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

/* Hero Button */
.hero-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--gradient-gold); color: var(--dark); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.4s; box-shadow: 0 6px 25px rgba(212,175,55,0.3); animation: fadeInUp 1s ease 0.6s both; position: relative; overflow: hidden; }
.hero-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.6s; }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212,175,55,0.4); }
.hero-btn:hover::before { left: 100%; }
.hero-btn svg { transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(8px); }

/* Hero Arrows */
.hero-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 50px; z-index: 20; pointer-events: none; }
.prev-btn, .next-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(212,175,55,0.08); backdrop-filter: blur(15px); border: 1px solid rgba(212,175,55,0.2); color: var(--gold); font-size: 24px; cursor: pointer; transition: all 0.3s; pointer-events: auto; display: flex; align-items: center; justify-content: center; }
.prev-btn:hover, .next-btn:hover { background: var(--gradient-gold); color: var(--dark); border-color: transparent; transform: scale(1.05); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }

/* Hero Dots */
.hero-dots { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); display: flex; gap: 18px; z-index: 20; }
.hero-dots span { width: 14px; height: 14px; border-radius: 50%; background: rgba(212,175,55,0.3); cursor: pointer; transition: all 0.4s; }
.hero-dots span:hover { background: rgba(212,175,55,0.6); transform: scale(1.2); }
.hero-dots span.active { background: var(--gold); width: 50px; border-radius: 25px; box-shadow: 0 0 35px rgba(212,175,55,0.7); }

/* Features Section */
.features { padding: 140px 20px; background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%); position: relative; }
.features::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.features::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); pointer-events: none; }
.features-inner { max-width: 1300px; margin: 0 auto; }

/* Section Titles */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); padding: 10px 25px; border-radius: 50px; margin-bottom: 25px; }
.section-tag span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; background: linear-gradient(135deg, #fff 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { color: var(--text-muted); font-size: 15px; max-width: 550px; margin: 0 auto; line-height: 1.6; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Feature Card */
.feature-card { background: linear-gradient(145deg, rgba(18,18,26,0.8) 0%, rgba(10,10,15,0.9) 100%); border-radius: 24px; padding: 45px 35px; text-align: center; border: 1px solid rgba(212,175,55,0.1); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-gold); transform: scaleX(0); transition: transform 0.5s; }
.feature-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.25); box-shadow: 0 15px 40px rgba(0,0,0,0.25); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-card.highlight { background: linear-gradient(145deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%); border-color: rgba(212,175,55,0.25); }

.feature-icon { width: 70px; height: 70px; margin: 0 auto 24px; background: var(--gradient-gold); border-radius: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(212,175,55,0.25); transition: all 0.4s; position: relative; z-index: 1; }
.feature-icon svg { color: var(--dark); }
.feature-card:hover .feature-icon { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212,175,55,0.35); }

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text); position: relative; z-index: 1; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; position: relative; z-index: 1; }

/* About Section */
.about { padding: 140px 20px; background: var(--dark); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: 50%; left: -200px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%); border-radius: 50%; }
.about::after { content: ''; position: absolute; top: 30%; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%); border-radius: 50%; }
.about-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.about-text { max-width: 750px; margin: 0 auto 60px; text-align: center; font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.about-text strong { color: var(--gold); font-weight: 600; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-box { background: linear-gradient(145deg, rgba(18,18,26,0.9) 0%, rgba(10,10,15,0.95) 100%); border-radius: 24px; padding: 50px 30px; text-align: center; border: 1px solid rgba(212,175,55,0.1); transition: all 0.4s; position: relative; overflow: hidden; }
.stat-box::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent); }
.stat-box:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.2); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.stat-box .value { font-size: clamp(32px, 4vw, 48px); font-weight: 700; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; line-height: 1; }
.stat-box .label { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }

/* Footer */
.footer { background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%); padding: 100px 20px 40px; border-top: 1px solid rgba(212,175,55,0.1); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-brand .logo { margin-bottom: 25px; }
.footer-brand p { color: var(--text-muted); font-size: 15px; line-height: 1.8; max-width: 300px; }

.footer-col h4 { color: var(--text); font-size: 14px; font-weight: 700; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; position: relative; padding-bottom: 15px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gradient-gold); border-radius: 2px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a::before { content: ''; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 10px; }
.footer-col a:hover::before { width: 15px; }

.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--text-muted); font-size: 13px; letter-spacing: 0.5px; }

/* Scroll Animations */
.fade-in { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .header-inner { padding: 15px 30px; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .features-grid, .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-arrows { padding: 0 20px; }
    .prev-btn, .next-btn { width: 50px; height: 50px; font-size: 24px; }
    .header-inner { padding: 12px 20px; }
    .features, .about { padding: 80px 20px; }
    
    .hero-content { padding: 0 20px; }
    .hero-content h1 { font-size: 32px; margin-bottom: 20px; }
    .hero-content p { font-size: 16px; margin-bottom: 30px; }
    .hero-badge { padding: 10px 20px; margin-bottom: 25px; }
    .hero-badge span { font-size: 10px; letter-spacing: 2px; }
    .hero-btn { padding: 16px 35px; font-size: 12px; }
    .hero-dots { bottom: 30px; gap: 12px; }
    .hero-dots span { width: 10px; height: 10px; }
    .hero-dots span.active { width: 35px; }
    
    .section-header { margin-bottom: 50px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 15px; }
    .section-tag { padding: 8px 18px; }
    .section-tag span { font-size: 10px; }
    
    .feature-card { padding: 30px 25px; border-radius: 18px; }
    .feature-icon { width: 70px; height: 70px; border-radius: 18px; margin-bottom: 20px; }
    .feature-card h3 { font-size: 18px; }
    .feature-card p { font-size: 14px; }
    
    .stat-box { padding: 35px 20px; border-radius: 18px; }
    .stat-box .value { font-size: 36px; }
    .stat-box .label { font-size: 11px; letter-spacing: 2px; }
    
    .about-text { font-size: 16px; margin-bottom: 50px; }
    
    .footer { padding: 60px 20px 30px; }
    .footer-grid { margin-bottom: 50px; }
    .footer-brand p { font-size: 14px; }
    .footer-col h4 { font-size: 13px; margin-bottom: 20px; }
    .footer-col a { font-size: 13px; }
    .footer-bottom p { font-size: 12px; }
    
    .logo-icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
    .logo-text { font-size: 20px; }
    .contact-btn { padding: 12px 24px; font-size: 11px; }
    .lang-dropdown-btn { padding: 8px 14px; font-size: 11px; }
}

@media (max-width: 480px) {
    .header-inner { padding: 10px 16px; }
    .logo-icon { width: 36px; height: 36px; font-size: 16px; }
    .logo-text { font-size: 18px; }
    .contact-btn { padding: 10px 18px; font-size: 10px; letter-spacing: 1px; }
    
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 14px; }
    .hero-btn { padding: 14px 28px; font-size: 11px; letter-spacing: 1px; }
    .hero-arrows { display: none; }
    
    .feature-card { padding: 25px 20px; }
    .feature-icon { width: 60px; height: 60px; }
    .feature-card h3 { font-size: 16px; }
    .feature-card p { font-size: 13px; }
    
    .stat-box { padding: 30px 15px; }
    .stat-box .value { font-size: 30px; }
    .stat-box .label { font-size: 10px; }
    
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }
    
    .about-text { font-size: 14px; line-height: 1.8; }
    
    .footer-col h4 { font-size: 12px; }
    .footer-col a { font-size: 12px; }
}

/* Touch Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .hero-btn:active, .contact-btn:active { transform: scale(0.98); }
    .feature-card:active { transform: scale(0.98); }
    .prev-btn:active, .next-btn:active { transform: scale(0.95); }
}

/* Safe Area (iPhone X+) */
@supports (padding: max(0px)) {
    .header { padding-top: max(0px, env(safe-area-inset-top)); }
    .footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
}

/* Products Section */
.products-section { padding: 120px 50px; position: relative; z-index: 10; background: rgba(10,10,15,0.6); }
.products-inner { max-width: 1400px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.product-card { background: rgba(18,18,26,0.8); border: 1px solid rgba(212,175,55,0.1); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(212,175,55,0.3); box-shadow: 0 20px 60px rgba(212,175,55,0.15); }
.product-img { height: 220px; overflow: hidden; background: rgba(10,10,15,0.5); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.1); }
.product-info { padding: 24px; text-align: center; }
.product-info h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.product-btn { display: inline-block; padding: 12px 28px; background: transparent; border: 2px solid var(--gold); color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 30px; transition: all 0.3s ease; }
.product-btn:hover { background: var(--gold); color: var(--dark); }
.products-cta { text-align: center; margin-top: 50px; }
.cta-btn { display: inline-block; padding: 18px 50px; background: var(--gradient-gold); color: var(--dark); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 10px 40px rgba(212,175,55,0.3); }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(212,175,55,0.4); }
.no-products { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--text-muted); }

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .products-section { padding: 80px 20px; }
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-img { height: 180px; }
}
