*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2440;
    --primary-light: #2a5a8c;
    --accent: #e8a838;
    --accent-hover: #d49520;
    --dark: #0d1b2a;
    --darker: #070f1a;
    --text: #4a5568;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #0d1b2a;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--bg); overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; background: var(--accent); color: #fff; padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-badge.light { background: rgba(255,255,255,0.2); }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--dark); font-weight: 800; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: var(--transition); text-align: center; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,168,56,0.4); }
.btn-secondary { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* TOP BAR */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 0.85rem; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-contact { display: flex; flex-wrap: wrap; gap: 20px; }
.top-bar-contact a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); }
.top-bar-contact a:hover { color: var(--accent); }
.top-bar-contact i { color: var(--accent); font-size: 0.75rem; }
.top-bar-social a { color: rgba(255,255,255,0.8); width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.top-bar-social a:hover { background: var(--accent); color: #fff; }

/* HEADER */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; transition: var(--transition); }
.logo img:hover { transform: scale(1.03); }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li > a { padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; color: var(--text); transition: var(--transition); position: relative; letter-spacing: 0.2px; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--primary); background: rgba(26,58,92,0.07); }
.nav-list > li > a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: var(--accent); border-radius: 2px; }
.nav-list > li > a i.fa-chevron-down { font-size: 0.65rem; margin-left: 4px; transition: var(--transition); }
.dropdown:hover > a i.fa-chevron-down { transform: rotate(180deg); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 10px 22px !important; border-radius: 50px !important; box-shadow: 0 4px 12px rgba(232,168,56,0.3); }
.nav-cta:hover { background: var(--accent-hover) !important; color: #fff !important; transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(232,168,56,0.4) !important; }
.nav-cta.active::after { display: none !important; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px); background: #fff; min-width: 220px; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); padding: 10px 8px; opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); z-index: 100; border: 1px solid rgba(0,0,0,0.05); }
.dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; border-left: 1px solid rgba(0,0,0,0.05); border-top: 1px solid rgba(0,0,0,0.05); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 10px; color: var(--text); font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.dropdown-menu li a:hover { background: linear-gradient(135deg, rgba(232,168,56,0.1), rgba(232,168,56,0.04)); color: var(--accent); padding-left: 22px; }
.dropdown-menu li a i { width: 20px; color: var(--accent); font-size: 0.8rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 3px; transition: var(--transition); }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: linear-gradient(160deg, #0a1628 0%, var(--primary-dark) 40%, #1a3a5c 100%); overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,22,40,0.85) 0%, rgba(15,36,64,0.7) 50%, rgba(26,58,92,0.6) 100%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.06) 0%, transparent 60%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-particles span { position: absolute; width: 4px; height: 4px; background: rgba(232,168,56,0.3); border-radius: 50%; animation: float 8s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; } 50% { transform: translateY(-40px) scale(1.5); opacity: 0.8; } }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 900px; }
.hero-badge-group { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 8px 22px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0; border: 1px solid rgba(255,255,255,0.1); }
.hero-badge i { color: var(--accent); font-size: 0.75rem; }
.hero-title { font-size: clamp(2.5rem, 9vw, 6rem); font-weight: 900; line-height: 1.05; margin-bottom: 8px; letter-spacing: -1px; }
.hero-title-accent { display: block; background: linear-gradient(135deg, #fff 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 650px; margin: 16px auto 30px; line-height: 1.8; }
.hero-text strong { color: var(--accent); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 35px; }
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.hero-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 45px; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.hero-quick-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.quick-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.85rem; padding: 8px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); background: rgba(255,255,255,0.03); }
.quick-link:hover { color: #fff; border-color: rgba(232,168,56,0.4); background: rgba(232,168,56,0.08); transform: translateY(-1px); }
.quick-link i { color: var(--accent); }

/* ABOUT */
.about-section { padding: 60px 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.about-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 40px 30px; text-align: center; transition: var(--transition); }
.about-card:hover { transform: translateY(-5px); border-color: var(--accent); background: rgba(232,168,56,0.05); }
.about-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(232,168,56,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.75rem; color: var(--accent); }
.about-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.about-card p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.95rem; }
.about-card .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.about-card .btn-outline:hover { background: var(--accent); border-color: var(--accent); }

/* SERVICES */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius); padding: 35px 30px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--accent); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); border-color: transparent; }
.service-card:hover::before { height: 100%; }
.service-number { font-size: 3rem; font-weight: 900; color: rgba(26,58,92,0.06); line-height: 1; margin-bottom: 10px; }
.service-card h3 { font-size: 1.2rem; color: var(--dark); font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }

/* EHANDEL */
.ehandel-section { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); text-align: center; color: #fff; }
.ehandel-content { max-width: 650px; margin: 0 auto; }
.ehandel-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.ehandel-content p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 1.1rem; }

