/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #FFB236;
  --gold-dark: #E89E1E;
  --red: #CD2122;
  --red-dark: #A81B1C;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --near-black: #1A1A1A;
  --text-secondary: #555555;
  --text-light: #888888;
  --border-light: #E8E8E8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--near-black);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  position: relative;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--near-black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,178,54,0.35);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205,33,34,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--near-black);
}

.btn-outline-dark {
  background: transparent;
  color: var(--near-black);
  border: 2px solid var(--near-black);
}
.btn-outline-dark:hover {
  background: var(--near-black);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(4px); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--near-black);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red); }

/* ===== 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; text-transform: none !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: var(--red) !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(--red) !important; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold);
  color: var(--near-black) !important;
  border-radius: 4px;
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--near-black) !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: #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; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--near-black);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  background: #111;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  z-index: 2;
}

.hero-content .section-label {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards 0.9s;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.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);
  transform: scale(1.2);
}
.hero-dot:hover { border-color: var(--white); }

.hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 8%;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}
.hero-arrow svg { width: 20px; height: 20px; }

/* ========== ABOUT SECTION ========== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-text h2 span { color: var(--red); }

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,178,54,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-dark);
}

/* ========== STATS BAR ========== */
.stats {
  background: var(--near-black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== PRODUCTS SECTION ========== */
.products {
  padding: 120px 0;
  background: var(--off-white);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-desc {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #F5F5F3;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 24px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.product-card:hover .product-card-body {
  border-top-color: var(--gold);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.product-card:hover .product-card-title { color: var(--red); }

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.product-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.product-card:hover .product-card-link { color: var(--red); }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--near-black) 0%, #2A2A2A 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,54,0.08) 0%, transparent 70%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text h2 span { color: var(--gold); }

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ========== WHY EUROLOY ========== */
.advantages {
  padding: 120px 0;
  background: var(--white);
}

.advantages-header {
  text-align: center;
  margin-bottom: 64px;
}

.advantages-header .section-desc {
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-card {
  padding: 40px 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover::before { transform: scaleX(1); }

.advantage-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,178,54,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: var(--gold);
}

.advantage-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
  transition: color var(--transition);
}

.advantage-card:hover .advantage-icon svg { color: var(--near-black); }

.advantage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.contact-info h2 span { color: var(--red); }

.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,178,54,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--near-black);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,178,54,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--near-black);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-col ul a:hover {
  color: var(--gold);
  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: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-dark); }

.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(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--near-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.scroll-top svg { width: 22px; height: 22px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.open a:last-child { border: none; }

  .nav-links.open .nav-dropdown { flex-direction: column; width: 100%; }
  .nav-links.open .nav-dropdown-trigger {
    padding: 14px 0; border-bottom: 1px solid var(--border-light);
    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: 10px 0 10px 16px !important; border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem !important;
  }
  .nav-links.open .nav-dropdown-footer { border-top: none; margin: 0; padding: 0; }

  .nav-cta { white-space: nowrap; }

  .nav-links.open .lang-switch { margin-left: 0; margin-top: 8px; padding: 14px 0; border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 400px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item:nth-child(2)::after { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }
  .cta-buttons { justify-content: center; }

  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero-content { padding: 0 24px; }
  .hero-controls { left: 24px; }
  .hero-arrows { right: 24px; }

  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .advantages-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 32px 24px; }

  .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; }

  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item::after { display: none; }

  .nav-cta { white-space: nowrap; }
  .lang-switch { gap: 4px; font-size: 10px; }
  .lang-switch a { font-size: 10px; gap: 3px; }
  .lang-flag { width: 16px; height: 11px; }
  .lang-divider { display: none; }
}