/* Hero Section */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; background: linear-gradient(170deg, #0d1f17 0%, #1a3a2a 40%, #0d1f17 100%); }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.03"/></svg>'); opacity: 0.5; pointer-events: none; }
.hero::after { display: none; }
.hero .hero-decoration-left { position: absolute; top: 20%; left: -40px; width: 200px; height: 200px; opacity: 0.06; }
.hero .hero-decoration-right { position: absolute; bottom: 10%; right: -30px; width: 160px; height: 160px; opacity: 0.06; }
.hero .hero-content { position: relative; z-index: 2; text-align: left; max-width: 1200px; margin: 0 auto; padding: 30px 16px 0; }
.hero .hero-label { font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #d4a853; margin-bottom: 8px; display: block; animation: fadeInDown 0.6s ease forwards; opacity: 0; }
.hero .hero-heading { font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.15s forwards; opacity: 0; }
.hero .hero-heading .highlight { color: #ffffff; }
.hero .hero-text { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, 0.8); margin-bottom: 0; animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }
.hero .hero-cta { display: inline-block; padding: 14px 36px; background: #c41e3a; color: #ffffff; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; animation: fadeInUp 0.6s ease 0.45s forwards; opacity: 0; box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3); }
.hero .hero-cta:hover { background: #d4253f; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4); color: #ffffff; }
.hero .hero-trust, .operators .hero-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 24px; opacity: 1; }
.hero .hero-trust-item, .operators .hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.7); }
.hero .hero-trust-icon, .operators .hero-trust-icon { width: 24px; height: 24px; flex-shrink: 0; }
.hero .hero-trust-icon svg, .operators .hero-trust-icon svg { width: 24px; height: 24px; fill: #d4a853; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) {
  .hero { padding: 80px 0 0; }
  .hero .hero-content { padding: 40px 16px; }
  .hero .hero-heading { font-size: 36px; white-space: nowrap; margin-bottom: 24px; }
  .hero .hero-text { font-size: 17px; line-height: 28px; margin-bottom: 24px; }
  .hero .hero-trust { gap: 32px; margin-top: 16px; }
}
@media (min-width: 1024px) {
  .hero { padding: 90px 0 0; }
  .hero .hero-content { padding: 50px 16px; }
  .hero .hero-heading { font-size: 42px; margin-bottom: 28px; }
  .hero .hero-text { font-size: 18px; line-height: 30px; margin-bottom: 28px; }
  .hero .hero-trust { gap: 36px; margin-top: 20px; }
}
/* Hero variant for subpages */
.hero-sub { padding: 80px 0 12px; background: linear-gradient(170deg, #0d1f17 0%, #1a3a2a 50%, #0d1f17 100%); }
.hero-sub::after { display: none; }
.hero-sub .hero-content { max-width: 800px; }
.hero-sub .hero-heading { font-size: 32px; animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.hero-sub .hero-heading .highlight { color: #ffffff; }
.hero-sub .hero-text { animation: fadeInUp 0.6s ease 0.15s forwards; opacity: 0; }
.hero-sub .hero-breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; animation: fadeInDown 0.5s ease forwards; opacity: 0; }
.hero-sub .hero-breadcrumb a { color: #d4a853; font-size: 13px; }
@media (min-width: 768px) {
  .hero-sub { padding: 90px 0 16px; }
  .hero-sub .hero-heading { font-size: 42px; }
}
@media (min-width: 1024px) {
  .hero-sub .hero-heading { font-size: 48px; }
}
