/* ── Hero ── */
#hero {
  min-height: 100vh;
  background-color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 80px;
}

/* hex dot mask sits on top of the blobs */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 1.5px, #0D0D0D 0 5.5px, transparent 5.5px),
    radial-gradient(circle at 50% 50%, transparent 1.5px, #0D0D0D 0 5.5px, transparent 5.5px);
  background-size: 10px 17.32px, 10px 17.32px;
  background-position: 0px 0px, 5px 8.66px;
  pointer-events: none;
  z-index: 1;
}

#hero::after { content: ''; pointer-events: none; }

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-blob-gold {
  width: 600px; height: 600px;
  background: rgba(201,168,76,0.72);
  top: -15%; right: -10%;
  animation: blob-gold 12s ease-in-out infinite;
}
.hero-blob-black {
  width: 500px; height: 500px;
  background: rgba(10,10,10,0.70);
  bottom: -10%; left: -8%;
  animation: blob-black 14s ease-in-out infinite;
}
.hero-blob-gold2 {
  width: 380px; height: 380px;
  background: rgba(232,201,122,0.50);
  top: 40%; left: 35%;
  animation: blob-gold2 10s ease-in-out infinite;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
}

.hero-headline span {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(249, 248, 246, 0.65);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  pointer-events: none;
  animation: rippleAnim 0.55s ease-out forwards;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(249, 248, 246, 0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(249, 248, 246, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-card {
  background: var(--black);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  overflow: visible;
  opacity: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 0 40px rgba(201, 168, 76, 0.2),
    0 0 90px rgba(201, 168, 76, 0.12),
    0 0 160px rgba(201, 168, 76, 0.07);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 12px;
  background: radial-gradient(ellipse at 50% 35%, rgba(201, 168, 76, 0.25) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  animation: cardGlowPulse 4s ease-in-out infinite;
}

@keyframes cardGlowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.service-group-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.service-group-label.secondary {
  margin-top: 14px;
}

.service-group-list {
  list-style: none;
  margin-bottom: 4px;
}

.service-group-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(249, 248, 246, 0.85);
  font-size: 13px;
  line-height: 1.5;
  padding: 3px 0;
}

.svc-check {
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-check.secondary {
  opacity: 0.65;
}

.card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(249, 248, 246, 0.85);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.25s ease;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li:hover {
  color: var(--gold-light);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(249, 248, 246, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.trust-text {
  font-size: 12px;
  color: rgba(249, 248, 246, 0.5);
  letter-spacing: 0.5px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-hint-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.see-our-work {
  position: absolute;
  bottom: 80px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 40px;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease;
  opacity: 0;
  animation: pillAppear 0.4s ease-out 1.8s forwards;
  z-index: 10;
}

.see-our-work:hover {
  background: rgba(201, 168, 76, 0.8);
}

.see-our-work svg {
  animation: arrowSlide 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}

@keyframes pillAppear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .see-our-work {
    bottom: 32px;
    right: 50%;
    transform: translateX(50%);
    animation: pillAppearMobile 0.4s ease-out 1.8s forwards;
  }
}

@keyframes pillAppearMobile {
  from { opacity: 0; transform: translateX(50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(50%) translateY(0); }
}

@media (max-width: 900px) {
  #hero { padding: 100px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 72px; }
  .hero-card { padding: 28px 24px; }
  #hero::after { display: none; }
  .hero-label { color: #fff; font-weight: 800; background: #000; display: inline-block; padding: 4px 10px; border-radius: 4px; box-shadow: 0 0 12px 4px rgba(255,255,255,0.12), 0 0 28px 8px rgba(255,255,255,0.07); }
  .hero-sub { color: rgba(249, 248, 246, 0.90); }
  .hero-sub .hero-sub-highlight { color: #fff; font-weight: 700; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
