/* ═══ RESET & VARIABLES ═══ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --blue: #1A8FE3;
  --blue-dark: #1270B5;
  --dark: #0D0D0D;
  --off-white: #FAFAF8;
  --gray: #888;
  --gray-light: #eee;
  --radius: 16px;
  --radius-sm: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: #1a1a1a; background: var(--off-white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--blue); color: #fff; }

/* ═══ UTILITIES ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { padding: 100px 0; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.section-dark::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 10% 90%,rgba(26,143,227,0.08) 0%,transparent 50%); }
.section-dark .container { position: relative; z-index: 1; }
.bg-white { background: #fff; }
.white { color: #fff; }
.white-muted { color: rgba(255,255,255,0.5) !important; }

.section-label { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: 1px; margin-bottom: 20px; }
.section-subtitle { font-size: 16px; color: var(--gray); max-width: 540px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-in { animation: fadeIn 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 100px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,143,227,0.3); }
.btn-outline { background: transparent; color: #1a1a1a; border: 2px solid #ddd; }
.btn-outline:hover { background: #1a1a1a; color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #1a1a1a; border: 2px solid #ccc; padding: 16px 36px; border-radius: 100px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; cursor: pointer; transition: all 0.3s; }
.btn-outline-light:hover { background: #1a1a1a; color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ═══ NAVBAR ═══ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all 0.4s; background: transparent; }
.navbar.scrolled { background: rgba(250,250,248,0.95); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.logo-t { font-family: 'Bebas Neue', sans-serif; font-size: 36px; font-weight: 700; color: var(--dark); line-height: 1; }
.logo-dm { font-family: 'Bebas Neue', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue); line-height: 1; }
.logo-trade { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 300; letter-spacing: 6px; color: var(--dark); margin-left: 8px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: #555; transition: color 0.3s; }
.nav-links a:hover { color: var(--blue); }
.lang-switch { display: flex; gap: 4px; margin-left: 8px; padding-left: 16px; border-left: 1px solid #ddd; }
.lang-btn { font-size: 11px !important; font-weight: 700 !important; padding: 4px 8px !important; border-radius: 4px; color: #bbb !important; transition: all 0.3s; }
.lang-btn:hover { color: var(--blue) !important; background: rgba(26,143,227,0.05); }
.lang-btn.active { color: var(--blue) !important; background: rgba(26,143,227,0.1); }
.nav-cta { padding: 10px 28px !important; border-radius: 100px !important; background: var(--blue) !important; color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }

.mobile-menu { position: fixed; inset: 0; background: rgba(255,255,255,0.98); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: #1a1a1a; letter-spacing: 2px; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #1a1a1a; font-size: 32px; cursor: pointer; }

/* ═══ HERO ═══ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #f0f4f8 0%, #e8edf3 50%, #dce4ed 100%); }
.hero-decor-1 { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(26,143,227,0.08) 0%, transparent 70%); }
.hero-decor-2 { position: absolute; bottom: -10%; left: -5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(26,143,227,0.06) 0%, transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-top: 100px; padding-bottom: 60px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(26,143,227,0.1); border: 1px solid rgba(26,143,227,0.2); border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: inline-block; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 76px); line-height: 0.95; letter-spacing: 2px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-desc { font-size: 17px; color: #666; max-width: 480px; line-height: 1.8; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-card { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-float { position: absolute; bottom: -24px; left: -24px; background: var(--blue); color: #fff; padding: 20px 28px; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }
.stat-label { font-size: 13px; font-weight: 500; opacity: 0.85; }

/* ═══ STATS ═══ */
.stats-bar { background: var(--blue); padding: 48px 0; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { color: #fff; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; }
.stat-text { font-size: 13px; font-weight: 500; opacity: 0.8; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-main { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 80px rgba(0,0,0,0.08); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-images { position: relative; }
.about-experience { position: absolute; top: -20px; right: 30px; background: var(--dark); color: #fff; padding: 20px 28px; border-radius: 16px; text-align: center; box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.exp-number { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--blue); line-height: 1; }
.exp-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; }
.about-text p { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-feat { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--gray-light); font-size: 13px; font-weight: 600; transition: all 0.3s; }
.about-feat:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,143,227,0.1); }
.feat-icon { width: 28px; height: 28px; background: rgba(26,143,227,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 12px; flex-shrink: 0; }

/* ═══ WHY ═══ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px 24px; transition: all 0.4s; }
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(26,143,227,0.3); transform: translateY(-6px); }
.why-icon { font-size: 28px; margin-bottom: 18px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ═══ BRANDS ═══ */
.brands-bar { padding: 44px 0; background: #fff; border-bottom: 1px solid var(--gray-light); }
.brands-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ccc; margin-bottom: 24px; }
.brands-list { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.brands-list span { font-size: 15px; font-weight: 700; color: #ccc; letter-spacing: 1px; }

/* ═══ OFFER ═══ */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-light); transition: all 0.4s; display: block; color: inherit; text-decoration: none; cursor: pointer; }
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: transparent; }
.offer-card-image { aspect-ratio: 16/10; overflow: hidden; position: relative; background: #e8e8e3; }
.offer-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.offer-card:hover .offer-card-image img { transform: scale(1.05); }
.offer-card-tag { position: absolute; top: 12px; left: 12px; padding: 5px 14px; background: var(--blue); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.offer-card-body { padding: 22px; }
.offer-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.offer-card-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.offer-price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--blue); letter-spacing: 1px; }
.offer-price small { font-family: 'Outfit', sans-serif; font-size: 12px; color: #aaa; font-weight: 500; }
.offer-more { text-align: center; margin-top: 48px; }
.loading-msg { grid-column: 1/-1; text-align: center; padding: 40px; color: #aaa; }

/* ═══ ADBLUE ═══ */
.adblue-section { background: #f0f4f8; }
.adblue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.adblue-list { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.adblue-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: #555; }
.adblue-list .check { width: 28px; height: 28px; background: rgba(26,143,227,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 12px; flex-shrink: 0; }
.adblue-visual { display: flex; align-items: center; justify-content: center; }
.noxy-card { background: #fff; border-radius: 20px; padding: 56px 72px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.06); border: 1px solid var(--gray-light); }
.noxy-logo { font-size: 56px; font-weight: 900; color: var(--blue); letter-spacing: -2px; line-height: 1; }
.noxy-logo span { color: #8BC53F; }
.noxy-sub { font-size: 24px; font-weight: 700; color: #1a2a5e; margin-top: 4px; letter-spacing: 4px; }
.noxy-card p { margin-top: 14px; font-size: 13px; color: #aaa; }

/* ═══ TEAM ═══ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 820px; margin: 0 auto; }
.team-card { text-align: center; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 4px solid rgba(26,143,227,0.2); transition: border-color 0.4s, box-shadow 0.4s; }
.team-card:hover .team-avatar { border-color: var(--blue); box-shadow: 0 8px 30px rgba(26,143,227,0.15); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar span { font-family: 'Bebas Neue', sans-serif; font-size: 36px; }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--blue); }
.team-card p { font-size: 13px; color: var(--gray); }

/* ═══ REVIEWS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-light); transition: all 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { font-size: 15px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.review-author strong { font-size: 14px; display: block; }
.review-author span { font-size: 12px; color: var(--gray); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--off-white); border-radius: 14px; border: 1px solid var(--gray-light); overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--blue); }
.faq-item.open { border-color: var(--blue); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 600; gap: 16px; background: none; border: none; width: 100%; text-align: left; font-family: 'Outfit', sans-serif; color: #1a1a1a; }
.faq-icon { color: var(--blue); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: #666; line-height: 1.7; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(26,143,227,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 14px; color: rgba(255,255,255,0.5); }
.contact-item a:hover { color: var(--blue); }
.contact-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px; }
.contact-form-wrap h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin-bottom: 24px; letter-spacing: 1px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 100px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ═══ FOOTER ═══ */
.footer { background: #080808; color: #fff; padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-brand .logo-img { height: 32px; filter: brightness(0) invert(1); }
.logo-img { height: 36px; width: auto; filter: contrast(1.2); }
.footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer ul li { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer ul a:hover { color: var(--blue); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom a:hover { color: var(--blue); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .adblue-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section, .section-dark { padding: 72px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .noxy-card { padding: 40px; }
  .brands-list { gap: 24px; }
}