/* REVIEWS */
.reviews-section { background: var(--bg-alt); }
.reviews-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 20px 0 30px; scrollbar-width: none; }
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card { min-width: 320px; flex: 0 0 auto; scroll-snap-align: start; background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: center; }
.review-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--accent); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-stars { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { color: var(--dark); font-size: 0.9rem; }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.reviews-dots span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e0; cursor: pointer; transition: var(--transition); }
.reviews-dots span.active { background: var(--accent); width: 30px; border-radius: 5px; }

/* INFO */
.info-section { background: var(--bg); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.info-card { text-align: center; padding: 40px 30px; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid #edf2f7; transition: var(--transition); }
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.info-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.info-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-top: 16px; }
.footer-logos { display: flex; gap: 15px; align-items: center; margin-bottom: 10px; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 30px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-form { display: flex; flex-direction: column; gap: 12px; }
.footer-form input, .footer-form textarea { padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); color: #fff; font-family: var(--font); font-size: 0.9rem; transition: var(--transition); }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus, .footer-form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.footer-form button { align-self: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 40px; padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--accent); color: #fff; border: none; font-size: 1.2rem; cursor: pointer; box-shadow: 0 4px 15px rgba(232,168,56,0.4); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    body { overscroll-behavior: none; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .nav { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; height: 100dvh; background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.1); padding: 80px 24px 30px; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s; z-index: 999; overflow-y: auto; visibility: hidden; overscroll-behavior: contain; -webkit-overflow-scrolling: auto; }
    .nav.open { transform: translateX(0); visibility: visible; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
    .nav-overlay.active { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list > li > a { display: block; padding: 14px 16px; border-radius: 10px; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
    .nav-list > li:last-child > a { border-bottom: none; }
    .nav-list > li > a.active::after { display: none; }
    .dropdown-menu { position: static !important; transform: none !important; box-shadow: none !important; border: none !important; padding: 0 0 0 12px; margin: 0 0 8px 0; opacity: 1 !important; visibility: visible !important; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; border-radius: 0; background: transparent !important; }
    .dropdown:hover .dropdown-menu { opacity: 1 !important; visibility: visible !important; transform: none !important; }
    .dropdown-menu::before { display: none; }
    .dropdown.active .dropdown-menu { max-height: 300px; }
    .dropdown-menu li a { padding: 12px 16px; font-size: 0.9rem; color: var(--text-light); }
    .dropdown-menu li a:hover { background: rgba(232,168,56,0.06); color: var(--accent); padding-left: 22px; }
    .top-bar-contact { width: 100%; justify-content: center; font-size: 0.8rem; gap: 12px; }
    .top-bar-social { display: none; }
    .hero { min-height: 80vh; padding: 20px 0; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 1.4rem; }
    .hero-text { font-size: 1rem; }
    .hero-quick-links { gap: 8px; }
    .quick-link { font-size: 0.8rem; padding: 6px 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .review-card { min-width: 280px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .section { padding: 50px 0; }
    .preloader { min-height: 100vh; min-height: 100dvh; }
    .preloader-gauge { width: 100px; height: 60px; }
    .preloader-logo { height: 45px; }
    .preloader-bar { width: 160px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 16px; }
    .hero-stat-number { font-size: 1.2rem; }
    .hero-quick-links { flex-direction: column; align-items: center; gap: 8px; }
    .btn { width: 100%; justify-content: center; }
    .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
}

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* PRELOADER */
.preloader { position: fixed; inset: 0; background: #fff; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { height: 60px; width: auto; margin-bottom: 20px; }
.preloader-gauge { width: 120px; height: 70px; margin: 0 auto 20px; }
.preloader-gauge svg { width: 100%; height: 100%; }
.preloader-needle { transform-origin: 60px 55px; animation: needleSweep 1.5s ease-in-out forwards; }
.preloader-arc { animation: arcFill 1.5s ease-in-out forwards; }
@keyframes needleSweep { 0% { transform: rotate(-90deg); } 100% { transform: rotate(90deg); } }
@keyframes arcFill { 0% { stroke-dashoffset: 157; } 100% { stroke-dashoffset: 0; } }
.preloader-bar { width: 200px; height: 4px; background: #e2e8f0; border-radius: 4px; overflow: hidden; margin: 0 auto; }
.preloader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), #f5c842); border-radius: 4px; animation: preloaderFill 1.5s ease-in-out forwards; }
@keyframes preloaderFill { 0% { width: 0%; } 100% { width: 100%; } }

/* PERFORMANCE */
.hero-slide { will-change: opacity; }
.hero-slider { contain: layout style; }
.service-card, .about-card, .info-card, .pricing-card { contain: layout style paint; }
.section { content-visibility: auto; contain-intrinsic-size: 0 500px; }
.reviews-section, .info-section, .ehandel-section { content-visibility: auto; contain-intrinsic-size: 0 400px; }
.footer { contain: layout style; }
img { content-visibility: auto; contain-intrinsic-size: auto 200px; }
.hero-badge, .section-badge, .btn { will-change: transform; }
.header { will-change: transform; }
.preloader { will-change: opacity; }
