/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FDFCFA;
  color: #101010;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section-sep { width: 100%; height: 1px; background: #E0D9CE; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #1A1A1A;
  color: #B8B0A2;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #B8B0A2; transition: color 0.2s; }
.top-bar a:hover { color: #FFB236; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-right a { display: flex; align-items: center; gap: 6px; }

/* ===== NAVIGATION ===== */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #E8E2D8;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CD2122;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #CD2122; }
.nav-links a:hover::after { width: 100%; }

/* ===== Nav Dropdown ===== */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex !important; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-trigger svg { width: 10px; height: 6px; transition: transform 0.3s; flex-shrink: 0; }
.nav-dropdown:hover > .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 230px; background: #fff; border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12); padding: 8px 0;
  z-index: 1000; margin-top: 10px;
}
.nav-dropdown:hover > .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown-menu a {
  display: block !important; position: static !important;
  padding: 10px 20px !important; font-size: 0.88rem !important;
  font-weight: 500 !important; letter-spacing: normal !important;
  color: #333 !important; transition: background 0.15s, color 0.15s !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: #f7f6f4 !important; color: #CD2122 !important; }
.nav-dropdown-footer { border-top: 1px solid #eee; margin-top: 4px; padding-top: 4px; }
.nav-dropdown-footer a { font-weight: 600 !important; color: #CD2122 !important; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: #CD2122;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: #B51C1D; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(205,33,34,0.3); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }

/* Language Switcher */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0; white-space: nowrap; }
.lang-switch a { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: #888; text-decoration: none; transition: color 0.3s; letter-spacing: 0.5px; }
.lang-switch a.active { color: #1A1A1A; font-weight: 700; }
.lang-switch a:hover { color: #CD2122; }
.lang-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; border: 1px solid rgba(0,0,0,0.1); vertical-align: middle; flex-shrink: 0; }
.lang-divider { color: #ccc; font-size: 12px; }
.nav-hamburger span { width: 24px; height: 2px; background: #333; transition: all 0.3s; display: block; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #101010;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 60%, rgba(205,33,34,0.08) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,178,54,0.15);
  border: 1px solid rgba(255,178,54,0.3);
  color: #FFB236;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(42px, 5.5vw, 76px);
  color: #fff;
  max-width: 750px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-title span { color: #FFB236; }
.hero-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: #CD2122;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: #B51C1D; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(205,33,34,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Hero pagination */
.hero-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.hero-dot.active { background: #FFB236; border-color: rgba(255,178,54,0.4); transform: scale(1.2); }
.hero-dot:hover { background: rgba(255,255,255,0.6); }

/* Hero progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 5;
}
.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #CD2122, #FFB236);
  width: 0;
  transition: width 0.05s linear;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 120px 0;
  background: #FDFCFA;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(135deg, #CD2122, #FFB236);
  opacity: 0.12;
  z-index: -1;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CD2122;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: #CD2122;
}
.about-title {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 24px;
  color: #101010;
}
.about-title span { color: #CD2122; }
.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #E0D9CE;
}
.stat-item {}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #101010;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-number span { color: #CD2122; font-weight: 700; }
.stat-label {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 120px 0;
  background: #F5F0E8;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CD2122;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  justify-content: center;
}
.section-label::before, .section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #CD2122;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  margin-bottom: 20px;
  color: #101010;
}
.section-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E2D8;
  transition: all 0.4s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: #CD2122;
}
.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #F9F6F1;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #CD2122;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-info {
  padding: 28px 24px;
}
.product-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #101010;
  letter-spacing: -0.01em;
}
.product-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CD2122;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}
.product-link:hover { gap: 14px; }
.product-link svg { transition: transform 0.3s; }
.product-card:hover .product-link svg { transform: translateX(4px); }

/* ===== INSIGHTS BANNER ===== */
.insights-banner {
  padding: 100px 0;
  background: #FDFCFA;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.insight-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E8E2D8;
  transition: all 0.3s ease;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.insight-card.featured {
  grid-row: 1 / 3;
}
.insight-card.featured .insight-image { height: 300px; }
.insight-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.insight-image img, .insight-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.insight-body { padding: 28px 24px; }
.insight-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #CD2122;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.insight-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101010;
  line-height: 1.35;
}
.insight-card.featured .insight-title { font-size: 26px; }
.insight-excerpt {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}
.insight-meta {
  font-size: 13px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: #F5F0E8;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-title {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 20px;
  color: #101010;
}
.cta-text {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-features { display: flex; flex-direction: column; gap: 20px; }
.cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cta-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #E8E2D8;
}
.cta-feature-icon svg { color: #CD2122; }
.cta-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-feature-text p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.cta-right {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid #E8E2D8;
}
.cta-right h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.cta-right p {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #E0D9CE;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #FDFCFA;
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #CD2122;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  background: #CD2122;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}
.btn-submit:hover { background: #B51C1D; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(205,33,34,0.3); }

/* ===== CONTACT BAR ===== */
.contact-bar {
  padding: 80px 0;
  background: #FDFCFA;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.contact-item {
  text-align: center;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid #E8E2D8;
  background: #fff;
  transition: all 0.3s;
}
.contact-item:hover { border-color: #CD2122; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon svg { color: #CD2122; }
.contact-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-item p {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
}
.contact-item a { color: #CD2122; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: #B8B0A2;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p { font-size: 15px; line-height: 1.7; color: #888; max-width: 300px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: #888;
}
.footer-social a:hover { background: #CD2122; color: #fff; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-size: 14px;
  color: #888;
  transition: all 0.25s;
  gap: 6px;
}
.footer-col a:hover { color: #FFB236; padding-left: 4px; }
.footer-app-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-app-download h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.footer-app-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-app-badges a {
  display: inline-flex;
  transition: opacity 0.3s;
}
.footer-app-badges a:hover { opacity: 0.8; }
.footer-app-badges img { height: 40px; width: auto; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 13px;
  color: #666;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #666; transition: color 0.25s; }
.footer-bottom-links a:hover { color: #FFB236; }

/* Footer Credit */
.footer-credit { text-align: center; padding: 20px 0 0; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #888; }
.footer-credit a { color: #888; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.footer-credit a:hover { color: #FFB236; }
.footer-credit img { height: 14px; opacity: 0.7; transition: opacity 0.3s; }
.footer-credit a:hover img { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #CD2122;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(205,33,34,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #B51C1D; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.featured { grid-row: auto; grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .top-bar { display: none; }
  .navbar .container { height: 68px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 32px; width: auto; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .lang-switch { gap: 4px; font-size: 10px; margin-left: 8px; }
  .lang-switch a { font-size: 10px; gap: 3px; }
  .lang-flag { width: 16px; height: 11px; }
  .lang-divider { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #E8E2D8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open .nav-dropdown { flex-direction: column; width: 100%; }
  .nav-links.open .nav-dropdown-trigger { justify-content: space-between; width: 100%; }
  .nav-links.open .nav-dropdown-menu {
    position: static !important; transform: none !important;
    opacity: 1 !important; pointer-events: auto !important;
    box-shadow: none !important; border-radius: 0 !important;
    min-width: auto !important; margin: 0 !important; padding: 0 !important;
    display: none; background: transparent !important;
  }
  .nav-links.open .nav-dropdown-menu::before { display: none !important; }
  .nav-links.open .nav-dropdown.open > .nav-dropdown-menu { display: block; }
  .nav-links.open .nav-dropdown-menu a { padding: 8px 0 8px 16px !important; font-size: 0.85rem !important; }
  .nav-links.open .nav-dropdown-footer { border-top: none; margin: 0; padding: 0; }
  .hero { height: 70vh; min-height: 500px; }
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 350px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-number { font-size: 32px; }
  .products { padding: 80px 0; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .insights-banner { padding: 80px 0; }
  .insights-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-right { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-app-download { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}