/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red: #CD2122;
  --red-dark: #A91B1C;
  --gold: #FFB236;
  --gold-light: #FFD080;
  --blue: #2563A0;
  --blue-dark: #1B4A7A;
  --blue-light: #E8F0FA;
  --bg: #F4F4F2;
  --bg-warm: #FAFAF8;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --dark-mid: #2A2A2A;
  --grey-900: #111111;
  --grey-800: #333333;
  --grey-700: #444444;
  --grey-600: #555555;
  --grey-500: #777777;
  --grey-400: #999999;
  --grey-300: #CCCCCC;
  --grey-200: #E0E0E0;
  --grey-100: #EEEEEE;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--grey-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--grey-900); }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  padding: 12px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: all var(--transition); letter-spacing: 0.02em;
  text-transform: none; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  opacity: 0; transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red::after { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(205,33,34,0.35); }
.btn-white { background: var(--white); color: var(--grey-900); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--grey-900); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue::after { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,160,0.35); }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500;
  color: var(--grey-700); padding: 8px 16px; border-radius: 8px;
  transition: all var(--transition); position: relative;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); }

/* ===== 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:hover > .nav-dropdown-trigger { color: var(--blue); background: var(--blue-light); }
.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: 4px;
}
.nav-dropdown:hover > .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -4px; left: 0; right: 0; height: 4px; }
.nav-dropdown-menu a {
  display: block !important; position: static !important;
  padding: 10px 20px !important; font-size: 0.85rem !important;
  font-weight: 500 !important; letter-spacing: normal !important;
  color: var(--grey-700) !important; border-radius: 0 !important;
  background: none !important;
  transition: background 0.15s, color 0.15s !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--blue-light) !important; color: var(--blue) !important; }
.nav-dropdown-footer { border-top: 1px solid #eee; margin-top: 4px; padding-top: 4px; }
.nav-dropdown-footer a { font-weight: 600 !important; color: var(--blue) !important; }

/* 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: #2563A0; }
.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-cta {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  background: var(--red); color: var(--white); padding: 10px 24px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all var(--transition); margin-left: 12px;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(205,33,34,0.3); }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center;
  transition: background var(--transition);
}
.nav-mobile-btn:hover { background: var(--grey-100); }
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px; background: var(--grey-800);
  transition: all var(--transition); position: relative;
}
.nav-mobile-btn span::before, .nav-mobile-btn span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--grey-800); transition: all var(--transition);
}
.nav-mobile-btn span::before { top: -7px; }
.nav-mobile-btn span::after { top: 7px; }
.nav-mobile-btn.open span { background: transparent; }
.nav-mobile-btn.open span::before { top: 0; transform: rotate(45deg); }
.nav-mobile-btn.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
  z-index: 999; padding: 24px;
  transform: translateY(-10px); opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500;
  color: var(--grey-800); padding: 16px; border-radius: 12px;
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-menu .nav-cta {
  display: inline-block; text-align: center; margin: 16px 0 0 0; padding: 14px 28px;
}
.mobile-dropdown { width: 100%; }
.mobile-dropdown-trigger {
  display: flex !important; align-items: center; justify-content: space-between; width: 100%;
}
.mobile-dropdown-trigger svg { transition: transform 0.3s; flex-shrink: 0; }
.mobile-dropdown.open > .mobile-dropdown-trigger svg { transform: rotate(180deg); }
.mobile-dropdown-menu { display: none; padding-left: 16px; }
.mobile-dropdown.open > .mobile-dropdown-menu { display: block; }
.mobile-dropdown-menu a {
  font-size: 0.95rem !important; font-weight: 400 !important;
  padding: 10px 16px !important; color: var(--grey-600) !important;
}
.mobile-dropdown-menu a:hover { color: var(--blue) !important; }

/* ===== HERO CAROUSEL ===== */
.hero {
  margin-top: 72px; position: relative; overflow: hidden;
  background: var(--dark); height: 600px;
}
.hero-track {
  display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  min-width: 100%; height: 100%; position: relative; display: flex; align-items: center;
}
.hero-slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
}
.hero-slide-content {
  position: relative; z-index: 2; max-width: var(--max-width);
  margin: 0 auto; padding: 0 48px; width: 100%;
}
.hero-slide-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 16px;
  background: rgba(255,178,54,0.12); padding: 6px 14px; border-radius: 50px;
}
.hero-slide-title {
  font-size: 3.2rem; font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 16px; max-width: 640px;
}
.hero-slide-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 500px;
  margin-bottom: 32px; line-height: 1.7;
}
.hero-controls {
  position: absolute; bottom: 32px; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; transition: all var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 32px; border-radius: 6px; }
.hero-arrows {
  position: absolute; top: 50%; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: space-between; padding: 0 24px;
  transform: translateY(-50%); pointer-events: none;
}
.hero-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: var(--white); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all var(--transition); pointer-events: auto;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 10; height: 3px;
  background: var(--gold); transition: width 0.3s linear;
}

/* ===== PRODUCTS SECTION ===== */
.products { padding: 96px 0; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue); background: var(--blue-light); padding: 6px 16px;
  border-radius: 50px; margin-bottom: 16px;
}
.section-title { font-size: 2.4rem; font-weight: 700; margin-bottom: 12px; }
.section-desc { font-size: 1.05rem; color: var(--grey-500); max-width: 560px; margin: 0 auto; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--grey-100);
  position: relative;
}
.product-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,160,0.03), rgba(255,178,54,0.03));
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  margin-bottom: 8px; color: var(--grey-900);
}
.product-card-desc {
  font-size: 0.9rem; color: var(--grey-500); margin-bottom: 16px; line-height: 1.6; flex: 1;
}
.product-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: var(--blue); transition: all var(--transition);
}
.product-card-link svg { transition: transform var(--transition); }
.product-card-link:hover { color: var(--blue-dark); }
.product-card-link:hover svg { transform: translateX(4px); }

