/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #fff; color: #1a1a2e; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ===== PARTICLES ===== */
.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.particles span {
  position: absolute; display: block; border-radius: 50%;
  animation: particleFall linear infinite;
  opacity: 0;
}
.particles span:nth-child(1)  { left:5%;  width:6px;  height:6px;  background:#ffd700; animation-duration:12s; animation-delay:0s;   }
.particles span:nth-child(2)  { left:15%; width:4px;  height:4px;  background:#c0392b; animation-duration:16s; animation-delay:2s;   }
.particles span:nth-child(3)  { left:25%; width:8px;  height:8px;  background:#ffd700; animation-duration:10s; animation-delay:4s;   }
.particles span:nth-child(4)  { left:35%; width:5px;  height:5px;  background:#4caf50; animation-duration:14s; animation-delay:1s;   }
.particles span:nth-child(5)  { left:45%; width:6px;  height:6px;  background:#ffd700; animation-duration:18s; animation-delay:6s;   }
.particles span:nth-child(6)  { left:55%; width:4px;  height:4px;  background:#c0392b; animation-duration:13s; animation-delay:3s;   }
.particles span:nth-child(7)  { left:65%; width:7px;  height:7px;  background:#ffd700; animation-duration:11s; animation-delay:5s;   }
.particles span:nth-child(8)  { left:72%; width:5px;  height:5px;  background:#4caf50; animation-duration:17s; animation-delay:7s;   }
.particles span:nth-child(9)  { left:80%; width:6px;  height:6px;  background:#ffd700; animation-duration:15s; animation-delay:2.5s; }
.particles span:nth-child(10) { left:88%; width:4px;  height:4px;  background:#c0392b; animation-duration:12s; animation-delay:8s;   }
.particles span:nth-child(11) { left:10%; width:5px;  height:5px;  background:#ffd700; animation-duration:20s; animation-delay:9s;   }
.particles span:nth-child(12) { left:30%; width:6px;  height:6px;  background:#4caf50; animation-duration:14s; animation-delay:11s;  }
.particles span:nth-child(13) { left:50%; width:4px;  height:4px;  background:#ffd700; animation-duration:16s; animation-delay:0.5s; }
.particles span:nth-child(14) { left:70%; width:7px;  height:7px;  background:#c0392b; animation-duration:13s; animation-delay:4.5s; }
.particles span:nth-child(15) { left:92%; width:5px;  height:5px;  background:#ffd700; animation-duration:18s; animation-delay:10s;  }

@keyframes particleFall {
  0%   { top: -10px; opacity: 0; transform: rotate(0deg); }
  5%   { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { top: 110vh; opacity: 0; transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6%;
  background: rgba(139,0,0,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(139,0,0,0.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  background: #fff;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name {
  display: block; font-size: 1.35rem; font-weight: 900;
  color: #fff; letter-spacing: -0.3px; line-height: 1.1;
}
.brand-tagline {
  display: block; font-size: 0.6rem; font-weight: 600;
  color: rgba(255,215,0,0.85); letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: #ffd700; border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover { color: #ffd700; }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-btn span {
  display: block; width: 24px; height: 2.5px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: #7b0000; padding: 0;
  overflow: hidden; max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s;
  position: sticky; top: 72px; z-index: 999;
}
.mobile-menu.open { display: flex; max-height: 300px; padding: 8px 0 16px; }
.mobile-menu a {
  color: #fff; font-size: 0.95rem; font-weight: 600;
  padding: 12px 6%; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh;
  background: linear-gradient(135deg, #6b0000 0%, #8B0000 40%, #a93226 70%, #7b0000 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 6% 80px; overflow: hidden; text-align: center;
}
.hero-bg-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-bg-svg svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700; font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero-badge svg { width: 12px; height: 12px; fill: #ffd700; }
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.hero-highlight {
  display: block;
  background: linear-gradient(90deg, #ffd700, #ffb300, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #7b0000; padding: 14px 30px; border-radius: 30px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(255,215,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary svg { width: 17px; height: 17px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,215,0,0.55); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 30px; border-radius: 30px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Decorative rings */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,215,0,0.15);
  animation: ringPulse 4s ease-in-out infinite;
}
.deco-ring-1 { width: 300px; height: 300px; top: -80px; right: 5%; animation-delay: 0s; }
.deco-ring-2 { width: 200px; height: 200px; bottom: 10%; left: 3%; animation-delay: 1.5s; }
.deco-ring-3 { width: 150px; height: 150px; top: 20%; left: 8%; animation-delay: 3s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ===== SECTION SHARED ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light .section-label { background: rgba(255,255,255,0.15); color: #ffd700; border-color: rgba(255,215,0,0.3); }
.section-label {
  display: inline-block;
  background: rgba(139,0,0,0.08); color: #8B0000;
  border: 1px solid rgba(139,0,0,0.2);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 5px 16px; border-radius: 20px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: #1a1a2e; letter-spacing: -0.5px; margin-bottom: 10px;
}
.section-head p { font-size: 1rem; color: #6b7280; }

/* ===== COMPANIES SECTION ===== */
.companies {
  padding: 96px 6%;
  background: linear-gradient(180deg, #fff 0%, #fdf5f5 50%, #fff 100%);
  position: relative; z-index: 1;
}

.brands-row {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap;
}

/* ── Brand Card ── */
.brand-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; cursor: pointer;
  background: #fff;
  border-radius: 28px;
  padding: 40px 32px 36px;
  width: 300px;
  border: 1.5px solid #f0e0e0;
  box-shadow: 0 8px 40px rgba(139,0,0,0.07);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
  text-align: center;
}
.brand-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 28px 28px 0 0;
  transition: height 0.3s;
}
.brand-card[data-color="green"]::before { background: linear-gradient(90deg, #1b5e20, #4caf50); }
.brand-card[data-color="red"]::before   { background: linear-gradient(90deg, #7b0000, #c0392b); }
.brand-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(139,0,0,0.16);
  border-color: transparent;
}
.brand-card[data-color="green"]:hover { box-shadow: 0 24px 64px rgba(27,94,32,0.2); }
.brand-card[data-color="red"]:hover   { box-shadow: 0 24px 64px rgba(139,0,0,0.22); }
.brand-card:hover::before { height: 6px; }

/* Circle wrap */
.brand-circle-wrap {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.brand-circle {
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.brand-card:hover .brand-circle {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.brand-circle-inner {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.brand-icon { width: 100%; height: 100%; display: block; }

/* Pulse ring */
.brand-pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid transparent; z-index: 1;
  animation: pulsering 2.5s ease-in-out infinite;
}
.brand-pulse-green { border-color: rgba(76,175,80,0.4); }
.brand-pulse-red   { border-color: rgba(192,57,43,0.4); }
@keyframes pulsering {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 0.3; }
}

/* Brand info */
.brand-info { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.brand-info h3 {
  font-size: 1.3rem; font-weight: 900; color: #1a1a2e; letter-spacing: -0.3px;
}
.brand-info p { font-size: 0.88rem; color: #6b7280; line-height: 1.7; max-width: 220px; }
.brand-tags {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.brand-tags span {
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 12px;
  background: #f8f8f8; color: #444; border: 1px solid #eee;
}
.brand-card[data-color="green"] .brand-tags span { background: #f0fdf4; color: #2e7d32; border-color: #bbf7d0; }
.brand-card[data-color="red"]   .brand-tags span { background: #fff5f5; color: #8B0000; border-color: #fecaca; }

.brand-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.85rem; font-weight: 800;
  padding: 9px 22px; border-radius: 20px;
  margin-top: 4px; transition: all 0.2s;
}
.brand-card[data-color="green"] .brand-link {
  background: linear-gradient(135deg, #1b5e20, #4caf50);
  color: #fff; box-shadow: 0 4px 14px rgba(27,94,32,0.3);
}
.brand-card[data-color="red"] .brand-link {
  background: linear-gradient(135deg, #7b0000, #c0392b);
  color: #fff; box-shadow: 0 4px 14px rgba(139,0,0,0.3);
}
.brand-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.brand-card:hover .brand-link svg { transform: translateX(3px); }

/* Coming soon */
.coming-soon {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 48px;
  font-size: 0.85rem; font-weight: 600; color: #9ca3af;
  background: #f9fafb; border: 1.5px dashed #e5e7eb;
  border-radius: 20px; padding: 12px 28px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.coming-soon svg { width: 15px; height: 15px; }

/* ===== ABOUT ===== */
.about {
  padding: 96px 6%;
  background: #fff;
  position: relative; z-index: 1;
}
.about-inner {
  display: flex; align-items: center; gap: 64px;
  max-width: 1000px; margin: 0 auto;
}
.about-visual {
  flex-shrink: 0; position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.about-big-circle {
  width: 160px; height: 160px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid rgba(139,0,0,0.2);
  box-shadow: 0 16px 48px rgba(139,0,0,0.25);
  animation: floatY 4s ease-in-out infinite;
  position: relative; z-index: 2;
  background: #fff;
}
.about-big-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.about-orbit {
  position: absolute; inset: 0;
  animation: orbitSpin 10s linear infinite;
}
.orbit-dot {
  position: absolute; font-size: 1.4rem;
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.orbit-dot-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot-2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot-3 { top: 50%; right: 0; transform: translateY(-50%); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.about-text { flex: 1; }
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900;
  color: #1a1a2e; margin-bottom: 16px; letter-spacing: -0.5px;
}
.about-text p {
  font-size: 1rem; color: #4b5563; line-height: 1.85; margin-bottom: 32px;
}
.about-text strong { color: #8B0000; }
.about-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1.5px solid #fecaca; border-radius: 16px;
  padding: 18px 24px; min-width: 90px;
  box-shadow: 0 4px 16px rgba(139,0,0,0.07);
}
.stat-num {
  font-size: 1.8rem; font-weight: 900; color: #8B0000; line-height: 1;
}
.stat-label { font-size: 0.72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* ===== CONTACT ===== */
.contact {
  padding: 96px 6%;
  background: linear-gradient(135deg, #7b0000 0%, #8B0000 50%, #a93226 100%);
  position: relative; z-index: 1;
}
.contact-cards {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 28px 32px;
  min-width: 200px; text-align: center;
  transition: all 0.25s; backdrop-filter: blur(8px);
}
.contact-card:hover {
  background: rgba(255,255,255,0.15); border-color: rgba(255,215,0,0.5);
  transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.contact-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,215,0,0.8); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 0.9rem; font-weight: 700; color: #fff; }

/* ===== FOOTER ===== */
.footer {
  background: #4a0000; padding: 28px 6%;
  position: relative; z-index: 1;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.footer-logo {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.3);
  background: #fff;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffd700; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.brand-card:nth-child(1) { transition-delay: 0.05s; }
.brand-card:nth-child(2) { transition-delay: 0.18s; }
.contact-card:nth-child(1) { transition-delay: 0.05s; }
.contact-card:nth-child(2) { transition-delay: 0.15s; }
.contact-card:nth-child(3) { transition-delay: 0.25s; }
.stat:nth-child(1) { transition-delay: 0.05s; }
.stat:nth-child(2) { transition-delay: 0.12s; }
.stat:nth-child(3) { transition-delay: 0.19s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .about-inner { flex-direction: column; text-align: center; gap: 40px; }
  .about-stats { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
  .navbar { padding: 12px 4%; }
  .hero { padding: 60px 4% 60px; min-height: 80vh; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .companies, .about, .contact { padding: 64px 4%; }
  .brand-card { width: 100%; max-width: 320px; padding: 32px 24px 28px; }
  .brands-row { gap: 24px; }
  .about-visual { width: 160px; height: 160px; }
  .about-big-circle { width: 130px; height: 130px; }
  .contact-card { min-width: 160px; padding: 22px 20px; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 400px) {
  .brand-name { font-size: 1.1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