/* ===== ABOUT / STATS BANNER ===== */
.about-banner {
  padding: 96px 0; background: var(--white);
  position: relative; overflow: hidden;
}
.about-banner::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,160,0.04), transparent 70%);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--red); color: var(--white);
  font-family: var(--font-heading); font-weight: 700;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 1.1rem; line-height: 1.2;
  box-shadow: 0 8px 24px rgba(205,33,34,0.35);
}
.about-img-badge span { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.9; margin-top: 2px; }
.about-content {}
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-content p { color: var(--grey-600); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
.stat-item {
  text-align: center; padding: 20px 12px;
  background: var(--bg); border-radius: var(--radius); position: relative;
}
.stat-number {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.stat-number .accent { color: var(--gold); }
.stat-label {
  font-size: 0.8rem; color: var(--grey-500); margin-top: 6px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== HIGHLIGHT BANNER ===== */
.highlight {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  position: relative; overflow: hidden;
}
.highlight::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,178,54,0.08);
}
.highlight::after {
  content: ''; position: absolute; bottom: -40%; left: -5%; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(255,255,255,0.04);
}
.highlight-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.highlight-text h2 { font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.highlight-text p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 500px; }

/* ===== NEWS SECTION ===== */
.news { padding: 96px 0; background: var(--bg); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-light), var(--grey-100));
  position: relative; display: flex; align-items: center; justify-content: center;
}
.news-card-img .news-icon {
  width: 64px; height: 64px; color: var(--blue); opacity: 0.3;
}
.news-card-date {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 6px 12px; border-radius: 6px;
  color: var(--grey-700); box-shadow: var(--shadow-sm);
}
.news-card-body { padding: 24px; }
.news-card-category {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 8px;
}
.news-card-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  margin-bottom: 8px; line-height: 1.4; color: var(--grey-900);
  transition: color var(--transition);
}
.news-card:hover .news-card-title { color: var(--blue); }
.news-card-excerpt { font-size: 0.9rem; color: var(--grey-500); line-height: 1.6; }

/* ===== QUICK LINKS ===== */
.quicklinks { padding: 72px 0; background: var(--white); }
.quicklinks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.quicklink-item {
  text-align: center; padding: 36px 24px; border-radius: var(--radius);
  border: 1px solid var(--grey-200); transition: all var(--transition);
  cursor: pointer; position: relative; overflow: hidden;
}
.quicklink-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transition: transform var(--transition);
}
.quicklink-item:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.quicklink-item:hover::before { transform: scaleX(1); }
.quicklink-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light); transition: all var(--transition);
}
.quicklink-item:hover .quicklink-icon { background: var(--blue); }
.quicklink-icon svg { width: 26px; height: 26px; color: var(--blue); transition: color var(--transition); }
.quicklink-item:hover .quicklink-icon svg { color: var(--white); }
.quicklink-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  margin-bottom: 6px; color: var(--grey-900);
}
.quicklink-desc { font-size: 0.85rem; color: var(--grey-500); }

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-cta-inner {
  text-align: center; position: relative; z-index: 1;
}
.contact-cta h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 12px; }
.contact-cta p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7;
}
.contact-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #0F1923 0%, #1A1A2E 30%, #16213E 60%, #0F1923 100%);
  padding: 64px 0 0; color: rgba(255,255,255,0.7);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,160,0.4), rgba(255,178,54,0.3), transparent);
}
.footer::after {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: var(--gold); transform: translateX(3px); }
.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 {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.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 ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== LETTER DROP ANIMATION ===== */
.letter-drop { display: inline; }
.letter-drop .letter-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-40px) rotateX(45deg);
  filter: blur(4px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}
.letter-drop .letter-char.letter-space {
  width: 0.3em;
}
.letter-drop.animated .letter-char {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  filter: blur(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { height: 520px; }
  .hero-slide-title { font-size: 2.4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 300px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid .news-card:last-child { display: none; }
  .quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav > .container > .nav-cta { display: none; }
  .nav-inner { height: 64px; gap: 8px; }
  .nav-logo img { max-height: 30px; }
  .lang-switch { margin-left: auto; gap: 4px; font-size: 10px; }
  .lang-switch a { font-size: 10px; gap: 3px; }
  .lang-flag { width: 16px; height: 11px; }
  .lang-divider { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; white-space: nowrap; margin-left: 8px; }
  .nav-mobile-btn { display: flex; }
  .hero { margin-top: 64px; height: 480px; }
  .hero-slide-content { padding: 0 24px; }
  .hero-slide-title { font-size: 2rem; max-width: 100%; }
  .hero-slide-desc { font-size: 0.95rem; }
  .hero-arrows { display: none; }
  .section-title { font-size: 1.8rem; }
  .products { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-banner { padding: 64px 0; }
  .about-content h2 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-number { font-size: 1.5rem; }
  .highlight-inner { flex-direction: column; text-align: center; }
  .highlight-text p { margin: 0 auto; }
  .news { padding: 64px 0; }
  .news-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .news-grid .news-card:last-child { display: block; }
  .quicklinks { padding: 48px 0; }
  .quicklinks-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-cta { padding: 64px 0; }
  .contact-cta h2 { font-size: 1.8rem; }
  .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: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; gap: 6px; }
  .nav-cta { padding: 7px 12px; font-size: 11px; }
  .hero { height: 420px; }
  .hero-slide-title { font-size: 1.6rem; }
  .quicklinks-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-cta .btn-group { flex-direction: column; align-items: center; }
}